mirror of
https://github.com/magefree/mage.git
synced 2026-01-23 03:39:54 -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");
|
||||
|
|
|
|||
|
|
@ -1,3 +1,18 @@
|
|||
|
||||
|Generate|TOK:KTK|Bear|
|
||||
|Generate|TOK:KTK|Bird|
|
||||
|Generate|TOK:KTK|Goblin|
|
||||
|Generate|TOK:KTK|Morph|
|
||||
|Generate|TOK:KTK|Snake|
|
||||
|Generate|TOK:KTK|Spirit Warrior|
|
||||
|Generate|TOK:KTK|Spirit|
|
||||
|Generate|TOK:KTK|Vampire|
|
||||
|Generate|TOK:KTK|Warrior 1|
|
||||
|Generate|TOK:KTK|Warrior 2|
|
||||
|Generate|TOK:KTK|Zombie|
|
||||
|Generate|EMBLEM!:KTK|Emblem Sarkhan, the Dragonspeaker|
|
||||
|Generate|EMBLEM!:KTK|Emblem Sorin, Solemn Visitor|
|
||||
|
||||
|Generate|TOK:M15|Sliver|
|
||||
|Generate|TOK:M15|Soldier|
|
||||
|Generate|TOK:M15|Zombie|
|
||||
|
|
|
|||
|
|
@ -66,4 +66,4 @@ unh=uh
|
|||
# Remove setname as soon as the images can be downloaded
|
||||
ignore.urls=TOK,EMBLEM
|
||||
# sets ordered by release time (newest goes first)
|
||||
token.lookup.order=M15,VMA,CNS,JOU,BNG,THS,DDL,M14,MMA,DGM,GTC,RTR,M13,AVR,DDI,DKA,ISD,M12,NPH,MBS,SOM,M11,ROE,PVC,WWK,ZEN,M10,GVL,ARB,DVD,CFX,JVC,ALA,EVE,SHM,EVG,MOR,LRW,10E,CLS,CHK
|
||||
token.lookup.order=KTK,M15,VMA,CNS,JOU,BNG,THS,DDL,M14,MMA,DGM,GTC,RTR,M13,AVR,DDI,DKA,ISD,M12,NPH,MBS,SOM,M11,ROE,PVC,WWK,ZEN,M10,GVL,ARB,DVD,CFX,JVC,ALA,EVE,SHM,EVG,MOR,LRW,10E,CLS,CHK
|
||||
Loading…
Add table
Add a link
Reference in a new issue