Fix battle stat booster text to match effect again

Battle stat boosters were changed to 5 turns in
e5ffc1e2db
This commit is contained in:
Jason Halvorson 2024-04-06 20:23:22 -07:00 committed by Samuel H
parent 0cb008adb0
commit 9449de4854
1 changed files with 2 additions and 2 deletions

View File

@ -307,7 +307,7 @@ export class TempBattleStatBoosterModifierType extends ModifierType implements G
constructor(tempBattleStat: TempBattleStat) { constructor(tempBattleStat: TempBattleStat) {
super(getTempBattleStatBoosterItemName(tempBattleStat), super(getTempBattleStatBoosterItemName(tempBattleStat),
`Increases the ${getTempBattleStatName(tempBattleStat)} of all party members by 1 stage for 10 battles`, `Increases the ${getTempBattleStatName(tempBattleStat)} of all party members by 1 stage for 5 battles`,
(_type, _args) => new Modifiers.TempBattleStatBoosterModifier(this, this.tempBattleStat), (_type, _args) => new Modifiers.TempBattleStatBoosterModifier(this, this.tempBattleStat),
getTempBattleStatBoosterItemName(tempBattleStat).replace(/\./g, '').replace(/[ ]/g, '_').toLowerCase()); getTempBattleStatBoosterItemName(tempBattleStat).replace(/\./g, '').replace(/[ ]/g, '_').toLowerCase());
@ -1475,4 +1475,4 @@ export class ModifierTypeOption {
this.upgradeCount = upgradeCount; this.upgradeCount = upgradeCount;
this.cost = Math.round(cost); this.cost = Math.round(cost);
} }
} }