mirror of
https://github.com/pagefaultgames/pokerogue.git
synced 2025-06-28 12:32:44 +02:00
* Move game-mode to its own file Reduces circular imports to 325 * Move battler-index to own file Reduces circular deps to 314 * Move trainer-variant to own file Reduces circ deps to 313 * Move enums in pokemon to their own file * Move arena-tag-type to its own file * Move pokemon-moves to its own file * Move command to own file * Move learnMoveType to own file * Move form change item to own file * Move battlerTagLapseType to own file * Move anim enums to own shared file * Move enums out of challenges * Move species form change triggers to own file Reduces circ imports to 291 * Update test importing pokemon move * Replace move attribute imports with string names * Untangle circular deps from game data * Fix missing string call in switch summon phase * Apply kev's suggestions from code review Co-authored-by: NightKev <34855794+DayKev@users.noreply.github.com> * Ensure ChargeMove's is method calls super * Use InstanceType for proper narrowing * Apply kev's suggestions from code review Co-authored-by: NightKev <34855794+DayKev@users.noreply.github.com> --------- Co-authored-by: NightKev <34855794+DayKev@users.noreply.github.com>
120 lines
1.8 KiB
TypeScript
120 lines
1.8 KiB
TypeScript
export enum FormChangeItem {
|
|
NONE,
|
|
|
|
ABOMASITE,
|
|
ABSOLITE,
|
|
AERODACTYLITE,
|
|
AGGRONITE,
|
|
ALAKAZITE,
|
|
ALTARIANITE,
|
|
AMPHAROSITE,
|
|
AUDINITE,
|
|
BANETTITE,
|
|
BEEDRILLITE,
|
|
BLASTOISINITE,
|
|
BLAZIKENITE,
|
|
CAMERUPTITE,
|
|
CHARIZARDITE_X,
|
|
CHARIZARDITE_Y,
|
|
DIANCITE,
|
|
GALLADITE,
|
|
GARCHOMPITE,
|
|
GARDEVOIRITE,
|
|
GENGARITE,
|
|
GLALITITE,
|
|
GYARADOSITE,
|
|
HERACRONITE,
|
|
HOUNDOOMINITE,
|
|
KANGASKHANITE,
|
|
LATIASITE,
|
|
LATIOSITE,
|
|
LOPUNNITE,
|
|
LUCARIONITE,
|
|
MANECTITE,
|
|
MAWILITE,
|
|
MEDICHAMITE,
|
|
METAGROSSITE,
|
|
MEWTWONITE_X,
|
|
MEWTWONITE_Y,
|
|
PIDGEOTITE,
|
|
PINSIRITE,
|
|
RAYQUAZITE,
|
|
SABLENITE,
|
|
SALAMENCITE,
|
|
SCEPTILITE,
|
|
SCIZORITE,
|
|
SHARPEDONITE,
|
|
SLOWBRONITE,
|
|
STEELIXITE,
|
|
SWAMPERTITE,
|
|
TYRANITARITE,
|
|
VENUSAURITE,
|
|
|
|
BLUE_ORB = 50,
|
|
RED_ORB,
|
|
ADAMANT_CRYSTAL,
|
|
LUSTROUS_GLOBE,
|
|
GRISEOUS_CORE,
|
|
REVEAL_GLASS,
|
|
MAX_MUSHROOMS,
|
|
DARK_STONE,
|
|
LIGHT_STONE,
|
|
PRISON_BOTTLE,
|
|
RUSTED_SWORD,
|
|
RUSTED_SHIELD,
|
|
ICY_REINS_OF_UNITY,
|
|
SHADOW_REINS_OF_UNITY,
|
|
ULTRANECROZIUM_Z,
|
|
|
|
SHARP_METEORITE = 100,
|
|
HARD_METEORITE,
|
|
SMOOTH_METEORITE,
|
|
GRACIDEA,
|
|
SHOCK_DRIVE,
|
|
BURN_DRIVE,
|
|
CHILL_DRIVE,
|
|
DOUSE_DRIVE,
|
|
N_SOLARIZER,
|
|
N_LUNARIZER,
|
|
WELLSPRING_MASK,
|
|
HEARTHFLAME_MASK,
|
|
CORNERSTONE_MASK,
|
|
FIST_PLATE,
|
|
SKY_PLATE,
|
|
TOXIC_PLATE,
|
|
EARTH_PLATE,
|
|
STONE_PLATE,
|
|
INSECT_PLATE,
|
|
SPOOKY_PLATE,
|
|
IRON_PLATE,
|
|
FLAME_PLATE,
|
|
SPLASH_PLATE,
|
|
MEADOW_PLATE,
|
|
ZAP_PLATE,
|
|
MIND_PLATE,
|
|
ICICLE_PLATE,
|
|
DRACO_PLATE,
|
|
DREAD_PLATE,
|
|
PIXIE_PLATE,
|
|
BLANK_PLATE,// TODO: Find a potential use for this
|
|
LEGEND_PLATE,// TODO: Find a potential use for this
|
|
FIGHTING_MEMORY,
|
|
FLYING_MEMORY,
|
|
POISON_MEMORY,
|
|
GROUND_MEMORY,
|
|
ROCK_MEMORY,
|
|
BUG_MEMORY,
|
|
GHOST_MEMORY,
|
|
STEEL_MEMORY,
|
|
FIRE_MEMORY,
|
|
WATER_MEMORY,
|
|
GRASS_MEMORY,
|
|
ELECTRIC_MEMORY,
|
|
PSYCHIC_MEMORY,
|
|
ICE_MEMORY,
|
|
DRAGON_MEMORY,
|
|
DARK_MEMORY,
|
|
FAIRY_MEMORY,
|
|
NORMAL_MEMORY
|
|
}
|