mirror of
https://github.com/magefree/mage.git
synced 2025-12-24 20:41:58 -08:00
* Commander 2014 - Added set and already implemented cards.
This commit is contained in:
parent
075ce81e1d
commit
108faf4c8c
255 changed files with 13014 additions and 3 deletions
|
|
@ -17,7 +17,7 @@ import mage.constants.SetType;
|
|||
*/
|
||||
public class ConstructedFormats {
|
||||
|
||||
private static GregorianCalendar calendar = new GregorianCalendar();
|
||||
private static final GregorianCalendar calendar = new GregorianCalendar();
|
||||
|
||||
|
||||
public static final String ALL = "- All Sets";
|
||||
|
|
@ -66,6 +66,7 @@ public class ConstructedFormats {
|
|||
"Vintage Masters",
|
||||
"Conspiracy",
|
||||
"Modern Masters",
|
||||
"Commander 2014 Edition",
|
||||
"Commander 2013 Edition",
|
||||
"Commander",
|
||||
"Planechase 2012",
|
||||
|
|
@ -417,6 +418,9 @@ public class ConstructedFormats {
|
|||
if (format.equals("Commander 2013 Edition")) {
|
||||
return Arrays.asList("C13");
|
||||
}
|
||||
if (format.equals("Commander 2014 Edition")) {
|
||||
return Arrays.asList("C14");
|
||||
}
|
||||
if (format.equals("Planechase 2012")) {
|
||||
return Arrays.asList("PC2");
|
||||
}
|
||||
|
|
|
|||
|
|
@ -38,7 +38,7 @@ public class GathererSets implements Iterable<DownloadJob> {
|
|||
"ALA", "CON", "ARB",
|
||||
"ZEN", "WWK", "ROE",
|
||||
"SOM", "MBS", "NPH",
|
||||
"CMD", "PC2",
|
||||
"CMD", "C13", "C14", "PC2",
|
||||
"ISD", "DKA", "AVR",
|
||||
"RTR", "GTC", "DGM",
|
||||
"MMA",
|
||||
|
|
|
|||
|
|
@ -16,6 +16,7 @@ public class MagicCardsImageSource implements CardImageSource {
|
|||
private static final Map<String, String> setNameReplacement = new HashMap<String, String>() {
|
||||
|
||||
{
|
||||
put("C14", "commander-2013-edition");
|
||||
put("KTK", "khans-of-tarkir");
|
||||
put("VMA", "vintage-masters");
|
||||
put("CNS", "conspiracy");
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue