mirror of
https://github.com/correl/mage.git
synced 2024-12-25 03:00:15 +00:00
[MID] Implemented Overgrown Farmland
This commit is contained in:
parent
04efba1506
commit
6bb375c028
3 changed files with 50 additions and 1 deletions
49
Mage.Sets/src/mage/cards/o/OvergrownFarmland.java
Normal file
49
Mage.Sets/src/mage/cards/o/OvergrownFarmland.java
Normal file
|
@ -0,0 +1,49 @@
|
|||
package mage.cards.o;
|
||||
|
||||
import mage.abilities.common.EntersBattlefieldAbility;
|
||||
import mage.abilities.condition.Condition;
|
||||
import mage.abilities.condition.common.PermanentsOnTheBattlefieldCondition;
|
||||
import mage.abilities.decorator.ConditionalOneShotEffect;
|
||||
import mage.abilities.effects.common.TapSourceEffect;
|
||||
import mage.abilities.mana.GreenManaAbility;
|
||||
import mage.abilities.mana.WhiteManaAbility;
|
||||
import mage.cards.CardImpl;
|
||||
import mage.cards.CardSetInfo;
|
||||
import mage.constants.CardType;
|
||||
import mage.constants.ComparisonType;
|
||||
import mage.filter.StaticFilters;
|
||||
|
||||
import java.util.UUID;
|
||||
|
||||
/**
|
||||
* @author TheElk801
|
||||
*/
|
||||
public final class OvergrownFarmland extends CardImpl {
|
||||
|
||||
private static final Condition condition = new PermanentsOnTheBattlefieldCondition(
|
||||
StaticFilters.FILTER_LANDS, ComparisonType.FEWER_THAN, 2
|
||||
);
|
||||
|
||||
public OvergrownFarmland(UUID ownerId, CardSetInfo setInfo) {
|
||||
super(ownerId, setInfo, new CardType[]{CardType.LAND}, "");
|
||||
|
||||
// Overgrown Farmland enters the battlefield tapped unless you control two or more other lands.
|
||||
this.addAbility(new EntersBattlefieldAbility(
|
||||
new ConditionalOneShotEffect(new TapSourceEffect(), condition),
|
||||
"tapped unless you control two or more other lands"
|
||||
));
|
||||
|
||||
// {T}: Add {G} or {W}.
|
||||
this.addAbility(new GreenManaAbility());
|
||||
this.addAbility(new WhiteManaAbility());
|
||||
}
|
||||
|
||||
private OvergrownFarmland(final OvergrownFarmland card) {
|
||||
super(card);
|
||||
}
|
||||
|
||||
@Override
|
||||
public OvergrownFarmland copy() {
|
||||
return new OvergrownFarmland(this);
|
||||
}
|
||||
}
|
|
@ -27,7 +27,6 @@ public final class RockfallVale extends CardImpl {
|
|||
public RockfallVale(UUID ownerId, CardSetInfo setInfo) {
|
||||
super(ownerId, setInfo, new CardType[]{CardType.LAND}, "");
|
||||
|
||||
|
||||
// Rockfall Vale enters the battlefield tapped unless you control two or more other lands.
|
||||
this.addAbility(new EntersBattlefieldAbility(
|
||||
new ConditionalOneShotEffect(new TapSourceEffect(), condition),
|
||||
|
|
|
@ -39,6 +39,7 @@ public final class InnistradMidnightHunt extends ExpansionSet {
|
|||
cards.add(new SetCardInfo("Island", 270, Rarity.LAND, mage.cards.basiclands.Island.class, FULL_ART_BFZ_VARIOUS));
|
||||
cards.add(new SetCardInfo("Join the Dance", 229, Rarity.UNCOMMON, mage.cards.j.JoinTheDance.class));
|
||||
cards.add(new SetCardInfo("Mountain", 274, Rarity.LAND, mage.cards.basiclands.Mountain.class, FULL_ART_BFZ_VARIOUS));
|
||||
cards.add(new SetCardInfo("Overgrown Farmland", 265, Rarity.RARE, mage.cards.o.OvergrownFarmland.class));
|
||||
cards.add(new SetCardInfo("Plains", 268, Rarity.LAND, mage.cards.basiclands.Plains.class, FULL_ART_BFZ_VARIOUS));
|
||||
cards.add(new SetCardInfo("Play with Fire", 154, Rarity.UNCOMMON, mage.cards.p.PlayWithFire.class));
|
||||
cards.add(new SetCardInfo("Rockfall Vale", 266, Rarity.RARE, mage.cards.r.RockfallVale.class));
|
||||
|
|
Loading…
Reference in a new issue