From 16ff508443426547cd514c4b99c90c0d7940a9b9 Mon Sep 17 00:00:00 2001 From: EggMuncherSupreme Date: Tue, 23 Apr 2024 06:53:04 +1000 Subject: [PATCH] Added the triageMove() flag to Bouncy Bubble --- src/data/move.ts | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/data/move.ts b/src/data/move.ts index 79364fb41..969f7f1c5 100644 --- a/src/data/move.ts +++ b/src/data/move.ts @@ -5641,7 +5641,8 @@ 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) + .triageMove(), new AttackMove(Moves.BUZZY_BUZZ, Type.ELECTRIC, MoveCategory.SPECIAL, 60, 100, 20, 100, 0, 7) .attr(StatusEffectAttr, StatusEffect.PARALYSIS), new AttackMove(Moves.SIZZLY_SLIDE, Type.FIRE, MoveCategory.PHYSICAL, 60, 100, 20, 100, 0, 7)