From 42ca233db64d2c17349e1a9ccda46ea7a58d4d3f Mon Sep 17 00:00:00 2001 From: LevelX2 Date: Tue, 18 Aug 2015 15:58:37 +0200 Subject: [PATCH] * Rune-Tail, Kitsune Ascendant - Fixed tooltip text. --- .../sets/saviorsofkamigawa/RuneTailKitsuneAscendant.java | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/Mage.Sets/src/mage/sets/saviorsofkamigawa/RuneTailKitsuneAscendant.java b/Mage.Sets/src/mage/sets/saviorsofkamigawa/RuneTailKitsuneAscendant.java index ed256a3987..a1b8c7dd41 100644 --- a/Mage.Sets/src/mage/sets/saviorsofkamigawa/RuneTailKitsuneAscendant.java +++ b/Mage.Sets/src/mage/sets/saviorsofkamigawa/RuneTailKitsuneAscendant.java @@ -61,7 +61,6 @@ public class RuneTailKitsuneAscendant extends CardImpl { this.toughness = new MageInt(2); this.flipCard = true; this.flipCardName = "Rune-Tail's Essence"; - // When you have 30 or more life, flip Rune-Tail, Kitsune Ascendant. this.addAbility(new RuneTailKitsuneAscendantFlipAbility()); @@ -103,22 +102,22 @@ class RuneTailKitsuneAscendantFlipAbility extends StateTriggeredAbility { @Override public String getRule() { - return "When you have 30 or more life, flip {this}"; + return "When you have 30 or more life, flip {this}."; } } class RuneTailEssence extends Token { - RuneTailEssence() { super("Rune-Tail's Essence", ""); supertype.add("Legendary"); cardType.add(CardType.ENCHANTMENT); - + color.setWhite(true); // Prevent all damage that would be dealt to creatures you control. - this.addAbility(new SimpleStaticAbility(Zone.BATTLEFIELD, new PreventAllDamageToAllEffect(Duration.WhileOnBattlefield, new FilterControlledCreatureInPlay()))); + this.addAbility(new SimpleStaticAbility(Zone.BATTLEFIELD, + new PreventAllDamageToAllEffect(Duration.WhileOnBattlefield, new FilterControlledCreatureInPlay("creatures you control")))); } }