mirror of
https://github.com/pagefaultgames/pokerogue.git
synced 2025-07-06 08:22:16 +02:00
removed .unimplemented from move
This commit is contained in:
parent
1decb87592
commit
b2ca37e33d
@ -16,7 +16,6 @@ import { StatusEffect } from "#enums/status-effect";
|
|||||||
import { TimeOfDay } from "#enums/time-of-day";
|
import { TimeOfDay } from "#enums/time-of-day";
|
||||||
import { VariantTier } from "#enums/variant-tier";
|
import { VariantTier } from "#enums/variant-tier";
|
||||||
import { WeatherType } from "#enums/weather-type";
|
import { WeatherType } from "#enums/weather-type";
|
||||||
import { BerryType } from "#enums/berry-type";
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Overrides that are using when testing different in game situations
|
* Overrides that are using when testing different in game situations
|
||||||
@ -33,14 +32,7 @@ import { BerryType } from "#enums/berry-type";
|
|||||||
* }
|
* }
|
||||||
* ```
|
* ```
|
||||||
*/
|
*/
|
||||||
const overrides = {
|
const overrides = {} satisfies Partial<InstanceType<typeof DefaultOverrides>>;
|
||||||
OPP_LEVEL_OVERRIDE: 100,
|
|
||||||
OPP_SPECIES_OVERRIDE: Species.MAGIKARP,
|
|
||||||
OPP_MOVESET_OVERRIDE: [ Moves.ELECTRIFY, Moves.SPLASH ],
|
|
||||||
STARTING_LEVEL_OVERRIDE: 1,
|
|
||||||
MOVESET_OVERRIDE: [ Moves.NATURAL_GIFT, Moves.ELECTRIFY ],
|
|
||||||
STARTING_HELD_ITEMS_OVERRIDE: [{ name: "BERRY", type: BerryType.SITRUS, count: 1 }]
|
|
||||||
} 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