1
0
Fork 0
mirror of https://github.com/correl/mage.git synced 2025-04-02 03:18:09 -09:00

Fixed disrupting shoal test for CMC 5

This commit is contained in:
drmDev 2016-03-03 20:33:50 -05:00
parent f05afca73d
commit f1bbc16a75

View file

@ -173,14 +173,14 @@ public class DisruptingShoalTest extends CardTestPlayerBase {
castSpell(1, PhaseStep.PRECOMBAT_MAIN, playerA, "Air Elemental");
castSpell(1, PhaseStep.PRECOMBAT_MAIN, playerB, "Disrupting Shoal", "Air Elemental", "Air Elemental");
playerB.addChoice("Yes"); // use alternate costs = 3 CMC = Away
playerB.addChoice("Yes"); // use alternate costs = 2 or 3 CMC = Far // Away, not the combined cost!
setStopAt(1, PhaseStep.CLEANUP);
execute();
assertExileCount(playerB, 1); // Far // Away should be exiled as part of Disrupting alternative cost
assertGraveyardCount(playerB,"Disrupting Shoal", 1);
assertPermanentCount(playerA, "Air Elemental", 0); // should have been countered by Shoal
assertGraveyardCount(playerA, "Air Elemental", 1);
assertPermanentCount(playerA, "Air Elemental", 1); // should NOT have been countered by Shoal
assertGraveyardCount(playerA, "Air Elemental", 0);
}
}