Fixing various imports

This commit is contained in:
Wlowscha 2025-05-31 22:37:39 +02:00
parent fc790b77c5
commit 318f326e3b
No known key found for this signature in database
GPG Key ID: 3C8F1AD330565D04
3 changed files with 4 additions and 3 deletions

View File

@ -122,9 +122,9 @@ import { MoveFlags } from "#enums/MoveFlags";
import { MoveEffectTrigger } from "#enums/MoveEffectTrigger";
import { MultiHitType } from "#enums/MultiHitType";
import { invalidAssistMoves, invalidCopycatMoves, invalidMetronomeMoves, invalidMirrorMoveMoves, invalidSleepTalkMoves } from "./invalid-moves";
import { applyAttackTypeBoosterHeldItem } from "#app/modifier/all-held-items";
import { TrainerVariant } from "#app/field/trainer";
import { SelectBiomePhase } from "#app/phases/select-biome-phase";
import { applyAttackTypeBoosterHeldItem } from "#app/modifier/held-items/attack-type-booster";
type MoveConditionFunc = (user: Pokemon, target: Pokemon, move: Move) => boolean;
type UserMoveConditionFunc = (user: Pokemon, move: Move) => boolean;

View File

@ -130,8 +130,9 @@ import { StatusEffect } from "#enums/status-effect";
import i18next from "i18next";
import { timedEventManager } from "#app/global-event-manager";
import { HeldItems } from "#enums/held-items";
import { allHeldItems, attackTypeToHeldItem } from "./all-held-items";
import { allHeldItems } from "./all-held-items";
import { TYPE_BOOST_ITEM_BOOST_PERCENT } from "#app/constants";
import { attackTypeToHeldItem } from "./held-items/attack-type-booster";
const outputModifierData = false;
const useMaxWeightForOutput = false;

View File

@ -15,7 +15,7 @@ import i18next from "i18next";
import { FieldPhase } from "./field-phase";
import { PokemonHealPhase } from "./pokemon-heal-phase";
import { globalScene } from "#app/global-scene";
import { applyTurnHealHeldItem } from "#app/modifier/all-held-items";
import { applyTurnHealHeldItem } from "#app/modifier/held-items/turn-heal";
export class TurnEndPhase extends FieldPhase {
start() {