mirror of
https://github.com/magefree/mage.git
synced 2025-12-25 04:52:07 -08:00
* Heroes vs. Monsters - Added duel set.
This commit is contained in:
parent
842c07e093
commit
49db840d77
57 changed files with 2662 additions and 2 deletions
|
|
@ -46,6 +46,7 @@ public class ConstructedFormats {
|
|||
"Homelands", "Fallen Empires", "The Dark", "Legends", "Antiquities", "Arabian Nights",
|
||||
"Revised Edition", "Unlimited Edition", "Limited Edition Beta", "Limited Edition Alpha",
|
||||
"Guru",
|
||||
"Duel Decks: Heroes vs. Monsters",
|
||||
"Duel Decks: Elspeth vs. Tezzeret"
|
||||
};
|
||||
|
||||
|
|
@ -377,6 +378,9 @@ public class ConstructedFormats {
|
|||
if (format.equals("Duel Decks: Elspeth vs. Tezzeret")) {
|
||||
return Arrays.asList("DDF");
|
||||
}
|
||||
if (format.equals("Duel Decks: Heroes vs. Monsters")) {
|
||||
return Arrays.asList("DDL");
|
||||
}
|
||||
|
||||
if (format.equals("- Standard")) {
|
||||
return standard;
|
||||
|
|
|
|||
|
|
@ -33,7 +33,7 @@ public class GathererSets implements Iterable<DownloadJob> {
|
|||
"SHM", "EVE"};
|
||||
|
||||
private static final String[] withMythics = {"M10", "M11", "M12", "M13", "M14",
|
||||
"DDF",
|
||||
"DDF", "DDL",
|
||||
"ALA", "CON", "ARB",
|
||||
"ZEN", "WWK", "ROE",
|
||||
"SOM", "MBS", "NPH",
|
||||
|
|
|
|||
|
|
@ -18,6 +18,7 @@ public class MagicCardsImageSource implements CardImageSource {
|
|||
{
|
||||
put("THS", "theros");
|
||||
put("M14", "magic-2014");
|
||||
put("DDL", "duel-decks-heroes-vs-monsters");
|
||||
put("MMA", "modern-masters");
|
||||
put("DGM", "dragons-maze");
|
||||
put("GTC", "gatecrash");
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue