mirror of
https://github.com/magefree/mage.git
synced 2025-12-25 21:12:04 -08:00
[NEO] Implemented Imperial Subduer
This commit is contained in:
parent
62fa79cfd8
commit
5cbc93b67e
3 changed files with 58 additions and 0 deletions
|
|
@ -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 {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue