[MID] Implemented Malevolent Hermit / Benevolent Geist

This commit is contained in:
Evan Kranzler 2021-09-11 09:27:50 -04:00
parent d61923fb58
commit 835ee5514c
4 changed files with 114 additions and 0 deletions

View file

@ -613,6 +613,12 @@ public final class StaticFilters {
FILTER_SPELL_NON_CREATURE.setLockedFilter(true);
}
public static final FilterSpell FILTER_SPELLS_NON_CREATURE = (FilterSpell) new FilterSpell("noncreature spells").add(Predicates.not(CardType.CREATURE.getPredicate()));
static {
FILTER_SPELLS_NON_CREATURE.setLockedFilter(true);
}
public static final FilterSpell FILTER_SPELL_A_NON_CREATURE = (FilterSpell) new FilterSpell("a noncreature spell").add(Predicates.not(CardType.CREATURE.getPredicate()));
static {