mirror of
https://github.com/Card-Forge/forge.git
synced 2025-11-15 10:18:01 +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 {
|
||||
C (null, new ColorFilter(MagicColor.COLORLESS), "Playable in {C}"),
|
||||
W (null, new ColorFilter(MagicColor.WHITE), "Playable in {W}"),
|
||||
U (null, new ColorFilter(MagicColor.BLUE), "Playable in {U}"),
|
||||
B (null, new ColorFilter(MagicColor.BLACK), "Playable in {B}"),
|
||||
@@ -351,6 +352,7 @@ public class ConquestUtil {
|
||||
}
|
||||
|
||||
public static final AEtherFilter[] COLOR_FILTERS = new AEtherFilter[] {
|
||||
AEtherFilter.C,
|
||||
AEtherFilter.W,
|
||||
AEtherFilter.U,
|
||||
AEtherFilter.B,
|
||||
|
||||
Reference in New Issue
Block a user