mirror of
https://github.com/magefree/mage.git
synced 2025-12-25 21:12:04 -08:00
[KLD] Updated mtg-cards-data.txt with spoilers through 9/12. Add Masterpiece Series set and 4 known reprints so far.
This commit is contained in:
parent
2da90bab93
commit
6ea98ba19b
13 changed files with 303 additions and 7 deletions
|
|
@ -56,7 +56,7 @@ public class GathererSets implements Iterable<DownloadJob> {
|
|||
"KTK", "FRF", "DTK",
|
||||
"BFZ", "EXP", "OGW",
|
||||
"SOI", "EMN",
|
||||
"KLD", "AER",
|
||||
"KLD", "MPS", "AER",
|
||||
"AKH", "HOU"
|
||||
};
|
||||
private static final HashMap<String, String> symbolsReplacements = new HashMap<>();
|
||||
|
|
|
|||
|
|
@ -103,6 +103,7 @@ public class MagicCardsImageSource implements CardImageSource {
|
|||
put("MMA", "modern-masters");
|
||||
put("MOR", "morningtide");
|
||||
put("MPRP", "magic-player-rewards");
|
||||
put("MPS", "masterpiece-series");
|
||||
put("NPH", "new-phyrexia");
|
||||
put("ODY", "player-rewards-2002");
|
||||
put("OGW", "oath-of-the-gatewatch");
|
||||
|
|
@ -151,12 +152,12 @@ public class MagicCardsImageSource implements CardImageSource {
|
|||
}
|
||||
return instance;
|
||||
}
|
||||
|
||||
|
||||
@Override
|
||||
public String getNextHttpImageUrl() {
|
||||
return null;
|
||||
}
|
||||
|
||||
|
||||
@Override
|
||||
public String getFileForHttpImage(String httpImageUrl) {
|
||||
return null;
|
||||
|
|
|
|||
|
|
@ -198,6 +198,7 @@ public class WizardCardsImageSource implements CardImageSource {
|
|||
setsAliases.put("MMQ", "Mercadian Masques");
|
||||
setsAliases.put("MOR", "Morningtide");
|
||||
setsAliases.put("MPRP", "Magic Player Rewards");
|
||||
setsAliases.put("MPS", "Masterpiece Series");
|
||||
setsAliases.put("MRD", "Mirrodin");
|
||||
setsAliases.put("NEM", "Nemesis");
|
||||
setsAliases.put("NPH", "New Phyrexia");
|
||||
|
|
@ -270,12 +271,12 @@ public class WizardCardsImageSource implements CardImageSource {
|
|||
public String getNextHttpImageUrl() {
|
||||
return null;
|
||||
}
|
||||
|
||||
|
||||
@Override
|
||||
public String getFileForHttpImage(String httpImageUrl) {
|
||||
return null;
|
||||
}
|
||||
|
||||
|
||||
private Map<String, String> getSetLinks(String cardSet) {
|
||||
ConcurrentHashMap<String, String> setLinks = new ConcurrentHashMap<>();
|
||||
ExecutorService executor = Executors.newFixedThreadPool(10);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue