mirror of
https://github.com/correl/mage.git
synced 2024-11-14 11:09:31 +00:00
Fix Reflection of Kiki-Jiki test to not cheat in the back face. (#10423)
This commit is contained in:
parent
cf0911fa8a
commit
4fae2e799a
1 changed files with 6 additions and 6 deletions
|
@ -25,23 +25,23 @@ public class ReflectionOfKikiJikiTest extends CardTestPlayerBase {
|
|||
addCard(Zone.HAND, playerA, "Blustersquall", 1);
|
||||
|
||||
addCard(Zone.BATTLEFIELD, playerB, "Mountain", 1);
|
||||
addCard(Zone.BATTLEFIELD, playerB, "Reflection of Kiki-Jiki", 1);
|
||||
addCard(Zone.BATTLEFIELD, playerB, "Fable of the Mirror-Breaker", 1);
|
||||
// {T}: Draw two cards. Target opponent gains control of Humble Defector. Activate this ability only during your turn.
|
||||
addCard(Zone.BATTLEFIELD, playerB, "Humble Defector", 1);
|
||||
|
||||
castSpell(2, PhaseStep.UPKEEP, playerA, "Blustersquall", "Humble Defector"); // Tap nontoken Defector so only the Token can be used later
|
||||
castSpell(6, PhaseStep.UPKEEP, playerA, "Blustersquall", "Humble Defector"); // Tap nontoken Defector so only the Token can be used later
|
||||
|
||||
activateAbility(2, PhaseStep.PRECOMBAT_MAIN, playerB, "{1}, {T}: Create a token that's a copy of another target nonlegendary creature you control", "Humble Defector");
|
||||
activateAbility(6, PhaseStep.PRECOMBAT_MAIN, playerB, "{1}, {T}: Create a token that's a copy of another target nonlegendary creature you control", "Humble Defector");
|
||||
|
||||
activateAbility(2, PhaseStep.POSTCOMBAT_MAIN, playerB, "{T}: Draw two cards. Target opponent gains control");
|
||||
activateAbility(6, PhaseStep.POSTCOMBAT_MAIN, playerB, "{T}: Draw two cards. Target opponent gains control");
|
||||
|
||||
setStopAt(3, PhaseStep.UPKEEP);
|
||||
setStopAt(7, PhaseStep.UPKEEP);
|
||||
execute();
|
||||
|
||||
assertLife(playerA, 20);
|
||||
assertLife(playerB, 20);
|
||||
|
||||
assertHandCount(playerB, 3); // normal 3 draw from turn two + 2 from Defector
|
||||
assertHandCount(playerB, 5); // normal 3 drawn from three turns + 2 from Defector
|
||||
|
||||
assertGraveyardCount(playerA, "Blustersquall", 1);
|
||||
assertPermanentCount(playerB, "Humble Defector", 1);
|
||||
|
|
Loading…
Reference in a new issue