From 1fe97cb685de9561c2f3f6640d819af8ad736faf Mon Sep 17 00:00:00 2001 From: magenoxx Date: Thu, 12 May 2011 21:03:06 +0400 Subject: [PATCH] Added support for "Shuffle {this} to its owner's library". MBS: Green Sun's Zenith, by Loki. --- .../mirrodinbesieged/GreenSunsZenith.java | 111 ++++++++++++++++++ .../effects/common/ShuffleSpellEffect.java | 73 ++++++++++++ Mage/src/mage/game/stack/Spell.java | 7 +- 3 files changed, 190 insertions(+), 1 deletion(-) create mode 100644 Mage.Sets/src/mage/sets/mirrodinbesieged/GreenSunsZenith.java create mode 100644 Mage/src/mage/abilities/effects/common/ShuffleSpellEffect.java diff --git a/Mage.Sets/src/mage/sets/mirrodinbesieged/GreenSunsZenith.java b/Mage.Sets/src/mage/sets/mirrodinbesieged/GreenSunsZenith.java new file mode 100644 index 00000000000..db1f14575df --- /dev/null +++ b/Mage.Sets/src/mage/sets/mirrodinbesieged/GreenSunsZenith.java @@ -0,0 +1,111 @@ +/* + * 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.sets.mirrodinbesieged; + +import mage.Constants; +import mage.Constants.CardType; +import mage.Constants.Rarity; +import mage.abilities.Ability; +import mage.abilities.effects.OneShotEffect; +import mage.abilities.effects.common.ShuffleSpellEffect; +import mage.cards.Card; +import mage.cards.CardImpl; +import mage.filter.FilterCard; +import mage.game.Game; +import mage.players.Player; +import mage.target.common.TargetCardInLibrary; + +import java.util.List; +import java.util.UUID; + +/** + * @author Loki + */ +public class GreenSunsZenith extends CardImpl { + + public GreenSunsZenith(UUID ownerId) { + super(ownerId, 81, "Green Sun's Zenith", Rarity.RARE, new CardType[]{CardType.SORCERY}, "{X}{G}"); + this.expansionSetCode = "MBS"; + this.color.setGreen(true); + this.getSpellAbility().addEffect(new GreenSunsZenithSearchEffect()); + this.getSpellAbility().addEffect(ShuffleSpellEffect.getInstance()); + } + + public GreenSunsZenith(final GreenSunsZenith card) { + super(card); + } + + @Override + public GreenSunsZenith copy() { + return new GreenSunsZenith(this); + } + +} + +class GreenSunsZenithSearchEffect extends OneShotEffect { + GreenSunsZenithSearchEffect() { + super(Constants.Outcome.PutCreatureInPlay); + } + + GreenSunsZenithSearchEffect(final GreenSunsZenithSearchEffect effect) { + super(effect); + } + + @Override + public boolean apply(Game game, Ability source) { + Player player = game.getPlayer(source.getControllerId()); + FilterCard filter = new FilterCard("green creature card with converted mana cost X or less"); + filter.getColor().setGreen(true); + filter.setUseColor(true); + filter.getCardType().add(CardType.CREATURE); + filter.setConvertedManaCost(source.getManaCostsToPay().getVariableCosts().get(0).getAmount()); + TargetCardInLibrary target = new TargetCardInLibrary(filter); + if (player.searchLibrary(target, game)) { + if (target.getTargets().size() > 0) { + for (UUID cardId : (List) target.getTargets()) { + Card card = player.getLibrary().remove(cardId, game); + card.putOntoBattlefield(game, Constants.Zone.HAND, source.getId(), source.getControllerId()); + } + player.shuffleLibrary(game); + return true; + } + } + return false; + } + + @Override + public GreenSunsZenithSearchEffect copy() { + return new GreenSunsZenithSearchEffect(this); + } + + @Override + public String getText(Ability source) { + return "Search your library for a green creature card with converted mana cost X or less, put it onto the battlefield, then shuffle your library"; + } +} \ No newline at end of file diff --git a/Mage/src/mage/abilities/effects/common/ShuffleSpellEffect.java b/Mage/src/mage/abilities/effects/common/ShuffleSpellEffect.java new file mode 100644 index 00000000000..86aa71a7eea --- /dev/null +++ b/Mage/src/mage/abilities/effects/common/ShuffleSpellEffect.java @@ -0,0 +1,73 @@ +/* +* 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.abilities.effects.common; + +import mage.Constants.Outcome; +import mage.abilities.Ability; +import mage.abilities.effects.OneShotEffect; +import mage.game.Game; + +import java.io.ObjectStreamException; + +/** + * + * @author nantuko + */ +public class ShuffleSpellEffect extends OneShotEffect { + + private static final ShuffleSpellEffect fINSTANCE = new ShuffleSpellEffect(); + + private Object readResolve() throws ObjectStreamException { + return fINSTANCE; + } + + private ShuffleSpellEffect() { + super(Outcome.Exile); + } + + public static ShuffleSpellEffect getInstance() { + return fINSTANCE; + } + + @Override + public boolean apply(Game game, Ability source) { + //this effect is applied when a spell resolves - see Spell.java + return true; + } + + @Override + public String getText(Ability source) { + return "Shuffle {this} into its owner's library."; + } + + @Override + public ShuffleSpellEffect copy() { + return fINSTANCE; + } +} diff --git a/Mage/src/mage/game/stack/Spell.java b/Mage/src/mage/game/stack/Spell.java index b60cc33595b..646316997f6 100644 --- a/Mage/src/mage/game/stack/Spell.java +++ b/Mage/src/mage/game/stack/Spell.java @@ -30,6 +30,7 @@ package mage.game.stack; import mage.Mana; import mage.abilities.SpellAbility; +import mage.abilities.effects.common.ShuffleSpellEffect; import mage.game.*; import java.util.List; import java.util.UUID; @@ -86,7 +87,11 @@ public class Spell> implements StackObject, Card { if (ability.getEffects().contains(ExileSpellEffect.getInstance())) game.getExile().getPermanentExile().add(card); - else + else if (ability.getEffects().contains(ShuffleSpellEffect.getInstance())) { + card.moveToZone(Zone.LIBRARY, ability.getId(), game, false); + Player player = game.getPlayer(controllerId); + if (player != null) player.shuffleLibrary(game); + } else card.moveToZone(Zone.GRAVEYARD, ability.getId(), game, false); return result; }