[P3] Fix "Stat Won't Go Any Lower/Higher" Not Appearing (#4635)
This commit is contained in:
parent
5d0b361320
commit
3f63c147a3
|
@ -50,7 +50,7 @@ export function getStatStageChangeDescriptionKey(stages: number, isIncrease: boo
|
||||||
return isIncrease ? "battle:statRose" : "battle:statFell";
|
return isIncrease ? "battle:statRose" : "battle:statFell";
|
||||||
} else if (stages === 2) {
|
} else if (stages === 2) {
|
||||||
return isIncrease ? "battle:statSharplyRose" : "battle:statHarshlyFell";
|
return isIncrease ? "battle:statSharplyRose" : "battle:statHarshlyFell";
|
||||||
} else if (stages <= 6) {
|
} else if (stages > 2 && stages <= 6) {
|
||||||
return isIncrease ? "battle:statRoseDrastically" : "battle:statSeverelyFell";
|
return isIncrease ? "battle:statRoseDrastically" : "battle:statSeverelyFell";
|
||||||
}
|
}
|
||||||
return isIncrease ? "battle:statWontGoAnyHigher" : "battle:statWontGoAnyLower";
|
return isIncrease ? "battle:statWontGoAnyHigher" : "battle:statWontGoAnyLower";
|
||||||
|
|
Loading…
Reference in New Issue