mirror of
https://github.com/magefree/mage.git
synced 2026-01-26 21:29:17 -08:00
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
61 lines
1.9 KiB
XML
61 lines
1.9 KiB
XML
<?xml version="1.0"?>
|
|
<project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns="http://maven.apache.org/POM/4.0.0"
|
|
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
<parent>
|
|
<groupId>org.mage</groupId>
|
|
<artifactId>mage-server-plugins</artifactId>
|
|
<version>1.4.42</version>
|
|
</parent>
|
|
|
|
<artifactId>mage-game-freeformunlimitedcommander</artifactId>
|
|
<packaging>jar</packaging>
|
|
<name>Mage Game Freeform Unlimited Commander</name>
|
|
|
|
<dependencies>
|
|
<dependency>
|
|
<groupId>${project.groupId}</groupId>
|
|
<artifactId>mage</artifactId>
|
|
<version>${project.version}</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.mage</groupId>
|
|
<artifactId>mage-game-freeformunlimitedcommander</artifactId>
|
|
<version>1.4.42</version>
|
|
<scope>compile</scope>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.mage</groupId>
|
|
<artifactId>mage-game-freeformcommanderfreeforall</artifactId>
|
|
<version>1.4.42</version>
|
|
<scope>compile</scope>
|
|
</dependency>
|
|
</dependencies>
|
|
|
|
<build>
|
|
<sourceDirectory>src</sourceDirectory>
|
|
<plugins>
|
|
<plugin>
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
<artifactId>maven-compiler-plugin</artifactId>
|
|
<configuration>
|
|
<source>1.8</source>
|
|
<target>1.8</target>
|
|
</configuration>
|
|
</plugin>
|
|
<plugin>
|
|
<artifactId>maven-resources-plugin</artifactId>
|
|
<configuration>
|
|
<encoding>UTF-8</encoding>
|
|
</configuration>
|
|
</plugin>
|
|
|
|
</plugins>
|
|
|
|
<finalName>mage-game-freeformunlimitedcommander</finalName>
|
|
</build>
|
|
|
|
<properties/>
|
|
|
|
</project>
|