Reverts adding CRIT as a BattleStat
parent
99b55fa3ec
commit
d697731018
|
|
@ -8,7 +8,7 @@ export enum BattleStat {
|
||||||
SPD,
|
SPD,
|
||||||
ACC,
|
ACC,
|
||||||
EVA,
|
EVA,
|
||||||
CRIT
|
RAND
|
||||||
}
|
}
|
||||||
|
|
||||||
export function getBattleStatName(stat: BattleStat) {
|
export function getBattleStatName(stat: BattleStat) {
|
||||||
|
|
@ -27,8 +27,6 @@ export function getBattleStatName(stat: BattleStat) {
|
||||||
return i18next.t('pokemonStat:ACC');
|
return i18next.t('pokemonStat:ACC');
|
||||||
case BattleStat.EVA:
|
case BattleStat.EVA:
|
||||||
return i18next.t('pokemonStat:EVA');
|
return i18next.t('pokemonStat:EVA');
|
||||||
case BattleStat.CRIT:
|
|
||||||
return i18next.t('pokemonStat:CRIT');
|
|
||||||
default:
|
default:
|
||||||
return '???';
|
return '???';
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue