1
0
Fork 0
mirror of https://github.com/correl/mage.git synced 2025-04-03 09:18:59 -09:00

Merge pull request from tobz/bugfix/fix-razorverge-thicket-etb-condition

Razorverge Thicket should enter untapped only if you control two or less lands.
This commit is contained in:
LevelX2 2015-10-27 15:06:19 +01:00
commit ab6086c708
2 changed files with 40 additions and 1 deletions
Mage.Sets/src/mage/sets/scarsofmirrodin
Mage.Tests/src/test/java/org/mage/test/cards/conditional

View file

@ -54,7 +54,7 @@ public class RazorvergeThicket extends CardImpl {
super(ownerId, 228, "Razorverge Thicket", Rarity.RARE, new CardType[]{CardType.LAND}, null);
this.expansionSetCode = "SOM";
Condition controls = new InvertCondition(new PermanentsOnTheBattlefieldCondition(filter, PermanentsOnTheBattlefieldCondition.CountType.FEWER_THAN, 4));
Condition controls = new InvertCondition(new PermanentsOnTheBattlefieldCondition(filter, PermanentsOnTheBattlefieldCondition.CountType.FEWER_THAN, 3));
String abilityText = "tap it unless you control fewer than 3 lands";
this.addAbility(new EntersBattlefieldAbility(new ConditionalOneShotEffect(new TapSourceEffect(), controls, abilityText), abilityText));
this.addAbility(new GreenManaAbility());

View file

@ -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);
}
}