forked from External/mage
Add Freeform Unlimited Commander game type
Currently there's no multiplayer format that allows players to cast spells from the command zone and also allows any deck size. This is a problem for players who want to test EDH Cube decks. These decks: - can have any size - often between 40 and 100 - with no standard - can have cards outside the commander's color identity - may break the singleton rule Create a game and deck type to accommodate these types of decks. Notable differences from Freeform Commander in addition to the above: - Decks can have any number of cards in the maindeck or sideboard - Sideboard cards can be any type - There are no illegal expansions - Games can have a minimum 2 players
This commit is contained in:
parent
217517feee
commit
c3cb54f371
15 changed files with 426 additions and 1 deletions
|
|
@ -818,7 +818,7 @@ public class TablesPanel extends javax.swing.JPanel {
|
|||
formatFilterList.add(RowFilter.regexFilter("^Constructed - Premodern", TablesTableModel.COLUMN_DECK_TYPE));
|
||||
}
|
||||
if (btnFormatCommander.isSelected()) {
|
||||
formatFilterList.add(RowFilter.regexFilter("^Commander|^Duel Commander|^Centurion Commander|^Penny Dreadful Commander|^Freeform Commander|^MTGO 1v1 Commander|^Duel Brawl|^Brawl", TablesTableModel.COLUMN_DECK_TYPE));
|
||||
formatFilterList.add(RowFilter.regexFilter("^Commander|^Duel Commander|^Centurion Commander|^Penny Dreadful Commander|^Freeform Commander|^Freeform Unlimited Commander|^MTGO 1v1 Commander|^Duel Brawl|^Brawl", TablesTableModel.COLUMN_DECK_TYPE));
|
||||
}
|
||||
if (btnFormatTinyLeader.isSelected()) {
|
||||
formatFilterList.add(RowFilter.regexFilter("^Tiny", TablesTableModel.COLUMN_DECK_TYPE));
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue