From bf3e3c0ddb932c5b3818ddfc48f81b45a31433bc Mon Sep 17 00:00:00 2001 From: LevelX2 Date: Sat, 14 Jun 2014 12:48:58 +0200 Subject: [PATCH] * Minor tooltip text changes. --- .../src/mage/sets/avacynrestored/TibaltTheFiendBlooded.java | 5 +++-- Mage.Sets/src/mage/sets/innistrad/AltarsReap.java | 3 ++- 2 files changed, 5 insertions(+), 3 deletions(-) diff --git a/Mage.Sets/src/mage/sets/avacynrestored/TibaltTheFiendBlooded.java b/Mage.Sets/src/mage/sets/avacynrestored/TibaltTheFiendBlooded.java index 6948b5760f0..89069e1016d 100644 --- a/Mage.Sets/src/mage/sets/avacynrestored/TibaltTheFiendBlooded.java +++ b/Mage.Sets/src/mage/sets/avacynrestored/TibaltTheFiendBlooded.java @@ -81,8 +81,9 @@ public class TibaltTheFiendBlooded extends CardImpl { ability.addEffect(effect); this.addAbility(ability); // -4: Tibalt, the Fiend-Blooded deals damage equal to the number of cards in target player's hand to that player. - //effect = - ability = new LoyaltyAbility(new DamageTargetEffect(new CardsInTargetHandCount(), true, "that player"), -4); + effect = new DamageTargetEffect(new CardsInTargetHandCount(), true); + effect.setText("{this} deals damage equal to the number of cards in target player's hand to that player"); + ability = new LoyaltyAbility(effect, -4); ability.addTarget(new TargetPlayer()); this.addAbility(ability); // -6: Gain control of all creatures until end of turn. Untap them. They gain haste until end of turn. diff --git a/Mage.Sets/src/mage/sets/innistrad/AltarsReap.java b/Mage.Sets/src/mage/sets/innistrad/AltarsReap.java index 0f42bae13df..755e28a0650 100644 --- a/Mage.Sets/src/mage/sets/innistrad/AltarsReap.java +++ b/Mage.Sets/src/mage/sets/innistrad/AltarsReap.java @@ -33,6 +33,7 @@ import mage.constants.Rarity; import mage.abilities.costs.common.SacrificeTargetCost; import mage.abilities.effects.common.DrawCardSourceControllerEffect; import mage.cards.CardImpl; +import mage.filter.common.FilterControlledCreaturePermanent; import mage.target.common.TargetControlledCreaturePermanent; /** @@ -48,7 +49,7 @@ public class AltarsReap extends CardImpl { this.color.setBlack(true); // As an additional cost to cast Altar's Reap, sacrifice a creature. - this.getSpellAbility().addCost(new SacrificeTargetCost(new TargetControlledCreaturePermanent())); + this.getSpellAbility().addCost(new SacrificeTargetCost(new TargetControlledCreaturePermanent(1,1, new FilterControlledCreaturePermanent("a creature"), true))); // Draw two cards. this.getSpellAbility().addEffect(new DrawCardSourceControllerEffect(2)); }