refactor: move class to correct package

This commit is contained in:
xenohedron 2025-05-31 15:47:16 -04:00
parent fdb8fe83af
commit 00084bfd7d
6 changed files with 6 additions and 15 deletions

View file

@ -7,7 +7,7 @@ import mage.cards.CardImpl;
import mage.cards.CardSetInfo;
import mage.constants.CardType;
import mage.filter.FilterCard;
import mage.filter.predicate.card.ManaValueLessThanControlledLandCountPredicate;
import mage.filter.predicate.mageobject.ManaValueLessThanControlledLandCountPredicate;
import mage.target.common.TargetCardInLibrary;
/**

View file

@ -6,16 +6,12 @@ import mage.abilities.Ability;
import mage.abilities.DelayedTriggeredAbility;
import mage.abilities.common.EntersBattlefieldTriggeredAbility;
import mage.abilities.common.delayed.AtTheBeginOfNextEndStepDelayedTriggeredAbility;
import mage.abilities.effects.ContinuousEffect;
import mage.abilities.effects.OneShotEffect;
import mage.abilities.effects.common.ExileTargetEffect;
import mage.abilities.effects.common.ReturnFromGraveyardToBattlefieldWithCounterTargetEffect;
import mage.abilities.effects.common.SacrificeTargetEffect;
import mage.abilities.effects.common.continuous.GainAbilityTargetEffect;
import mage.abilities.keyword.HasteAbility;
import mage.cards.Card;
import mage.constants.ComparisonType;
import mage.constants.Duration;
import mage.constants.Outcome;
import mage.constants.SubType;
import mage.abilities.keyword.MenaceAbility;
@ -24,16 +20,11 @@ import mage.cards.CardImpl;
import mage.cards.CardSetInfo;
import mage.constants.CardType;
import mage.constants.TargetController;
import mage.constants.Zone;
import mage.counters.CounterType;
import mage.filter.Filter;
import mage.filter.StaticFilters;
import mage.filter.common.FilterCreatureCard;
import mage.filter.predicate.card.ManaValueLessThanControlledLandCountPredicate;
import mage.filter.predicate.mageobject.ManaValuePredicate;
import mage.game.Game;
import mage.game.permanent.Permanent;
import mage.players.Player;
import mage.target.common.TargetCardInGraveyard;
import mage.target.targetpointer.FixedTarget;
@ -113,4 +104,4 @@ class CoalstokeGearhulkEffect extends OneShotEffect {
game.addDelayedTriggeredAbility(delayedAbility, source);
return true;
}
}
}

View file

@ -10,7 +10,7 @@ import mage.constants.CardType;
import mage.constants.Duration;
import mage.constants.Outcome;
import mage.filter.FilterCard;
import mage.filter.predicate.card.ManaValueLessThanControlledLandCountPredicate;
import mage.filter.predicate.mageobject.ManaValueLessThanControlledLandCountPredicate;
import mage.game.Game;
import mage.game.events.GameEvent;
import mage.watchers.common.CastSpellLastTurnWatcher;

View file

@ -13,7 +13,7 @@ import mage.cards.CardSetInfo;
import mage.constants.*;
import mage.filter.FilterCard;
import mage.filter.common.FilterCreatureCard;
import mage.filter.predicate.card.ManaValueLessThanControlledLandCountPredicate;
import mage.filter.predicate.mageobject.ManaValueLessThanControlledLandCountPredicate;
import java.util.UUID;

View file

@ -15,7 +15,7 @@ import mage.counters.CounterType;
import mage.counters.Counters;
import mage.filter.StaticFilters;
import mage.filter.common.FilterCreatureCard;
import mage.filter.predicate.card.ManaValueLessThanControlledLandCountPredicate;
import mage.filter.predicate.mageobject.ManaValueLessThanControlledLandCountPredicate;
import mage.game.Game;
import mage.game.permanent.token.custom.CreatureToken;
import mage.players.Player;

View file

@ -1,4 +1,4 @@
package mage.filter.predicate.card;
package mage.filter.predicate.mageobject;
import mage.MageObject;
import mage.filter.StaticFilters;