mirror of
https://github.com/magefree/mage.git
synced 2026-01-24 12:19:59 -08:00
Make Moira and Teshar actually "nonland" rather than "any permanent".
This commit is contained in:
parent
ad4b504646
commit
91def510e9
1 changed files with 5 additions and 0 deletions
|
|
@ -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}");
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue