changed client plugins versions back

This commit is contained in:
magenoxx 2012-07-24 13:10:13 +04:00
parent 47d44c6aef
commit e24bd6da69
5 changed files with 10 additions and 13 deletions

View file

@ -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>

View file

@ -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>

View file

@ -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";
}

View file

@ -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);

View file

@ -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";
}