mirror of
https://github.com/pagefaultgames/pokerogue.git
synced 2025-07-05 16:02:20 +02:00
Create battle-info directory and move battle-info.ts to it
This commit is contained in:
parent
eb0937a09b
commit
596f9b89ea
@ -5,7 +5,7 @@ import { globalScene } from "#app/global-scene";
|
|||||||
import type { Variant } from "#app/sprites/variant";
|
import type { Variant } from "#app/sprites/variant";
|
||||||
import { populateVariantColors, variantColorCache } from "#app/sprites/variant";
|
import { populateVariantColors, variantColorCache } from "#app/sprites/variant";
|
||||||
import { variantData } from "#app/sprites/variant";
|
import { variantData } from "#app/sprites/variant";
|
||||||
import BattleInfo, { PlayerBattleInfo, EnemyBattleInfo } from "#app/ui/battle-info";
|
import BattleInfo, { PlayerBattleInfo, EnemyBattleInfo } from "#app/ui/battle-info/battle-info";
|
||||||
import type Move from "#app/data/moves/move";
|
import type Move from "#app/data/moves/move";
|
||||||
import {
|
import {
|
||||||
HighCritAttr,
|
HighCritAttr,
|
||||||
|
@ -1,16 +1,16 @@
|
|||||||
import type { EnemyPokemon, default as Pokemon } from "../field/pokemon";
|
import type { EnemyPokemon, default as Pokemon } from "../../field/pokemon";
|
||||||
import { getLevelTotalExp, getLevelRelExp } from "../data/exp";
|
import { getLevelTotalExp, getLevelRelExp } from "../../data/exp";
|
||||||
import { getLocalizedSpriteKey, fixedInt } from "#app/utils/common";
|
import { getLocalizedSpriteKey, fixedInt } from "#app/utils/common";
|
||||||
import { addTextObject, TextStyle } from "./text";
|
import { addTextObject, TextStyle } from "../text";
|
||||||
import { getGenderSymbol, getGenderColor, Gender } from "../data/gender";
|
import { getGenderSymbol, getGenderColor, Gender } from "../../data/gender";
|
||||||
import { StatusEffect } from "#enums/status-effect";
|
import { StatusEffect } from "#enums/status-effect";
|
||||||
import { globalScene } from "#app/global-scene";
|
import { globalScene } from "#app/global-scene";
|
||||||
import { getTypeRgb } from "#app/data/type";
|
import { getTypeRgb } from "#app/data/type";
|
||||||
import { PokemonType } from "#enums/pokemon-type";
|
import { PokemonType } from "#enums/pokemon-type";
|
||||||
import { getVariantTint } from "#app/sprites/variant";
|
import { getVariantTint } from "#app/sprites/variant";
|
||||||
import { Stat } from "#enums/stat";
|
import { Stat } from "#enums/stat";
|
||||||
import BattleFlyout from "./battle-flyout";
|
import BattleFlyout from "../battle-flyout";
|
||||||
import { WindowVariant, addWindow } from "./ui-theme";
|
import { WindowVariant, addWindow } from "../ui-theme";
|
||||||
import i18next from "i18next";
|
import i18next from "i18next";
|
||||||
import { ExpGainsSpeed } from "#app/enums/exp-gains-speed";
|
import { ExpGainsSpeed } from "#app/enums/exp-gains-speed";
|
||||||
|
|
Loading…
Reference in New Issue
Block a user