From 25dfa0fb8cfd60b600b4a0a44589dbe4c32d04dd Mon Sep 17 00:00:00 2001 From: frutescens Date: Sat, 9 Nov 2024 23:31:19 -0800 Subject: [PATCH] Added failIfSingleBattle condtion to Helping Hand --- 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 37afe651861..9a28ac6cf9e 100644 --- a/src/data/move.ts +++ b/src/data/move.ts @@ -8484,7 +8484,8 @@ export function initMoves() { new StatusMove(Moves.HELPING_HAND, Type.NORMAL, -1, 20, -1, 5, 3) .attr(AddBattlerTagAttr, BattlerTagType.HELPING_HAND) .ignoresSubstitute() - .target(MoveTarget.NEAR_ALLY), + .target(MoveTarget.NEAR_ALLY) + .condition(failIfSingleBattle), new StatusMove(Moves.TRICK, Type.PSYCHIC, 100, 10, -1, 0, 3) .unimplemented(), new StatusMove(Moves.ROLE_PLAY, Type.PSYCHIC, -1, 10, -1, 0, 3)