[CMM] add set

This commit is contained in:
theelk801 2023-05-06 08:33:13 -04:00
parent e1083ece10
commit eaca4c01ac
5 changed files with 39 additions and 0 deletions

View file

@ -0,0 +1,27 @@
package mage.sets;
import mage.cards.ExpansionSet;
import mage.constants.Rarity;
import mage.constants.SetType;
public final class CommanderMasters extends ExpansionSet {
private static final CommanderMasters instance = new CommanderMasters();
public static CommanderMasters getInstance() {
return instance;
}
private CommanderMasters() {
super("Commander Masters", "CMM", ExpansionSet.buildDate(2023, 8, 4), SetType.SUPPLEMENTAL);
this.blockName = "Commander Masters";
this.hasBasicLands = false;
this.hasBoosters = false; //temporary
cards.add(new SetCardInfo("Capture of Jingzhou", 79, Rarity.RARE, mage.cards.c.CaptureOfJingzhou.class));
cards.add(new SetCardInfo("Jeweled Lotus", 396, Rarity.MYTHIC, mage.cards.j.JeweledLotus.class));
cards.add(new SetCardInfo("Personal Tutor", 110, Rarity.RARE, mage.cards.p.PersonalTutor.class));
cards.add(new SetCardInfo("Selvala, Heart of the Wilds", 220, Rarity.MYTHIC, mage.cards.s.SelvalaHeartOfTheWilds.class));
cards.add(new SetCardInfo("The Ur-Dragon", 361, Rarity.MYTHIC, mage.cards.t.TheUrDragon.class));
}
}