mirror of
https://github.com/correl/mage.git
synced 2025-04-03 09:18:59 -09:00
Create test for Kalitas, Bloodchief of Ghet (ZEN)
This commit is contained in:
parent
f8ac5e64a6
commit
59ef1c0def
1 changed files with 25 additions and 0 deletions
|
@ -0,0 +1,25 @@
|
|||
package org.mage.test.cards.single;
|
||||
|
||||
import mage.constants.PhaseStep;
|
||||
import mage.constants.Zone;
|
||||
import org.junit.Test;
|
||||
import org.mage.test.serverside.base.CardTestPlayerBase;
|
||||
|
||||
public class KalitasBloodchiefOfGhetTest extends CardTestPlayerBase {
|
||||
@Test
|
||||
public void testTokenCreatedOnlyIfTargetDies() {
|
||||
addCard(Zone.BATTLEFIELD, playerA, "Kalitas, Bloodchief of Ghet", 1);
|
||||
addCard(Zone.BATTLEFIELD, playerA, "Swamp", 3);
|
||||
addCard(Zone.BATTLEFIELD, playerA, "Rest in Peace", 1);
|
||||
|
||||
addCard(Zone.BATTLEFIELD, playerB, "Gray Ogre", 1);
|
||||
|
||||
activateAbility(3, PhaseStep.PRECOMBAT_MAIN, playerA, "{B}{B}{B}", "Gray Ogre");
|
||||
setStopAt(3, PhaseStep.BEGIN_COMBAT);
|
||||
|
||||
execute();
|
||||
|
||||
assertPermanentCount(playerA, 5);
|
||||
assertPermanentCount(playerB, 0);
|
||||
}
|
||||
}
|
Loading…
Add table
Reference in a new issue