Prevents test pokemon from being immune to torment

This commit is contained in:
frutescens 2024-09-24 21:21:51 -07:00
parent 40960b8098
commit d9eb760be5

View File

@ -29,7 +29,8 @@ describe("Moves - Torment", () => {
.enemyMoveset([Moves.TORMENT, Moves.SPLASH]) .enemyMoveset([Moves.TORMENT, Moves.SPLASH])
.enemySpecies(Species.SHUCKLE) .enemySpecies(Species.SHUCKLE)
.enemyLevel(30) .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 () => { it("Pokemon should not be able to use the same move consecutively", async () => {