From 4b29be12215667f1e7b819e80a7e9f6175d084dd Mon Sep 17 00:00:00 2001 From: thisPieonFire Date: Tue, 8 Jul 2025 11:20:02 +0200 Subject: [PATCH 1/2] Update test/moves/court-change.test.ts Co-authored-by: Bertie690 <136088738+Bertie690@users.noreply.github.com> --- test/moves/court-change.test.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/moves/court-change.test.ts b/test/moves/court-change.test.ts index 9997a370b93..8f94e5dfb67 100644 --- a/test/moves/court-change.test.ts +++ b/test/moves/court-change.test.ts @@ -32,7 +32,7 @@ describe("Move - Court Change", () => { .enemyLevel(100); }); - it("Court Change should swap the swamp from the enemy to the own teams side ", async () => { + it("should swap combined Pledge effects to the opposite side", async () => { await game.classicMode.startBattle([SpeciesId.REGIELEKI, SpeciesId.SHUCKLE]); const [regieleki, shuckle] = game.scene.getPlayerParty(); game.move.changeMoveset(regieleki, [MoveId.WATER_PLEDGE, MoveId.COURT_CHANGE, MoveId.SPLASH]); From a5e7239d0ea8f70321efbdb3c11f95108d3cb7a1 Mon Sep 17 00:00:00 2001 From: thisPieonFire Date: Tue, 8 Jul 2025 11:21:05 +0200 Subject: [PATCH 2/2] Update test/moves/court-change.test.ts Co-authored-by: Bertie690 <136088738+Bertie690@users.noreply.github.com> --- test/moves/court-change.test.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/moves/court-change.test.ts b/test/moves/court-change.test.ts index 8f94e5dfb67..8fd00ac9fa7 100644 --- a/test/moves/court-change.test.ts +++ b/test/moves/court-change.test.ts @@ -43,7 +43,7 @@ describe("Move - Court Change", () => { game.move.use(MoveId.GRASS_PLEDGE, 1); await game.toEndOfTurn(); - //enemy team will be in the swamp and slowed + // enemy team will be in the swamp and slowed expect(enemyPokemon.getEffectiveStat(Stat.SPD)).toBe(enemyPokemon.getStat(Stat.SPD) >> 2); game.move.use(MoveId.COURT_CHANGE, 0);