mirror of
https://github.com/magefree/mage.git
synced 2025-12-20 10:40:06 -08:00
changed client plugins versions back
This commit is contained in:
parent
47d44c6aef
commit
e24bd6da69
5 changed files with 10 additions and 13 deletions
|
|
@ -14,7 +14,7 @@
|
||||||
<packaging>jar</packaging>
|
<packaging>jar</packaging>
|
||||||
<name>Mage Counter Plugin</name>
|
<name>Mage Counter Plugin</name>
|
||||||
<description>Implements game counter to display amount of games played</description>
|
<description>Implements game counter to display amount of games played</description>
|
||||||
<version>0.9.0</version>
|
<version>0.1</version>
|
||||||
|
|
||||||
<dependencies>
|
<dependencies>
|
||||||
<dependency>
|
<dependency>
|
||||||
|
|
|
||||||
|
|
@ -11,7 +11,7 @@
|
||||||
|
|
||||||
<artifactId>mage-theme-plugin</artifactId>
|
<artifactId>mage-theme-plugin</artifactId>
|
||||||
<packaging>jar</packaging>
|
<packaging>jar</packaging>
|
||||||
<version>0.9.0</version>
|
<version>0.4</version>
|
||||||
<name>Mage Theme Plugin</name>
|
<name>Mage Theme Plugin</name>
|
||||||
<description>Contains resources for drawing background</description>
|
<description>Contains resources for drawing background</description>
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -27,13 +27,7 @@
|
||||||
*/
|
*/
|
||||||
package mage.sets.innistrad;
|
package mage.sets.innistrad;
|
||||||
|
|
||||||
import java.util.UUID;
|
import mage.Constants.*;
|
||||||
|
|
||||||
import mage.Constants.CardType;
|
|
||||||
import mage.Constants.Duration;
|
|
||||||
import mage.Constants.Outcome;
|
|
||||||
import mage.Constants.Rarity;
|
|
||||||
import mage.Constants.Zone;
|
|
||||||
import mage.MageInt;
|
import mage.MageInt;
|
||||||
import mage.abilities.Ability;
|
import mage.abilities.Ability;
|
||||||
import mage.abilities.common.SimpleStaticAbility;
|
import mage.abilities.common.SimpleStaticAbility;
|
||||||
|
|
@ -48,6 +42,8 @@ import mage.game.permanent.Permanent;
|
||||||
import mage.players.Player;
|
import mage.players.Player;
|
||||||
import mage.watchers.common.DamagedByWatcher;
|
import mage.watchers.common.DamagedByWatcher;
|
||||||
|
|
||||||
|
import java.util.UUID;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
*
|
*
|
||||||
* @author Alvin
|
* @author Alvin
|
||||||
|
|
@ -84,7 +80,7 @@ public class AbattoirGhoul extends CardImpl<AbattoirGhoul> {
|
||||||
class AbattoirGhoulEffect extends ReplacementEffectImpl<AbattoirGhoulEffect> {
|
class AbattoirGhoulEffect extends ReplacementEffectImpl<AbattoirGhoulEffect> {
|
||||||
|
|
||||||
public AbattoirGhoulEffect() {
|
public AbattoirGhoulEffect() {
|
||||||
super(Duration.EndOfTurn, Outcome.GainLife);
|
super(Duration.WhileOnBattlefield, Outcome.GainLife);
|
||||||
staticText = "Whenever a creature dealt damage by Abattoir Ghoul this turn dies, you gain life equal to that creature's toughness";
|
staticText = "Whenever a creature dealt damage by Abattoir Ghoul this turn dies, you gain life equal to that creature's toughness";
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -101,6 +101,7 @@ class DivineReckoningEffect extends OneShotEffect<DivineReckoningEffect> {
|
||||||
Player player = game.getPlayer(playerId);
|
Player player = game.getPlayer(playerId);
|
||||||
|
|
||||||
Target target = new TargetControlledPermanent(1, 1, filter, false);
|
Target target = new TargetControlledPermanent(1, 1, filter, false);
|
||||||
|
target.setRequired(true);
|
||||||
if (target.canChoose(player.getId(), game)) {
|
if (target.canChoose(player.getId(), game)) {
|
||||||
while (!target.isChosen() && target.canChoose(player.getId(), game)) {
|
while (!target.isChosen() && target.canChoose(player.getId(), game)) {
|
||||||
player.choose(Constants.Outcome.Benefit, target, source.getSourceId(), game);
|
player.choose(Constants.Outcome.Benefit, target, source.getSourceId(), game);
|
||||||
|
|
|
||||||
|
|
@ -28,8 +28,6 @@
|
||||||
|
|
||||||
package mage.sets.mirrodinbesieged;
|
package mage.sets.mirrodinbesieged;
|
||||||
|
|
||||||
import java.util.UUID;
|
|
||||||
|
|
||||||
import mage.Constants;
|
import mage.Constants;
|
||||||
import mage.Constants.CardType;
|
import mage.Constants.CardType;
|
||||||
import mage.Constants.Rarity;
|
import mage.Constants.Rarity;
|
||||||
|
|
@ -46,6 +44,8 @@ import mage.game.permanent.Permanent;
|
||||||
import mage.target.common.TargetCreaturePermanent;
|
import mage.target.common.TargetCreaturePermanent;
|
||||||
import mage.util.CardUtil;
|
import mage.util.CardUtil;
|
||||||
|
|
||||||
|
import java.util.UUID;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @author Loki
|
* @author Loki
|
||||||
*/
|
*/
|
||||||
|
|
@ -82,7 +82,7 @@ public class Cryptoplasm extends CardImpl<Cryptoplasm> {
|
||||||
class CryptoplasmTransformEffect extends ContinuousEffectImpl<CryptoplasmTransformEffect> {
|
class CryptoplasmTransformEffect extends ContinuousEffectImpl<CryptoplasmTransformEffect> {
|
||||||
|
|
||||||
CryptoplasmTransformEffect() {
|
CryptoplasmTransformEffect() {
|
||||||
super(Constants.Duration.WhileOnBattlefield, Constants.Layer.CopyEffects_1, Constants.SubLayer.NA, Constants.Outcome.BecomeCreature);
|
super(Constants.Duration.WhileOnBattlefield, Constants.Layer.CopyEffects_1, Constants.SubLayer.NA, Constants.Outcome.Copy);
|
||||||
staticText = "you may have {this} become a copy of another target creature. If you do, {this} gains this ability";
|
staticText = "you may have {this} become a copy of another target creature. If you do, {this} gains this ability";
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue