mirror of
https://github.com/magefree/mage.git
synced 2026-01-09 12:22:10 -08:00
[LTC] Implement Mirkwood Trapper (#10665)
This commit is contained in:
parent
10b586f4b3
commit
bc403fd6fe
4 changed files with 152 additions and 2 deletions
|
|
@ -4,7 +4,6 @@ import mage.abilities.TriggeredAbilityImpl;
|
|||
import mage.abilities.effects.Effect;
|
||||
import mage.constants.Zone;
|
||||
import mage.game.Game;
|
||||
import mage.game.events.DamagedPlayerEvent;
|
||||
import mage.game.events.GameEvent;
|
||||
import mage.target.targetpointer.FixedTarget;
|
||||
|
||||
|
|
|
|||
|
|
@ -17,7 +17,11 @@ public class TargetAttackingCreature extends TargetPermanent {
|
|||
}
|
||||
|
||||
public TargetAttackingCreature(int minNumTargets, int maxNumTargets) {
|
||||
super(minNumTargets, maxNumTargets, StaticFilters.FILTER_ATTACKING_CREATURE, false);
|
||||
this(minNumTargets, maxNumTargets, false);
|
||||
}
|
||||
|
||||
public TargetAttackingCreature(int minNumTargets, int maxNumTargets, boolean notTarget) {
|
||||
super(minNumTargets, maxNumTargets, StaticFilters.FILTER_ATTACKING_CREATURE, notTarget);
|
||||
}
|
||||
|
||||
public TargetAttackingCreature(final TargetAttackingCreature target) {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue