2024-05-17 15:43:11 +01:00
|
|
|
import { PokemonInfoTranslationEntries } from "#app/plugins/i18n";
|
|
|
|
|
|
|
|
export const pokemonInfo: PokemonInfoTranslationEntries = {
|
|
|
|
Stat: {
|
2024-05-22 19:01:29 +01:00
|
|
|
"HP": "PS",
|
|
|
|
"HPshortened": "PS",
|
2024-05-17 15:43:11 +01:00
|
|
|
"ATK": "Ataque",
|
|
|
|
"ATKshortened": "Ata",
|
|
|
|
"DEF": "Defensa",
|
|
|
|
"DEFshortened": "Def",
|
|
|
|
"SPATK": "At. Esp.",
|
|
|
|
"SPATKshortened": "AtEsp",
|
|
|
|
"SPDEF": "Def. Esp.",
|
|
|
|
"SPDEFshortened": "DefEsp",
|
|
|
|
"SPD": "Velocidad",
|
|
|
|
"SPDshortened": "Veloc."
|
|
|
|
},
|
|
|
|
|
|
|
|
Type: {
|
2024-05-22 19:01:29 +01:00
|
|
|
"UNKNOWN": "Desconocido",
|
2024-05-17 15:43:11 +01:00
|
|
|
"NORMAL": "Normal",
|
2024-05-22 19:01:29 +01:00
|
|
|
"FIGHTING": "Lucha",
|
|
|
|
"FLYING": "Volador",
|
|
|
|
"POISON": "Veneno",
|
|
|
|
"GROUND": "Tierra",
|
|
|
|
"ROCK": "Roca",
|
|
|
|
"BUG": "Bicho",
|
|
|
|
"GHOST": "Fantasma",
|
|
|
|
"STEEL": "Acero",
|
|
|
|
"FIRE": "Fuego",
|
|
|
|
"WATER": "Agua",
|
|
|
|
"GRASS": "Planta",
|
|
|
|
"ELECTRIC": "Eléctrico",
|
|
|
|
"PSYCHIC": "Psíquico",
|
|
|
|
"ICE": "Hielo",
|
|
|
|
"DRAGON": "Dragón",
|
|
|
|
"DARK": "Siniestro",
|
|
|
|
"FAIRY": "Hada",
|
|
|
|
"STELLAR": "Astral",
|
2024-05-17 15:43:11 +01:00
|
|
|
},
|
2024-05-22 19:01:29 +01:00
|
|
|
} as const;
|