mirror of
https://github.com/correl/mage.git
synced 2024-11-28 19:19:55 +00:00
Adjust Asia Pacific Land Program set abbreviation to match Scryfall.
This commit is contained in:
parent
ee7e1651a8
commit
4d3e41fa35
5 changed files with 8 additions and 5 deletions
|
@ -1508,7 +1508,7 @@ public class DragCardGrid extends JPanel implements DragCardSource, DragCardTarg
|
|||
pimpedSets.put("ARENA", 1);
|
||||
pimpedSets.put("UGIN", 1);
|
||||
pimpedSets.put("WMCQ", 1);
|
||||
pimpedSets.put("APAC", 1);
|
||||
pimpedSets.put("PALP", 1);
|
||||
pimpedSets.put("EURO", 1);
|
||||
pimpedSets.put("FNMP", 1);
|
||||
pimpedSets.put("MGDC", 1);
|
||||
|
|
|
@ -61,7 +61,7 @@ public class GathererSets implements Iterable<DownloadJob> {
|
|||
"POR", "P02", "PTK",
|
||||
"ARC", "DD3EVG",
|
||||
"W16", "W17",
|
||||
// "APAC" -- gatherer do not have that set, scryfall has PALP
|
||||
// "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
|
||||
|
|
|
@ -258,7 +258,8 @@ public class ScryfallImageSupportCards {
|
|||
add("ELD");
|
||||
add("THB");
|
||||
//
|
||||
add("EURO");
|
||||
add("PALP");
|
||||
add("PELP");
|
||||
add("GPX");
|
||||
add("ATH");
|
||||
add("GRC");
|
||||
|
|
|
@ -18,8 +18,10 @@ public final class AsiaPacificLandProgram extends ExpansionSet {
|
|||
}
|
||||
|
||||
private AsiaPacificLandProgram() {
|
||||
super("Asia Pacific Land Program", "APAC", ExpansionSet.buildDate(1997, 10, 13), SetType.PROMOTIONAL);
|
||||
super("Asia Pacific Land Program", "PALP", ExpansionSet.buildDate(1997, 10, 13), 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));
|
||||
|
|
|
@ -38,7 +38,7 @@ public final class MtgJson {
|
|||
mtgJsonToXMageCodes.put("pFNM", "FNMP");
|
||||
mtgJsonToXMageCodes.put("pELP", "EURO");
|
||||
mtgJsonToXMageCodes.put("pARL", "ARENA");
|
||||
mtgJsonToXMageCodes.put("pALP", "APAC");
|
||||
mtgJsonToXMageCodes.put("pALP", "PALP");
|
||||
mtgJsonToXMageCodes.put("PO2", "P02");
|
||||
mtgJsonToXMageCodes.put("DD3_JVC", "DD3JVC");
|
||||
mtgJsonToXMageCodes.put("DD3_GVL", "DDD");
|
||||
|
|
Loading…
Reference in a new issue