diff --git a/Mage.Sets/src/mage/cards/u/UnsealTheNecropolis.java b/Mage.Sets/src/mage/cards/u/UnsealTheNecropolis.java new file mode 100644 index 0000000000..7962f6417f --- /dev/null +++ b/Mage.Sets/src/mage/cards/u/UnsealTheNecropolis.java @@ -0,0 +1,74 @@ +package mage.cards.u; + +import mage.abilities.Ability; +import mage.abilities.effects.OneShotEffect; +import mage.abilities.effects.common.MillCardsEachPlayerEffect; +import mage.cards.CardImpl; +import mage.cards.CardSetInfo; +import mage.cards.Cards; +import mage.cards.CardsImpl; +import mage.constants.CardType; +import mage.constants.Outcome; +import mage.constants.TargetController; +import mage.constants.Zone; +import mage.filter.StaticFilters; +import mage.game.Game; +import mage.players.Player; +import mage.target.TargetCard; +import mage.target.common.TargetCardInYourGraveyard; + +import java.util.UUID; + +/** + * @author TheElk801 + */ +public final class UnsealTheNecropolis extends CardImpl { + + public UnsealTheNecropolis(UUID ownerId, CardSetInfo setInfo) { + super(ownerId, setInfo, new CardType[]{CardType.INSTANT}, "{2}{B}"); + + // Each player mills three cards. Then you return up to two creature cards from your graveyard to your hand. + this.getSpellAbility().addEffect(new MillCardsEachPlayerEffect(3, TargetController.EACH_PLAYER)); + this.getSpellAbility().addEffect(new UnsealTheNecropolisEffect()); + } + + private UnsealTheNecropolis(final UnsealTheNecropolis card) { + super(card); + } + + @Override + public UnsealTheNecropolis copy() { + return new UnsealTheNecropolis(this); + } +} + +class UnsealTheNecropolisEffect extends OneShotEffect { + + UnsealTheNecropolisEffect() { + super(Outcome.Benefit); + staticText = "then you return up to two creature cards from your graveyard to your hand"; + } + + private UnsealTheNecropolisEffect(final UnsealTheNecropolisEffect effect) { + super(effect); + } + + @Override + public UnsealTheNecropolisEffect copy() { + return new UnsealTheNecropolisEffect(this); + } + + @Override + public boolean apply(Game game, Ability source) { + Player player = game.getPlayer(source.getControllerId()); + if (player == null) { + return false; + } + TargetCard target = new TargetCardInYourGraveyard( + 0, 2, StaticFilters.FILTER_CARD_CREATURES_YOUR_GRAVEYARD, true + ); + player.choose(outcome, target, source, game); + Cards cards = new CardsImpl(target.getTargets()); + return !cards.isEmpty() && player.moveCards(cards, Zone.HAND, source, game); + } +} diff --git a/Mage.Sets/src/mage/sets/MarchOfTheMachine.java b/Mage.Sets/src/mage/sets/MarchOfTheMachine.java index d9af976796..3c65946b99 100644 --- a/Mage.Sets/src/mage/sets/MarchOfTheMachine.java +++ b/Mage.Sets/src/mage/sets/MarchOfTheMachine.java @@ -202,6 +202,7 @@ public final class MarchOfTheMachine extends ExpansionSet { cards.add(new SetCardInfo("Timberland Ancient", 210, Rarity.COMMON, mage.cards.t.TimberlandAncient.class)); cards.add(new SetCardInfo("Tranquil Cove", 275, Rarity.COMMON, mage.cards.t.TranquilCove.class)); cards.add(new SetCardInfo("Transcendent Message", 83, Rarity.RARE, mage.cards.t.TranscendentMessage.class)); + cards.add(new SetCardInfo("Unseal the Necropolis", 128, Rarity.COMMON, mage.cards.u.UnsealTheNecropolis.class)); cards.add(new SetCardInfo("Urn of Godfire", 266, Rarity.COMMON, mage.cards.u.UrnOfGodfire.class)); cards.add(new SetCardInfo("Vanquish the Weak", 129, Rarity.COMMON, mage.cards.v.VanquishTheWeak.class)); cards.add(new SetCardInfo("Volcanic Spite", 170, Rarity.COMMON, mage.cards.v.VolcanicSpite.class));