From 7c579c198d84c51ffd662a7c3cfbae0df14ff59a Mon Sep 17 00:00:00 2001 From: LevelX2 Date: Sun, 7 Jul 2013 11:15:58 +0200 Subject: [PATCH] * Ready // Willing - Fixed tooltip text. --- Mage.Sets/src/mage/sets/dragonsmaze/ReadyWilling.java | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/Mage.Sets/src/mage/sets/dragonsmaze/ReadyWilling.java b/Mage.Sets/src/mage/sets/dragonsmaze/ReadyWilling.java index 29724941ea4..f6a4efc55eb 100644 --- a/Mage.Sets/src/mage/sets/dragonsmaze/ReadyWilling.java +++ b/Mage.Sets/src/mage/sets/dragonsmaze/ReadyWilling.java @@ -61,8 +61,9 @@ public class ReadyWilling extends SplitCard { // Creatures you control are indestructible this turn. Untap each creature you control. getLeftHalfCard().getColor().setGreen(true); getLeftHalfCard().getColor().setWhite(true); - getLeftHalfCard().getSpellAbility().addEffect( - new GainAbilityAllEffect(IndestructibleAbility.getInstance(), Duration.EndOfTurn, new FilterControlledCreaturePermanent("Creatures you controll"), false)); + Effect effect = new GainAbilityAllEffect(IndestructibleAbility.getInstance(), Duration.EndOfTurn, new FilterControlledCreaturePermanent("Creatures you controll"), false); + effect.setText("Creatures you control are indestructible this turn"); + getLeftHalfCard().getSpellAbility().addEffect(effect); getLeftHalfCard().getSpellAbility().addEffect(new UntapAllControllerEffect(new FilterControlledCreaturePermanent(),"Untap each creature you control")); // Willing @@ -70,8 +71,8 @@ public class ReadyWilling extends SplitCard { getRightHalfCard().getColor().setWhite(true); getRightHalfCard().getColor().setBlack(true); getRightHalfCard().getSpellAbility().addEffect(new GainAbilityControlledEffect(DeathtouchAbility.getInstance(), Duration.EndOfTurn, new FilterCreaturePermanent("Creatures")) ); - Effect effect = new GainAbilityControlledEffect(LifelinkAbility.getInstance(), Duration.EndOfTurn, new FilterCreaturePermanent("Creatures")); - effect.setText("Creatures you control gain lifelink until end of turn."); + effect = new GainAbilityControlledEffect(LifelinkAbility.getInstance(), Duration.EndOfTurn, new FilterCreaturePermanent("Creatures")); + effect.setText("Creatures you control gain lifelink until end of turn"); getRightHalfCard().getSpellAbility().addEffect(effect); }