From 8483855b2ad243f7a0f6cb57444c4e8e1c4b6039 Mon Sep 17 00:00:00 2001 From: Jeff Date: Mon, 31 Jul 2017 17:43:12 -0500 Subject: [PATCH] - Added requested card Ignorant Bliss. --- Mage.Sets/src/mage/cards/i/IgnorantBliss.java | 141 ++++++++++++++++++ Mage.Sets/src/mage/sets/Dissension.java | 3 +- 2 files changed, 143 insertions(+), 1 deletion(-) create mode 100644 Mage.Sets/src/mage/cards/i/IgnorantBliss.java diff --git a/Mage.Sets/src/mage/cards/i/IgnorantBliss.java b/Mage.Sets/src/mage/cards/i/IgnorantBliss.java new file mode 100644 index 00000000000..1b7bee6daca --- /dev/null +++ b/Mage.Sets/src/mage/cards/i/IgnorantBliss.java @@ -0,0 +1,141 @@ +/* + * 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.i; + +import java.util.UUID; +import mage.MageObject; +import mage.abilities.Ability; +import mage.abilities.common.delayed.AtTheBeginOfNextEndStepDelayedTriggeredAbility; +import mage.abilities.effects.Effect; +import mage.abilities.effects.OneShotEffect; +import mage.abilities.effects.common.DrawCardSourceControllerEffect; +import mage.abilities.effects.common.ReturnFromExileEffect; +import mage.cards.CardImpl; +import mage.cards.CardSetInfo; +import mage.cards.Cards; +import mage.constants.CardType; +import mage.constants.Outcome; +import mage.constants.Zone; +import mage.game.ExileZone; +import mage.game.Game; +import mage.players.Player; +import mage.util.CardUtil; + +/** + * + * @author jeffwadsworth + */ +public class IgnorantBliss extends CardImpl { + + public IgnorantBliss(UUID ownerId, CardSetInfo setInfo) { + super(ownerId, setInfo, new CardType[]{CardType.INSTANT}, "{1}{R}"); + + // Exile all cards from your hand face down. At the beginning of the next end step, return those cards to your hand, then draw a card. + this.getSpellAbility().addEffect(new IgnorantBlissExileEffect()); + this.getSpellAbility().addEffect(new IgnorantBlissReturnEffect()); + + } + + public IgnorantBliss(final IgnorantBliss card) { + super(card); + } + + @Override + public IgnorantBliss copy() { + return new IgnorantBliss(this); + } +} + +class IgnorantBlissExileEffect extends OneShotEffect { + + IgnorantBlissExileEffect() { + super(Outcome.Exile); + this.staticText = "Exile all cards from your hand face down"; + } + + IgnorantBlissExileEffect(final IgnorantBlissExileEffect effect) { + super(effect); + } + + @Override + public IgnorantBlissExileEffect copy() { + return new IgnorantBlissExileEffect(this); + } + + @Override + public boolean apply(Game game, Ability source) { + Player controller = game.getPlayer(source.getControllerId()); + MageObject sourceObject = source.getSourceObject(game); + if (controller != null + && sourceObject != null) { + Cards hand = controller.getHand(); + hand.getCards(game).stream().filter((card) -> (card != null)).map((card) -> { + UUID exileZoneId = CardUtil.getExileZoneId(game, source.getSourceId(), 0); + controller.moveCardsToExile(card, source, game, false, exileZoneId, sourceObject.getIdName()); + return card; + }).forEachOrdered((card) -> { + card.setFaceDown(true, game); + }); + return true; + } + return false; + } +} + +class IgnorantBlissReturnEffect extends OneShotEffect { + + IgnorantBlissReturnEffect() { + super(Outcome.DrawCard); + this.staticText = "At the beginning of the next end step, return those cards to your hand, then draw a card"; + } + + IgnorantBlissReturnEffect(final IgnorantBlissReturnEffect effect) { + super(effect); + } + + @Override + public IgnorantBlissReturnEffect copy() { + return new IgnorantBlissReturnEffect(this); + } + + @Override + public boolean apply(Game game, Ability source) { + Player controller = game.getPlayer(source.getControllerId()); + if (controller != null) { + ExileZone exileZone = game.getExile().getExileZone(CardUtil.getExileZoneId(game, source.getSourceId(), 0)); + if (exileZone != null) { + Effect effect = new ReturnFromExileEffect(exileZone.getId(), Zone.HAND); + AtTheBeginOfNextEndStepDelayedTriggeredAbility ability = new AtTheBeginOfNextEndStepDelayedTriggeredAbility(effect); + ability.addEffect(new DrawCardSourceControllerEffect(1)); + game.addDelayedTriggeredAbility(ability, source); + return true; + } + } + return false; + } +} diff --git a/Mage.Sets/src/mage/sets/Dissension.java b/Mage.Sets/src/mage/sets/Dissension.java index b23bfb23ae3..6c75fff9066 100644 --- a/Mage.Sets/src/mage/sets/Dissension.java +++ b/Mage.Sets/src/mage/sets/Dissension.java @@ -111,6 +111,7 @@ public class Dissension extends ExpansionSet { cards.add(new SetCardInfo("Hellhole Rats", 113, Rarity.UNCOMMON, mage.cards.h.HellholeRats.class)); cards.add(new SetCardInfo("Hide // Seek", 151, Rarity.UNCOMMON, mage.cards.h.HideSeek.class)); cards.add(new SetCardInfo("Hit // Run", 152, Rarity.UNCOMMON, mage.cards.h.HitRun.class)); + cards.add(new SetCardInfo("Ignorant Bliss", 64, Rarity.UNCOMMON, mage.cards.i.IgnorantBliss.class)); cards.add(new SetCardInfo("Indrik Stomphowler", 86, Rarity.UNCOMMON, mage.cards.i.IndrikStomphowler.class)); cards.add(new SetCardInfo("Infernal Tutor", 46, Rarity.RARE, mage.cards.i.InfernalTutor.class)); cards.add(new SetCardInfo("Isperia the Inscrutable", 114, Rarity.RARE, mage.cards.i.IsperiaTheInscrutable.class)); @@ -209,6 +210,6 @@ public class Dissension extends ExpansionSet { cards.add(new SetCardInfo("Windreaver", 138, Rarity.RARE, mage.cards.w.Windreaver.class)); cards.add(new SetCardInfo("Wit's End", 58, Rarity.RARE, mage.cards.w.WitsEnd.class)); cards.add(new SetCardInfo("Wrecking Ball", 139, Rarity.COMMON, mage.cards.w.WreckingBall.class)); - cards.add(new SetCardInfo("Writ of Passage", 37, Rarity.COMMON, mage.cards.w.WritOfPassage.class)); + cards.add(new SetCardInfo("Writ of Passage", 37, Rarity.COMMON, mage.cards.w.WritOfPassage.class)); } }