mirror of
https://github.com/pagefaultgames/pokerogue.git
synced 2025-07-06 00:12:16 +02:00
Reverts adding CRIT as a BattleStat
This commit is contained in:
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
Block a user