mirror of
https://github.com/correl/mage.git
synced 2024-11-15 03:00:16 +00: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>
|
||||
<name>Mage Counter Plugin</name>
|
||||
<description>Implements game counter to display amount of games played</description>
|
||||
<version>0.9.0</version>
|
||||
<version>0.1</version>
|
||||
|
||||
<dependencies>
|
||||
<dependency>
|
||||
|
|
|
@ -11,7 +11,7 @@
|
|||
|
||||
<artifactId>mage-theme-plugin</artifactId>
|
||||
<packaging>jar</packaging>
|
||||
<version>0.9.0</version>
|
||||
<version>0.4</version>
|
||||
<name>Mage Theme Plugin</name>
|
||||
<description>Contains resources for drawing background</description>
|
||||
|
||||
|
|
|
@ -27,13 +27,7 @@
|
|||
*/
|
||||
package mage.sets.innistrad;
|
||||
|
||||
import java.util.UUID;
|
||||
|
||||
import mage.Constants.CardType;
|
||||
import mage.Constants.Duration;
|
||||
import mage.Constants.Outcome;
|
||||
import mage.Constants.Rarity;
|
||||
import mage.Constants.Zone;
|
||||
import mage.Constants.*;
|
||||
import mage.MageInt;
|
||||
import mage.abilities.Ability;
|
||||
import mage.abilities.common.SimpleStaticAbility;
|
||||
|
@ -48,6 +42,8 @@ import mage.game.permanent.Permanent;
|
|||
import mage.players.Player;
|
||||
import mage.watchers.common.DamagedByWatcher;
|
||||
|
||||
import java.util.UUID;
|
||||
|
||||
/**
|
||||
*
|
||||
* @author Alvin
|
||||
|
@ -84,7 +80,7 @@ public class AbattoirGhoul extends CardImpl<AbattoirGhoul> {
|
|||
class AbattoirGhoulEffect extends ReplacementEffectImpl<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";
|
||||
}
|
||||
|
||||
|
|
|
@ -101,6 +101,7 @@ class DivineReckoningEffect extends OneShotEffect<DivineReckoningEffect> {
|
|||
Player player = game.getPlayer(playerId);
|
||||
|
||||
Target target = new TargetControlledPermanent(1, 1, filter, false);
|
||||
target.setRequired(true);
|
||||
if (target.canChoose(player.getId(), game)) {
|
||||
while (!target.isChosen() && target.canChoose(player.getId(), game)) {
|
||||
player.choose(Constants.Outcome.Benefit, target, source.getSourceId(), game);
|
||||
|
|
|
@ -28,8 +28,6 @@
|
|||
|
||||
package mage.sets.mirrodinbesieged;
|
||||
|
||||
import java.util.UUID;
|
||||
|
||||
import mage.Constants;
|
||||
import mage.Constants.CardType;
|
||||
import mage.Constants.Rarity;
|
||||
|
@ -46,6 +44,8 @@ import mage.game.permanent.Permanent;
|
|||
import mage.target.common.TargetCreaturePermanent;
|
||||
import mage.util.CardUtil;
|
||||
|
||||
import java.util.UUID;
|
||||
|
||||
/**
|
||||
* @author Loki
|
||||
*/
|
||||
|
@ -82,7 +82,7 @@ public class Cryptoplasm extends CardImpl<Cryptoplasm> {
|
|||
class CryptoplasmTransformEffect extends ContinuousEffectImpl<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";
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue