forked from External/mage
Added Grand Prix, Launch Party, and WMCQ promos
This commit is contained in:
parent
8d0e277dbb
commit
f3707e1f53
54 changed files with 2470 additions and 31 deletions
|
|
@ -90,9 +90,12 @@ public class ConstructedFormats {
|
|||
"Duel Decks: Speed vs. Cunning",
|
||||
"Friday Night Magic",
|
||||
"Game Day",
|
||||
"Grand Prix",
|
||||
"Guru",
|
||||
"Judge Promo",
|
||||
"Launch Party",
|
||||
"Unhinged",
|
||||
"World Magic Cup Qualifier",
|
||||
};
|
||||
|
||||
private ConstructedFormats() {
|
||||
|
|
@ -454,6 +457,15 @@ public class ConstructedFormats {
|
|||
if (format.equals("Game Day")) {
|
||||
return Arrays.asList("MGDC");
|
||||
}
|
||||
if (format.equals("Grand Prix")) {
|
||||
return Arrays.asList("GPX");
|
||||
}
|
||||
if (format.equals("Launch Party")) {
|
||||
return Arrays.asList("MLP");
|
||||
}
|
||||
if (format.equals("World Magic Cup Qualifier")) {
|
||||
return Arrays.asList("WMCQ");
|
||||
}
|
||||
if (format.equals("Guru")) {
|
||||
return Arrays.asList("GUR");
|
||||
}
|
||||
|
|
|
|||
|
|
@ -16,6 +16,9 @@ public class MagicCardsImageSource implements CardImageSource {
|
|||
|
||||
private static final Map<String, String> setNameTokenReplacement = new HashMap<String, String>() {
|
||||
{
|
||||
put("MLP", "launch-party");
|
||||
put("WMCQ", "world-magic-cup-qualifier");
|
||||
put("GPX", "grand-prix");
|
||||
put("JR", "judge-gift-program");
|
||||
put("MGDC", "magic-game-day-cards");
|
||||
put("FNMP", "friday-night-magic");
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue