mirror of
https://github.com/Card-Forge/forge.git
synced 2025-11-15 18:28:00 +00:00
Merge branch 'master' into 'master'
Added an Aether filter to Planar Conquest which allows to search for cards playable in colorless decks. See merge request core-developers/forge!1182
This commit is contained in:
@@ -207,6 +207,7 @@ public class ConquestUtil {
|
|||||||
}
|
}
|
||||||
|
|
||||||
public static enum AEtherFilter implements IHasSkinProp {
|
public static enum AEtherFilter implements IHasSkinProp {
|
||||||
|
C (null, new ColorFilter(MagicColor.COLORLESS), "Playable in {C}"),
|
||||||
W (null, new ColorFilter(MagicColor.WHITE), "Playable in {W}"),
|
W (null, new ColorFilter(MagicColor.WHITE), "Playable in {W}"),
|
||||||
U (null, new ColorFilter(MagicColor.BLUE), "Playable in {U}"),
|
U (null, new ColorFilter(MagicColor.BLUE), "Playable in {U}"),
|
||||||
B (null, new ColorFilter(MagicColor.BLACK), "Playable in {B}"),
|
B (null, new ColorFilter(MagicColor.BLACK), "Playable in {B}"),
|
||||||
@@ -351,6 +352,7 @@ public class ConquestUtil {
|
|||||||
}
|
}
|
||||||
|
|
||||||
public static final AEtherFilter[] COLOR_FILTERS = new AEtherFilter[] {
|
public static final AEtherFilter[] COLOR_FILTERS = new AEtherFilter[] {
|
||||||
|
AEtherFilter.C,
|
||||||
AEtherFilter.W,
|
AEtherFilter.W,
|
||||||
AEtherFilter.U,
|
AEtherFilter.U,
|
||||||
AEtherFilter.B,
|
AEtherFilter.B,
|
||||||
|
|||||||
Reference in New Issue
Block a user