mirror of
https://github.com/correl/mage.git
synced 2024-12-25 19:25:41 +00:00
added nonland filter to ability
This commit is contained in:
parent
cbfcfa6d5e
commit
4a9b50bb71
1 changed files with 5 additions and 1 deletions
|
@ -8,6 +8,8 @@ import mage.cards.CardImpl;
|
||||||
import mage.cards.CardSetInfo;
|
import mage.cards.CardSetInfo;
|
||||||
import mage.constants.CardType;
|
import mage.constants.CardType;
|
||||||
import mage.constants.SubType;
|
import mage.constants.SubType;
|
||||||
|
import mage.filter.FilterPermanent;
|
||||||
|
import mage.filter.common.FilterNonlandPermanent;
|
||||||
import mage.target.TargetPermanent;
|
import mage.target.TargetPermanent;
|
||||||
|
|
||||||
import java.util.UUID;
|
import java.util.UUID;
|
||||||
|
@ -17,6 +19,8 @@ import java.util.UUID;
|
||||||
*/
|
*/
|
||||||
public final class StingingLionfish extends CardImpl {
|
public final class StingingLionfish extends CardImpl {
|
||||||
|
|
||||||
|
private static final FilterPermanent filter = new FilterNonlandPermanent("nonland permanent");
|
||||||
|
|
||||||
public StingingLionfish(UUID ownerId, CardSetInfo setInfo) {
|
public StingingLionfish(UUID ownerId, CardSetInfo setInfo) {
|
||||||
super(ownerId, setInfo, new CardType[]{CardType.ENCHANTMENT, CardType.CREATURE}, "{1}{U}");
|
super(ownerId, setInfo, new CardType[]{CardType.ENCHANTMENT, CardType.CREATURE}, "{1}{U}");
|
||||||
|
|
||||||
|
@ -28,7 +32,7 @@ public final class StingingLionfish extends CardImpl {
|
||||||
Ability ability = new FirstSpellOpponentsTurnTriggeredAbility(
|
Ability ability = new FirstSpellOpponentsTurnTriggeredAbility(
|
||||||
new MayTapOrUntapTargetEffect(), false
|
new MayTapOrUntapTargetEffect(), false
|
||||||
);
|
);
|
||||||
ability.addTarget(new TargetPermanent());
|
ability.addTarget(new TargetPermanent(filter));
|
||||||
this.addAbility(ability);
|
this.addAbility(ability);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue