[BFZ] Added Conduit of Ruin, Exert Influence and March from the Tomb.

This commit is contained in:
LevelX2 2015-09-15 17:38:12 +02:00
parent 04738515df
commit 12d584ebd1
8 changed files with 462 additions and 98 deletions

View file

@ -0,0 +1,164 @@
/*
* 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.battleforzendikar;
import java.util.HashMap;
import java.util.Map;
import java.util.UUID;
import mage.MageInt;
import mage.abilities.common.SimpleStaticAbility;
import mage.abilities.effects.Effect;
import mage.abilities.effects.common.CastSourceTriggeredAbility;
import mage.abilities.effects.common.cost.SpellsCostReductionControllerEffect;
import mage.abilities.effects.common.search.SearchLibraryPutOnLibraryEffect;
import mage.cards.CardImpl;
import mage.constants.CardType;
import mage.constants.Rarity;
import mage.constants.WatcherScope;
import mage.constants.Zone;
import mage.filter.Filter;
import mage.filter.common.FilterCreatureCard;
import mage.filter.predicate.ObjectPlayer;
import mage.filter.predicate.ObjectPlayerPredicate;
import mage.filter.predicate.mageobject.ColorlessPredicate;
import mage.filter.predicate.mageobject.ConvertedManaCostPredicate;
import mage.game.Controllable;
import mage.game.Game;
import mage.game.events.GameEvent;
import mage.game.stack.Spell;
import mage.target.common.TargetCardInLibrary;
import mage.watchers.Watcher;
/**
*
* @author LevelX2
*/
public class ConduitOfRuin extends CardImpl {
private static final FilterCreatureCard filter = new FilterCreatureCard("a colorless creature card with converted mana cost 7 or greater");
private static final FilterCreatureCard filterCost = new FilterCreatureCard("The first creature spell");
static {
filter.add(new ColorlessPredicate());
filter.add(new ConvertedManaCostPredicate(Filter.ComparisonType.GreaterThan, 6));
filterCost.add(new FirstCastCreatureSpellPredicate());
}
public ConduitOfRuin(UUID ownerId) {
super(ownerId, 4, "Conduit of Ruin", Rarity.RARE, new CardType[]{CardType.CREATURE}, "{6}");
this.expansionSetCode = "BFZ";
this.subtype.add("Eldrazi");
this.power = new MageInt(5);
this.toughness = new MageInt(5);
// When you cast Conduit of Ruin, you may search your library for a colorless creature card with converted mana cost 7 or greater, then shuffle your library and put that card on top of it.
TargetCardInLibrary target = new TargetCardInLibrary(filter);
this.addAbility(new CastSourceTriggeredAbility(new SearchLibraryPutOnLibraryEffect(target, true, true), true));
// The first creature spell you cast each turn costs {2} less to cast.
Effect effect = new SpellsCostReductionControllerEffect(filterCost, 2);
effect.setText("The first creature spell you cast each turn costs {2} less to cast");
this.addAbility(new SimpleStaticAbility(Zone.BATTLEFIELD, effect), new ConduitOfRuinWatcher());
}
public ConduitOfRuin(final ConduitOfRuin card) {
super(card);
}
@Override
public ConduitOfRuin copy() {
return new ConduitOfRuin(this);
}
}
class ConduitOfRuinWatcher extends Watcher {
Map<UUID, Integer> playerCreatureSpells;
int spellCount = 0;
public ConduitOfRuinWatcher() {
super("FirstCreatureSpellCastThisTurn", WatcherScope.GAME);
playerCreatureSpells = new HashMap<>();
}
public ConduitOfRuinWatcher(final ConduitOfRuinWatcher watcher) {
super(watcher);
this.playerCreatureSpells = new HashMap<>();
playerCreatureSpells.putAll(watcher.playerCreatureSpells);
}
@Override
public void watch(GameEvent event, Game game) {
if (event.getType() == GameEvent.EventType.SPELL_CAST) {
Spell spell = (Spell) game.getObject(event.getTargetId());
if (spell != null && spell.getCardType().contains(CardType.CREATURE)) {
if (playerCreatureSpells.containsKey(event.getPlayerId())) {
playerCreatureSpells.put(event.getPlayerId(), playerCreatureSpells.get(event.getPlayerId()) + 1);
} else {
playerCreatureSpells.put(event.getPlayerId(), 1);
}
}
}
}
public int creatureSpellsCastThisTurn(UUID playerId) {
if (playerCreatureSpells.containsKey(playerId)) {
return playerCreatureSpells.get(playerId);
}
return 0;
}
@Override
public ConduitOfRuinWatcher copy() {
return new ConduitOfRuinWatcher(this);
}
@Override
public void reset() {
super.reset();
playerCreatureSpells.clear();
}
}
class FirstCastCreatureSpellPredicate implements ObjectPlayerPredicate<ObjectPlayer<Controllable>> {
@Override
public boolean apply(ObjectPlayer<Controllable> input, Game game) {
if (input.getObject() instanceof Spell
&& ((Spell) input.getObject()).getCardType().contains(CardType.CREATURE)) {
ConduitOfRuinWatcher watcher = (ConduitOfRuinWatcher) game.getState().getWatchers().get("FirstCreatureSpellCastThisTurn");
return watcher != null && watcher.creatureSpellsCastThisTurn(input.getPlayerId()) == 0;
}
return false;
}
@Override
public String toString() {
return "The first creature spell you cast each turn";
}
}

View file

@ -0,0 +1,102 @@
/*
* 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.battleforzendikar;
import java.util.UUID;
import mage.MageObject;
import mage.abilities.Ability;
import mage.abilities.dynamicvalue.common.ColorsOfManaSpentToCastCount;
import mage.abilities.effects.OneShotEffect;
import mage.abilities.effects.common.continuous.GainControlTargetEffect;
import mage.cards.CardImpl;
import mage.constants.CardType;
import mage.constants.Duration;
import mage.constants.Outcome;
import mage.constants.Rarity;
import mage.game.Game;
import mage.game.permanent.Permanent;
import mage.players.Player;
import mage.target.common.TargetCreaturePermanent;
/**
*
* @author LevelX2
*/
public class ExertInfluence extends CardImpl {
public ExertInfluence(UUID ownerId) {
super(ownerId, 77, "Exert Influence", Rarity.RARE, new CardType[]{CardType.SORCERY}, "{4}{U}");
this.expansionSetCode = "BFZ";
// <i>Converge</i>-Gain control of target creature if its power is less than or equal to the number of colors spent to cast Exert Influence.
getSpellAbility().addEffect(new ExertInfluenceEffect());
getSpellAbility().addTarget(new TargetCreaturePermanent());
}
public ExertInfluence(final ExertInfluence card) {
super(card);
}
@Override
public ExertInfluence copy() {
return new ExertInfluence(this);
}
}
class ExertInfluenceEffect extends OneShotEffect {
public ExertInfluenceEffect() {
super(Outcome.GainControl);
this.staticText = "<i>Converge</i>-Gain control of target creature if its power is less than or equal to the number of colors spent to cast {this}";
}
public ExertInfluenceEffect(final ExertInfluenceEffect effect) {
super(effect);
}
@Override
public ExertInfluenceEffect copy() {
return new ExertInfluenceEffect(this);
}
@Override
public boolean apply(Game game, Ability source) {
MageObject sourceObject = game.getObject(source.getSourceId());
Player controller = game.getPlayer(source.getControllerId());
Permanent targetCreature = game.getPermanent(getTargetPointer().getFirst(game, source));
if (controller != null && sourceObject != null) {
int colors = new ColorsOfManaSpentToCastCount().calculate(game, source, this);
if (targetCreature.getPower().getValue() <= colors) {
game.addEffect(new GainControlTargetEffect(Duration.Custom, true), source);
}
return true;
}
return false;
}
}

View file

@ -0,0 +1,154 @@
/*
* 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.battleforzendikar;
import java.util.HashSet;
import java.util.Set;
import java.util.UUID;
import mage.abilities.Ability;
import mage.abilities.effects.Effect;
import mage.abilities.effects.common.ReturnFromGraveyardToBattlefieldTargetEffect;
import mage.cards.Card;
import mage.cards.CardImpl;
import mage.cards.Cards;
import mage.constants.CardType;
import mage.constants.Rarity;
import mage.filter.FilterCard;
import mage.filter.common.FilterCreatureCard;
import mage.filter.predicate.mageobject.SubtypePredicate;
import mage.game.Game;
import mage.target.common.TargetCardInYourGraveyard;
/**
*
* @author LevelX2
*/
public class MarchFromTheTomb extends CardImpl {
public MarchFromTheTomb(UUID ownerId) {
super(ownerId, 214, "March from the Tomb", Rarity.RARE, new CardType[]{CardType.SORCERY}, "{3}{W}{B}");
this.expansionSetCode = "BFZ";
// Return any number of target Ally creature cards with total converted mana cost of 8 or less from your graveyard to the battlefield.
Effect effect = new ReturnFromGraveyardToBattlefieldTargetEffect();
effect.setText("Return any number of target Ally creature cards with total converted mana cost of 8 or less from your graveyard to the battlefield");
this.getSpellAbility().addEffect(effect);
FilterCard filter = new FilterCreatureCard();
filter.add(new SubtypePredicate("Ally"));
this.getSpellAbility().addTarget(new MarchFromTheTombTarget(0, Integer.MAX_VALUE, filter));
}
public MarchFromTheTomb(final MarchFromTheTomb card) {
super(card);
}
@Override
public MarchFromTheTomb copy() {
return new MarchFromTheTomb(this);
}
}
class MarchFromTheTombTarget extends TargetCardInYourGraveyard {
public MarchFromTheTombTarget(int minNumTargets, int maxNumTargets, FilterCard filter) {
super(minNumTargets, maxNumTargets, filter);
}
public MarchFromTheTombTarget(MarchFromTheTombTarget target) {
super(target);
}
@Override
public Set<UUID> possibleTargets(UUID sourceControllerId, Cards cards, Game game) {
int cmcLeft = 8;
for (UUID targetId : this.getTargets()) {
Card card = game.getCard(targetId);
if (card != null) {
cmcLeft -= card.getManaCost().convertedManaCost();
}
}
Set<UUID> possibleTargets = super.possibleTargets(sourceControllerId, cards, game);
Set<UUID> leftPossibleTargets = new HashSet<>();
for (UUID targetId : possibleTargets) {
Card card = game.getCard(targetId);
if (card != null && card.getManaCost().convertedManaCost() <= cmcLeft) {
leftPossibleTargets.add(targetId);
}
}
setTargetName("any number of target Ally creature cards with total converted mana cost of 8 or less (" + cmcLeft + " left) from your graveyard");
return leftPossibleTargets;
}
@Override
public Set<UUID> possibleTargets(UUID sourceId, UUID sourceControllerId, Game game) {
int cmcLeft = 8;
for (UUID targetId : this.getTargets()) {
Card card = game.getCard(targetId);
if (card != null) {
cmcLeft -= card.getManaCost().convertedManaCost();
}
}
Set<UUID> possibleTargets = super.possibleTargets(sourceId, sourceControllerId, game);
Set<UUID> leftPossibleTargets = new HashSet<>();
for (UUID targetId : possibleTargets) {
Card card = game.getCard(targetId);
if (card != null && card.getManaCost().convertedManaCost() <= cmcLeft) {
leftPossibleTargets.add(targetId);
}
}
setTargetName("any number of target Ally creature cards with total converted mana cost of 8 or less (" + cmcLeft + " left) from your graveyard");
return leftPossibleTargets;
}
@Override
public boolean canTarget(UUID objectId, Ability source, Game game) {
return this.canTarget(source.getControllerId(), objectId, source, game);
}
@Override
public boolean canTarget(UUID playerId, UUID objectId, Ability source, Game game) {
if (super.canTarget(playerId, objectId, source, game)) {
int cmcLeft = 8;
for (UUID targetId : this.getTargets()) {
Card card = game.getCard(targetId);
if (card != null) {
cmcLeft -= card.getManaCost().convertedManaCost();
}
}
Card card = game.getCard(objectId);
return card != null && card.getManaCost().convertedManaCost() <= cmcLeft;
}
return false;
}
@Override
public MarchFromTheTombTarget copy() {
return new MarchFromTheTombTarget(this);
}
}

View file

@ -28,19 +28,17 @@
package mage.sets.newphyrexia; package mage.sets.newphyrexia;
import java.util.UUID; import java.util.UUID;
import mage.constants.CardType;
import mage.constants.Outcome;
import mage.constants.Rarity;
import mage.constants.Zone;
import mage.MageInt; import mage.MageInt;
import mage.abilities.Ability; import mage.abilities.Ability;
import mage.abilities.Mode; import mage.abilities.Mode;
import mage.abilities.common.EntersBattlefieldTriggeredAbility; import mage.abilities.common.EntersBattlefieldTriggeredAbility;
import mage.abilities.effects.OneShotEffect; import mage.abilities.effects.OneShotEffect;
import mage.cards.Card; import mage.abilities.effects.common.search.SearchLibraryPutOnLibraryEffect;
import mage.cards.CardImpl; import mage.cards.CardImpl;
import mage.cards.Cards; import mage.constants.CardType;
import mage.cards.CardsImpl; import mage.constants.Outcome;
import mage.constants.Rarity;
import mage.constants.Zone;
import mage.filter.FilterPermanent; import mage.filter.FilterPermanent;
import mage.filter.common.FilterCreatureCard; import mage.filter.common.FilterCreatureCard;
import mage.filter.predicate.Predicates; import mage.filter.predicate.Predicates;
@ -71,7 +69,11 @@ public class BrutalizerExarch extends CardImpl {
this.power = new MageInt(3); this.power = new MageInt(3);
this.toughness = new MageInt(3); this.toughness = new MageInt(3);
Ability ability = new EntersBattlefieldTriggeredAbility(new BrutalizerExarchEffect1()); // When Brutalizer Exarch enters the battlefield, choose one
// - Search your library for a creature card, reveal it, then shuffle your library and put that card on top of it;
TargetCardInLibrary target = new TargetCardInLibrary(new FilterCreatureCard("a creature card"));
Ability ability = new EntersBattlefieldTriggeredAbility(new SearchLibraryPutOnLibraryEffect(target, true, true), false);
// or put target noncreature permanent on the bottom of its owner's library.
Mode mode = new Mode(); Mode mode = new Mode();
mode.getEffects().add(new BrutalizerExarchEffect2()); mode.getEffects().add(new BrutalizerExarchEffect2());
mode.getTargets().add(new TargetPermanent(filter)); mode.getTargets().add(new TargetPermanent(filter));
@ -89,45 +91,6 @@ public class BrutalizerExarch extends CardImpl {
} }
} }
class BrutalizerExarchEffect1 extends OneShotEffect {
public BrutalizerExarchEffect1() {
super(Outcome.Benefit);
this.staticText = "Search your library for a creature card, reveal it, then shuffle your library and put that card on top of it";
}
public BrutalizerExarchEffect1(final BrutalizerExarchEffect1 effect) {
super(effect);
}
@Override
public BrutalizerExarchEffect1 copy() {
return new BrutalizerExarchEffect1(this);
}
@Override
public boolean apply(Game game, Ability source) {
Player player = game.getPlayer(source.getControllerId());
if (player != null) {
TargetCardInLibrary target = new TargetCardInLibrary(new FilterCreatureCard("creature card in your library"));
if (player.searchLibrary(target, game)) {
Card card = player.getLibrary().remove(target.getFirstTarget(), game);
if (card != null) {
Cards cards = new CardsImpl();
cards.add(card);
player.revealCards("Brutalizer Exarch", cards, game);
}
player.shuffleLibrary(game);
if (card != null)
card.moveToZone(Zone.LIBRARY, source.getSourceId(), game, true);
return true;
}
player.shuffleLibrary(game);
}
return false;
}
}
class BrutalizerExarchEffect2 extends OneShotEffect { class BrutalizerExarchEffect2 extends OneShotEffect {
public BrutalizerExarchEffect2() { public BrutalizerExarchEffect2() {

View file

@ -56,7 +56,6 @@ public class SpellsCostReductionControllerEffect extends CostModificationEffectI
private final boolean upTo; private final boolean upTo;
private ManaCosts<ManaCost> manaCostsToReduce = null; private ManaCosts<ManaCost> manaCostsToReduce = null;
public SpellsCostReductionControllerEffect(FilterCard filter, ManaCosts<ManaCost> manaCostsToReduce) { public SpellsCostReductionControllerEffect(FilterCard filter, ManaCosts<ManaCost> manaCostsToReduce) {
super(Duration.WhileOnBattlefield, Outcome.Benefit, CostModificationType.REDUCE_COST); super(Duration.WhileOnBattlefield, Outcome.Benefit, CostModificationType.REDUCE_COST);
this.filter = filter; this.filter = filter;
@ -134,11 +133,11 @@ public class SpellsCostReductionControllerEffect extends CostModificationEffectI
if (abilityToModify.getControllerId().equals(source.getControllerId())) { if (abilityToModify.getControllerId().equals(source.getControllerId())) {
Spell spell = (Spell) game.getStack().getStackObject(abilityToModify.getId()); Spell spell = (Spell) game.getStack().getStackObject(abilityToModify.getId());
if (spell != null) { if (spell != null) {
return this.filter.match(spell, game); return this.filter.match(spell, source.getSourceId(), source.getControllerId(), game);
} else { } else {
// used at least for flashback ability because Flashback ability doesn't use stack or for getPlayables where spell is not cast yet // used at least for flashback ability because Flashback ability doesn't use stack or for getPlayables where spell is not cast yet
Card sourceCard = game.getCard(abilityToModify.getSourceId()); Card sourceCard = game.getCard(abilityToModify.getSourceId());
return sourceCard != null && this.filter.match(sourceCard, game); return sourceCard != null && this.filter.match(sourceCard, source.getSourceId(), source.getControllerId(), game);
} }
} }
} }

View file

@ -25,20 +25,14 @@
* authors and should not be interpreted as representing official policies, either expressed * authors and should not be interpreted as representing official policies, either expressed
* or implied, of BetaSteward_at_googlemail.com. * or implied, of BetaSteward_at_googlemail.com.
*/ */
package mage.abilities.effects.common.search; package mage.abilities.effects.common.search;
import java.util.ArrayList;
import java.util.List;
import java.util.UUID;
import mage.MageObject; import mage.MageObject;
import mage.constants.Outcome;
import mage.constants.Zone;
import mage.abilities.Ability; import mage.abilities.Ability;
import mage.abilities.effects.SearchEffect; import mage.abilities.effects.SearchEffect;
import mage.cards.Card;
import mage.cards.Cards; import mage.cards.Cards;
import mage.cards.CardsImpl; import mage.cards.CardsImpl;
import mage.constants.Outcome;
import mage.game.Game; import mage.game.Game;
import mage.players.Player; import mage.players.Player;
import mage.target.common.TargetCardInLibrary; import mage.target.common.TargetCardInLibrary;
@ -83,27 +77,14 @@ public class SearchLibraryPutOnLibraryEffect extends SearchEffect {
return false; return false;
} }
if (controller.searchLibrary(target, game)) { if (controller.searchLibrary(target, game)) {
List<Card> cards = new ArrayList<>(); Cards foundCards = new CardsImpl(target.getTargets());
for (UUID cardId: target.getTargets()) { if (reveal && !foundCards.isEmpty()) {
Card card = controller.getLibrary().remove(cardId, game);
if (card != null) {
cards.add(card);
}
}
Cards foundCards = new CardsImpl();
foundCards.addAll(target.getTargets());
if (reveal) {
controller.revealCards(sourceObject.getIdName(), foundCards, game); controller.revealCards(sourceObject.getIdName(), foundCards, game);
} }
if (forceShuffle) { if (forceShuffle) {
controller.shuffleLibrary(game); controller.shuffleLibrary(game);
} }
if (cards.size() > 0 && !game.isSimulation()) { controller.putCardsOnTopOfLibrary(foundCards, game, source, reveal);
game.informPlayers(controller.getLogName() + " moves " + cards.size() + " card" + (cards.size() == 1 ? " ":"s ") + "on top of his or her library");
}
for (Card card: cards) {
card.moveToZone(Zone.LIBRARY, source.getSourceId(), game, true);
}
return true; return true;
} }
// shuffle // shuffle
@ -115,7 +96,7 @@ public class SearchLibraryPutOnLibraryEffect extends SearchEffect {
private void setText() { private void setText() {
StringBuilder sb = new StringBuilder(); StringBuilder sb = new StringBuilder();
sb.append("Search your library for a ").append(target.getTargetName()); sb.append("search your library for a ").append(target.getTargetName());
if (reveal) { if (reveal) {
sb.append(" and reveal that card. Shuffle"); sb.append(" and reveal that card. Shuffle");
} else { } else {

View file

@ -877,7 +877,7 @@ public abstract class PlayerImpl implements Player, Serializable {
public boolean putCardsOnTopOfLibrary(Cards cardsToLibrary, Game game, Ability source, boolean anyOrder) { public boolean putCardsOnTopOfLibrary(Cards cardsToLibrary, Game game, Ability source, boolean anyOrder) {
Cards cards = new CardsImpl(cardsToLibrary); // prevent possible ConcurrentModificationException Cards cards = new CardsImpl(cardsToLibrary); // prevent possible ConcurrentModificationException
cards.addAll(cardsToLibrary); cards.addAll(cardsToLibrary);
if (cards.size() != 0) { if (!cards.isEmpty()) {
UUID sourceId = (source == null ? null : source.getSourceId()); UUID sourceId = (source == null ? null : source.getSourceId());
if (!anyOrder) { if (!anyOrder) {
for (UUID cardId : cards) { for (UUID cardId : cards) {

View file

@ -25,7 +25,6 @@
* authors and should not be interpreted as representing official policies, either expressed * authors and should not be interpreted as representing official policies, either expressed
* or implied, of BetaSteward_at_googlemail.com. * or implied, of BetaSteward_at_googlemail.com.
*/ */
package mage.target.common; package mage.target.common;
import java.util.HashSet; import java.util.HashSet;
@ -113,6 +112,7 @@ public class TargetCardInYourGraveyard extends TargetCard {
} }
return possibleTargets; return possibleTargets;
} }
/** /**
* Checks if there are enough {@link Card} that can be selected. * Checks if there are enough {@link Card} that can be selected.
* *
@ -127,6 +127,7 @@ public class TargetCardInYourGraveyard extends TargetCard {
} }
return false; return false;
} }
@Override @Override
public boolean canChoose(UUID sourceId, UUID sourceControllerId, Game game) { public boolean canChoose(UUID sourceId, UUID sourceControllerId, Game game) {
Player player = game.getPlayer(sourceControllerId); Player player = game.getPlayer(sourceControllerId);