mirror of
https://github.com/pagefaultgames/pokerogue.git
synced 2024-12-04 12:46:10 +00:00
16 lines
446 B
TypeScript
16 lines
446 B
TypeScript
|
import { SimpleTranslationEntries } from "#app/plugins/i18n";
|
||
|
|
||
|
export const pokemonStat: SimpleTranslationEntries = {
|
||
|
"HP": "Max. KP",
|
||
|
"HPshortened": "MaxKP",
|
||
|
"ATK": "Angriff",
|
||
|
"ATKshortened": "Ang",
|
||
|
"DEF": "Verteidigung",
|
||
|
"DEFshortened": "Vert",
|
||
|
"SPATK": "Sp. Ang",
|
||
|
"SPATKshortened": "SpAng",
|
||
|
"SPDEF": "Sp. Vert",
|
||
|
"SPDEFshortened": "SpVert",
|
||
|
"SPD": "Initiative",
|
||
|
"SPDshortened": "Init"
|
||
|
} as const;
|