From a07c94ab6c4f90bc06a19dff03e2a20accf4d449 Mon Sep 17 00:00:00 2001 From: frutescens Date: Mon, 30 Sep 2024 15:26:22 -0700 Subject: [PATCH] Added Wiglett family to restrictions --- 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 62f3bd88551..0313c024a16 100644 --- a/src/data/move.ts +++ b/src/data/move.ts @@ -8153,7 +8153,7 @@ export function initMoves() { .attr(AddBattlerTagAttr, BattlerTagType.CENTER_OF_ATTENTION, true), new StatusMove(Moves.TELEKINESIS, Type.PSYCHIC, -1, 15, -1, 0, 5) .condition(failOnGravityCondition) - .condition((_user, target, _move) => ![Species.DIGLETT, Species.DUGTRIO, Species.ALOLA_DIGLETT, Species.ALOLA_DUGTRIO, Species.SANDYGAST, Species.PALOSSAND].includes(target.species.speciesId)) + .condition((_user, target, _move) => ![Species.DIGLETT, Species.DUGTRIO, Species.ALOLA_DIGLETT, Species.ALOLA_DUGTRIO, Species.SANDYGAST, Species.PALOSSAND, Species.WIGLETT, Species.WUGTRIO].includes(target.species.speciesId)) .condition((_user, target, _move) => !(target.species.speciesId !== Species.GENGAR && target.getFormKey() !== "mega")) .attr(AddBattlerTagAttr, BattlerTagType.FLYING, false, false, 3) .attr(AddBattlerTagAttr, BattlerTagType.TELEKINESIS, false, false, 3),