mirror of
https://github.com/magefree/mage.git
synced 2025-12-20 02:30:08 -08:00
make affinity filters package private
This commit is contained in:
parent
db193bd499
commit
1abaeaabdb
1 changed files with 5 additions and 5 deletions
|
|
@ -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());
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue