mirror of
https://github.com/magefree/mage.git
synced 2026-01-10 21:02:08 -08:00
* Mistbind Clique - Added test for champpion triggered ability. Set zone ability has to work in.
This commit is contained in:
parent
4b393f949d
commit
63ae8a9f13
5 changed files with 41 additions and 18 deletions
|
|
@ -100,4 +100,33 @@ public class ChampionTest extends CardTestPlayerBase {
|
|||
|
||||
}
|
||||
|
||||
/**
|
||||
* Mistblind clique land tap ability does not work
|
||||
*/
|
||||
|
||||
@Test
|
||||
public void testMistbindClique() {
|
||||
addCard(Zone.BATTLEFIELD, playerA, "Island", 4);
|
||||
addCard(Zone.BATTLEFIELD, playerA, "Zephyr Sprite");
|
||||
// Flash, Flying
|
||||
// Champion a Faerie
|
||||
// When a Faerie is championed with Mistbind Clique, tap all lands target player controls.
|
||||
addCard(Zone.HAND, playerA, "Mistbind Clique");
|
||||
|
||||
addCard(Zone.BATTLEFIELD, playerB, "Plains", 4);
|
||||
addTarget(playerA, playerB);
|
||||
|
||||
castSpell(1, PhaseStep.PRECOMBAT_MAIN, playerA, "Mistbind Clique");
|
||||
|
||||
setStopAt(1, PhaseStep.BEGIN_COMBAT);
|
||||
execute();
|
||||
|
||||
assertPermanentCount(playerA, "Mistbind Clique", 1);
|
||||
assertExileCount("Zephyr Sprite", 1);
|
||||
|
||||
assertTapped("Plains", true);
|
||||
|
||||
}
|
||||
|
||||
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue