mirror of
https://github.com/magefree/mage.git
synced 2026-01-10 21:02:08 -08:00
* Fixed that state triggered abilities were not checked at the correct times.
This commit is contained in:
parent
92f30f3f2f
commit
340398fb74
12 changed files with 217 additions and 97 deletions
|
|
@ -0,0 +1,71 @@
|
|||
/*
|
||||
* 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.triggers.state;
|
||||
|
||||
import mage.constants.PhaseStep;
|
||||
import mage.constants.Zone;
|
||||
import org.junit.Test;
|
||||
import org.mage.test.serverside.base.CardTestPlayerBase;
|
||||
|
||||
/**
|
||||
*
|
||||
* @author LevelX2
|
||||
*/
|
||||
public class PhyrexianDevourerTest extends CardTestPlayerBase {
|
||||
|
||||
/**
|
||||
* Check that Phyrexian Devourer is sacrifriced as soon as the counters are
|
||||
* added
|
||||
*
|
||||
*/
|
||||
@Test
|
||||
public void testBoostChecked() {
|
||||
// When Phyrexian Devourer's power is 7 or greater, sacrifice it.
|
||||
// Exile the top card of your library: Put X +1/+1 counters on Phyrexian Devourer, where X is the exiled card's converted mana cost.
|
||||
addCard(Zone.BATTLEFIELD, playerA, "Phyrexian Devourer");
|
||||
addCard(Zone.LIBRARY, playerA, "Phyrexian Devourer");
|
||||
skipInitShuffling();
|
||||
|
||||
addCard(Zone.BATTLEFIELD, playerB, "Silvercoat Lion");
|
||||
|
||||
attack(2, playerB, "Silvercoat Lion");
|
||||
block(2, playerA, "Phyrexian Devourer", "Silvercoat Lion");
|
||||
|
||||
activateAbility(2, PhaseStep.DECLARE_BLOCKERS, playerA, "Exile the top card of your library");
|
||||
|
||||
setStopAt(2, PhaseStep.POSTCOMBAT_MAIN);
|
||||
execute();
|
||||
|
||||
assertGraveyardCount(playerA, "Phyrexian Devourer", 1);
|
||||
assertExileCount("Phyrexian Devourer", 1);
|
||||
|
||||
assertPermanentCount(playerB, "Silvercoat Lion", 1);
|
||||
|
||||
}
|
||||
|
||||
}
|
||||
|
|
@ -92,4 +92,51 @@ public class AnafenzaTest extends CardTestCommanderDuelBase {
|
|||
|
||||
}
|
||||
|
||||
/**
|
||||
* Token don't go to exile because they are no creature cards
|
||||
*/
|
||||
@Test
|
||||
public void testAnafenzaExileInCombatOmnathToken() {
|
||||
addCard(Zone.BATTLEFIELD, playerA, "Plains", 1);
|
||||
addCard(Zone.BATTLEFIELD, playerA, "Swamp", 1);
|
||||
addCard(Zone.BATTLEFIELD, playerA, "Forest", 1);
|
||||
addCard(Zone.BATTLEFIELD, playerA, "Acidic Slime", 1);
|
||||
|
||||
addCard(Zone.HAND, playerB, "Forest", 2);
|
||||
// <i>Landfall</i> - Whenever a land enters the battlefield under your control, put a 5/5 red and green Elemental creature token onto the battlefield.
|
||||
// Whenever Omnath, Locus of Rage or another Elemental you control dies, Omnath deals 3 damage to target creature or player.
|
||||
addCard(Zone.BATTLEFIELD, playerB, "Omnath, Locus of Rage", 1);
|
||||
|
||||
// Whenever Anafenza, the Foremost attacks, put a +1/+1 counter on another target tapped creature you control.
|
||||
// If a creature card would be put into an opponent's graveyard from anywhere, exile it instead.
|
||||
castSpell(1, PhaseStep.PRECOMBAT_MAIN, playerA, "Anafenza, the Foremost");
|
||||
|
||||
playLand(2, PhaseStep.PRECOMBAT_MAIN, playerB, "Forest");
|
||||
playLand(4, PhaseStep.PRECOMBAT_MAIN, playerB, "Forest");
|
||||
|
||||
attack(5, playerA, "Acidic Slime");
|
||||
block(5, playerB, "Elemental", "Acidic Slime");
|
||||
attack(5, playerA, "Anafenza, the Foremost");
|
||||
block(5, playerB, "Elemental", "Anafenza, the Foremost");
|
||||
addTarget(playerB, playerA);
|
||||
|
||||
setStopAt(5, PhaseStep.POSTCOMBAT_MAIN);
|
||||
execute();
|
||||
|
||||
assertExileCount(playerA, 0);
|
||||
assertExileCount(playerB, 0);
|
||||
|
||||
assertPermanentCount(playerB, "Elemental", 1);
|
||||
|
||||
assertGraveyardCount(playerA, "Acidic Slime", 1);
|
||||
assertGraveyardCount(playerA, "Anafenza, the Foremost", 0);
|
||||
assertCommandZoneCount(playerA, "Anafenza, the Foremost", 1);
|
||||
|
||||
assertHandCount(playerA, 2); // turn 3 + 5 draw
|
||||
assertHandCount(playerB, 2); // turn 2 + 4 draw
|
||||
|
||||
assertLife(playerA, 37);
|
||||
assertLife(playerB, 40);
|
||||
}
|
||||
|
||||
}
|
||||
|
|
|
|||
|
|
@ -585,7 +585,7 @@ public abstract class CardTestPlayerAPIImpl extends MageTestPlayerBase implement
|
|||
actualCount++;
|
||||
}
|
||||
}
|
||||
Assert.assertEquals("(Battlefield) Card counts are not equal (" + commandZoneObjectName + ")", count, actualCount);
|
||||
Assert.assertEquals("(Command Zone) Card counts are not equal (" + commandZoneObjectName + ")", count, actualCount);
|
||||
}
|
||||
|
||||
/**
|
||||
|
|
@ -777,7 +777,7 @@ public abstract class CardTestPlayerAPIImpl extends MageTestPlayerBase implement
|
|||
*/
|
||||
public void assertHandCount(Player player, int count) throws AssertionError {
|
||||
int actual = currentGame.getPlayer(player.getId()).getHand().size();
|
||||
Assert.assertEquals("(Hand) Card counts are not equal ", count, actual);
|
||||
Assert.assertEquals("(Hand " + player.getName() + ") Card counts are not equal ", count, actual);
|
||||
}
|
||||
|
||||
/**
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue