Add the DragonCon (PDRC) promotional set.

This commit is contained in:
Thomas Hess 2020-01-15 22:59:25 +01:00
parent e39a9706bc
commit 736f207801
No known key found for this signature in database
GPG key ID: 98602F47D161B13C
2 changed files with 40 additions and 0 deletions

View file

@ -60,6 +60,20 @@ public class ScryfallImageSupportCards {
add("DD3GVL");
add("DD3JVC");
// Judge gift sets
add("JGP");
add("G99");
add("G00");
add("G01");
// Other promo sets
add("PWOR");
add("PWOS");
add("PDRC");
add("PHPR");
add("PLGM");
add("MGB");
add("ULG");
add("6ED");
add("UDS");

View file

@ -0,0 +1,26 @@
package mage.sets;
import mage.cards.ExpansionSet;
import mage.constants.Rarity;
import mage.constants.SetType;
/**
* https://scryfall.com/sets/pdrc
* https://gatherer.wizards.com/pages/card/Details.aspx?name=Nalathni+Dragon
*/
public class DragonCon extends ExpansionSet {
private static final DragonCon instance = new DragonCon();
public static DragonCon getInstance() {
return instance;
}
private DragonCon() {
super("Dragon Con", "PDRC", ExpansionSet.buildDate(1995, 7, 15), SetType.PROMOTIONAL);
this.hasBoosters = false;
this.hasBasicLands = false;
cards.add(new SetCardInfo("Nalathni Dragon", 1, Rarity.RARE, mage.cards.n.NalathniDragon.class));
}
}