diff --git a/Mage.Sets/src/mage/cards/r/RebuildTheCity.java b/Mage.Sets/src/mage/cards/r/RebuildTheCity.java new file mode 100644 index 00000000000..950ac0d0511 --- /dev/null +++ b/Mage.Sets/src/mage/cards/r/RebuildTheCity.java @@ -0,0 +1,40 @@ +package mage.cards.r; + +import mage.abilities.effects.common.CreateTokenCopyTargetEffect; +import mage.abilities.keyword.MenaceAbility; +import mage.abilities.keyword.VigilanceAbility; +import mage.cards.CardImpl; +import mage.cards.CardSetInfo; +import mage.constants.CardType; +import mage.target.common.TargetLandPermanent; + +import java.util.UUID; + +/** + * @author TheElk801 + */ +public final class RebuildTheCity extends CardImpl { + + public RebuildTheCity(UUID ownerId, CardSetInfo setInfo) { + super(ownerId, setInfo, new CardType[]{CardType.SORCERY}, "{3}{B}{R}{G}"); + + // Choose target land. Create three tokens that are copies of it, except they're 3/3 creatures in addition to their other types and they have vigilance and menace. + this.getSpellAbility().addEffect(new CreateTokenCopyTargetEffect( + null, CardType.CREATURE, false, 3, false, + false, null, 3, 3, false + ).addAdditionalAbilities( + VigilanceAbility.getInstance(), new MenaceAbility(false) + ).setText("choose target land. Create three tokens that are copies of it, " + + "except they're 3/3 creatures in addition to their other types and they have vigilance and menace")); + this.getSpellAbility().addTarget(new TargetLandPermanent()); + } + + private RebuildTheCity(final RebuildTheCity card) { + super(card); + } + + @Override + public RebuildTheCity copy() { + return new RebuildTheCity(this); + } +} diff --git a/Mage.Sets/src/mage/sets/MarchOfTheMachineTheAftermath.java b/Mage.Sets/src/mage/sets/MarchOfTheMachineTheAftermath.java index 87abaf90350..46169747d2c 100644 --- a/Mage.Sets/src/mage/sets/MarchOfTheMachineTheAftermath.java +++ b/Mage.Sets/src/mage/sets/MarchOfTheMachineTheAftermath.java @@ -35,6 +35,7 @@ public final class MarchOfTheMachineTheAftermath extends ExpansionSet { cards.add(new SetCardInfo("Kolaghan Warmonger", 17, Rarity.UNCOMMON, mage.cards.k.KolaghanWarmonger.class)); cards.add(new SetCardInfo("Markov Baron", 14, Rarity.UNCOMMON, mage.cards.m.MarkovBaron.class)); cards.add(new SetCardInfo("Metropolis Reformer", 4, Rarity.RARE, mage.cards.m.MetropolisReformer.class)); + cards.add(new SetCardInfo("Rebuild the City", 43, Rarity.RARE, mage.cards.r.RebuildTheCity.class)); cards.add(new SetCardInfo("Reckless Handling", 19, Rarity.UNCOMMON, mage.cards.r.RecklessHandling.class)); cards.add(new SetCardInfo("Samut, Vizier of Naktamun", 45, Rarity.MYTHIC, mage.cards.s.SamutVizierOfNaktamun.class)); cards.add(new SetCardInfo("Sigarda, Font of Blessings", 47, Rarity.RARE, mage.cards.s.SigardaFontOfBlessings.class));