[WTH] Weatherlight set and simple cards

This commit is contained in:
magenoxx 2012-05-28 16:11:23 +04:00
parent 3b39285839
commit 500b4ab651
3 changed files with 61 additions and 1 deletions

View file

@ -16,7 +16,7 @@ public class GathererSets implements Iterable<DownloadJob> {
private final static File DEFAULT_OUT_DIR = new File("plugins" + File.separator + "images" + SETS_PATH);
private static File outDir = DEFAULT_OUT_DIR;
private static final String[] symbols = {"10E", "HOP", "TMP", "INV", "PLS", "APC", "MRD", "DST", "5DN", "CHK", "BOK", "SOK", "RAV", "GPT", "DIS", "TSP", "TSB", "PLC", "FUT", "LRW", "MOR", "SHM", "EVE", "USG", "9ED", "8ED", "ONS", "ULG"};
private static final String[] symbols = {"10E", "HOP", "TMP", "INV", "PLS", "APC", "MRD", "DST", "5DN", "CHK", "BOK", "SOK", "RAV", "GPT", "DIS", "TSP", "TSB", "PLC", "FUT", "LRW", "MOR", "SHM", "EVE", "USG", "9ED", "8ED", "ONS", "ULG", "WTH"};
private static final String[] withMythics = {"M10", "M11", "M12", "DDF", "ALA", "CFX", "ARB", "ZEN", "WWK", "ROE", "SOM", "MBS", "NPH", "ISD", "DKA", "AVR"};
private static final HashMap<String, String> symbolsReplacements = new HashMap<String, String>();
@ -27,6 +27,7 @@ public class GathererSets implements Iterable<DownloadJob> {
symbolsReplacements.put("INV", "IN");
symbolsReplacements.put("PLS", "PS");
symbolsReplacements.put("USG", "UZ");
symbolsReplacements.put("WTH", "WL");
}
public GathererSets(String path) {