mirror of
https://github.com/pagefaultgames/pokerogue.git
synced 2025-07-20 07:12:32 +02:00
Apply kev's suggestion
Co-authored-by: NightKev <34855794+DayKev@users.noreply.github.com>
This commit is contained in:
parent
11ab896128
commit
2818396b18
@ -50,7 +50,8 @@ export function getStatStageChangeDescriptionKey(stages: number, isIncrease: boo
|
||||
return isIncrease ? "battle:statRose" : "battle:statFell";
|
||||
}if (stages === 2) {
|
||||
return isIncrease ? "battle:statSharplyRose" : "battle:statHarshlyFell";
|
||||
}if (stages > 2 && stages <= 6) {
|
||||
}
|
||||
if (stages > 2 && stages <= 6) {
|
||||
return isIncrease ? "battle:statRoseDrastically" : "battle:statSeverelyFell";
|
||||
}
|
||||
return isIncrease ? "battle:statWontGoAnyHigher" : "battle:statWontGoAnyLower";
|
||||
|
Loading…
Reference in New Issue
Block a user