mirror of
https://github.com/pagefaultgames/pokerogue.git
synced 2024-12-04 12:46:10 +00:00
16 lines
447 B
TypeScript
16 lines
447 B
TypeScript
import { SimpleTranslationEntries } from "#app/plugins/i18n";
|
|
|
|
export const pokemonStat: SimpleTranslationEntries = {
|
|
"HP": "PV",
|
|
"HPshortened": "PV",
|
|
"ATK": "Ataque",
|
|
"ATKshortened": "Ataque",
|
|
"DEF": "Defensa",
|
|
"DEFshortened": "Defensa",
|
|
"SPATK": "At. Esp.",
|
|
"SPATKshortened": "At. Esp.",
|
|
"SPDEF": "Def. Esp.",
|
|
"SPDEFshortened": "Def. Esp.",
|
|
"SPD": "Velocidad",
|
|
"SPDshortened": "Veloc."
|
|
} as const; |