mirror of
https://github.com/magefree/mage.git
synced 2025-12-20 10:40:06 -08:00
Added MTGO 1v1 Commander and Amonkhet Block Constructed formats. Fixed a typo in the Duel Commander banlist.
This commit is contained in:
parent
4f33b6b7c1
commit
48413a956a
7 changed files with 159 additions and 11 deletions
|
|
@ -474,6 +474,7 @@ public class NewTableDialog extends MageDialog {
|
||||||
switch (options.getDeckType()) {
|
switch (options.getDeckType()) {
|
||||||
case "Variant Magic - Commander":
|
case "Variant Magic - Commander":
|
||||||
case "Variant Magic - Duel Commander":
|
case "Variant Magic - Duel Commander":
|
||||||
|
case "Variant Magic - MTGO 1v1 Commander":
|
||||||
if (!options.getGameType().startsWith("Commander")) {
|
if (!options.getGameType().startsWith("Commander")) {
|
||||||
JOptionPane.showMessageDialog(MageFrame.getDesktop(), "Deck type Commander needs also a Commander game type", "Error", JOptionPane.ERROR_MESSAGE);
|
JOptionPane.showMessageDialog(MageFrame.getDesktop(), "Deck type Commander needs also a Commander game type", "Error", JOptionPane.ERROR_MESSAGE);
|
||||||
return false;
|
return false;
|
||||||
|
|
@ -495,7 +496,9 @@ public class NewTableDialog extends MageDialog {
|
||||||
switch (options.getGameType()) {
|
switch (options.getGameType()) {
|
||||||
case "Commander Two Player Duel":
|
case "Commander Two Player Duel":
|
||||||
case "Commander Free For All":
|
case "Commander Free For All":
|
||||||
if (!options.getDeckType().equals("Variant Magic - Commander") && !options.getDeckType().equals("Variant Magic - Duel Commander")) {
|
if (!options.getDeckType().equals("Variant Magic - Commander")
|
||||||
|
&& !options.getDeckType().equals("Variant Magic - Duel Commander")
|
||||||
|
&& !options.getDeckType().equals("Variant Magic - MTGO 1v1 Commander")) {
|
||||||
JOptionPane.showMessageDialog(MageFrame.getDesktop(), "Deck type Commander needs also a Commander game type", "Error", JOptionPane.ERROR_MESSAGE);
|
JOptionPane.showMessageDialog(MageFrame.getDesktop(), "Deck type Commander needs also a Commander game type", "Error", JOptionPane.ERROR_MESSAGE);
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -0,0 +1,44 @@
|
||||||
|
/*
|
||||||
|
* Copyright 2011 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;
|
||||||
|
|
||||||
|
import mage.cards.decks.Constructed;
|
||||||
|
|
||||||
|
/**
|
||||||
|
*
|
||||||
|
* @author fireshoes
|
||||||
|
*/
|
||||||
|
public class AmonkhetBlock extends Constructed {
|
||||||
|
|
||||||
|
public AmonkhetBlock() {
|
||||||
|
super("Constructed - Amonkhet Block");
|
||||||
|
setCodes.add("AKH");
|
||||||
|
setCodes.add("HOU");
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
@ -34,7 +34,6 @@ package mage.deck;
|
||||||
public class DuelCommander extends Commander {
|
public class DuelCommander extends Commander {
|
||||||
|
|
||||||
public DuelCommander() {
|
public DuelCommander() {
|
||||||
super("Duel Commander");
|
|
||||||
banned.add("Ancestral Recall");
|
banned.add("Ancestral Recall");
|
||||||
banned.add("Ancient Tomb");
|
banned.add("Ancient Tomb");
|
||||||
banned.add("Back to Basics");
|
banned.add("Back to Basics");
|
||||||
|
|
@ -67,7 +66,7 @@ public class DuelCommander extends Commander {
|
||||||
banned.add("Mox Sapphire");
|
banned.add("Mox Sapphire");
|
||||||
banned.add("Mystical Tutor");
|
banned.add("Mystical Tutor");
|
||||||
banned.add("Natural Order");
|
banned.add("Natural Order");
|
||||||
banned.add("Necrotic Oooze");
|
banned.add("Necrotic Ooze");
|
||||||
banned.add("Oath of Druids");
|
banned.add("Oath of Druids");
|
||||||
banned.add("Protean Hulk");
|
banned.add("Protean Hulk");
|
||||||
banned.add("Sensei's Divining Top");
|
banned.add("Sensei's Divining Top");
|
||||||
|
|
|
||||||
|
|
@ -0,0 +1,95 @@
|
||||||
|
/*
|
||||||
|
* 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 fireshoes
|
||||||
|
*/
|
||||||
|
public class MTGO1v1Commander extends Commander {
|
||||||
|
|
||||||
|
public MTGO1v1Commander() {
|
||||||
|
super("MTGO 1v1 Commander");
|
||||||
|
banned.add("Ancestral Recall");
|
||||||
|
banned.add("Arcum Dagsson");
|
||||||
|
banned.add("Back to Basics");
|
||||||
|
banned.add("Balance");
|
||||||
|
banned.add("Bazaar of Baghdad");
|
||||||
|
banned.add("Black Lotus");
|
||||||
|
banned.add("Braids, Cabal Minion");
|
||||||
|
banned.add("Brainstorm");
|
||||||
|
banned.add("Channel");
|
||||||
|
banned.add("Derevi, Empyrial Tactician");
|
||||||
|
banned.add("Dig Through Time");
|
||||||
|
banned.add("Edric, Spymaster of Trest");
|
||||||
|
banned.add("Entomb");
|
||||||
|
banned.add("Fastbond");
|
||||||
|
banned.add("Food Chain");
|
||||||
|
banned.add("Gaea's Cradle");
|
||||||
|
banned.add("Gifts Ungiven");
|
||||||
|
banned.add("Griselbrand");
|
||||||
|
banned.add("Hermit Druid");
|
||||||
|
banned.add("Humility");
|
||||||
|
banned.add("Karakas");
|
||||||
|
banned.add("Library of Alexandria");
|
||||||
|
banned.add("Mana Crypt");
|
||||||
|
banned.add("Mana Drain");
|
||||||
|
banned.add("Mana Vault");
|
||||||
|
banned.add("Mind Twist");
|
||||||
|
banned.add("Mishra's Workshop");
|
||||||
|
banned.add("Moat");
|
||||||
|
banned.add("Mox Emerald");
|
||||||
|
banned.add("Mox Jet");
|
||||||
|
banned.add("Mox Pearl");
|
||||||
|
banned.add("Mox Ruby");
|
||||||
|
banned.add("Mox Sapphire");
|
||||||
|
banned.add("Natural Order");
|
||||||
|
banned.add("Necropotence");
|
||||||
|
banned.add("Oath of Druids");
|
||||||
|
banned.add("Ponder");
|
||||||
|
banned.add("Preordain");
|
||||||
|
banned.add("Protean Hulk");
|
||||||
|
banned.add("Rofellos, Llanowar Emissary");
|
||||||
|
banned.add("Sensei's Divining Top");
|
||||||
|
banned.add("Serra Ascendant");
|
||||||
|
banned.add("Sol Ring");
|
||||||
|
banned.add("Strip Mine");
|
||||||
|
banned.add("Survival of the Fittest");
|
||||||
|
banned.add("The Tabernacle at Pendrell Vale");
|
||||||
|
banned.add("Time Vault");
|
||||||
|
banned.add("Time Walk");
|
||||||
|
banned.add("Tinker");
|
||||||
|
banned.add("Tolarian Academy");
|
||||||
|
banned.add("Treachery");
|
||||||
|
banned.add("Treasure Cruise");
|
||||||
|
banned.add("Vial Smasher the Fierce");
|
||||||
|
banned.add("Yamgmoth's Bargain");
|
||||||
|
banned.add("Yisan, the Wanderer Bard");
|
||||||
|
banned.add("Zur the Enchanter");
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
@ -51,6 +51,10 @@ public class CommanderDuelMatch extends MatchImpl {
|
||||||
alsoHand = true; // commander going to hand allowed to go to command zone effective July 17, 2015
|
alsoHand = true; // commander going to hand allowed to go to command zone effective July 17, 2015
|
||||||
checkCommanderDamage = false; // since nov 16 duel commander uses no longer commander damage rule
|
checkCommanderDamage = false; // since nov 16 duel commander uses no longer commander damage rule
|
||||||
}
|
}
|
||||||
|
if (options.getDeckType().equals("Variant Magic - MTGO 1v1 Commander")) {
|
||||||
|
startLife = 30;
|
||||||
|
alsoHand = true; // commander going to hand allowed to go to command zone effective July 17, 2015
|
||||||
|
}
|
||||||
CommanderDuel game = new CommanderDuel(options.getAttackOption(), options.getRange(), options.getFreeMulligans(), startLife);
|
CommanderDuel game = new CommanderDuel(options.getAttackOption(), options.getRange(), options.getFreeMulligans(), startLife);
|
||||||
game.setCheckCommanderDamage(checkCommanderDamage);
|
game.setCheckCommanderDamage(checkCommanderDamage);
|
||||||
game.setStartMessage(this.createGameStartMessage());
|
game.setStartMessage(this.createGameStartMessage());
|
||||||
|
|
|
||||||
|
|
@ -138,13 +138,15 @@
|
||||||
<deckType name="Constructed - Pauper" jar="mage-deck-constructed.jar" className="mage.deck.Pauper"/>
|
<deckType name="Constructed - Pauper" jar="mage-deck-constructed.jar" className="mage.deck.Pauper"/>
|
||||||
<deckType name="Constructed - Historical Type 2" jar="mage-deck-constructed.jar" className="mage.deck.HistoricalType2"/>
|
<deckType name="Constructed - Historical Type 2" jar="mage-deck-constructed.jar" className="mage.deck.HistoricalType2"/>
|
||||||
<deckType name="Constructed - Super Type 2" jar="mage-deck-constructed.jar" className="mage.deck.SuperType2"/>
|
<deckType name="Constructed - Super Type 2" jar="mage-deck-constructed.jar" className="mage.deck.SuperType2"/>
|
||||||
<deckType name="Constructed - Freeform" jar="mage-deck-constructed.jar" className="mage.deck.Freeform"/>
|
|
||||||
<deckType name="Constructed - Australian Highlander" jar="mage-deck-constructed.jar" className="mage.deck.AusHighlander"/>
|
<deckType name="Constructed - Australian Highlander" jar="mage-deck-constructed.jar" className="mage.deck.AusHighlander"/>
|
||||||
|
<deckType name="Constructed - Canadian Highlander" jar="mage-deck-constructed-${project.version}.jar" className="mage.deck.CanadianHighlander"/>
|
||||||
|
<deckType name="Constructed - Freeform" jar="mage-deck-constructed.jar" className="mage.deck.Freeform"/>
|
||||||
<deckType name="Variant Magic - Commander" jar="mage-deck-constructed.jar" className="mage.deck.Commander"/>
|
<deckType name="Variant Magic - Commander" jar="mage-deck-constructed.jar" className="mage.deck.Commander"/>
|
||||||
<deckType name="Variant Magic - Duel Commander" jar="mage-deck-constructed.jar" className="mage.deck.DuelCommander"/>
|
<deckType name="Variant Magic - Duel Commander" jar="mage-deck-constructed.jar" className="mage.deck.DuelCommander"/>
|
||||||
|
<deckType name="Variant Magic - MTGO 1v1 Commander" jar="mage-deck-constructed.jar" className="mage.deck.MTGO1v1Commander"/>
|
||||||
<deckType name="Variant Magic - Tiny Leaders" jar="mage-deck-constructed.jar" className="mage.deck.TinyLeaders"/>
|
<deckType name="Variant Magic - Tiny Leaders" jar="mage-deck-constructed.jar" className="mage.deck.TinyLeaders"/>
|
||||||
<deckType name="Variant Magic - Canadian Highlander" jar="mage-deck-constructed.jar" className="mage.deck.CanadianHighlander"/>
|
|
||||||
<deckType name="Variant Magic - Momir Basic" jar="mage-deck-constructed.jar" className="mage.deck.Momir"/>
|
<deckType name="Variant Magic - Momir Basic" jar="mage-deck-constructed.jar" className="mage.deck.Momir"/>
|
||||||
|
<deckType name="Block Constructed - Amonkhet" jar="mage-deck-constructed.jar" className="mage.deck.AmonkhetBlock"/>
|
||||||
<deckType name="Block Constructed - Battle for Zendikar" jar="mage-deck-constructed.jar" className="mage.deck.BattleForZendikarBlock"/>
|
<deckType name="Block Constructed - Battle for Zendikar" jar="mage-deck-constructed.jar" className="mage.deck.BattleForZendikarBlock"/>
|
||||||
<deckType name="Block Constructed - Innistrad" jar="mage-deck-constructed.jar" className="mage.deck.InnistradBlock"/>
|
<deckType name="Block Constructed - Innistrad" jar="mage-deck-constructed.jar" className="mage.deck.InnistradBlock"/>
|
||||||
<deckType name="Block Constructed - Kaladesh" jar="mage-deck-constructed.jar" className="mage.deck.KaladeshBlock"/>
|
<deckType name="Block Constructed - Kaladesh" jar="mage-deck-constructed.jar" className="mage.deck.KaladeshBlock"/>
|
||||||
|
|
|
||||||
|
|
@ -135,14 +135,15 @@
|
||||||
<deckType name="Constructed - Pauper" jar="mage-deck-constructed-${project.version}.jar" className="mage.deck.Pauper"/>
|
<deckType name="Constructed - Pauper" jar="mage-deck-constructed-${project.version}.jar" className="mage.deck.Pauper"/>
|
||||||
<deckType name="Constructed - Historical Type 2" jar="mage-deck-constructed-${project.version}.jar" className="mage.deck.HistoricalType2"/>
|
<deckType name="Constructed - Historical Type 2" jar="mage-deck-constructed-${project.version}.jar" className="mage.deck.HistoricalType2"/>
|
||||||
<deckType name="Constructed - Super Type 2" jar="mage-deck-constructed-${project.version}.jar" className="mage.deck.SuperType2"/>
|
<deckType name="Constructed - Super Type 2" jar="mage-deck-constructed-${project.version}.jar" className="mage.deck.SuperType2"/>
|
||||||
<deckType name="Constructed - Freeform" jar="mage-deck-constructed-${project.version}.jar" className="mage.deck.Freeform"/>
|
|
||||||
<deckType name="Constructed - Australian Highlander" jar="mage-deck-constructed-${project.version}.jar" className="mage.deck.AusHighlander"/>
|
<deckType name="Constructed - Australian Highlander" jar="mage-deck-constructed-${project.version}.jar" className="mage.deck.AusHighlander"/>
|
||||||
<deckType name="Constructed - Canadian Highlander" jar="mage-deck-constructed-${project.version}.jar" className="mage.deck.CanadianHighlander"/>
|
<deckType name="Constructed - Canadian Highlander" jar="mage-deck-constructed-${project.version}.jar" className="mage.deck.CanadianHighlander"/>
|
||||||
|
<deckType name="Constructed - Freeform" jar="mage-deck-constructed-${project.version}.jar" className="mage.deck.Freeform"/>
|
||||||
<deckType name="Variant Magic - Commander" jar="mage-deck-constructed-${project.version}.jar" className="mage.deck.Commander"/>
|
<deckType name="Variant Magic - Commander" jar="mage-deck-constructed-${project.version}.jar" className="mage.deck.Commander"/>
|
||||||
<deckType name="Variant Magic - Duel Commander" jar="mage-deck-constructed-${project.version}.jar" className="mage.deck.DuelCommander"/>
|
<deckType name="Variant Magic - Duel Commander" jar="mage-deck-constructed-${project.version}.jar" className="mage.deck.DuelCommander"/>
|
||||||
|
<deckType name="Variant Magic - MTGO 1v1 Commander" jar="mage-deck-constructed.jar" className="mage.deck.MTGO1v1Commander"/>
|
||||||
<deckType name="Variant Magic - Tiny Leaders" jar="mage-deck-constructed-${project.version}.jar" className="mage.deck.TinyLeaders"/>
|
<deckType name="Variant Magic - Tiny Leaders" jar="mage-deck-constructed-${project.version}.jar" className="mage.deck.TinyLeaders"/>
|
||||||
<deckType name="Variant Magic - Canadian Highlander" jar="mage-deck-constructed-${project.version}.jar" className="mage.deck.CanadianHighlander"/>
|
|
||||||
<deckType name="Variant Magic - Momir Basic" jar="mage-deck-constructed-${project.version}.jar" className="mage.deck.Momir"/>
|
<deckType name="Variant Magic - Momir Basic" jar="mage-deck-constructed-${project.version}.jar" className="mage.deck.Momir"/>
|
||||||
|
<deckType name="Block Constructed - Amonkhet" jar="mage-deck-constructed.jar" className="mage.deck.AmonkhetBlock"/>
|
||||||
<deckType name="Block Constructed - Battle for Zendikar" jar="mage-deck-constructed.jar" className="mage.deck.BattleForZendikarBlock"/>
|
<deckType name="Block Constructed - Battle for Zendikar" jar="mage-deck-constructed.jar" className="mage.deck.BattleForZendikarBlock"/>
|
||||||
<deckType name="Block Constructed - Innistrad" jar="mage-deck-constructed-${project.version}.jar" className="mage.deck.InnistradBlock"/>
|
<deckType name="Block Constructed - Innistrad" jar="mage-deck-constructed-${project.version}.jar" className="mage.deck.InnistradBlock"/>
|
||||||
<deckType name="Block Constructed - Kaladesh" jar="mage-deck-constructed-${project.version}.jar" className="mage.deck.KaladeshBlock"/>
|
<deckType name="Block Constructed - Kaladesh" jar="mage-deck-constructed-${project.version}.jar" className="mage.deck.KaladeshBlock"/>
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue