diff --git a/test/moves/first-attack-double-power.test.ts b/test/moves/first-attack-double-power.test.ts index f141294b308..7d1d9c4d762 100644 --- a/test/moves/first-attack-double-power.test.ts +++ b/test/moves/first-attack-double-power.test.ts @@ -1,11 +1,9 @@ import { allMoves } from "#data/data-lists"; import { AbilityId } from "#enums/ability-id"; -import { BattleType } from "#enums/battle-type"; import { BattlerIndex } from "#enums/battler-index"; import { MoveId } from "#enums/move-id"; import { MoveUseMode } from "#enums/move-use-mode"; import { SpeciesId } from "#enums/species-id"; -import { TrainerType } from "#enums/trainer-type"; import { GameManager } from "#test/testUtils/gameManager"; import Phaser from "phaser"; import { afterEach, beforeAll, beforeEach, describe, expect, it, vi } from "vitest"; @@ -29,8 +27,7 @@ describe("Moves - Fishious Rend & Bolt Beak", () => { game.override .ability(AbilityId.STURDY) .battleStyle("single") - .battleType(BattleType.TRAINER) - .randomTrainer({ trainerType: TrainerType.YOUNGSTER }) + .startingWave(5) .criticalHits(false) .enemyLevel(100) .enemySpecies(SpeciesId.DRACOVISH)