[EOE] Implement Extinguisher Battleship

This commit is contained in:
theelk801 2025-07-09 10:26:06 -04:00
parent 227391b2d4
commit 00df3feccd
17 changed files with 159 additions and 270 deletions

View file

@ -909,6 +909,13 @@ public final class StaticFilters {
FILTER_PERMANENT_BATTLES.setLockedFilter(true);
}
public static final FilterPermanent FILTER_PERMANENT_NON_CREATURE = new FilterPermanent("noncreature permanent");
static {
FILTER_PERMANENT_NON_CREATURE.add(Predicates.not(CardType.CREATURE.getPredicate()));
FILTER_PERMANENT_NON_CREATURE.setLockedFilter(true);
}
public static final FilterNonlandPermanent FILTER_PERMANENT_NON_LAND = new FilterNonlandPermanent();
static {