mirror of
https://github.com/magefree/mage.git
synced 2025-12-23 12:02:01 -08:00
Razorverge Thicket should enter untapped only if you control two or less lands.
This commit is contained in:
parent
40d85ecbff
commit
d42e5fed78
2 changed files with 40 additions and 1 deletions
|
|
@ -0,0 +1,39 @@
|
|||
package org.mage.test.cards.conditional;
|
||||
|
||||
import mage.constants.PhaseStep;
|
||||
import mage.constants.Zone;
|
||||
import org.junit.Test;
|
||||
import org.mage.test.serverside.base.CardTestPlayerBase;
|
||||
|
||||
/**
|
||||
* @author tobz
|
||||
*/
|
||||
public class RazorvergeThicketTest extends CardTestPlayerBase {
|
||||
|
||||
@Test
|
||||
public void testEntersTappedForThreeLands() {
|
||||
addCard(Zone.BATTLEFIELD, playerA, "Island", 3);
|
||||
addCard(Zone.HAND, playerA, "Razorverge Thicket");
|
||||
|
||||
playLand(1, PhaseStep.PRECOMBAT_MAIN, playerA, "Razorverge Thicket");
|
||||
|
||||
setStopAt(1, PhaseStep.BEGIN_COMBAT);
|
||||
execute();
|
||||
|
||||
assertTapped("Razorverge Thicket", true);
|
||||
}
|
||||
|
||||
@Test
|
||||
public void testEntersUntappedForTwoLands() {
|
||||
addCard(Zone.BATTLEFIELD, playerA, "Island", 2);
|
||||
addCard(Zone.HAND, playerA, "Razorverge Thicket");
|
||||
|
||||
playLand(1, PhaseStep.PRECOMBAT_MAIN, playerA, "Razorverge Thicket");
|
||||
|
||||
setStopAt(1, PhaseStep.BEGIN_COMBAT);
|
||||
execute();
|
||||
|
||||
assertTapped("Razorverge Thicket", false);
|
||||
}
|
||||
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue