make affinity filters package private

This commit is contained in:
theelk801 2025-05-31 22:02:33 -04:00
parent db193bd499
commit 1abaeaabdb

View file

@ -86,31 +86,31 @@ public enum AffinityType {
} }
class AffinityFilters { class AffinityFilters {
public static final FilterControlledPermanent TOKENS = new FilterControlledPermanent("tokens"); static final FilterControlledPermanent TOKENS = new FilterControlledPermanent("tokens");
static { static {
TOKENS.add(TokenPredicate.TRUE); TOKENS.add(TokenPredicate.TRUE);
} }
public static final FilterControlledPermanent SNOW_LANDS = new FilterControlledLandPermanent("snow lands"); static final FilterControlledPermanent SNOW_LANDS = new FilterControlledLandPermanent("snow lands");
static { static {
SNOW_LANDS.add(SuperType.SNOW.getPredicate()); SNOW_LANDS.add(SuperType.SNOW.getPredicate());
} }
public static final FilterControlledPermanent OUTLAWS = new FilterControlledPermanent("outlaws"); static final FilterControlledPermanent OUTLAWS = new FilterControlledPermanent("outlaws");
static { static {
OUTLAWS.add(OutlawPredicate.instance); OUTLAWS.add(OutlawPredicate.instance);
} }
public static final FilterControlledPermanent HISTORIC = new FilterControlledPermanent("historic permanents"); static final FilterControlledPermanent HISTORIC = new FilterControlledPermanent("historic permanents");
static { static {
HISTORIC.add(HistoricPredicate.instance); HISTORIC.add(HistoricPredicate.instance);
} }
public static final FilterControlledPermanent ARTIFACT_CREATURES = new FilterControlledPermanent("artifact creatures"); static final FilterControlledPermanent ARTIFACT_CREATURES = new FilterControlledPermanent("artifact creatures");
static { static {
ARTIFACT_CREATURES.add(CardType.ARTIFACT.getPredicate()); ARTIFACT_CREATURES.add(CardType.ARTIFACT.getPredicate());