mirror of
https://github.com/correl/mage.git
synced 2025-01-12 19:25:44 +00:00
Aminatou, the Fate Shifter minor fix - can be commander and author info
This commit is contained in:
parent
0fa4c2d324
commit
308a55cf9a
1 changed files with 8 additions and 0 deletions
|
@ -2,6 +2,7 @@ package mage.cards.a;
|
|||
|
||||
import mage.abilities.Ability;
|
||||
import mage.abilities.LoyaltyAbility;
|
||||
import mage.abilities.common.CanBeYourCommanderAbility;
|
||||
import mage.abilities.common.PlanswalkerEntersWithLoyalityCountersAbility;
|
||||
import mage.abilities.effects.ContinuousEffect;
|
||||
import mage.abilities.effects.OneShotEffect;
|
||||
|
@ -29,6 +30,10 @@ import mage.target.targetpointer.FixedTarget;
|
|||
|
||||
import java.util.UUID;
|
||||
|
||||
/**
|
||||
*
|
||||
* @author Colin Redman
|
||||
*/
|
||||
public class AminatouTheFateShifter extends CardImpl {
|
||||
|
||||
private static final FilterPermanent filter = new FilterPermanent("permanent you own");
|
||||
|
@ -59,6 +64,9 @@ public class AminatouTheFateShifter extends CardImpl {
|
|||
// Fateshifter controlled by the next player in the chosen direction.
|
||||
ability = new LoyaltyAbility(new AminatouUltimateEffect(), -6);
|
||||
this.addAbility(ability);
|
||||
|
||||
// Aminatou, the Fateshifter can be your commander.
|
||||
this.addAbility(CanBeYourCommanderAbility.getInstance());
|
||||
}
|
||||
public AminatouTheFateShifter(final AminatouTheFateShifter card) {
|
||||
super(card);
|
||||
|
|
Loading…
Reference in a new issue