[DFT] Implement Perilous Snare

This commit is contained in:
theelk801 2025-02-02 19:02:50 -05:00
parent 6c524c35b7
commit b56f071414
10 changed files with 77 additions and 90 deletions

View file

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