forked from External/mage
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
10 lines
246 B
Java
10 lines
246 B
Java
package mage.game;
|
|
|
|
import mage.game.match.MatchOptions;
|
|
|
|
public class FreeformUnlimitedCommanderMatch extends FreeformCommanderFreeForAllMatch {
|
|
|
|
public FreeformUnlimitedCommanderMatch(MatchOptions options) {
|
|
super(options);
|
|
}
|
|
}
|