mirror of
https://github.com/pagefaultgames/pokerogue.git
synced 2025-01-17 06:20:49 +00:00
d70dd16f8c
* I18n Cleaning * pr comments * appease typedoc * moved types into src
36 lines
1010 B
TypeScript
36 lines
1010 B
TypeScript
import i18next from "i18next";
|
|
|
|
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("pokemonInfo:Stat.HP") : i18next.t("pokemonInfo:Stat.HPshortened");
|
|
break;
|
|
case Stat.ATK:
|
|
ret = !shorten ? i18next.t("pokemonInfo:Stat.ATK") : i18next.t("pokemonInfo:Stat.ATKshortened");
|
|
break;
|
|
case Stat.DEF:
|
|
ret = !shorten ? i18next.t("pokemonInfo:Stat.DEF") : i18next.t("pokemonInfo:Stat.DEFshortened");
|
|
break;
|
|
case Stat.SPATK:
|
|
ret = !shorten ? i18next.t("pokemonInfo:Stat.SPATK") : i18next.t("pokemonInfo:Stat.SPATKshortened");
|
|
break;
|
|
case Stat.SPDEF:
|
|
ret = !shorten ? i18next.t("pokemonInfo:Stat.SPDEF") : i18next.t("pokemonInfo:Stat.SPDEFshortened");
|
|
break;
|
|
case Stat.SPD:
|
|
ret = !shorten ? i18next.t("pokemonInfo:Stat.SPD") : i18next.t("pokemonInfo:Stat.SPDshortened");
|
|
break;
|
|
}
|
|
return ret;
|
|
}
|