mirror of
https://github.com/magefree/mage.git
synced 2026-01-26 21:29:17 -08:00
disable cards in MKM with disguise/cloak
This commit is contained in:
parent
d10a6b3a06
commit
95c052b4ea
1 changed files with 7 additions and 0 deletions
|
|
@ -4,6 +4,9 @@ import mage.cards.ExpansionSet;
|
|||
import mage.constants.Rarity;
|
||||
import mage.constants.SetType;
|
||||
|
||||
import java.util.Arrays;
|
||||
import java.util.List;
|
||||
|
||||
/**
|
||||
* @author TheElk801
|
||||
*/
|
||||
|
|
@ -15,6 +18,8 @@ public final class MurdersAtKarlovManorCommander extends ExpansionSet {
|
|||
return instance;
|
||||
}
|
||||
|
||||
private static final List<String> unfinished = Arrays.asList("Boltbender", "Experiment Twelve", "Printlifter Ooze", "True Identity", "Ransom Note", "Unexplained Absence", "Veiled Ascension");
|
||||
|
||||
private MurdersAtKarlovManorCommander() {
|
||||
super("Murders at Karlov Manor Commander", "MKC", ExpansionSet.buildDate(2024, 2, 9), SetType.SUPPLEMENTAL);
|
||||
this.hasBasicLands = false;
|
||||
|
|
@ -302,5 +307,7 @@ public final class MurdersAtKarlovManorCommander extends ExpansionSet {
|
|||
cards.add(new SetCardInfo("Winds of Rath", 93, Rarity.RARE, mage.cards.w.WindsOfRath.class));
|
||||
cards.add(new SetCardInfo("Yedora, Grave Gardener", 197, Rarity.RARE, mage.cards.y.YedoraGraveGardener.class));
|
||||
cards.add(new SetCardInfo("Zoetic Cavern", 311, Rarity.UNCOMMON, mage.cards.z.ZoeticCavern.class));
|
||||
|
||||
cards.removeIf(setCardInfo -> unfinished.contains(setCardInfo.getName())); // remove when mechanic is implemented
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue