mirror of
https://github.com/correl/mage.git
synced 2024-12-24 11:50:45 +00:00
Add the DragonCon (PDRC) promotional set.
This commit is contained in:
parent
e39a9706bc
commit
736f207801
2 changed files with 40 additions and 0 deletions
|
@ -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");
|
||||
|
|
26
Mage.Sets/src/mage/sets/DragonCon.java
Normal file
26
Mage.Sets/src/mage/sets/DragonCon.java
Normal 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));
|
||||
}
|
||||
}
|
Loading…
Reference in a new issue