Submitted Skeleton Shard (Planechase) and Wall of Deceit (Jace vs Chandra)

This commit is contained in:
fireshoes 2015-03-28 09:30:28 -05:00
parent 100ca7c3fa
commit 4f63793578
11 changed files with 611 additions and 39 deletions

View file

@ -34,7 +34,7 @@ public class GathererSets implements Iterable<DownloadJob> {
"POR", "PO2", "PTK"};
private static final String[] withMythics = {"M10", "M11", "M12", "M13", "M14", "M15", "ORI",
"DDF", "DDG", "DDH", "DDI", "DDJ", "DDK", "DDL", "DDM", "DDN",
"DDF", "DDG", "DDH", "DDI", "DDJ", "DDK", "DDL", "DDM", "DDN", "DD3", "DDO",
"ALA", "CON", "ARB",
"ZEN", "WWK", "ROE",
"SOM", "MBS", "NPH",

View file

@ -63,7 +63,7 @@ public class MagicCardsImageSource implements CardImageSource {
put("LRW", "lorwyn");
put("10E", "tenth-edition");
put("CSP", "coldsnap");
put("CHK", "player-rewards-2004");
put("MPRP", "magic-player-rewards");
put("POR", "portal");
put("PO2", "portal-second-age");
put("PTK", "portal-three-kingdoms");
@ -75,6 +75,10 @@ public class MagicCardsImageSource implements CardImageSource {
put("M10", "magic-2010");
put("EVG", "duel-decks-elves-vs-goblins");
put("DD2", "duel-decks-jace-vs-chandra");
put("DD3", "duel-decks-anthology-elves-vs-goblins");
put("DD3", "duel-decks-anthology-divine-vs-demonic");
put("DD3", "duel-decks-anthology-garruk-vs-liliana");
put("DD3", "duel-decks-anthology-jace-vs-chandra");
put("DDC", "duel-decks-divine-vs-demonic");
put("DDD", "duel-decks-garruk-vs-liliana");
put("DDE", "duel-decks-phyrexia-vs-the-coalition");
@ -87,7 +91,7 @@ public class MagicCardsImageSource implements CardImageSource {
put("DDL", "duel-decks-heroes-vs-monsters");
put("DDM", "duel-decks-jace-vs-vraska");
put("DDN", "duel-decks-speed-vs-cunning");
put("DDO", "duel-decks-elspeth-vs-kiora");
}
private static final long serialVersionUID = 1L;
};

View file

@ -65,6 +65,10 @@ public class WizardCardsImageSource implements CardImageSource {
setsAliases.put("ALA", "shardsofalara/spoiler");
setsAliases.put("PC2", "planechase2012edition/cig");
setsAliases.put("PTK", "portalthreekingdoms/cig");
setsAliases.put("DD3", "anthologyelvesvsgoblins/cig");
setsAliases.put("DD3", "anthologyjacevschandra/cig");
setsAliases.put("DD3", "anthologydivinevsdemonic/cig");
setsAliases.put("DD3", "anthologygarrukvsliliana/cig");
setsAliases.put("EVG", "elvesvsgoblins/cig");
setsAliases.put("DD2", "jacevschandra/cig");
setsAliases.put("DDC", "divinevsdemonic/cig");
@ -79,6 +83,7 @@ public class WizardCardsImageSource implements CardImageSource {
setsAliases.put("DDL", "heroesvsmonsters/cig");
setsAliases.put("DDM", "jacevsvraska/cig");
setsAliases.put("DDN", "speedvscunning/cig");
setsAliases.put("DDO", "elspethvskiora/cig");
}
private Map<String, String> getSetLinks(String cardSet) {