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
677f15c64b
commit
1decb87592
@ -9444,7 +9444,6 @@ export function initMoves() {
|
|||||||
return userBerries.length > 0;
|
return userBerries.length > 0;
|
||||||
})
|
})
|
||||||
.makesContact(false),
|
.makesContact(false),
|
||||||
//.unimplemented(),
|
|
||||||
new AttackMove(Moves.FEINT, Type.NORMAL, MoveCategory.PHYSICAL, 30, 100, 10, -1, 2, 4)
|
new AttackMove(Moves.FEINT, Type.NORMAL, MoveCategory.PHYSICAL, 30, 100, 10, -1, 2, 4)
|
||||||
.attr(RemoveBattlerTagAttr, [ BattlerTagType.PROTECTED ])
|
.attr(RemoveBattlerTagAttr, [ BattlerTagType.PROTECTED ])
|
||||||
.attr(RemoveArenaTagsAttr, [ ArenaTagType.QUICK_GUARD, ArenaTagType.WIDE_GUARD, ArenaTagType.MAT_BLOCK, ArenaTagType.CRAFTY_SHIELD ], false)
|
.attr(RemoveArenaTagsAttr, [ ArenaTagType.QUICK_GUARD, ArenaTagType.WIDE_GUARD, ArenaTagType.MAT_BLOCK, ArenaTagType.CRAFTY_SHIELD ], false)
|
||||||
|
@ -16,6 +16,7 @@ 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
|
||||||
@ -32,7 +33,14 @@ import { WeatherType } from "#enums/weather-type";
|
|||||||
* }
|
* }
|
||||||
* ```
|
* ```
|
||||||
*/
|
*/
|
||||||
const overrides = {} satisfies Partial<InstanceType<typeof DefaultOverrides>>;
|
const overrides = {
|
||||||
|
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