mirror of
https://github.com/correl/mage.git
synced 2025-01-13 11:01:58 +00:00
Merge branch 'master' of https://github.com/magefree/mage
This commit is contained in:
commit
8922dec4e7
2 changed files with 1 additions and 48 deletions
|
@ -31,51 +31,4 @@
|
||||||
<scope>test</scope>
|
<scope>test</scope>
|
||||||
</dependency>
|
</dependency>
|
||||||
</dependencies>
|
</dependencies>
|
||||||
|
|
||||||
<build>
|
|
||||||
<plugins>
|
|
||||||
<plugin>
|
|
||||||
<groupId>org.apache.maven.plugins</groupId>
|
|
||||||
<artifactId>maven-compiler-plugin</artifactId>
|
|
||||||
</plugin>
|
|
||||||
<plugin>
|
|
||||||
<groupId>org.apache.maven.plugins</groupId>
|
|
||||||
<artifactId>maven-install-plugin</artifactId>
|
|
||||||
<version>2.5.2</version>
|
|
||||||
</plugin>
|
|
||||||
<plugin>
|
|
||||||
<artifactId>maven-resources-plugin</artifactId>
|
|
||||||
<configuration>
|
|
||||||
<encoding>UTF-8</encoding>
|
|
||||||
</configuration>
|
|
||||||
</plugin>
|
|
||||||
<plugin>
|
|
||||||
<artifactId>maven-jar-plugin</artifactId>
|
|
||||||
<configuration>
|
|
||||||
<archive>
|
|
||||||
<manifestFile>${manifest.file}</manifestFile>
|
|
||||||
<manifest>
|
|
||||||
<addClasspath>true</addClasspath>
|
|
||||||
<mainClass>mage.server.console.ConsoleFrame</mainClass>
|
|
||||||
</manifest>
|
|
||||||
</archive>
|
|
||||||
</configuration>
|
|
||||||
</plugin>
|
|
||||||
<plugin>
|
|
||||||
<artifactId>maven-assembly-plugin</artifactId>
|
|
||||||
<configuration>
|
|
||||||
<appendAssemblyId>false</appendAssemblyId>
|
|
||||||
<descriptors>
|
|
||||||
<descriptor>src/main/assembly/distribution.xml</descriptor>
|
|
||||||
</descriptors>
|
|
||||||
</configuration>
|
|
||||||
</plugin>
|
|
||||||
</plugins>
|
|
||||||
|
|
||||||
<finalName>mage-console</finalName>
|
|
||||||
</build>
|
|
||||||
|
|
||||||
<properties>
|
|
||||||
<manifest.file>src/main/resources/META-INF/MANIFEST.MF</manifest.file>
|
|
||||||
</properties>
|
|
||||||
</project>
|
</project>
|
||||||
|
|
|
@ -95,7 +95,7 @@ public class ErebossTitan extends CardImpl {
|
||||||
class ErebossTitanTriggeredAbility extends TriggeredAbilityImpl {
|
class ErebossTitanTriggeredAbility extends TriggeredAbilityImpl {
|
||||||
|
|
||||||
public ErebossTitanTriggeredAbility() {
|
public ErebossTitanTriggeredAbility() {
|
||||||
super(Zone.BATTLEFIELD, new DoIfCostPaid(new ReturnSourceFromGraveyardToHandEffect(), new DiscardCardCost()));
|
super(Zone.GRAVEYARD, new DoIfCostPaid(new ReturnSourceFromGraveyardToHandEffect(), new DiscardCardCost()));
|
||||||
}
|
}
|
||||||
|
|
||||||
public ErebossTitanTriggeredAbility(final ErebossTitanTriggeredAbility ability) {
|
public ErebossTitanTriggeredAbility(final ErebossTitanTriggeredAbility ability) {
|
||||||
|
|
Loading…
Reference in a new issue