From 94677dfa26642447b3c29a7b43c590e541f95139 Mon Sep 17 00:00:00 2001 From: geeil-han Date: Sun, 17 Nov 2024 03:13:17 +0100 Subject: [PATCH] github tests failed --- src/test/moves/spectral_thief.test.ts | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/src/test/moves/spectral_thief.test.ts b/src/test/moves/spectral_thief.test.ts index 728da16e4d0..8913b7f3683 100644 --- a/src/test/moves/spectral_thief.test.ts +++ b/src/test/moves/spectral_thief.test.ts @@ -77,6 +77,7 @@ describe("Moves - Spectral Thief", () => { const dmgBefore = enemy.getAttackDamage(player, moveToCheck, false, false, false, false).damage; enemy.setStatStage(Stat.ATK, 6); + player.setStatStage(Stat.ATK, 0); game.move.select(Moves.SPECTRAL_THIEF); @@ -94,6 +95,7 @@ describe("Moves - Spectral Thief", () => { const enemy = game.scene.getEnemyPokemon()!; enemy.setStatStage(Stat.ATK, 6); + player.setStatStage(Stat.ATK, 0); game.move.select(Moves.SPECTRAL_THIEF); @@ -112,6 +114,7 @@ describe("Moves - Spectral Thief", () => { const enemy = game.scene.getEnemyPokemon()!; enemy.setStatStage(Stat.ATK, 3); + player.setStatStage(Stat.ATK, 0); game.move.select(Moves.SPECTRAL_THIEF); @@ -130,6 +133,7 @@ describe("Moves - Spectral Thief", () => { const enemy = game.scene.getEnemyPokemon()!; enemy.setStatStage(Stat.ATK, 3); + player.setStatStage(Stat.ATK, 0); game.move.select(Moves.SPECTRAL_THIEF); @@ -148,6 +152,7 @@ describe("Moves - Spectral Thief", () => { const enemy = game.scene.getEnemyPokemon()!; enemy.setStatStage(Stat.ATK, 3); + player.setStatStage(Stat.ATK, 0); game.move.select(Moves.SPECTRAL_THIEF); @@ -166,6 +171,7 @@ describe("Moves - Spectral Thief", () => { const enemy = game.scene.getEnemyPokemon()!; enemy.setStatStage(Stat.ATK, 3); + player.setStatStage(Stat.ATK, 0); game.move.select(Moves.SPECTRAL_THIEF); @@ -184,6 +190,7 @@ describe("Moves - Spectral Thief", () => { const enemy = game.scene.getEnemyPokemon()!; enemy.setStatStage(Stat.ATK, 3); + player.setStatStage(Stat.ATK, 0); game.move.select(Moves.SPECTRAL_THIEF); @@ -192,7 +199,6 @@ describe("Moves - Spectral Thief", () => { expect(player.getStatStage(Stat.ATK)).toEqual(3); expect(enemy.getStatStage(Stat.ATK)).toEqual(0); - //-1 Damage since Subsitute damages enemy for 1 expect(enemy.hp).toBeLessThan(enemy.getMaxHp() - 1); }); @@ -205,6 +211,7 @@ describe("Moves - Spectral Thief", () => { const enemy = game.scene.getEnemyPokemon()!; enemy.setStatStage(Stat.ATK, 3); + player.setStatStage(Stat.ATK, 0); game.move.select(Moves.SPECTRAL_THIEF);