mirror of
https://github.com/magefree/mage.git
synced 2026-01-24 12:19:59 -08:00
(refactor) break out assignment into its own package
This commit is contained in:
parent
675639013a
commit
bac4e7b507
26 changed files with 30 additions and 34 deletions
|
|
@ -1,4 +1,4 @@
|
|||
package mage.abilities.dynamicvalue;
|
||||
package mage.abilities.assignment;
|
||||
|
||||
import mage.cards.Card;
|
||||
import mage.cards.Cards;
|
||||
|
|
@ -1,6 +1,6 @@
|
|||
package mage.abilities.dynamicvalue.common;
|
||||
package mage.abilities.assignment.common;
|
||||
|
||||
import mage.abilities.dynamicvalue.RoleAssignment;
|
||||
import mage.abilities.assignment.RoleAssignment;
|
||||
import mage.cards.Card;
|
||||
import mage.constants.CardType;
|
||||
import mage.game.Game;
|
||||
|
|
@ -1,6 +1,6 @@
|
|||
package mage.abilities.dynamicvalue.common;
|
||||
package mage.abilities.assignment.common;
|
||||
|
||||
import mage.abilities.dynamicvalue.RoleAssignment;
|
||||
import mage.abilities.assignment.RoleAssignment;
|
||||
import mage.cards.Card;
|
||||
import mage.game.Game;
|
||||
|
||||
|
|
@ -1,6 +1,6 @@
|
|||
package mage.abilities.dynamicvalue.common;
|
||||
package mage.abilities.assignment.common;
|
||||
|
||||
import mage.abilities.dynamicvalue.RoleAssignment;
|
||||
import mage.abilities.assignment.RoleAssignment;
|
||||
import mage.cards.Card;
|
||||
import mage.filter.predicate.Predicate;
|
||||
import mage.game.Game;
|
||||
|
|
@ -1,6 +1,6 @@
|
|||
package mage.abilities.dynamicvalue.common;
|
||||
package mage.abilities.assignment.common;
|
||||
|
||||
import mage.abilities.dynamicvalue.RoleAssignment;
|
||||
import mage.abilities.assignment.RoleAssignment;
|
||||
import mage.cards.Card;
|
||||
import mage.constants.SubType;
|
||||
import mage.game.Game;
|
||||
|
|
@ -1,6 +1,7 @@
|
|||
package mage.abilities.dynamicvalue.common;
|
||||
|
||||
import mage.abilities.Ability;
|
||||
import mage.abilities.assignment.common.SubTypeAssignment;
|
||||
import mage.abilities.dynamicvalue.DynamicValue;
|
||||
import mage.abilities.effects.Effect;
|
||||
import mage.cards.Cards;
|
||||
|
|
|
|||
|
|
@ -1,7 +1,7 @@
|
|||
package mage.game.command.dungeons;
|
||||
|
||||
import mage.abilities.Ability;
|
||||
import mage.abilities.dynamicvalue.common.CardTypeAssignment;
|
||||
import mage.abilities.assignment.common.CardTypeAssignment;
|
||||
import mage.abilities.effects.OneShotEffect;
|
||||
import mage.abilities.effects.common.CreateTokenEffect;
|
||||
import mage.abilities.effects.common.LoseLifeAllPlayersEffect;
|
||||
|
|
@ -20,7 +20,6 @@ import mage.game.permanent.Permanent;
|
|||
import mage.game.permanent.token.TheAtropalToken;
|
||||
import mage.players.Player;
|
||||
import mage.target.TargetPermanent;
|
||||
import mage.target.common.TargetControlledPermanent;
|
||||
import mage.target.common.TargetDiscard;
|
||||
import mage.target.common.TargetSacrifice;
|
||||
|
||||
|
|
|
|||
|
|
@ -1,7 +1,7 @@
|
|||
package mage.target.common;
|
||||
|
||||
import mage.abilities.Ability;
|
||||
import mage.abilities.dynamicvalue.common.PredicateCardAssignment;
|
||||
import mage.abilities.assignment.common.PredicateCardAssignment;
|
||||
import mage.cards.Card;
|
||||
import mage.cards.Cards;
|
||||
import mage.cards.CardsImpl;
|
||||
|
|
|
|||
|
|
@ -1,7 +1,7 @@
|
|||
package mage.target.common;
|
||||
|
||||
import mage.abilities.Ability;
|
||||
import mage.abilities.dynamicvalue.common.PredicateCardAssignment;
|
||||
import mage.abilities.assignment.common.PredicateCardAssignment;
|
||||
import mage.cards.Card;
|
||||
import mage.cards.Cards;
|
||||
import mage.cards.CardsImpl;
|
||||
|
|
|
|||
|
|
@ -2,7 +2,7 @@ package mage.target.common;
|
|||
|
||||
import mage.ObjectColor;
|
||||
import mage.abilities.Ability;
|
||||
import mage.abilities.dynamicvalue.common.ColorAssignment;
|
||||
import mage.abilities.assignment.common.ColorAssignment;
|
||||
import mage.cards.Cards;
|
||||
import mage.cards.CardsImpl;
|
||||
import mage.filter.common.FilterControlledCreaturePermanent;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue