diff --git a/src/data/battler-tags.ts b/src/data/battler-tags.ts index 28ec02e52ef..b558ed49f3a 100644 --- a/src/data/battler-tags.ts +++ b/src/data/battler-tags.ts @@ -220,7 +220,7 @@ export class RageTag extends BattlerTag { if (lapseType === BattlerTagLapseType.MOVE_EFFECT) { return (pokemon.scene.getCurrentPhase() as MovePhase).move.getMove().id === Moves.RAGE; } else if (lapseType === BattlerTagLapseType.CUSTOM) { - pokemon.scene.unshiftPhase(new StatChangePhase(pokemon.scene,pokemon.getBattlerIndex(),true,[BattleStat.ATK],1,false)); + pokemon.scene.unshiftPhase(new StatChangePhase(pokemon.scene, pokemon.getBattlerIndex(), true, [BattleStat.ATK], 1, false)); pokemon.scene.queueMessage(i18next.t("battlerTags:rageOnHit", { pokemonNameWithAffix: getPokemonNameWithAffix(pokemon)})); return true; diff --git a/src/data/move.ts b/src/data/move.ts index f6de9e2ec09..32923042d07 100644 --- a/src/data/move.ts +++ b/src/data/move.ts @@ -6450,7 +6450,7 @@ export function initMoves() { .attr(StatChangeAttr, BattleStat.SPD, 2, true), new AttackMove(Moves.QUICK_ATTACK, Type.NORMAL, MoveCategory.PHYSICAL, 40, 100, 30, -1, 1, 1), new AttackMove(Moves.RAGE, Type.NORMAL, MoveCategory.PHYSICAL, 20, 100, 20, -1, 0, 1) - .attr(AddBattlerTagAttr,BattlerTagType.RAGE,true,false,0,0,false,true), + .attr(AddBattlerTagAttr, BattlerTagType.RAGE, true, false, 0, 0, false, true), new SelfStatusMove(Moves.TELEPORT, Type.PSYCHIC, -1, 20, -1, -6, 1) .attr(ForceSwitchOutAttr, true) .hidesUser(),