mirror of
https://github.com/magefree/mage.git
synced 2025-12-25 21:12:04 -08:00
Added SOI and EMN sets. Added some SOI cards.
This commit is contained in:
parent
a07db4cb8e
commit
2a92f5e77a
32 changed files with 1513 additions and 207 deletions
|
|
@ -49,7 +49,8 @@ public class GathererSets implements Iterable<DownloadJob> {
|
|||
"THS", "BNG", "JOU",
|
||||
"CNS", "VMA", "TPR",
|
||||
"KTK", "FRF", "DTK",
|
||||
"BFZ", "EXP", "OGW"};
|
||||
"BFZ", "EXP", "OGW",
|
||||
"SOI", "EMN"};
|
||||
private static final HashMap<String, String> symbolsReplacements = new HashMap<>();
|
||||
|
||||
static {
|
||||
|
|
|
|||
|
|
@ -16,6 +16,9 @@ public class MagicCardsImageSource implements CardImageSource {
|
|||
|
||||
private static final Map<String, String> setNameTokenReplacement = new HashMap<String, String>() {
|
||||
{
|
||||
put("EMN", "eldritch-moon");
|
||||
put("SOI", "shadows-over-innistrad");
|
||||
put("OGW", "oath-of-the-gatewatch");
|
||||
put("CMA", "commanders-arsenal");
|
||||
put("ARENA", "arena-league");
|
||||
put("CP", "champs");
|
||||
|
|
@ -114,6 +117,7 @@ public class MagicCardsImageSource implements CardImageSource {
|
|||
put("DDN", "duel-decks-speed-vs-cunning");
|
||||
put("DDO", "duel-decks-elspeth-vs-kiora");
|
||||
put("DDP", "duel-decks-zendikar-vs-eldrazi");
|
||||
put("DDQ", "duel-decks-blessed-vs-cursed");
|
||||
}
|
||||
private static final long serialVersionUID = 1L;
|
||||
};
|
||||
|
|
|
|||
|
|
@ -132,6 +132,7 @@ public class WizardCardsImageSource implements CardImageSource {
|
|||
setsAliases.put("DRK", "The Dark");
|
||||
setsAliases.put("DST", "Darksteel");
|
||||
setsAliases.put("DTK", "Dragons of Tarkir");
|
||||
setsAliases.put("EMN", "Eldritch Moon");
|
||||
setsAliases.put("EVE", "Eventide");
|
||||
setsAliases.put("EVG", "Duel Decks: Elves vs. Goblins");
|
||||
setsAliases.put("EXO", "Exodus");
|
||||
|
|
@ -184,6 +185,7 @@ public class WizardCardsImageSource implements CardImageSource {
|
|||
setsAliases.put("MRD", "Mirrodin");
|
||||
setsAliases.put("NMS", "Nemesis");
|
||||
setsAliases.put("NPH", "New Phyrexia");
|
||||
setsAliases.put("OGW", "Oath of the Gatewatch");
|
||||
setsAliases.put("ODY", "Odyssey");
|
||||
setsAliases.put("ONS", "Onslaught");
|
||||
setsAliases.put("ORI", "Magic Origins");
|
||||
|
|
@ -204,6 +206,7 @@ public class WizardCardsImageSource implements CardImageSource {
|
|||
setsAliases.put("S99", "Starter 1999");
|
||||
setsAliases.put("SCG", "Scourge");
|
||||
setsAliases.put("SHM", "Shadowmoor");
|
||||
setsAliases.put("SOI", "Shadows over Innistrad");
|
||||
setsAliases.put("SOK", "Saviors of Kamigawa");
|
||||
setsAliases.put("SOM", "Scars of Mirrodin");
|
||||
setsAliases.put("STH", "Stronghold");
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue