[ZNR] Implemented Prowling Felidar

This commit is contained in:
Evan Kranzler 2020-09-02 15:54:49 -04:00
parent 9ce0a5bec5
commit f9f845cb44
3 changed files with 48 additions and 2 deletions

View file

@ -1,4 +1,3 @@
package mage.abilities.common;
import mage.abilities.TriggeredAbilityImpl;
@ -11,7 +10,6 @@ import mage.game.permanent.Permanent;
import mage.target.targetpointer.FixedTarget;
/**
*
* @author BetaSteward_at_googlemail.com
*/
public class LandfallAbility extends TriggeredAbilityImpl {
@ -19,6 +17,10 @@ public class LandfallAbility extends TriggeredAbilityImpl {
protected SetTargetPointer setTargetPointer;
protected Permanent triggeringLand;
public LandfallAbility(Effect effect) {
this(effect, false);
}
public LandfallAbility(Effect effect, boolean optional) {
this(Zone.BATTLEFIELD, effect, optional);
}