mirror of
https://github.com/magefree/mage.git
synced 2025-12-23 12:02:01 -08:00
implement Chaos Maw
This commit is contained in:
parent
e302e5f302
commit
7028f8ee3d
3 changed files with 65 additions and 0 deletions
|
|
@ -0,0 +1,28 @@
|
|||
package org.mage.test.cards.single.hou;
|
||||
|
||||
import mage.constants.PhaseStep;
|
||||
import mage.constants.Zone;
|
||||
import org.junit.Test;
|
||||
import org.mage.test.serverside.base.CardTestPlayerBase;
|
||||
|
||||
public class ChaosMawTest extends CardTestPlayerBase {
|
||||
|
||||
private String chaosMaw = "Chaos Maw";
|
||||
|
||||
@Test
|
||||
public void testChaosMaw(){
|
||||
addCard(Zone.HAND, playerA, chaosMaw, 1);
|
||||
addCard(Zone.BATTLEFIELD, playerA, "Mountain", 10);
|
||||
addCard(Zone.BATTLEFIELD, playerA, "Grizzly Bears", 1);
|
||||
addCard(Zone.BATTLEFIELD, playerB, "Savannah Lions", 1);
|
||||
|
||||
castSpell(1, PhaseStep.PRECOMBAT_MAIN, playerA, chaosMaw );
|
||||
|
||||
setStopAt(1, PhaseStep.POSTCOMBAT_MAIN);
|
||||
|
||||
execute();
|
||||
|
||||
assertGraveyardCount(playerA, "Grizzly Bears", 1);
|
||||
assertGraveyardCount(playerB, "Savannah Lions", 1);
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue