Implemented Wilderness Reclamation

This commit is contained in:
Evan Kranzler 2019-01-03 13:27:11 -05:00
parent 9dbfab364e
commit cd68ccadf9
2 changed files with 37 additions and 0 deletions

View file

@ -0,0 +1,36 @@
package mage.cards.w;
import mage.abilities.common.BeginningOfEndStepTriggeredAbility;
import mage.abilities.effects.common.UntapAllControllerEffect;
import mage.cards.CardImpl;
import mage.cards.CardSetInfo;
import mage.constants.CardType;
import mage.constants.TargetController;
import mage.filter.StaticFilters;
import java.util.UUID;
/**
* @author TheElk801
*/
public final class WildernessReclamation extends CardImpl {
public WildernessReclamation(UUID ownerId, CardSetInfo setInfo) {
super(ownerId, setInfo, new CardType[]{CardType.ENCHANTMENT}, "{3}{G}");
// At the beginning of your end step, untap all lands you control.
this.addAbility(new BeginningOfEndStepTriggeredAbility(
new UntapAllControllerEffect(StaticFilters.FILTER_LANDS),
TargetController.YOU, false
));
}
private WildernessReclamation(final WildernessReclamation card) {
super(card);
}
@Override
public WildernessReclamation copy() {
return new WildernessReclamation(this);
}
}

View file

@ -83,6 +83,7 @@ public final class RavnicaAllegiance extends ExpansionSet {
cards.add(new SetCardInfo("Stomping Ground", 259, Rarity.RARE, mage.cards.s.StompingGround.class));
cards.add(new SetCardInfo("The Haunt of Hightower", 273, Rarity.MYTHIC, mage.cards.t.TheHauntOfHightower.class));
cards.add(new SetCardInfo("Tithe Taker", 27, Rarity.RARE, mage.cards.t.TitheTaker.class));
cards.add(new SetCardInfo("Wilderness Reclamation", 140, Rarity.UNCOMMON, mage.cards.w.WildernessReclamation.class));
cards.add(new SetCardInfo("Zegana, Utopian Speaker", 214, Rarity.RARE, mage.cards.z.ZeganaUtopianSpeaker.class));
}