mirror of
https://github.com/correl/mage.git
synced 2025-01-12 19:25:44 +00:00
- Fixed #9092
This commit is contained in:
parent
e1cf2fd7e0
commit
bb2d551d0e
1 changed files with 7 additions and 7 deletions
|
@ -60,7 +60,7 @@ public final class MechtitanCore extends CardImpl {
|
|||
// {5}, Exile Mechtitan Core and four other artifact creatures and/or Vehicles you control: Create Mechtitan, a legendary 10/10 Construct artifact creature token with flying, vigilance, trample, lifelink, and haste that's all colors. When that token leaves the battlefield, return all cards exiled with Mechtitan Core except Mechtitan Core to the battlefield tapped under their owners' control.
|
||||
Ability ability = new SimpleActivatedAbility(new MechtitanCoreTokenEffect(), new GenericManaCost(5));
|
||||
ability.addCost(new CompositeCost(
|
||||
new ExileSourceCost(), new ExileTargetCost(new TargetControlledPermanent(4, filter)),
|
||||
new ExileSourceCost(), new ExileTargetCost(new TargetControlledPermanent(4, 4, filter, true)),
|
||||
"exile {this} and four other artifact creatures and/or Vehicles you control"));
|
||||
this.addAbility(ability);
|
||||
|
||||
|
@ -82,10 +82,10 @@ class MechtitanCoreTokenEffect extends OneShotEffect {
|
|||
|
||||
MechtitanCoreTokenEffect() {
|
||||
super(Outcome.Benefit);
|
||||
staticText = "create Mechtitan, a legendary 10/10 Construct artifact creature token with flying, " +
|
||||
"vigilance, trample, lifelink, and haste that's all colors. " +
|
||||
"When that token leaves the battlefield, return all cards exiled with {this} except " +
|
||||
"{this} to the battlefield tapped under their owners' control";
|
||||
staticText = "create Mechtitan, a legendary 10/10 Construct artifact creature token with flying, "
|
||||
+ "vigilance, trample, lifelink, and haste that's all colors. "
|
||||
+ "When that token leaves the battlefield, return all cards exiled with {this} except "
|
||||
+ "{this} to the battlefield tapped under their owners' control";
|
||||
}
|
||||
|
||||
private MechtitanCoreTokenEffect(final MechtitanCoreTokenEffect effect) {
|
||||
|
@ -147,8 +147,8 @@ class MechtitanCoreTriggeredAbility extends DelayedTriggeredAbility {
|
|||
|
||||
@Override
|
||||
public String getRule() {
|
||||
return "When that token leaves the battlefield, return all cards exiled with {this} except " +
|
||||
"{this} to the battlefield tapped under their owners' control";
|
||||
return "When that token leaves the battlefield, return all cards exiled with {this} except "
|
||||
+ "{this} to the battlefield tapped under their owners' control";
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue