[NEO] Implemented Imperial Subduer

This commit is contained in:
Evan Kranzler 2022-01-29 17:29:05 -05:00
parent 62fa79cfd8
commit 5cbc93b67e
3 changed files with 58 additions and 0 deletions

View file

@ -603,6 +603,16 @@ public final class StaticFilters {
FILTER_PERMANENT_CREATURE_SLIVERS.setLockedFilter(true);
}
public static final FilterControlledPermanent FILTER_CONTROLLED_SAMURAI_OR_WARRIOR = new FilterControlledPermanent("a Samurai or Warrior you control");
static {
FILTER_CONTROLLED_SAMURAI_OR_WARRIOR.add(Predicates.or(
SubType.SAMURAI.getPredicate(),
SubType.WARRIOR.getPredicate()
));
FILTER_CONTROLLED_SAMURAI_OR_WARRIOR.setLockedFilter(true);
}
public static final FilterPlaneswalkerPermanent FILTER_PERMANENT_PLANESWALKER = new FilterPlaneswalkerPermanent();
static {