import updates

This commit is contained in:
Matthew Olker 2024-06-13 11:05:57 -04:00
parent 19230224ef
commit 4a67275336
2 changed files with 10 additions and 10 deletions

View File

@ -2,16 +2,16 @@ import Phaser from "phaser";
import { afterEach, beforeAll, beforeEach, describe, expect, test, vi } from "vitest"; import { afterEach, beforeAll, beforeEach, describe, expect, test, vi } from "vitest";
import GameManager from "../utils/gameManager"; import GameManager from "../utils/gameManager";
import * as Overrides from "#app/overrides"; import * as Overrides from "#app/overrides";
import { Species } from "#app/data/enums/species.js"; import { Species } from "#enums";
import { Abilities } from "#app/data/enums/abilities.js"; import { Abilities } from "#enums";
import { Moves } from "#app/data/enums/moves.js"; import { Moves } from "#enums";
import { getMovePosition } from "../utils/gameManagerUtils"; import { getMovePosition } from "../utils/gameManagerUtils";
import { MoveEffectPhase, TurnEndPhase } from "#app/phases.js"; import { MoveEffectPhase, TurnEndPhase } from "#app/phases.js";
import { allMoves } from "#app/data/move.js"; import { allMoves } from "#app/data/move.js";
import { BattlerTagType } from "#app/data/enums/battler-tag-type.js"; import { BattlerTagType } from "#enums";
import { Weather, WeatherType } from "#app/data/weather.js"; import { Weather, WeatherType } from "#app/data/weather.js";
import { Type } from "#app/data/type.js"; import { Type } from "#app/data/type.js";
import { Biome } from "#app/data/enums/biome.js"; import { Biome } from "#enums";
import { PlayerPokemon } from "#app/field/pokemon.js"; import { PlayerPokemon } from "#app/field/pokemon.js";
const TIMEOUT = 20 * 1000; const TIMEOUT = 20 * 1000;

View File

@ -2,16 +2,16 @@ import Phaser from "phaser";
import { afterEach, beforeAll, beforeEach, describe, expect, test, vi } from "vitest"; import { afterEach, beforeAll, beforeEach, describe, expect, test, vi } from "vitest";
import GameManager from "../utils/gameManager"; import GameManager from "../utils/gameManager";
import * as Overrides from "#app/overrides"; import * as Overrides from "#app/overrides";
import { Species } from "#app/data/enums/species.js"; import { Species } from "#enums";
import { Abilities } from "#app/data/enums/abilities.js"; import { Abilities } from "#enums";
import { Moves } from "#app/data/enums/moves.js"; import { Moves } from "#enums";
import { getMovePosition } from "../utils/gameManagerUtils"; import { getMovePosition } from "../utils/gameManagerUtils";
import { MoveEffectPhase, TurnEndPhase } from "#app/phases.js"; import { MoveEffectPhase, TurnEndPhase } from "#app/phases.js";
import { allMoves } from "#app/data/move.js"; import { allMoves } from "#app/data/move.js";
import { BattlerTagType } from "#app/data/enums/battler-tag-type.js"; import { BattlerTagType } from "#enums";
import { Weather, WeatherType } from "#app/data/weather.js"; import { Weather, WeatherType } from "#app/data/weather.js";
import { Type } from "#app/data/type.js"; import { Type } from "#app/data/type.js";
import { Biome } from "#app/data/enums/biome.js"; import { Biome } from "#enums";
import { PlayerPokemon } from "#app/field/pokemon.js"; import { PlayerPokemon } from "#app/field/pokemon.js";
const TIMEOUT = 20 * 1000; const TIMEOUT = 20 * 1000;