From 991d8ce788742c3147d33389eba1b732acd75e4b Mon Sep 17 00:00:00 2001 From: fireshoes Date: Thu, 3 Sep 2015 13:21:33 -0500 Subject: [PATCH] [BFZ] Updated Lantern Scout and Hero of Goma Fada tooltips. --- .../src/mage/sets/battleforzendikar/HeroOfGomaFada.java | 5 ++--- .../src/mage/sets/battleforzendikar/LanternScout.java | 7 ++++--- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/Mage.Sets/src/mage/sets/battleforzendikar/HeroOfGomaFada.java b/Mage.Sets/src/mage/sets/battleforzendikar/HeroOfGomaFada.java index 6fa8f003b2..1ea0b04ce6 100644 --- a/Mage.Sets/src/mage/sets/battleforzendikar/HeroOfGomaFada.java +++ b/Mage.Sets/src/mage/sets/battleforzendikar/HeroOfGomaFada.java @@ -34,7 +34,6 @@ import mage.abilities.common.AllyEntersBattlefieldTriggeredAbility; import mage.abilities.effects.common.continuous.GainAbilityAllEffect; import mage.abilities.keyword.IndestructibleAbility; import mage.cards.CardImpl; -import mage.constants.AbilityWord; import mage.constants.CardType; import mage.constants.Duration; import mage.constants.Rarity; @@ -57,8 +56,8 @@ public class HeroOfGomaFada extends CardImpl { // Rally - Whenever Hero of Goma Fada or another Ally enters the battlefield under your control, creatures you control gain indestructible until end of turn. Ability ability = new AllyEntersBattlefieldTriggeredAbility( - new GainAbilityAllEffect(IndestructibleAbility.getInstance(), Duration.EndOfTurn, new FilterControlledCreaturePermanent()), false); - ability.setAbilityWord(AbilityWord.RALLY); + new GainAbilityAllEffect(IndestructibleAbility.getInstance(), Duration.EndOfTurn, + new FilterControlledCreaturePermanent("creatures you control")), false); this.addAbility(ability); } diff --git a/Mage.Sets/src/mage/sets/battleforzendikar/LanternScout.java b/Mage.Sets/src/mage/sets/battleforzendikar/LanternScout.java index ec5f1cccd1..c06ef6c511 100644 --- a/Mage.Sets/src/mage/sets/battleforzendikar/LanternScout.java +++ b/Mage.Sets/src/mage/sets/battleforzendikar/LanternScout.java @@ -31,10 +31,10 @@ import java.util.UUID; import mage.MageInt; import mage.abilities.Ability; import mage.abilities.common.AllyEntersBattlefieldTriggeredAbility; +import mage.abilities.effects.Effect; import mage.abilities.effects.common.continuous.GainAbilityAllEffect; import mage.abilities.keyword.LifelinkAbility; import mage.cards.CardImpl; -import mage.constants.AbilityWord; import mage.constants.CardType; import mage.constants.Duration; import mage.constants.Rarity; @@ -65,9 +65,10 @@ public class LanternScout extends CardImpl { new SubtypePredicate("Ally"))); // Rally - Whenever Lantern Scout or another Ally enters the battlefield under your control, creatures you control gain lifelink until end of turn. + Effect effect = new GainAbilityAllEffect(LifelinkAbility.getInstance(), Duration.EndOfTurn, new FilterControlledCreaturePermanent()); + effect.setText("creatures you control gain lifelink until end of turn"); Ability ability = new AllyEntersBattlefieldTriggeredAbility( - new GainAbilityAllEffect(LifelinkAbility.getInstance(), Duration.EndOfTurn, new FilterControlledCreaturePermanent()), false); - ability.setAbilityWord(AbilityWord.RALLY); + effect, false); this.addAbility(ability); }