17 lines
431 B
TypeScript
17 lines
431 B
TypeScript
import { SimpleTranslationEntries } from "#app/plugins/i18n";
|
|
|
|
export const pokemonStat: SimpleTranslationEntries = {
|
|
"HP": "PS",
|
|
"HPshortened": "PS",
|
|
"ATK": "Attacco",
|
|
"ATKshortened": "Att",
|
|
"DEF": "Difensa",
|
|
"DEFshortened": "Dif",
|
|
"SPATK": "Att. Sp.",
|
|
"SPATKshortened": "AttSp",
|
|
"SPDEF": "Dif. Sp.",
|
|
"SPDEFshortened": "DifSp",
|
|
"SPD": "Velocità",
|
|
"SPDshortened": "Vel"
|
|
} as const;
|