From fc56cb53fa010199c9854ad85de7729b947b5005 Mon Sep 17 00:00:00 2001 From: torranx Date: Thu, 3 Oct 2024 18:02:29 +0800 Subject: [PATCH] swap party positions --- src/test/moves/tera_starstorm.test.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/test/moves/tera_starstorm.test.ts b/src/test/moves/tera_starstorm.test.ts index 3ccd63e322e..20dbc0b77d6 100644 --- a/src/test/moves/tera_starstorm.test.ts +++ b/src/test/moves/tera_starstorm.test.ts @@ -68,7 +68,7 @@ describe("Moves - Tera Starstorm", () => { }); it("applies the effects when Terapagos in Stellar Form is fused with another Pokemon", async () => { - await game.classicMode.startBattle([Species.TERAPAGOS, Species.MAGIKARP, Species.CHARMANDER]); + await game.classicMode.startBattle([Species.TERAPAGOS, Species.CHARMANDER, Species.MAGIKARP]); const fusionedMon = game.scene.getParty()[0]; const magikarp = game.scene.getParty()[2];