From 6377a550ecc270e4533a41601e13499193d5b83c Mon Sep 17 00:00:00 2001 From: innerthunder Date: Fri, 27 Sep 2024 11:55:14 -0700 Subject: [PATCH] Fix Zippy Zap being boosted by Sheer Force --- src/data/move.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/data/move.ts b/src/data/move.ts index 74ecead73fa..a99e63f84ee 100644 --- a/src/data/move.ts +++ b/src/data/move.ts @@ -8928,7 +8928,7 @@ export function initMoves() { .partial() .ignoresVirtual(), /* End Unused */ - new AttackMove(Moves.ZIPPY_ZAP, Type.ELECTRIC, MoveCategory.PHYSICAL, 50, 100, 15, 100, 2, 7) //LGPE Implementation + new AttackMove(Moves.ZIPPY_ZAP, Type.ELECTRIC, MoveCategory.PHYSICAL, 50, 100, 15, -1, 2, 7) //LGPE Implementation .attr(CritOnlyAttr), new AttackMove(Moves.SPLISHY_SPLASH, Type.WATER, MoveCategory.SPECIAL, 90, 100, 15, 30, 0, 7) .attr(StatusEffectAttr, StatusEffect.PARALYSIS)