mirror of
https://github.com/magefree/mage.git
synced 2025-12-22 03:22:00 -08:00
Adjusted a test to cast detrimental "forked" spells onto an opponents creatures instead of it own.
This commit is contained in:
parent
4f0ff05069
commit
af8e790522
1 changed files with 6 additions and 6 deletions
|
|
@ -63,8 +63,8 @@ public class CopyPermanentSpellTest extends CardTestPlayerBase {
|
||||||
public void testAuraTokenRedirect() {
|
public void testAuraTokenRedirect() {
|
||||||
makeTester();
|
makeTester();
|
||||||
addCard(Zone.BATTLEFIELD, playerA, "Swamp", 1);
|
addCard(Zone.BATTLEFIELD, playerA, "Swamp", 1);
|
||||||
addCard(Zone.BATTLEFIELD, playerA, "Centaur Courser");
|
addCard(Zone.BATTLEFIELD, playerB, "Centaur Courser");
|
||||||
addCard(Zone.BATTLEFIELD, playerA, "Hill Giant");
|
addCard(Zone.BATTLEFIELD, playerB, "Hill Giant");
|
||||||
addCard(Zone.HAND, playerA, "Dead Weight");
|
addCard(Zone.HAND, playerA, "Dead Weight");
|
||||||
|
|
||||||
setChoice(playerA, true);
|
setChoice(playerA, true);
|
||||||
|
|
@ -73,10 +73,10 @@ public class CopyPermanentSpellTest extends CardTestPlayerBase {
|
||||||
setStopAt(1, PhaseStep.END_TURN);
|
setStopAt(1, PhaseStep.END_TURN);
|
||||||
execute();
|
execute();
|
||||||
|
|
||||||
assertPermanentCount(playerA, "Centaur Courser", 1);
|
assertPermanentCount(playerB, "Centaur Courser", 1);
|
||||||
assertPowerToughness(playerA, "Centaur Courser", 1, 1);
|
assertPowerToughness(playerB, "Centaur Courser", 1, 1);
|
||||||
assertPermanentCount(playerA, "Hill Giant", 1);
|
assertPermanentCount(playerB, "Hill Giant", 1);
|
||||||
assertPowerToughness(playerA, "Hill Giant", 1, 1);
|
assertPowerToughness(playerB, "Hill Giant", 1, 1);
|
||||||
assertPermanentCount(playerA, "Dead Weight", 2);
|
assertPermanentCount(playerA, "Dead Weight", 2);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue