mirror of
https://github.com/magefree/mage.git
synced 2025-12-27 05:52:06 -08:00
[ZNR] Implemented Prowling Felidar
This commit is contained in:
parent
9ce0a5bec5
commit
f9f845cb44
3 changed files with 48 additions and 2 deletions
|
|
@ -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);
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue