* Added Magic 2015 set.

This commit is contained in:
LevelX2 2014-07-01 08:34:39 +02:00
parent 458ce8c1e6
commit 14a58b0338
23 changed files with 759 additions and 4 deletions

View file

@ -33,7 +33,7 @@ public class GathererSets implements Iterable<DownloadJob> {
"SHM", "EVE",
"POR", "PO2", "PTK"};
private static final String[] withMythics = {"M10", "M11", "M12", "M13", "M14",
private static final String[] withMythics = {"M10", "M11", "M12", "M13", "M14", "M15",
"DDF", "DDL",
"ALA", "CON", "ARB",
"ZEN", "WWK", "ROE",

View file

@ -51,6 +51,7 @@ public class MagicCardsImageSource implements CardImageSource {
put("POR", "portal");
put("PO2", "portal-second-age");
put("PTK", "portal-three-kingdoms");
put("M15", "magic-2015");
put("M14", "magic-2014");
put("M13", "magic-2013");
put("M12", "magic-2012");

View file

@ -29,6 +29,7 @@ public class WizardCardsImageSource implements CardImageSource {
public WizardCardsImageSource() {
sets = new HashMap<>();
setsAliases = new HashMap<>();
setsAliases.put("M15", "magic2015coreset/cig");
setsAliases.put("CNS", "vintagemasters/cig");
setsAliases.put("CNS", "conspiracy/cig");
setsAliases.put("JOU", "journeyintonyx/cig");

View file

@ -94,7 +94,7 @@ public class ImageCache {
}
TFile file = new TFile(path);
if (!file.exists()) {
log.warn("File does not exist: " + file.toString());
log.debug("File does not exist: " + file.toString());
return null;
}