ESLint woes

This commit is contained in:
innerthunder 2024-10-22 00:03:38 -07:00
parent 196d665215
commit 1678a809f4

View File

@ -3141,15 +3141,15 @@ export class OrderUpStatBoostAttr extends MoveEffectAttr {
let increasedStat: EffectiveStat = Stat.ATK; let increasedStat: EffectiveStat = Stat.ATK;
switch (commandedTag.tatsugiriFormKey) { switch (commandedTag.tatsugiriFormKey) {
case "curly": case "curly":
increasedStat = Stat.ATK; increasedStat = Stat.ATK;
break; break;
case "droopy": case "droopy":
increasedStat = Stat.DEF; increasedStat = Stat.DEF;
break; break;
case "stretchy": case "stretchy":
increasedStat = Stat.SPD; increasedStat = Stat.SPD;
break; break;
} }
user.scene.unshiftPhase(new StatStageChangePhase(user.scene, user.getBattlerIndex(), this.selfTarget, [ increasedStat ], 1)); user.scene.unshiftPhase(new StatStageChangePhase(user.scene, user.getBattlerIndex(), this.selfTarget, [ increasedStat ], 1));