mirror of
https://github.com/correl/mage.git
synced 2024-11-28 19:19:55 +00:00
Adjust European Land Program set abbreviation to match Scryfall.
This commit is contained in:
parent
5a21c7fadd
commit
b56882091e
5 changed files with 6 additions and 5 deletions
|
@ -1509,7 +1509,7 @@ public class DragCardGrid extends JPanel implements DragCardSource, DragCardTarg
|
|||
pimpedSets.put("UGIN", 1);
|
||||
pimpedSets.put("WMCQ", 1);
|
||||
pimpedSets.put("PALP", 1);
|
||||
pimpedSets.put("EURO", 1);
|
||||
pimpedSets.put("PELP", 1);
|
||||
pimpedSets.put("FNMP", 1);
|
||||
pimpedSets.put("MGDC", 1);
|
||||
pimpedSets.put("MPRP", 1);
|
||||
|
|
|
@ -64,7 +64,7 @@ public class GathererSets implements Iterable<DownloadJob> {
|
|||
// "PALP" -- Gatherer does not have the set Asia Pacific Land Program
|
||||
// "ARENA" -- is't many set with different codes, not one
|
||||
// "ATH" -- has cards from many sets, symbol does not exist on gatherer
|
||||
// "CLASH", "CP", "DPA", "EURO", "FNMP", "GPX", "GRC", "GUR", "H17", "JR", "MBP", "MGDC", "MLP", "MPRP", "PTC", "SUS", "SWS", "WMCQ", // need to fix
|
||||
// "CLASH", "CP", "DPA", "PELP", "FNMP", "GPX", "GRC", "GUR", "H17", "JR", "MBP", "MGDC", "MLP", "MPRP", "PTC", "SUS", "SWS", "WMCQ", // need to fix
|
||||
"H09", "PD2", "PD3", "UNH", "CM1", "V11", "A25", "UST", "IMA", "DD2", "EVG", "DDC", "DDE", "DDD", "8EB", "9EB", "CHR", "G18", "DD3GVL", "S00", "S99", "UGL" // ok
|
||||
// current testing
|
||||
};
|
||||
|
|
|
@ -20,7 +20,6 @@ public class ScryfallImageSupportCards {
|
|||
put("MPS-AKH", "mp2").
|
||||
put("MBP", "pmei").
|
||||
put("WMCQ", "pwcq").
|
||||
put("EURO", "pelp").
|
||||
put("GPX", "pgpx").
|
||||
put("MED", "me1").
|
||||
put("MEDM", "med").
|
||||
|
|
|
@ -18,8 +18,10 @@ public final class EuropeanLandProgram extends ExpansionSet {
|
|||
}
|
||||
|
||||
private EuropeanLandProgram() {
|
||||
super("European Land Program", "EURO", ExpansionSet.buildDate(2000, 2, 14), SetType.PROMOTIONAL);
|
||||
super("European Land Program", "PELP", ExpansionSet.buildDate(2000, 2, 14), SetType.PROMOTIONAL);
|
||||
this.hasBoosters = false;
|
||||
this.hasBasicLands = true;
|
||||
|
||||
cards.add(new SetCardInfo("Forest", 1, Rarity.LAND, mage.cards.basiclands.Forest.class, NON_FULL_USE_VARIOUS));
|
||||
cards.add(new SetCardInfo("Forest", 6, Rarity.LAND, mage.cards.basiclands.Forest.class, NON_FULL_USE_VARIOUS));
|
||||
cards.add(new SetCardInfo("Forest", 11, Rarity.LAND, mage.cards.basiclands.Forest.class, NON_FULL_USE_VARIOUS));
|
||||
|
|
|
@ -36,7 +36,7 @@ public final class MtgJson {
|
|||
mtgJsonToXMageCodes.put("pGRU", "GUR");
|
||||
mtgJsonToXMageCodes.put("pGPX", "GPX");
|
||||
mtgJsonToXMageCodes.put("pFNM", "FNMP");
|
||||
mtgJsonToXMageCodes.put("pELP", "EURO");
|
||||
mtgJsonToXMageCodes.put("pELP", "PELP");
|
||||
mtgJsonToXMageCodes.put("pARL", "ARENA");
|
||||
mtgJsonToXMageCodes.put("pALP", "PALP");
|
||||
mtgJsonToXMageCodes.put("PO2", "P02");
|
||||
|
|
Loading…
Reference in a new issue