diff --git a/Mage.Tests/src/test/java/org/mage/test/cards/abilities/oneshot/destroy/BaneOfProgessTest.java b/Mage.Tests/src/test/java/org/mage/test/cards/abilities/oneshot/destroy/BaneOfProgessTest.java new file mode 100644 index 00000000000..221325d4aba --- /dev/null +++ b/Mage.Tests/src/test/java/org/mage/test/cards/abilities/oneshot/destroy/BaneOfProgessTest.java @@ -0,0 +1,66 @@ +/* + * 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 org.mage.test.cards.abilities.oneshot.destroy; + +import mage.constants.PhaseStep; +import mage.constants.Zone; +import org.junit.Test; +import org.mage.test.serverside.base.CardTestPlayerBase; + +/** + * + * @author LevelX2 + */ +public class BaneOfProgessTest extends CardTestPlayerBase { + + @Test + public void testDestroy() { + // You may play land cards from your graveyard. + addCard(Zone.BATTLEFIELD, playerA, "Crucible of Worlds"); + addCard(Zone.BATTLEFIELD, playerA, "Island", 6); + // Put a token onto the battlefield that's a copy of target artifact or creature. + // Cipher (Then you may exile this spell card encoded on a creature you control. Whenever that creature deals combat damage to a player, its controller may cast a copy of the encoded card without paying its mana cost.) + addCard(Zone.HAND, playerA, "Stolen Identity"); // {4}{U}{U} + + addCard(Zone.BATTLEFIELD, playerB, "Forest", 6); + // When Bane of Progress enters the battlefield, destroy all artifacts and enchantments. Put a +1/+1 counter on Bane of Progress for each permanent destroyed this way. + addCard(Zone.HAND, playerB, "Bane of Progress"); + + castSpell(1, PhaseStep.PRECOMBAT_MAIN, playerA, "Stolen Identity", "Crucible of Worlds"); + castSpell(2, PhaseStep.PRECOMBAT_MAIN, playerB, "Bane of Progress"); + + setStopAt(2, PhaseStep.BEGIN_COMBAT); + execute(); + + assertGraveyardCount(playerA, "Stolen Identity", 1); + assertPermanentCount(playerA, "Crucible of Worlds", 0); + + assertPermanentCount(playerB, "Bane of Progress", 1); + assertPowerToughness(playerB, "Bane of Progress", 4, 4); + } +} diff --git a/Mage/src/main/java/mage/game/ZonesHandler.java b/Mage/src/main/java/mage/game/ZonesHandler.java index 4b1efae4c50..4d34f4b42ba 100644 --- a/Mage/src/main/java/mage/game/ZonesHandler.java +++ b/Mage/src/main/java/mage/game/ZonesHandler.java @@ -1,5 +1,6 @@ package mage.game; +import java.util.*; import mage.cards.Card; import mage.cards.Cards; import mage.cards.CardsImpl; @@ -16,12 +17,11 @@ import mage.game.stack.Spell; import mage.players.Player; import mage.target.TargetCard; -import java.util.*; - /** * Created by samuelsandeen on 9/6/16. */ public class ZonesHandler { + public static boolean cast(ZoneChangeInfo info, Game game) { if (maybeRemoveFromSourceZone(info, game)) { placeInDestinationZone(info, game); @@ -32,14 +32,14 @@ public class ZonesHandler { } public static boolean moveCard(ZoneChangeInfo info, Game game) { - List list = new ArrayList(); + List list = new ArrayList<>(); list.add(info); return moveCards(list, game).size() > 0; } public static List moveCards(List zoneChangeInfos, Game game) { // Handle Unmelded Meld Cards - for(ListIterator itr = zoneChangeInfos.listIterator(); itr.hasNext();) { + for (ListIterator itr = zoneChangeInfos.listIterator(); itr.hasNext();) { ZoneChangeInfo info = itr.next(); MeldCard card = game.getMeldCard(info.event.getTargetId()); // Copies should be handled as normal cards. @@ -170,12 +170,10 @@ public class ZonesHandler { ZoneChangeInfo subInfo = itr.next(); if (!maybeRemoveFromSourceZone(subInfo, game)) { itr.remove(); - } else { - if (subInfo.event.getTargetId() == meld.getTopHalfCard().getId()) { - meld.setTopLastZoneChangeCounter(meld.getTopHalfCard().getZoneChangeCounter(game)); - } else if (subInfo.event.getTargetId() == meld.getBottomHalfCard().getId()) { - meld.setBottomLastZoneChangeCounter(meld.getBottomHalfCard().getZoneChangeCounter(game)); - } + } else if (subInfo.event.getTargetId() == meld.getTopHalfCard().getId()) { + meld.setTopLastZoneChangeCounter(meld.getTopHalfCard().getZoneChangeCounter(game)); + } else if (subInfo.event.getTargetId() == meld.getBottomHalfCard().getId()) { + meld.setBottomLastZoneChangeCounter(meld.getBottomHalfCard().getZoneChangeCounter(game)); } } if (unmelded.subInfo.isEmpty()) { @@ -189,10 +187,13 @@ public class ZonesHandler { ZoneChangeEvent event = info.event; Card card = game.getCard(event.getTargetId()); boolean success = false; + if (card == null) { + return success; + } if (info.faceDown) { card.setFaceDown(true, game); } - if(!game.replaceEvent(event)) { + if (!game.replaceEvent(event)) { Zone fromZone = event.getFromZone(); if (event.getToZone() == Zone.BATTLEFIELD) { // controlling player can be replaced so use event player now @@ -246,7 +247,7 @@ public class ZonesHandler { } public static List chooseOrder(String message, Cards cards, Player player, Game game) { - List order = new ArrayList(); + List order = new ArrayList<>(); TargetCard target = new TargetCard(Zone.ALL, new FilterCard(message)); target.setRequired(true); while (player.isInGame() && cards.size() > 1) {