From bb2d551d0e96293f865c4580717a685d619909c7 Mon Sep 17 00:00:00 2001 From: Jeff Wadsworth Date: Fri, 17 Jun 2022 11:23:13 -0500 Subject: [PATCH] - Fixed #9092 --- Mage.Sets/src/mage/cards/m/MechtitanCore.java | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/Mage.Sets/src/mage/cards/m/MechtitanCore.java b/Mage.Sets/src/mage/cards/m/MechtitanCore.java index f3d1d3bac9b..3121d94421c 100644 --- a/Mage.Sets/src/mage/cards/m/MechtitanCore.java +++ b/Mage.Sets/src/mage/cards/m/MechtitanCore.java @@ -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"; } }