mirror of
https://github.com/pagefaultgames/pokerogue.git
synced 2025-07-19 06:42:20 +02:00
Fix the animation json error plus missing files.
back shiny had placement issues and needed to be redone and i forgot to include the static updates.
This commit is contained in:
parent
9d15262c47
commit
cf1e9bac92
Binary file not shown.
Before Width: | Height: | Size: 1.0 KiB After Width: | Height: | Size: 2.8 KiB |
Binary file not shown.
Before Width: | Height: | Size: 622 B After Width: | Height: | Size: 666 B |
@ -1029,6 +1029,7 @@
|
|||||||
"meta": {
|
"meta": {
|
||||||
"app": "https://www.aseprite.org/",
|
"app": "https://www.aseprite.org/",
|
||||||
"version": "1.3.13-x64",
|
"version": "1.3.13-x64",
|
||||||
|
"image": "749.png",
|
||||||
"format": "I8",
|
"format": "I8",
|
||||||
"size": { "w": 357, "h": 401 },
|
"size": { "w": 357, "h": 401 },
|
||||||
"scale": "1"
|
"scale": "1"
|
||||||
|
Binary file not shown.
Before Width: | Height: | Size: 15 KiB After Width: | Height: | Size: 15 KiB |
@ -41,8 +41,32 @@ import { WeatherType } from "#enums/weather-type";
|
|||||||
* }
|
* }
|
||||||
* ```
|
* ```
|
||||||
*/
|
*/
|
||||||
const overrides = {} satisfies Partial<InstanceType<typeof DefaultOverrides>>;
|
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<Record<Species, number>> = {};
|
||||||
|
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<InstanceType<typeof DefaultOverrides>>;
|
||||||
/**
|
/**
|
||||||
* If you need to add Overrides values for local testing do that inside {@linkcode overrides}
|
* If you need to add Overrides values for local testing do that inside {@linkcode overrides}
|
||||||
* ---
|
* ---
|
||||||
|
Loading…
Reference in New Issue
Block a user