From 9449de485435b5842f843f8708a32df691ac5d67 Mon Sep 17 00:00:00 2001 From: Jason Halvorson <47071224+JasonHalvorson@users.noreply.github.com> Date: Sat, 6 Apr 2024 20:23:22 -0700 Subject: [PATCH] Fix battle stat booster text to match effect again Battle stat boosters were changed to 5 turns in e5ffc1e2db27b9615183871369ca6e7e2d46a55f --- src/modifier/modifier-type.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/modifier/modifier-type.ts b/src/modifier/modifier-type.ts index 066fccb17..83b722ddf 100644 --- a/src/modifier/modifier-type.ts +++ b/src/modifier/modifier-type.ts @@ -307,7 +307,7 @@ export class TempBattleStatBoosterModifierType extends ModifierType implements G constructor(tempBattleStat: 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), getTempBattleStatBoosterItemName(tempBattleStat).replace(/\./g, '').replace(/[ ]/g, '_').toLowerCase()); @@ -1475,4 +1475,4 @@ export class ModifierTypeOption { this.upgradeCount = upgradeCount; this.cost = Math.round(cost); } -} \ No newline at end of file +}