mirror of
https://github.com/correl/mage.git
synced 2024-11-25 19:19:55 +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;
|
||||
|
||||
import mage.constants.CardType;
|
||||
import mage.constants.Rarity;
|
||||
import mage.constants.Zone;
|
||||
import java.util.UUID;
|
||||
import mage.MageInt;
|
||||
import mage.MageObject;
|
||||
import mage.abilities.Ability;
|
||||
import mage.abilities.common.SimpleStaticAbility;
|
||||
import mage.abilities.effects.ReplacementEffectImpl;
|
||||
import mage.cards.CardImpl;
|
||||
import mage.constants.CardType;
|
||||
import mage.constants.Duration;
|
||||
import mage.constants.Outcome;
|
||||
import mage.constants.Rarity;
|
||||
import mage.constants.Zone;
|
||||
import mage.game.Game;
|
||||
import mage.game.events.GameEvent;
|
||||
import mage.game.permanent.Permanent;
|
||||
|
||||
import java.util.UUID;
|
||||
|
||||
/**
|
||||
* @author nantuko
|
||||
*/
|
||||
|
@ -77,11 +76,11 @@ class GrandAbolisherEffect extends ReplacementEffectImpl<GrandAbolisherEffect> {
|
|||
|
||||
public GrandAbolisherEffect() {
|
||||
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) {
|
||||
super(effect);
|
||||
staticText = "During your turn, your opponents can't cast spells or activate abilities of artifacts, creatures, or enchantments";
|
||||
super(effect);
|
||||
}
|
||||
|
||||
@Override
|
||||
|
|
|
@ -63,8 +63,9 @@ public class MageInt implements Serializable, Copyable<MageInt> {
|
|||
|
||||
@Override
|
||||
public MageInt copy() {
|
||||
if (this == EmptyMageInt)
|
||||
if (this == EmptyMageInt) {
|
||||
return this;
|
||||
}
|
||||
return new MageInt(baseValue, cardValue);
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue