From 01d18a8a41cb213a12ed01df3fea0e9b2a13103d Mon Sep 17 00:00:00 2001 From: Blitzy <118096277+Blitz425@users.noreply.github.com> Date: Thu, 7 Aug 2025 13:34:15 -0500 Subject: [PATCH] Update trainer-config.ts --- src/data/trainers/trainer-config.ts | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/src/data/trainers/trainer-config.ts b/src/data/trainers/trainer-config.ts index 73da761da5d..d1568398bb0 100644 --- a/src/data/trainers/trainer-config.ts +++ b/src/data/trainers/trainer-config.ts @@ -4355,12 +4355,11 @@ export const trainerConfigs: TrainerConfigs = { p.pokeball = PokeballType.ULTRA_BALL; p.setBoss(true, 2); if (p.formIndex === 2) { - p.moveset[0] = new PokemonMove(MoveId.WICKED_BLOW); + p.moveset[0] = new PokemonMove(MoveId.WICKED_BLOW); p.moveset[1] = new PokemonMove(MoveId.BRICK_BREAK); p.moveset[2] = new PokemonMove(randSeedItem([MoveId.FIRE_PUNCH, MoveId.THUNDER_PUNCH, MoveId.ICE_PUNCH])); p.moveset[3] = new PokemonMove(MoveId.FOCUS_ENERGY); - } - else if (p.formIndex === 3) { + } else if (p.formIndex === 3) { p.moveset[0] = new PokemonMove(MoveId.SURGING_STRIKES); p.moveset[1] = new PokemonMove(MoveId.BRICK_BREAK); p.moveset[2] = new PokemonMove(randSeedItem([MoveId.FIRE_PUNCH, MoveId.THUNDER_PUNCH, MoveId.ICE_PUNCH]));