[DFT] Implement Lightwheel Enhancements

This commit is contained in:
theelk801 2025-02-02 10:00:44 -05:00
parent d33f104985
commit 175ca742b0
23 changed files with 157 additions and 275 deletions

View file

@ -754,6 +754,17 @@ public final class StaticFilters {
FILTER_PERMANENT_CREATURE_OR_LAND.setLockedFilter(true);
}
public static final FilterPermanent FILTER_PERMANENT_CREATURE_OR_VEHICLE = new FilterPermanent("creature or Vehicle");
static {
FILTER_PERMANENT_CREATURE_OR_VEHICLE.add(
Predicates.or(
CardType.CREATURE.getPredicate(),
SubType.VEHICLE.getPredicate()
));
FILTER_PERMANENT_CREATURE_OR_VEHICLE.setLockedFilter(true);
}
public static final FilterCreaturePermanent FILTER_PERMANENT_A_CREATURE = new FilterCreaturePermanent("a creature");
static {