mirror of
https://github.com/correl/mage.git
synced 2024-12-26 19:16:54 +00:00
[KHM] foretell cards re-added
This commit is contained in:
parent
99c41d78ad
commit
3348231399
2 changed files with 0 additions and 59 deletions
|
@ -12,48 +12,6 @@ import java.util.List;
|
|||
*/
|
||||
public final class Kaldheim extends ExpansionSet {
|
||||
|
||||
private static final List<String> 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
|
||||
}
|
||||
}
|
||||
|
|
|
@ -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<String> 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
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue