Remove unused imports

This commit is contained in:
AJ Fontaine 2025-06-03 18:49:29 -04:00
parent 309f27f337
commit e85a03c293
3 changed files with 1 additions and 4 deletions

View File

@ -78,7 +78,7 @@ import {
import type { BattlerIndex } from "../../battle";
import { BattleType } from "#enums/battle-type";
import { TerrainType } from "../terrain";
import { ModifierPoolType, modifierTypes } from "#app/modifier/modifier-type";
import { ModifierPoolType } from "#app/modifier/modifier-type";
import { Command } from "../../ui/command-ui-handler";
import i18next from "i18next";
import type { Localizable } from "#app/interfaces/locales";

View File

@ -33,7 +33,6 @@ import { VictoryPhase } from "./victory-phase";
import { isNullOrUndefined } from "#app/utils/common";
import { FRIENDSHIP_LOSS_FROM_FAINT } from "#app/data/balance/starters";
import { BattlerTagType } from "#enums/battler-tag-type";
import { Species } from "#enums/species";
export class FaintPhase extends PokemonPhase {
/**

View File

@ -78,8 +78,6 @@ import type Move from "#app/data/moves/move";
import { isFieldTargeted } from "#app/data/moves/move-utils";
import { FaintPhase } from "./faint-phase";
import { DamageAchv } from "#app/system/achv";
import { Species } from "#enums/species";
import { modifierTypes } from "#app/modifier/modifier-type";
type HitCheckEntry = [HitCheckResult, TypeDamageMultiplier];