From d9eb760be556a45f9ea3e520de96c0fb8082b2e6 Mon Sep 17 00:00:00 2001 From: frutescens Date: Tue, 24 Sep 2024 21:21:51 -0700 Subject: [PATCH] Prevents test pokemon from being immune to torment --- src/test/moves/torment.test.ts | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/test/moves/torment.test.ts b/src/test/moves/torment.test.ts index d81c5c58f78..f725f2bc34a 100644 --- a/src/test/moves/torment.test.ts +++ b/src/test/moves/torment.test.ts @@ -29,7 +29,8 @@ describe("Moves - Torment", () => { .enemyMoveset([Moves.TORMENT, Moves.SPLASH]) .enemySpecies(Species.SHUCKLE) .enemyLevel(30) - .moveset([Moves.TACKLE]); + .moveset([Moves.TACKLE]) + .ability(Abilities.BALL_FETCH); }); it("Pokemon should not be able to use the same move consecutively", async () => {