mirror of
https://github.com/pagefaultgames/pokerogue.git
synced 2025-03-03 08:27:59 +00:00
16 lines
430 B
TypeScript
16 lines
430 B
TypeScript
|
import { SimpleTranslationEntries } from "#app/plugins/i18n";
|
||
|
|
||
|
export const pokemonStat: SimpleTranslationEntries = {
|
||
|
"HP": "PS",
|
||
|
"HPshortened": "PS",
|
||
|
"ATK": "Ataque",
|
||
|
"ATKshortened": "Ata",
|
||
|
"DEF": "Defesa",
|
||
|
"DEFshortened": "Def",
|
||
|
"SPATK": "At. Esp.",
|
||
|
"SPATKshortened": "AtEsp",
|
||
|
"SPDEF": "Def. Esp.",
|
||
|
"SPDEFshortened": "DefEsp",
|
||
|
"SPD": "Veloc.",
|
||
|
"SPDshortened": "Veloc."
|
||
|
} as const;
|