2024-05-17 11:43:11 -03:00
|
|
|
import { PokemonInfoTranslationEntries } from "#app/plugins/i18n";
|
|
|
|
|
|
|
|
export const pokemonInfo: PokemonInfoTranslationEntries = {
|
2024-05-23 17:03:10 +02:00
|
|
|
Stat: {
|
|
|
|
"HP": "PS Max",
|
|
|
|
"HPshortened": "PS",
|
|
|
|
"ATK": "Attacco",
|
|
|
|
"ATKshortened": "Att",
|
|
|
|
"DEF": "Difesa",
|
|
|
|
"DEFshortened": "Dif",
|
|
|
|
"SPATK": "Att. Sp.",
|
|
|
|
"SPATKshortened": "AttSp",
|
|
|
|
"SPDEF": "Dif. Sp.",
|
|
|
|
"SPDEFshortened": "DifSp",
|
|
|
|
"SPD": "Velocità",
|
|
|
|
"SPDshortened": "Vel"
|
|
|
|
},
|
2024-05-17 11:43:11 -03:00
|
|
|
|
2024-05-23 17:03:10 +02:00
|
|
|
Type: {
|
|
|
|
"UNKNOWN": "Sconosciuto",
|
|
|
|
"NORMAL": "Normale",
|
|
|
|
"FIGHTING": "Lotta",
|
|
|
|
"FLYING": "Volante",
|
|
|
|
"POISON": "Veleno",
|
|
|
|
"GROUND": "Terra",
|
|
|
|
"ROCK": "Roccia",
|
|
|
|
"BUG": "Coleottero",
|
|
|
|
"GHOST": "Spettro",
|
|
|
|
"STEEL": "Acciaio",
|
|
|
|
"FIRE": "Fuoco",
|
|
|
|
"WATER": "Acqua",
|
|
|
|
"GRASS": "Erba",
|
|
|
|
"ELECTRIC": "Elettro",
|
|
|
|
"PSYCHIC": "Psico",
|
|
|
|
"ICE": "Ghiaccio",
|
|
|
|
"DRAGON": "Drago",
|
|
|
|
"DARK": "Buio",
|
|
|
|
"FAIRY": "Folletto",
|
|
|
|
"STELLAR": "Astrale",
|
|
|
|
},
|
2024-05-17 11:43:11 -03:00
|
|
|
} as const;
|