mirror of
https://github.com/magefree/mage.git
synced 2026-01-10 21:02:08 -08:00
[LRW] Arbiter of Knollridge
This commit is contained in:
parent
51d914c23e
commit
8eab84b4c0
2 changed files with 139 additions and 0 deletions
|
|
@ -0,0 +1,27 @@
|
|||
package org.mage.test.cards.single;
|
||||
|
||||
import mage.Constants;
|
||||
import org.junit.Test;
|
||||
import org.mage.test.serverside.base.CardTestPlayerBase;
|
||||
|
||||
public class ArbiterOfKnollridgeTest extends CardTestPlayerBase {
|
||||
|
||||
@Test
|
||||
public void testCard() {
|
||||
addCard(Constants.Zone.BATTLEFIELD, playerA, "Plains", 6);
|
||||
addCard(Constants.Zone.BATTLEFIELD, playerA, "Mountain", 6);
|
||||
addCard(Constants.Zone.HAND, playerA, "Shock");
|
||||
addCard(Constants.Zone.HAND, playerA, "Arbiter of Knollridge");
|
||||
|
||||
castSpell(1, Constants.PhaseStep.PRECOMBAT_MAIN, playerA, "Shock", playerB);
|
||||
castSpell(1, Constants.PhaseStep.POSTCOMBAT_MAIN, playerA, "Arbiter of Knollridge");
|
||||
|
||||
setStopAt(1, Constants.PhaseStep.END_TURN);
|
||||
execute();
|
||||
|
||||
assertLife(playerA, 20);
|
||||
assertLife(playerB, 20);
|
||||
assertPermanentCount(playerA, "Arbiter of Knollridge", 1);
|
||||
assertGraveyardCount(playerA, 1);
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue