mirror of
https://github.com/magefree/mage.git
synced 2025-12-21 19:11:59 -08:00
[WOC] Implement Archmage of Echoes (#11017)
This commit is contained in:
parent
cde60d38d8
commit
6852786a10
3 changed files with 90 additions and 0 deletions
|
|
@ -0,0 +1,30 @@
|
|||
package org.mage.test.cards.single.woc;
|
||||
|
||||
import org.junit.Test;
|
||||
import org.mage.test.serverside.base.CardTestPlayerBase;
|
||||
|
||||
import mage.constants.PhaseStep;
|
||||
import mage.constants.Zone;
|
||||
|
||||
public class ArchmageOfEchoesTest extends CardTestPlayerBase {
|
||||
|
||||
private static String ARCHMAGE = "Archmage of Echoes";
|
||||
private static String FAERIE = "Faerie Miscreant";
|
||||
|
||||
// Whenever you cast a Faerie or Wizard permanent spell, copy it.
|
||||
@Test
|
||||
public void testCopy() {
|
||||
addCard(Zone.BATTLEFIELD, playerA, ARCHMAGE);
|
||||
addCard(Zone.BATTLEFIELD, playerA, "Island", 1);
|
||||
addCard(Zone.HAND, playerA, FAERIE);
|
||||
|
||||
castSpell(1, PhaseStep.PRECOMBAT_MAIN, playerA, FAERIE);
|
||||
|
||||
setStopAt(1, PhaseStep.END_TURN);
|
||||
setStrictChooseMode(true);
|
||||
execute();
|
||||
|
||||
assertPermanentCount(playerA, FAERIE, 2);
|
||||
}
|
||||
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue