From c8fda74fdf9e49ec8cd7ecb32d01a18d637d0139 Mon Sep 17 00:00:00 2001 From: EggMuncherSupreme Date: Sun, 28 Apr 2024 17:10:37 +1000 Subject: [PATCH] Changed Bouncy Bubble to heal 100% of damage dealt, as according to Gen 8 --- 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 969f7f1c558..896891dd20c 100644 --- a/src/data/move.ts +++ b/src/data/move.ts @@ -5641,7 +5641,7 @@ export function initMoves() { new AttackMove(Moves.PIKA_PAPOW, Type.ELECTRIC, MoveCategory.SPECIAL, -1, -1, 20, -1, 0, 7) .attr(FriendshipPowerAttr), new AttackMove(Moves.BOUNCY_BUBBLE, Type.WATER, MoveCategory.SPECIAL, 60, 100, 20, -1, 0, 7) - .attr(HitHealAttr) + .attr(HitHealAttr, 1.0) .triageMove(), new AttackMove(Moves.BUZZY_BUZZ, Type.ELECTRIC, MoveCategory.SPECIAL, 60, 100, 20, 100, 0, 7) .attr(StatusEffectAttr, StatusEffect.PARALYSIS),