forked from External/mage
43 lines
1.2 KiB
Java
43 lines
1.2 KiB
Java
package mage.cards.d;
|
|
|
|
import mage.abilities.effects.common.DestroyTargetEffect;
|
|
import mage.abilities.keyword.FlyingAbility;
|
|
import mage.cards.CardImpl;
|
|
import mage.cards.CardSetInfo;
|
|
import mage.constants.CardType;
|
|
import mage.filter.FilterPermanent;
|
|
import mage.filter.common.FilterCreaturePermanent;
|
|
import mage.filter.predicate.Predicates;
|
|
import mage.filter.predicate.mageobject.AbilityPredicate;
|
|
import mage.target.TargetPermanent;
|
|
|
|
import java.util.UUID;
|
|
|
|
/**
|
|
* @author TheElk801
|
|
*/
|
|
public final class Defenestrate extends CardImpl {
|
|
|
|
private static final FilterPermanent filter = new FilterCreaturePermanent("creature without flying");
|
|
|
|
static {
|
|
filter.add(Predicates.not(new AbilityPredicate(FlyingAbility.class)));
|
|
}
|
|
|
|
public Defenestrate(UUID ownerId, CardSetInfo setInfo) {
|
|
super(ownerId, setInfo, new CardType[]{CardType.INSTANT}, "{2}{B}");
|
|
|
|
// Destroy target creature without flying.
|
|
this.getSpellAbility().addEffect(new DestroyTargetEffect());
|
|
this.getSpellAbility().addTarget(new TargetPermanent(filter));
|
|
}
|
|
|
|
private Defenestrate(final Defenestrate card) {
|
|
super(card);
|
|
}
|
|
|
|
@Override
|
|
public Defenestrate copy() {
|
|
return new Defenestrate(this);
|
|
}
|
|
}
|