mirror of
https://github.com/correl/mage.git
synced 2024-12-26 03:00:11 +00:00
Added support for "Shuffle {this} to its owner's library". MBS: Green Sun's Zenith, by Loki.
This commit is contained in:
parent
32561892ac
commit
1fe97cb685
3 changed files with 190 additions and 1 deletions
111
Mage.Sets/src/mage/sets/mirrodinbesieged/GreenSunsZenith.java
Normal file
111
Mage.Sets/src/mage/sets/mirrodinbesieged/GreenSunsZenith.java
Normal file
|
@ -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<GreenSunsZenith> {
|
||||||
|
|
||||||
|
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> {
|
||||||
|
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<UUID>) 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";
|
||||||
|
}
|
||||||
|
}
|
|
@ -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<ShuffleSpellEffect> {
|
||||||
|
|
||||||
|
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;
|
||||||
|
}
|
||||||
|
}
|
|
@ -30,6 +30,7 @@ package mage.game.stack;
|
||||||
|
|
||||||
import mage.Mana;
|
import mage.Mana;
|
||||||
import mage.abilities.SpellAbility;
|
import mage.abilities.SpellAbility;
|
||||||
|
import mage.abilities.effects.common.ShuffleSpellEffect;
|
||||||
import mage.game.*;
|
import mage.game.*;
|
||||||
import java.util.List;
|
import java.util.List;
|
||||||
import java.util.UUID;
|
import java.util.UUID;
|
||||||
|
@ -86,7 +87,11 @@ public class Spell<T extends Spell<T>> implements StackObject, Card {
|
||||||
|
|
||||||
if (ability.getEffects().contains(ExileSpellEffect.getInstance()))
|
if (ability.getEffects().contains(ExileSpellEffect.getInstance()))
|
||||||
game.getExile().getPermanentExile().add(card);
|
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);
|
card.moveToZone(Zone.GRAVEYARD, ability.getId(), game, false);
|
||||||
return result;
|
return result;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue