mirror of
https://github.com/pagefaultgames/pokerogue.git
synced 2025-03-01 23:48:40 +00:00
16 lines
434 B
TypeScript
16 lines
434 B
TypeScript
import { SimpleTranslationEntries } from "#app/plugins/i18n";
|
|
|
|
export const pokemonStat: SimpleTranslationEntries = {
|
|
"HP": "PV",
|
|
"HPshortened": "PV",
|
|
"ATK": "Attaque",
|
|
"ATKshortened": "Atq",
|
|
"DEF": "Défense",
|
|
"DEFshortened": "Déf",
|
|
"SPATK": "Atq. Spé",
|
|
"SPATKshortened": "AtqSp",
|
|
"SPDEF": "Déf. Spé",
|
|
"SPDEFshortened": "DéfSp",
|
|
"SPD": "Vitesse",
|
|
"SPDshortened": "Vit"
|
|
} as const; |