Add the DCI Legend Membership (PLGM) promotional set.

This commit is contained in:
Thomas Hess 2020-01-15 23:30:44 +01:00
parent 0a7cc9672e
commit fcf43e0dcb
No known key found for this signature in database
GPG key ID: 98602F47D161B13C

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/plgm
*/
public class DCILegendMembership extends ExpansionSet {
private static final DCILegendMembership instance = new DCILegendMembership();
public static DCILegendMembership getInstance() {
return instance;
}
private DCILegendMembership() {
super("DCI Legend Membership", "PLGM", ExpansionSet.buildDate(1995, 1, 1), SetType.PROMOTIONAL);
this.hasBoosters = false;
this.hasBasicLands = false;
cards.add(new SetCardInfo("Counterspell", 1, Rarity.RARE, mage.cards.c.Counterspell.class));
cards.add(new SetCardInfo("Incinerate", 2, Rarity.RARE, mage.cards.i.Incinerate.class));
}
}