forked from External/mage
27 lines
947 B
Java
27 lines
947 B
Java
|
|
package mage.sets;
|
|
|
|
import mage.cards.ExpansionSet;
|
|
import mage.constants.Rarity;
|
|
import mage.constants.SetType;
|
|
|
|
/**
|
|
* @author Saga
|
|
*/
|
|
public final class HASCONPromo2017 extends ExpansionSet {
|
|
|
|
private static final HASCONPromo2017 instance = new HASCONPromo2017();
|
|
|
|
public static HASCONPromo2017 getInstance() {
|
|
return instance;
|
|
}
|
|
|
|
private HASCONPromo2017() {
|
|
super("HASCON Promo 2017", "H17", ExpansionSet.buildDate(2017, 9, 8), SetType.JOKESET);
|
|
this.hasBasicLands = false;
|
|
|
|
cards.add(new ExpansionSet.SetCardInfo("Grimlock, Dinobot Leader", 1, Rarity.MYTHIC, mage.cards.g.GrimlockDinobotLeader.class));
|
|
cards.add(new ExpansionSet.SetCardInfo("Grimlock, Ferocious King", 1, Rarity.MYTHIC, mage.cards.g.GrimlockFerociousKing.class));
|
|
cards.add(new ExpansionSet.SetCardInfo("Sword of Dungeons & Dragons", 3, Rarity.MYTHIC, mage.cards.s.SwordOfDungeonsAndDragons.class));
|
|
}
|
|
}
|