Make Moira and Teshar actually "nonland" rather than "any permanent".

This commit is contained in:
Grath 2026-01-08 21:11:38 -05:00
parent ad4b504646
commit 91def510e9

View file

@ -18,6 +18,7 @@ import mage.cards.CardSetInfo;
import mage.constants.*;
import mage.filter.StaticFilters;
import mage.filter.common.FilterPermanentCard;
import mage.filter.predicate.Predicates;
import mage.game.Game;
import mage.game.permanent.Permanent;
import mage.players.Player;
@ -32,6 +33,10 @@ public final class MoiraAndTeshar extends CardImpl {
private static final FilterPermanentCard targetFilter = new FilterPermanentCard(
"nonland permanent card from your graveyard");
static {
targetFilter.add(Predicates.not(CardType.LAND.getPredicate()));
}
public MoiraAndTeshar(UUID ownerId, CardSetInfo setInfo) {
super(ownerId, setInfo, new CardType[]{CardType.CREATURE}, "{3}{W}{B}");