diff --git a/public/images/pokemon/750.png b/public/images/pokemon/750.png index bfd7e20743d..f0ca7b407dd 100644 Binary files a/public/images/pokemon/750.png and b/public/images/pokemon/750.png differ diff --git a/public/images/pokemon/back/749.png b/public/images/pokemon/back/749.png index 8a14933a52e..0f28ee107c9 100644 Binary files a/public/images/pokemon/back/749.png and b/public/images/pokemon/back/749.png differ diff --git a/public/images/pokemon/exp/back/shiny/749.json b/public/images/pokemon/exp/back/shiny/749.json index 2ae1af05beb..40f3f03247d 100644 --- a/public/images/pokemon/exp/back/shiny/749.json +++ b/public/images/pokemon/exp/back/shiny/749.json @@ -1029,6 +1029,7 @@ "meta": { "app": "https://www.aseprite.org/", "version": "1.3.13-x64", + "image": "749.png", "format": "I8", "size": { "w": 357, "h": 401 }, "scale": "1" diff --git a/public/images/pokemon/exp/back/shiny/749.png b/public/images/pokemon/exp/back/shiny/749.png index a41f94c59b5..63a7d57d28f 100644 Binary files a/public/images/pokemon/exp/back/shiny/749.png and b/public/images/pokemon/exp/back/shiny/749.png differ diff --git a/src/overrides.ts b/src/overrides.ts index 882a634ff90..844e5e5dd53 100644 --- a/src/overrides.ts +++ b/src/overrides.ts @@ -41,8 +41,32 @@ import { WeatherType } from "#enums/weather-type"; * } * ``` */ -const overrides = {} satisfies Partial>; +const SPECIES_OVERRIDE: Species | number = 750; +const GENDER_OVERRIDE: Gender | null = null; +const SHINY_OVERRIDE: boolean | null = true; +const VARIANT_OVERRIDE: Variant | null = 0; +const FORM_OVERRIDES: Partial> = {}; +const FUSION_OVERRIDE: boolean = false; +const FUSION_SPECIES: Species | number = 0; +const ARENA_TINT_OVERRIDE: TimeOfDay | null = TimeOfDay.DAY; +const overrides = { + ARENA_TINT_OVERRIDE, + STARTER_FORM_OVERRIDES: FORM_OVERRIDES, + OPP_FORM_OVERRIDES: FORM_OVERRIDES, + VARIANT_OVERRIDE: VARIANT_OVERRIDE, + OPP_VARIANT_OVERRIDE: VARIANT_OVERRIDE, + STARTER_SPECIES_OVERRIDE: SPECIES_OVERRIDE, + OPP_SPECIES_OVERRIDE: SPECIES_OVERRIDE, + SHINY_OVERRIDE: SHINY_OVERRIDE, + OPP_SHINY_OVERRIDE: SHINY_OVERRIDE, + STARTER_FUSION_OVERRIDE: FUSION_OVERRIDE, + OPP_FUSION_OVERRIDE: FUSION_OVERRIDE, + STARTER_FUSION_SPECIES_OVERRIDE: FUSION_SPECIES, + OPP_FUSION_SPECIES_OVERRIDE: FUSION_SPECIES, + GENDER_OVERRIDE: GENDER_OVERRIDE, + OPP_GENDER_OVERRIDE: GENDER_OVERRIDE, +} satisfies Partial>; /** * If you need to add Overrides values for local testing do that inside {@linkcode overrides} * ---