add temporary skip for disguise mechanic

This commit is contained in:
theelk801 2024-01-17 09:57:49 -05:00
parent 207fd8eafe
commit f4c7486b2b

View file

@ -4,11 +4,16 @@ import mage.cards.ExpansionSet;
import mage.constants.Rarity;
import mage.constants.SetType;
import java.util.Arrays;
import java.util.List;
/**
* @author TheElk801
*/
public final class MurdersAtKarlovManor extends ExpansionSet {
private static final List<String> unfinished = Arrays.asList("Aurelia's Vindicator", "Branch of Vitu-Ghazi", "Defenestrated Phantom", "Dog Walker", "Expose the Culprit", "Gadget Technician", "Nightdrinker Moroii", "Pyrotechnic Performer");
private static final MurdersAtKarlovManor instance = new MurdersAtKarlovManor();
public static MurdersAtKarlovManor getInstance() {
@ -71,5 +76,7 @@ public final class MurdersAtKarlovManor extends ExpansionSet {
cards.add(new SetCardInfo("Underground Mortuary", 271, Rarity.RARE, mage.cards.u.UndergroundMortuary.class));
cards.add(new SetCardInfo("Warleader's Call", 242, Rarity.RARE, mage.cards.w.WarleadersCall.class));
cards.add(new SetCardInfo("Wojek Investigator", 36, Rarity.RARE, mage.cards.w.WojekInvestigator.class));
cards.removeIf(setCardInfo -> unfinished.contains(setCardInfo.getName())); // remove when mechanic is implemented
}
}