mirror of
https://github.com/magefree/mage.git
synced 2025-12-24 20:41:58 -08:00
* Vintage Masters - Added set and already implemented cards.
This commit is contained in:
parent
513b012dc0
commit
c519814f03
203 changed files with 10569 additions and 98 deletions
|
|
@ -54,6 +54,7 @@ public class ConstructedFormats {
|
|||
"Fifth Edition",
|
||||
"Fourth Edition",
|
||||
"Revised Edition", "Unlimited Edition", "Limited Edition Beta", "Limited Edition Alpha",
|
||||
"Vintage Masters",
|
||||
"Conspiracy",
|
||||
"Modern Masters",
|
||||
"Commander 2013 Edition",
|
||||
|
|
@ -408,6 +409,9 @@ public class ConstructedFormats {
|
|||
if (format.equals("Conspiracy")) {
|
||||
return Arrays.asList("CNS");
|
||||
}
|
||||
if (format.equals("Vintage Masters")) {
|
||||
return Arrays.asList("VMA");
|
||||
}
|
||||
if (format.equals("Guru")) {
|
||||
return Arrays.asList("GUR");
|
||||
}
|
||||
|
|
|
|||
|
|
@ -43,7 +43,7 @@ public class GathererSets implements Iterable<DownloadJob> {
|
|||
"RTR", "GTC", "DGM",
|
||||
"MMA",
|
||||
"THS", "BNG", "JOU",
|
||||
"CNS"
|
||||
"CNS", "VMA"
|
||||
};
|
||||
private static final HashMap<String, String> symbolsReplacements = new HashMap<>();
|
||||
|
||||
|
|
|
|||
|
|
@ -16,6 +16,7 @@ public class MagicCardsImageSource implements CardImageSource {
|
|||
private static final Map<String, String> setNameReplacement = new HashMap<String, String>() {
|
||||
|
||||
{
|
||||
put("VMA", "vintage-masters");
|
||||
put("CNS", "conspiracy");
|
||||
put("JOU", "journey-into-nyx");
|
||||
put("BNG", "born-of-the-gods");
|
||||
|
|
|
|||
|
|
@ -29,6 +29,7 @@ public class WizardCardsImageSource implements CardImageSource {
|
|||
public WizardCardsImageSource() {
|
||||
sets = new HashMap<>();
|
||||
setsAliases = new HashMap<>();
|
||||
setsAliases.put("CNS", "vintagemasters/cig");
|
||||
setsAliases.put("CNS", "conspiracy/cig");
|
||||
setsAliases.put("JOU", "journeyintonyx/cig");
|
||||
setsAliases.put("BNG", "bornofthegods/cig");
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue