mirror of
https://github.com/magefree/mage.git
synced 2026-01-10 04:42:07 -08:00
changed cardtype from list to enumset
This commit is contained in:
parent
c0ffc47bf7
commit
372584f7ad
22 changed files with 116 additions and 55 deletions
|
|
@ -0,0 +1,26 @@
|
|||
package org.mage.test.cards.continuous;
|
||||
|
||||
import mage.constants.PhaseStep;
|
||||
import mage.constants.Zone;
|
||||
import org.junit.Test;
|
||||
import org.mage.test.serverside.base.CardTestPlayerBase;
|
||||
|
||||
/**
|
||||
* Created by IGOUDT on 23-2-2017.
|
||||
*/
|
||||
public class AuratouchedMageTest extends CardTestPlayerBase {
|
||||
|
||||
@Test
|
||||
public void testSearch() {
|
||||
addCard(Zone.BATTLEFIELD, playerA, "Plains", 10);
|
||||
|
||||
addCard(Zone.HAND, playerA, "Auratouched Mage");
|
||||
|
||||
castSpell(0, PhaseStep.PRECOMBAT_MAIN, playerA, "Auratouched Mage");
|
||||
addCard(Zone.LIBRARY, playerA, "White Ward", 1);
|
||||
setChoice(playerA, "White ward");
|
||||
setStopAt(0, PhaseStep.PRECOMBAT_MAIN);
|
||||
execute();
|
||||
}
|
||||
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue