From 945fc30506981489f65fa4fd1b38411e18bc0e53 Mon Sep 17 00:00:00 2001 From: Luc Date: Fri, 19 Apr 2024 01:20:06 -0400 Subject: [PATCH] removed payback code --- src/data/move.ts | 13 +------------ 1 file changed, 1 insertion(+), 12 deletions(-) diff --git a/src/data/move.ts b/src/data/move.ts index a7b9a9f6aef..0c54f06c913 100644 --- a/src/data/move.ts +++ b/src/data/move.ts @@ -1783,17 +1783,6 @@ export class FirstAttackDoublePowerAttr extends VariablePowerAttr { } } -export class LastAttackDoublePowerAttr extends VariablePowerAttr { - apply(user: Pokemon, target: Pokemon, move: Move, args: any[]): boolean { - console.log(target.getLastXMoves(1), target.scene.currentBattle.turn); - if (target.getLastXMoves(1).find(m => m.turn === target.scene.currentBattle.turn)) { - (args[0] as Utils.NumberHolder).value *= 2; - return true; - } - - return false; - } -} export class TurnDamagedDoublePowerAttr extends VariablePowerAttr { apply(user: Pokemon, target: Pokemon, move: Move, args: any[]): boolean { @@ -4564,7 +4553,7 @@ export function initMoves() { new AttackMove(Moves.CLOSE_COMBAT, Type.FIGHTING, MoveCategory.PHYSICAL, 120, 100, 5, 100, 0, 4) .attr(StatChangeAttr, [ BattleStat.DEF, BattleStat.SPDEF ], -1, true), new AttackMove(Moves.PAYBACK, Type.DARK, MoveCategory.PHYSICAL, 50, 100, 10, -1, 0, 4) - .attr(LastAttackDoublePowerAttr), + .partial(), new AttackMove(Moves.ASSURANCE, Type.DARK, MoveCategory.PHYSICAL, 60, 100, 10, -1, 0, 4) .partial(), new StatusMove(Moves.EMBARGO, Type.DARK, 100, 15, -1, 0, 4)