From 284056fd251e7e3565de7e87f7bcae09448828c6 Mon Sep 17 00:00:00 2001 From: innerthunder Date: Mon, 6 May 2024 17:26:45 -0700 Subject: [PATCH] Revert "reset overrides to default" This reverts commit 150c2526a38f952cb8cb86ceb99e5d0815ffff13. --- src/overrides.ts | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/overrides.ts b/src/overrides.ts index 10d01399b2c..e56461949eb 100644 --- a/src/overrides.ts +++ b/src/overrides.ts @@ -15,14 +15,14 @@ export const STARTING_MONEY_OVERRIDE = 0; export const WEATHER_OVERRIDE = WeatherType.NONE; export const ABILITY_OVERRIDE = Abilities.NONE; -export const MOVE_OVERRIDE = Moves.NONE; -export const MOVE_OVERRIDE_2 = Moves.NONE; -export const STATUS_OVERRIDE = StatusEffect.NONE; +export const MOVE_OVERRIDE = Moves.HEAL_BELL; +export const MOVE_OVERRIDE_2 = Moves.PURIFY; +export const STATUS_OVERRIDE = StatusEffect.TOXIC; export const OPP_SPECIES_OVERRIDE = 0; export const OPP_ABILITY_OVERRIDE = Abilities.NONE; export const OPP_MOVE_OVERRIDE = Moves.NONE; export const OPP_MOVE_OVERRIDE_2 = Moves.NONE; -export const OPP_STATUS_OVERRIDE = StatusEffect.NONE; +export const OPP_STATUS_OVERRIDE = StatusEffect.TOXIC; export const OPP_SHINY_OVERRIDE = false; export const OPP_VARIANT_OVERRIDE = 0;