move EvolutionItem to its own file
This commit is contained in:
parent
493e92b59a
commit
c01ca92674
|
@ -15,57 +15,9 @@ import { SpeciesFormKey } from "#enums/species-form-key";
|
|||
import { speciesStarterCosts } from "./starters";
|
||||
import i18next from "i18next";
|
||||
import { SpeciesWildEvolutionDelay } from "#enums/species-wild-evolution-delay";
|
||||
import { EvolutionItem } from "#enums/evolution-item";
|
||||
|
||||
|
||||
export enum EvolutionItem {
|
||||
NONE,
|
||||
|
||||
LINKING_CORD,
|
||||
SUN_STONE,
|
||||
MOON_STONE,
|
||||
LEAF_STONE,
|
||||
FIRE_STONE,
|
||||
WATER_STONE,
|
||||
THUNDER_STONE,
|
||||
ICE_STONE,
|
||||
DUSK_STONE,
|
||||
DAWN_STONE,
|
||||
SHINY_STONE,
|
||||
CRACKED_POT,
|
||||
SWEET_APPLE,
|
||||
TART_APPLE,
|
||||
STRAWBERRY_SWEET,
|
||||
UNREMARKABLE_TEACUP,
|
||||
UPGRADE,
|
||||
DUBIOUS_DISC,
|
||||
DRAGON_SCALE,
|
||||
PRISM_SCALE,
|
||||
RAZOR_CLAW,
|
||||
RAZOR_FANG,
|
||||
REAPER_CLOTH,
|
||||
ELECTIRIZER,
|
||||
MAGMARIZER,
|
||||
PROTECTOR,
|
||||
SACHET,
|
||||
WHIPPED_DREAM,
|
||||
SYRUPY_APPLE,
|
||||
CHIPPED_POT,
|
||||
GALARICA_CUFF,
|
||||
GALARICA_WREATH,
|
||||
AUSPICIOUS_ARMOR,
|
||||
MALICIOUS_ARMOR,
|
||||
MASTERPIECE_TEACUP,
|
||||
SUN_FLUTE,
|
||||
MOON_FLUTE,
|
||||
|
||||
BLACK_AUGURITE = 51,
|
||||
PEAT_BLOCK,
|
||||
METAL_ALLOY,
|
||||
SCROLL_OF_DARKNESS,
|
||||
SCROLL_OF_WATERS,
|
||||
LEADERS_CREST
|
||||
}
|
||||
|
||||
/**
|
||||
* Pokemon Evolution tuple type consisting of:
|
||||
* @property 0 {@linkcode Species} The species of the Pokemon.
|
||||
|
|
|
@ -1,6 +1,7 @@
|
|||
import { globalScene } from "#app/global-scene";
|
||||
import { allAbilities } from "#app/data/ability";
|
||||
import { EvolutionItem, pokemonEvolutions } from "#app/data/balance/pokemon-evolutions";
|
||||
import { pokemonEvolutions } from "#app/data/balance/pokemon-evolutions";
|
||||
import { EvolutionItem } from "#enums/evolution-item";
|
||||
import { Nature } from "#enums/nature";
|
||||
import { FormChangeItem, pokemonFormChanges, SpeciesFormChangeItemTrigger } from "#app/data/pokemon-forms";
|
||||
import { StatusEffect } from "#enums/status-effect";
|
||||
|
|
|
@ -0,0 +1,48 @@
|
|||
export enum EvolutionItem {
|
||||
NONE,
|
||||
|
||||
LINKING_CORD,
|
||||
SUN_STONE,
|
||||
MOON_STONE,
|
||||
LEAF_STONE,
|
||||
FIRE_STONE,
|
||||
WATER_STONE,
|
||||
THUNDER_STONE,
|
||||
ICE_STONE,
|
||||
DUSK_STONE,
|
||||
DAWN_STONE,
|
||||
SHINY_STONE,
|
||||
CRACKED_POT,
|
||||
SWEET_APPLE,
|
||||
TART_APPLE,
|
||||
STRAWBERRY_SWEET,
|
||||
UNREMARKABLE_TEACUP,
|
||||
UPGRADE,
|
||||
DUBIOUS_DISC,
|
||||
DRAGON_SCALE,
|
||||
PRISM_SCALE,
|
||||
RAZOR_CLAW,
|
||||
RAZOR_FANG,
|
||||
REAPER_CLOTH,
|
||||
ELECTIRIZER,
|
||||
MAGMARIZER,
|
||||
PROTECTOR,
|
||||
SACHET,
|
||||
WHIPPED_DREAM,
|
||||
SYRUPY_APPLE,
|
||||
CHIPPED_POT,
|
||||
GALARICA_CUFF,
|
||||
GALARICA_WREATH,
|
||||
AUSPICIOUS_ARMOR,
|
||||
MALICIOUS_ARMOR,
|
||||
MASTERPIECE_TEACUP,
|
||||
SUN_FLUTE,
|
||||
MOON_FLUTE,
|
||||
|
||||
BLACK_AUGURITE = 51,
|
||||
PEAT_BLOCK,
|
||||
METAL_ALLOY,
|
||||
SCROLL_OF_DARKNESS,
|
||||
SCROLL_OF_WATERS,
|
||||
LEADERS_CREST
|
||||
}
|
|
@ -1,4 +1,3 @@
|
|||
|
||||
export enum FieldPosition {
|
||||
CENTER,
|
||||
LEFT,
|
||||
|
|
|
@ -1,5 +1,3 @@
|
|||
|
||||
|
||||
export enum SpeciesWildEvolutionDelay {
|
||||
NONE,
|
||||
SHORT,
|
||||
|
|
|
@ -1,5 +1,6 @@
|
|||
import { globalScene } from "#app/global-scene";
|
||||
import { EvolutionItem, pokemonEvolutions } from "#app/data/balance/pokemon-evolutions";
|
||||
import { pokemonEvolutions } from "#app/data/balance/pokemon-evolutions";
|
||||
import { EvolutionItem } from "#enums/evolution-item";
|
||||
import { tmPoolTiers, tmSpecies } from "#app/data/balance/tms";
|
||||
import { getBerryEffectDescription, getBerryName } from "#app/data/berry";
|
||||
import { AttackMove } from "#app/data/moves/move";
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
import { type PokeballCounts } from "#app/battle-scene";
|
||||
import { EvolutionItem } from "#app/data/balance/pokemon-evolutions";
|
||||
import { EvolutionItem } from "#enums/evolution-item";
|
||||
import { Gender } from "#app/data/gender";
|
||||
import { FormChangeItem } from "#app/data/pokemon-forms";
|
||||
import { Variant } from "#app/sprites/variant";
|
||||
|
|
Loading…
Reference in New Issue