mirror of
https://github.com/magefree/mage.git
synced 2025-12-30 15:32:08 -08:00
wip
This commit is contained in:
parent
f09a6d847e
commit
cab436e9e5
9 changed files with 186 additions and 25 deletions
|
|
@ -0,0 +1,23 @@
|
|||
package org.mage.test.cards.single.iko;
|
||||
|
||||
import mage.constants.Zone;
|
||||
import org.junit.Test;
|
||||
import org.mage.test.serverside.base.CardTestPlayerBase;
|
||||
|
||||
public class ZilorthaStrengthIncarnateTest extends CardTestPlayerBase {
|
||||
|
||||
@Test
|
||||
public void testNotPresent_damageResolvesLethalityAsNormal() {
|
||||
addCard(Zone.BATTLEFIELD, playerA, "Savai Sabertooth", 1);
|
||||
addCard(Zone.BATTLEFIELD, playerB, "Drannith Healer", 1);
|
||||
|
||||
attack(2, playerA, "Savai Sabertooth");
|
||||
block(2, playerB, "Drannith Healer", "Savai Sabertooth");
|
||||
|
||||
execute();
|
||||
|
||||
assertGraveyardCount(playerA, "Savai Sabertooth", 1);
|
||||
assertGraveyardCount(playerB, "Drannith Healer", 1);
|
||||
}
|
||||
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue