forked from External/mage
Planechase is back
This commit is contained in:
parent
e8c972c27f
commit
d71f48c2ce
17 changed files with 342 additions and 20 deletions
|
|
@ -352,6 +352,23 @@ public final class Constants {
|
|||
}
|
||||
}
|
||||
|
||||
public enum SetType {
|
||||
CORE("Core"),
|
||||
EXPANSION("Expansion"),
|
||||
REPRINT("Reprint");
|
||||
|
||||
private String text;
|
||||
|
||||
SetType(String text) {
|
||||
this.text = text;
|
||||
}
|
||||
|
||||
@Override
|
||||
public String toString() {
|
||||
return text;
|
||||
}
|
||||
}
|
||||
|
||||
public static final List<String> PlaneswalkerTypes = new ArrayList<String>()
|
||||
{{add("Ajani"); add("Bolas"); add("Chandra"); add("Elspeth");add("Garruk"); add("Jace"); add("Liliana"); add("Nissa"); add("Sarkhan"); add("Sorin"); add("Tezzeret");}};
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue