From a25e9b776ffc8953e61cd931d6302248b858a17f Mon Sep 17 00:00:00 2001 From: Sirz Benjie <142067137+SirzBenjie@users.noreply.github.com> Date: Thu, 10 Apr 2025 17:27:41 -0500 Subject: [PATCH] Restore overrides --- src/overrides.ts | 15 +-------------- 1 file changed, 1 insertion(+), 14 deletions(-) diff --git a/src/overrides.ts b/src/overrides.ts index ee81693e2fc..d36cfbfac98 100644 --- a/src/overrides.ts +++ b/src/overrides.ts @@ -43,20 +43,7 @@ import { BattleType } from "#enums/battle-type"; * } * ``` */ -const overrides = { - HAS_PASSIVE_ABILITY_OVERRIDE: false, - OPP_HAS_PASSIVE_ABILITY_OVERRIDE: false, - RANDOM_TRAINER_OVERRIDE: { - trainerType: TrainerType.BREEDER, - alwaysDouble: true - }, - BATTLE_TYPE_OVERRIDE: BattleType.TRAINER, - ABILITY_OVERRIDE: Abilities.BALL_FETCH, - OPP_ABILITY_OVERRIDE: Abilities.BALL_FETCH, - STARTING_LEVEL_OVERRIDE: 100, - MOVESET_OVERRIDE: [ Moves.WHIRLWIND, Moves.SPLASH], - OPP_MOVESET_OVERRIDE: [ Moves.SPLASH] -} satisfies Partial>; +const overrides = {} satisfies Partial>; /** * If you need to add Overrides values for local testing do that inside {@linkcode overrides}