mirror of
https://github.com/correl/mage.git
synced 2025-01-12 03:00:13 +00:00
- Fixed text on Alexi, Zephyr Mage.
This commit is contained in:
parent
85e90e8edf
commit
82032a686d
1 changed files with 4 additions and 1 deletions
|
@ -7,6 +7,7 @@ import mage.abilities.common.SimpleActivatedAbility;
|
|||
import mage.abilities.costs.common.DiscardTargetCost;
|
||||
import mage.abilities.costs.common.TapSourceCost;
|
||||
import mage.abilities.costs.mana.ManaCostsImpl;
|
||||
import mage.abilities.effects.Effect;
|
||||
import mage.abilities.effects.common.ReturnToHandTargetEffect;
|
||||
import mage.cards.CardImpl;
|
||||
import mage.cards.CardSetInfo;
|
||||
|
@ -35,7 +36,9 @@ public final class AlexiZephyrMage extends CardImpl {
|
|||
this.toughness = new MageInt(3);
|
||||
|
||||
// {X}{U}, {tap}, Discard two cards: Return X target creatures to their owners' hands.
|
||||
Ability ability = new SimpleActivatedAbility(Zone.BATTLEFIELD, new ReturnToHandTargetEffect(), new ManaCostsImpl("{X}{U}"));
|
||||
Effect effect = new ReturnToHandTargetEffect();
|
||||
effect.setText("Return X target creatures to their owner's hands");
|
||||
Ability ability = new SimpleActivatedAbility(Zone.BATTLEFIELD, effect, new ManaCostsImpl("{X}{U}"));
|
||||
ability.addCost(new TapSourceCost());
|
||||
ability.addCost(new DiscardTargetCost(new TargetCardInHand(2, new FilterCard("two cards"))));
|
||||
ability.addTarget(new TargetPermanent(StaticFilters.FILTER_PERMANENT_CREATURES));
|
||||
|
|
Loading…
Reference in a new issue