forked from External/mage
24 lines
687 B
Java
24 lines
687 B
Java
package mage.sets;
|
|
|
|
import mage.cards.ExpansionSet;
|
|
import mage.constants.Rarity;
|
|
import mage.constants.SetType;
|
|
|
|
/**
|
|
* @author TheElk801
|
|
*/
|
|
public final class MidnightHuntCommander extends ExpansionSet {
|
|
|
|
private static final MidnightHuntCommander instance = new MidnightHuntCommander();
|
|
|
|
public static MidnightHuntCommander getInstance() {
|
|
return instance;
|
|
}
|
|
|
|
private MidnightHuntCommander() {
|
|
super("Midnight Hunt Commander", "MIC", ExpansionSet.buildDate(2021, 9, 24), SetType.SUPPLEMENTAL);
|
|
this.hasBasicLands = false;
|
|
|
|
cards.add(new SetCardInfo("Avacyn's Memorial", 31, Rarity.MYTHIC, mage.cards.a.AvacynsMemorial.class));
|
|
}
|
|
}
|