mirror of
https://github.com/pagefaultgames/pokerogue.git
synced 2025-01-16 22:11:06 +00:00
35 lines
994 B
TypeScript
35 lines
994 B
TypeScript
import i18next from '../plugins/i18n';
|
|
|
|
export enum Stat {
|
|
HP = 0,
|
|
ATK,
|
|
DEF,
|
|
SPATK,
|
|
SPDEF,
|
|
SPD
|
|
};
|
|
|
|
export function getStatName(stat: Stat, shorten: boolean = false) {
|
|
let ret: string;
|
|
switch (stat) {
|
|
case Stat.HP:
|
|
ret = !shorten ? i18next.t('pokemonStat:HP') : i18next.t('pokemonStat:HPshortened');
|
|
break;
|
|
case Stat.ATK:
|
|
ret = !shorten ? i18next.t('pokemonStat:ATK') : i18next.t('pokemonStat:ATKshortened');
|
|
break;
|
|
case Stat.DEF:
|
|
ret = !shorten ? i18next.t('pokemonStat:DEF') : i18next.t('pokemonStat:DEFshortened');
|
|
break;
|
|
case Stat.SPATK:
|
|
ret = !shorten ? i18next.t('pokemonStat:SPATK') : i18next.t('pokemonStat:SPATKshortened');
|
|
break;
|
|
case Stat.SPDEF:
|
|
ret = !shorten ? i18next.t('pokemonStat:SPDEF') : i18next.t('pokemonStat:SPDEFshortened');
|
|
break;
|
|
case Stat.SPD:
|
|
ret = !shorten ? i18next.t('pokemonStat:SPD') : i18next.t('pokemonStat:SPDshortened');
|
|
break;
|
|
}
|
|
return ret;
|
|
} |