diff --git a/Mage.Sets/src/mage/sets/Kaldheim.java b/Mage.Sets/src/mage/sets/Kaldheim.java index 1cf0ba29e4..a281af7209 100644 --- a/Mage.Sets/src/mage/sets/Kaldheim.java +++ b/Mage.Sets/src/mage/sets/Kaldheim.java @@ -12,48 +12,6 @@ import java.util.List; */ public final class Kaldheim extends ExpansionSet { - private static final List unfinished = Arrays.asList( - "Alrund's Epiphany", - "Augury Raven", - "Battle Mammoth", - "Behold the Multiverse", - "Cosmos Charger", - "Crush the Weak", - "Demon Bolt", - "Depart the Realm", - "Doomskar", - "Doomskar Oracle", - "Doomskar Titan", - "Dream Devourer", - "Dual Strike", - "Dwarven Reinforcements", - "Glorious Protector", - "Gods' Hall Guardian", - "Haunting Voyage", - "Iron Verdict", - "Jarl of the Forsaken", - "Karfell Harbinger", - "Kaya's Onslaught", - "Mammoth Growth", - "Mystic Reflection", - "Niko Defies Destiny", - "Poison the Cup", - "Quakebringer", - "Ravenform", - "Return Upon the Tide", - "Rise of the Dread Marn", - "Sarulf's Packmate", - "Saw It Coming", - "Scorn Effigy", - "Shepherd of the Cosmos", - "Skull Raid", - "Starnheim Unleashed", - "Struggle for Skemfar", - "Tergrid's Shadow", - "Vengeful Reaper", - "Warhorn Blast" - ); - private static final Kaldheim instance = new Kaldheim(); public static Kaldheim getInstance() { @@ -355,7 +313,5 @@ public final class Kaldheim extends ExpansionSet { cards.add(new SetCardInfo("Withercrown", 119, Rarity.COMMON, mage.cards.w.Withercrown.class)); cards.add(new SetCardInfo("Woodland Chasm", 274, Rarity.COMMON, mage.cards.w.WoodlandChasm.class)); cards.add(new SetCardInfo("Youthful Valkyrie", 382, Rarity.UNCOMMON, mage.cards.y.YouthfulValkyrie.class)); - - cards.removeIf(setCardInfo -> unfinished.contains(setCardInfo.getName())); // remove when mechanic is fully implemented } } diff --git a/Mage.Sets/src/mage/sets/KaldheimCommander.java b/Mage.Sets/src/mage/sets/KaldheimCommander.java index a9211c4720..9dce81d77a 100644 --- a/Mage.Sets/src/mage/sets/KaldheimCommander.java +++ b/Mage.Sets/src/mage/sets/KaldheimCommander.java @@ -4,24 +4,11 @@ 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 KaldheimCommander extends ExpansionSet { - private static final List unfinished = Arrays.asList( - "Cosmic Intervention", - "Ethereal Valkyrie", - "Ranar the Ever-Watchful", - "Sage of the Beyond", - "Spectral Deluge", - "Stoic Farmer", - "Tales of the Ancestors" - ); - private static final KaldheimCommander instance = new KaldheimCommander(); public static KaldheimCommander getInstance() { @@ -39,7 +26,5 @@ public final class KaldheimCommander extends ExpansionSet { cards.add(new SetCardInfo("Ruthless Winnower", 10, Rarity.RARE, mage.cards.r.RuthlessWinnower.class)); cards.add(new SetCardInfo("Sage of the Beyond", 6, Rarity.RARE, mage.cards.s.SageOfTheBeyond.class)); cards.add(new SetCardInfo("Spectral Deluge", 7, Rarity.RARE, mage.cards.s.SpectralDeluge.class)); - - cards.removeIf(setCardInfo -> unfinished.contains(setCardInfo.getName())); // remove when mechanic is fully implemented } }