mage/Mage.Server.Plugins/Mage.Deck.Constructed/src/mage/deck/Legacy.java
2025-11-10 11:17:55 -05:00

89 lines
3 KiB
Java

package mage.deck;
import mage.cards.ExpansionSet;
import mage.cards.Sets;
import mage.cards.decks.Constructed;
/**
* LevelX2
*/
public class Legacy extends Constructed {
public Legacy() {
super("Constructed - Legacy");
for (ExpansionSet set : Sets.getInstance().values()) {
if (set.getSetType().isEternalLegal()) {
setCodes.add(set.getCode());
}
}
// All attractions & sticker cards are banned. (to add if/when implemented)
// this also includes the mtgo replacement "Name Sticker" Goblin.
banned.add("\"Name Sticker\" Goblin");
banned.add("Ancestral Recall");
banned.add("Arcum's Astrolabe");
banned.add("Balance");
banned.add("Bazaar of Baghdad");
banned.add("Black Lotus");
banned.add("Channel");
banned.add("Deathrite Shaman");
banned.add("Demonic Consultation");
banned.add("Demonic Tutor");
banned.add("Dig Through Time");
banned.add("Dreadhorde Arcanist");
banned.add("Earthcraft");
banned.add("Entomb");
banned.add("Fastbond");
banned.add("Flash");
banned.add("Frantic Search");
banned.add("Gitaxian Probe");
banned.add("Goblin Recruiter");
banned.add("Grief");
banned.add("Gush");
banned.add("Hermit Druid");
banned.add("Imperial Seal");
banned.add("Library of Alexandria");
banned.add("Lurrus of the Dream-Den");
banned.add("Mana Crypt");
banned.add("Mana Drain");
banned.add("Mana Vault");
banned.add("Memory Jar");
banned.add("Mental Misstep");
banned.add("Mind Twist");
banned.add("Mishra's Workshop");
banned.add("Mox Emerald");
banned.add("Mox Jet");
banned.add("Mox Pearl");
banned.add("Mox Ruby");
banned.add("Mox Sapphire");
banned.add("Mystical Tutor");
banned.add("Nadu, Winged Wisdom");
banned.add("Necropotence");
banned.add("Oath of Druids");
banned.add("Oko, Thief of Crowns");
banned.add("Psychic Frog");
banned.add("Ragavan, Nimble Pilferer");
banned.add("Sensei's Divining Top");
banned.add("Skullclamp");
banned.add("Sol Ring");
banned.add("Sowing Mycospawn");
banned.add("Strip Mine");
banned.add("Survival of the Fittest");
banned.add("Time Vault");
banned.add("Time Walk");
banned.add("Timetwister");
banned.add("Tinker");
banned.add("Tolarian Academy");
banned.add("Treasure Cruise");
banned.add("Troll of Khazad-dum");
banned.add("Underworld Breach");
banned.add("Vampiric Tutor");
banned.add("Vexing Bauble");
banned.add("Wheel of Fortune");
banned.add("Windfall");
banned.add("Wrenn and Six");
banned.add("Yawgmoth's Bargain");
banned.add("Yawgmoth's Will");
banned.add("Zirda, the Dawnwaker");
}
}