mirror of
https://github.com/magefree/mage.git
synced 2025-12-27 05:52:06 -08:00
[ZNR] Implemented Umara Mystic
This commit is contained in:
parent
90f5e1671f
commit
88f6ea6ee9
4 changed files with 62 additions and 13 deletions
|
|
@ -593,6 +593,17 @@ public final class StaticFilters {
|
|||
FILTER_SPELLS_INSTANT_OR_SORCERY.setLockedFilter(true);
|
||||
}
|
||||
|
||||
public static final FilterSpell FILTER_SPELL_INSTANT_SORCERY_WIZARD = new FilterSpell("an instant, sorcery, or Wizard spell");
|
||||
|
||||
static {
|
||||
FILTER_SPELL_INSTANT_SORCERY_WIZARD.add(Predicates.or(
|
||||
CardType.INSTANT.getPredicate(),
|
||||
CardType.SORCERY.getPredicate(),
|
||||
SubType.WIZARD.getPredicate()
|
||||
));
|
||||
FILTER_SPELL_INSTANT_SORCERY_WIZARD.setLockedFilter(true);
|
||||
}
|
||||
|
||||
public static final FilterCreaturePermanent FILTER_CREATURE_TOKENS = new FilterCreaturePermanent("creature tokens");
|
||||
|
||||
static {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue