forked from External/mage
99 lines
4 KiB
Java
99 lines
4 KiB
Java
/*
|
||
* Copyright 2010 BetaSteward_at_googlemail.com. All rights reserved.
|
||
*
|
||
* Redistribution and use in source and binary forms, with or without modification, are
|
||
* permitted provided that the following conditions are met:
|
||
*
|
||
* 1. Redistributions of source code must retain the above copyright notice, this list of
|
||
* conditions and the following disclaimer.
|
||
*
|
||
* 2. Redistributions in binary form must reproduce the above copyright notice, this list
|
||
* of conditions and the following disclaimer in the documentation and/or other materials
|
||
* provided with the distribution.
|
||
*
|
||
* THIS SOFTWARE IS PROVIDED BY BetaSteward_at_googlemail.com ``AS IS'' AND ANY EXPRESS OR IMPLIED
|
||
* WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND
|
||
* FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL BetaSteward_at_googlemail.com OR
|
||
* CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
|
||
* CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
|
||
* SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON
|
||
* ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
|
||
* NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
|
||
* ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
||
*
|
||
* The views and conclusions contained in the software and documentation are those of the
|
||
* authors and should not be interpreted as representing official policies, either expressed
|
||
* or implied, of BetaSteward_at_googlemail.com.
|
||
*/
|
||
package mage.deck;
|
||
|
||
/**
|
||
*
|
||
* @author LevelX2
|
||
*/
|
||
public class DuelCommander extends Commander {
|
||
|
||
public DuelCommander() {
|
||
super("Duel Commander");
|
||
banned.add("Ancestral Recall");
|
||
banned.add("Ancient Tomb");
|
||
banned.add("Balance");
|
||
banned.add("Back to Basics");
|
||
banned.add("Black Lotus");
|
||
banned.add("Channel");
|
||
banned.add("Dig Through Time");
|
||
banned.add("Entomb");
|
||
banned.add("Fastbond");
|
||
banned.add("Food Chain");
|
||
banned.add("Gaea's Cradle");
|
||
banned.add("Gifts Ungiven");
|
||
banned.add("Grim Monolith");
|
||
banned.add("Grindstone");
|
||
banned.add("Hermit Druid");
|
||
banned.add("Humility");
|
||
banned.add("Imperial Seal");
|
||
banned.add("Karakas");
|
||
banned.add("Library of Alexandria");
|
||
banned.add("Loyal Retainers");
|
||
banned.add("Mana Crypt");
|
||
banned.add("Mana Drain");
|
||
banned.add("Mana Vault");
|
||
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("Natural Order");
|
||
banned.add("Necropotence");
|
||
banned.add("Necrotic Oooze");
|
||
banned.add("Oath of Druids");
|
||
banned.add("Protean Hulk");
|
||
banned.add("Sensei's Divining Top");
|
||
banned.add("Serra Ascendant");
|
||
banned.add("Shahrazad");
|
||
banned.add("Sol Ring");
|
||
banned.add("Strip Mine");
|
||
banned.add("The Tabernacle at Pendrell Vale");
|
||
banned.add("Time Vault");
|
||
banned.add("Time Walk");
|
||
banned.add("Tinker");
|
||
banned.add("Tolarian Academy");
|
||
banned.add("Treasure Cruise");
|
||
banned.add("Vampiric Tutor");
|
||
banned.add("Yawgmoth’s Bargain");
|
||
|
||
bannedCommander.add("Derevi, Empyrial Tactician");
|
||
bannedCommander.add("Edric, Spymaster of Trest");
|
||
bannedCommander.add("Erayo, Soratami Ascendant");
|
||
bannedCommander.add("Marath, Will of the Wild");
|
||
bannedCommander.add("Oloro, Ageless Ascetic");
|
||
bannedCommander.add("Rofellos, Llanowar Emissary");
|
||
bannedCommander.add("Tasigur, the Golden Fang");
|
||
bannedCommander.add("Yisan, the Wanderer Bard");
|
||
bannedCommander.add("Zur the Enchanter");
|
||
}
|
||
|
||
}
|