Move LearnMoveSituation to its own file
This commit is contained in:
parent
15e535a1a0
commit
a495470aa9
|
@ -0,0 +1,8 @@
|
|||
export enum LearnMoveSituation {
|
||||
MISC,
|
||||
LEVEL_UP,
|
||||
RELEARN,
|
||||
EVOLUTION,
|
||||
EVOLUTION_FUSED, // If fusionSpecies has Evolved
|
||||
EVOLUTION_FUSED_BASE, // If fusion's base species has Evolved
|
||||
}
|
|
@ -259,15 +259,7 @@ import { MoveFlags } from "#enums/MoveFlags";
|
|||
import { timedEventManager } from "#app/global-event-manager";
|
||||
import { loadMoveAnimations } from "#app/sprites/pokemon-asset-loader";
|
||||
import { ResetStatusPhase } from "#app/phases/reset-status-phase";
|
||||
|
||||
export enum LearnMoveSituation {
|
||||
MISC,
|
||||
LEVEL_UP,
|
||||
RELEARN,
|
||||
EVOLUTION,
|
||||
EVOLUTION_FUSED, // If fusionSpecies has Evolved
|
||||
EVOLUTION_FUSED_BASE, // If fusion's base species has Evolved
|
||||
}
|
||||
import { LearnMoveSituation } from "#enums/learn-move-situation";
|
||||
|
||||
export enum FieldPosition {
|
||||
CENTER,
|
||||
|
|
|
@ -10,7 +10,7 @@ import { Mode } from "#app/ui/ui";
|
|||
import { cos, sin } from "#app/field/anims";
|
||||
import type { PlayerPokemon } from "#app/field/pokemon";
|
||||
import type Pokemon from "#app/field/pokemon";
|
||||
import { LearnMoveSituation } from "#app/field/pokemon";
|
||||
import { LearnMoveSituation } from "#enums/learn-move-situation";
|
||||
import { getTypeRgb } from "#app/data/type";
|
||||
import i18next from "i18next";
|
||||
import { getPokemonNameWithAffix } from "#app/messages";
|
||||
|
|
Loading…
Reference in New Issue