From d43197c0ccb1c7236efe26cb42f9a65b0ba637c5 Mon Sep 17 00:00:00 2001 From: spjspj Date: Thu, 29 Jun 2017 22:56:06 +1000 Subject: [PATCH] Implement Uncage The Menagerie (HOU) --- .../src/mage/cards/u/UncageTheMenagerie.java | 161 ++++++++++++++++++ .../src/mage/sets/HourOfDevastation.java | 1 + 2 files changed, 162 insertions(+) create mode 100644 Mage.Sets/src/mage/cards/u/UncageTheMenagerie.java diff --git a/Mage.Sets/src/mage/cards/u/UncageTheMenagerie.java b/Mage.Sets/src/mage/cards/u/UncageTheMenagerie.java new file mode 100644 index 00000000000..41b7381fc2d --- /dev/null +++ b/Mage.Sets/src/mage/cards/u/UncageTheMenagerie.java @@ -0,0 +1,161 @@ +/* + * Copyright 2010 BetaSteward_at_googlemail.com. All rights reserved. + * + * Redistribution and use in source and binary forms, with or without modification, are + * permitted provided that the following conditions are met: + * + * 1. Redistributions of source code must retain the above copyright notice, this list of + * conditions and the following disclaimer. + * + * 2. Redistributions in binary form must reproduce the above copyright notice, this list + * of conditions and the following disclaimer in the documentation and/or other materials + * provided with the distribution. + * + * THIS SOFTWARE IS PROVIDED BY BetaSteward_at_googlemail.com ``AS IS'' AND ANY EXPRESS OR IMPLIED + * WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND + * FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL BetaSteward_at_googlemail.com OR + * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR + * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR + * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON + * ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING + * NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF + * ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + * + * The views and conclusions contained in the software and documentation are those of the + * authors and should not be interpreted as representing official policies, either expressed + * or implied, of BetaSteward_at_googlemail.com. + */ +package mage.cards.u; + +import java.util.UUID; +import mage.abilities.Ability; +import mage.abilities.effects.OneShotEffect; +import mage.cards.Card; +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.Zone; +import mage.filter.FilterCard; +import mage.filter.common.FilterCreatureCard; +import mage.filter.predicate.mageobject.CardTypePredicate; +import mage.game.Game; +import mage.players.Player; +import mage.target.common.TargetCardInLibrary; + +/** + * + * @author spjspj + */ +public class UncageTheMenagerie extends CardImpl { + + public UncageTheMenagerie(UUID ownerId, CardSetInfo setInfo) { + super(ownerId, setInfo, new CardType[]{CardType.SORCERY}, "{X}{G}{G}"); + + // Search your library for up to X creature cards with different names that each have converted mana cost X, reveal them, put them into your hand, then shuffle your library. + this.getSpellAbility().addEffect(new UncageTheMenagerieEffect()); + } + + public UncageTheMenagerie(final UncageTheMenagerie card) { + super(card); + } + + @Override + public UncageTheMenagerie copy() { + return new UncageTheMenagerie(this); + } +} + +class UncageTheMenagerieEffect extends OneShotEffect { + + private static final FilterCard filter = new FilterCard("creature"); + + static { + filter.add(new CardTypePredicate(CardType.CREATURE)); + } + + public UncageTheMenagerieEffect() { + super(Outcome.DrawCard); + this.staticText = "Search your library for up to X creature cards with different names that each have converted mana cost X, reveal them, put them into your hand, then shuffle your library."; + } + + public UncageTheMenagerieEffect(final UncageTheMenagerieEffect effect) { + super(effect); + } + + @Override + public UncageTheMenagerieEffect copy() { + return new UncageTheMenagerieEffect(this); + } + + @Override + public boolean apply(Game game, Ability source) { + Player player = game.getPlayer(source.getControllerId()); + Card sourceCard = game.getCard(source.getSourceId()); + if (player == null || sourceCard == null) { + return false; + } + + int xValue = source.getManaCostsToPay().getX(); + + UncageTheMenagerieTarget target = new UncageTheMenagerieTarget(xValue); + if (player.searchLibrary(target, game)) { + if (!target.getTargets().isEmpty()) { + Cards cards = new CardsImpl(); + for (UUID cardId : target.getTargets()) { + Card card = player.getLibrary().remove(cardId, game); + if (card != null) { + cards.add(card); + } + } + player.revealCards(sourceCard.getIdName(), cards, game); + player.moveCards(cards, Zone.HAND, source, game); + } + player.shuffleLibrary(source, game); + return true; + } + player.shuffleLibrary(source, game); + return false; + } +} + +class UncageTheMenagerieTarget extends TargetCardInLibrary { + + private int xValue; + + public UncageTheMenagerieTarget(int xValue) { + super(0, xValue, new FilterCreatureCard(xValue + " creature cards with different names")); + this.xValue = xValue; + } + + public UncageTheMenagerieTarget(final UncageTheMenagerieTarget target) { + super(target); + this.xValue = target.xValue; + } + + @Override + public UncageTheMenagerieTarget copy() { + return new UncageTheMenagerieTarget(this); + } + + @Override + public boolean canTarget(UUID id, Cards cards, Game game) { + Card card = cards.get(id, game); + if (card != null) { + for (UUID targetId : this.getTargets()) { + Card iCard = game.getCard(targetId); + if (iCard != null && iCard.getName().equals(card.getName())) { + return false; + } + } + if (!(card.isCreature() && card.getConvertedManaCost() == xValue)) { + return false; + } + + return filter.match(card, game); + } + return false; + } +} diff --git a/Mage.Sets/src/mage/sets/HourOfDevastation.java b/Mage.Sets/src/mage/sets/HourOfDevastation.java index bcd59d5dd73..49fb373428e 100644 --- a/Mage.Sets/src/mage/sets/HourOfDevastation.java +++ b/Mage.Sets/src/mage/sets/HourOfDevastation.java @@ -121,6 +121,7 @@ public class HourOfDevastation extends ExpansionSet { cards.add(new SetCardInfo("Torment of Hailfire", 77, Rarity.RARE, mage.cards.t.TormentOfHailfire.class)); cards.add(new SetCardInfo("Torment of Scarabs", 78, Rarity.UNCOMMON, mage.cards.t.TormentOfScarabs.class)); cards.add(new SetCardInfo("Torment of Venom", 79, Rarity.COMMON, mage.cards.t.TormentOfVenom.class)); + cards.add(new SetCardInfo("Uncage the Menagerie", 137, Rarity.MYTHIC, mage.cards.u.UncageTheMenagerie.class)); cards.add(new SetCardInfo("Unesh, Criosphinx Sovereign", 52, Rarity.MYTHIC, mage.cards.u.UneshCriosphinxSovereign.class)); cards.add(new SetCardInfo("Unraveling Mummy", 147, Rarity.UNCOMMON, mage.cards.u.UnravelingMummy.class)); cards.add(new SetCardInfo("Visage of Bolas", 208, Rarity.RARE, mage.cards.v.VisageOfBolas.class));