mirror of
https://github.com/correl/mage.git
synced 2024-11-26 03:00:09 +00:00
* Grand Abolisher - Fixed missing tooltip text.
This commit is contained in:
parent
2473ddd38d
commit
4ccc85573f
2 changed files with 8 additions and 8 deletions
|
@ -27,23 +27,22 @@
|
||||||
*/
|
*/
|
||||||
package mage.sets.magic2012;
|
package mage.sets.magic2012;
|
||||||
|
|
||||||
import mage.constants.CardType;
|
import java.util.UUID;
|
||||||
import mage.constants.Rarity;
|
|
||||||
import mage.constants.Zone;
|
|
||||||
import mage.MageInt;
|
import mage.MageInt;
|
||||||
import mage.MageObject;
|
import mage.MageObject;
|
||||||
import mage.abilities.Ability;
|
import mage.abilities.Ability;
|
||||||
import mage.abilities.common.SimpleStaticAbility;
|
import mage.abilities.common.SimpleStaticAbility;
|
||||||
import mage.abilities.effects.ReplacementEffectImpl;
|
import mage.abilities.effects.ReplacementEffectImpl;
|
||||||
import mage.cards.CardImpl;
|
import mage.cards.CardImpl;
|
||||||
|
import mage.constants.CardType;
|
||||||
import mage.constants.Duration;
|
import mage.constants.Duration;
|
||||||
import mage.constants.Outcome;
|
import mage.constants.Outcome;
|
||||||
|
import mage.constants.Rarity;
|
||||||
|
import mage.constants.Zone;
|
||||||
import mage.game.Game;
|
import mage.game.Game;
|
||||||
import mage.game.events.GameEvent;
|
import mage.game.events.GameEvent;
|
||||||
import mage.game.permanent.Permanent;
|
import mage.game.permanent.Permanent;
|
||||||
|
|
||||||
import java.util.UUID;
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @author nantuko
|
* @author nantuko
|
||||||
*/
|
*/
|
||||||
|
@ -77,11 +76,11 @@ class GrandAbolisherEffect extends ReplacementEffectImpl<GrandAbolisherEffect> {
|
||||||
|
|
||||||
public GrandAbolisherEffect() {
|
public GrandAbolisherEffect() {
|
||||||
super(Duration.WhileOnBattlefield, Outcome.Benefit);
|
super(Duration.WhileOnBattlefield, Outcome.Benefit);
|
||||||
|
staticText = "During your turn, your opponents can't cast spells or activate abilities of artifacts, creatures, or enchantments";
|
||||||
}
|
}
|
||||||
|
|
||||||
public GrandAbolisherEffect(final GrandAbolisherEffect effect) {
|
public GrandAbolisherEffect(final GrandAbolisherEffect effect) {
|
||||||
super(effect);
|
super(effect);
|
||||||
staticText = "During your turn, your opponents can't cast spells or activate abilities of artifacts, creatures, or enchantments";
|
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
|
|
|
@ -63,8 +63,9 @@ public class MageInt implements Serializable, Copyable<MageInt> {
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public MageInt copy() {
|
public MageInt copy() {
|
||||||
if (this == EmptyMageInt)
|
if (this == EmptyMageInt) {
|
||||||
return this;
|
return this;
|
||||||
|
}
|
||||||
return new MageInt(baseValue, cardValue);
|
return new MageInt(baseValue, cardValue);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue