[TLA] Implement Pirate Peddlers

This commit is contained in:
theelk801 2025-11-12 10:25:39 -05:00
parent f5ce27f6c8
commit 096795be00
15 changed files with 97 additions and 115 deletions

View file

@ -601,6 +601,13 @@ public final class StaticFilters {
FILTER_OPPONENTS_PERMANENT_ARTIFACT_OR_CREATURE.setLockedFilter(true);
}
public static final FilterPermanent FILTER_ANOTHER_PERMANENT = new FilterPermanent("another permanent");
static {
FILTER_ANOTHER_PERMANENT.add(AnotherPredicate.instance);
FILTER_ANOTHER_PERMANENT.setLockedFilter(true);
}
public static final FilterCreaturePermanent FILTER_ANOTHER_CREATURE = new FilterCreaturePermanent("another creature");
static {