diff --git a/Mage.Sets/src/mage/sets/saviorsofkamigawa/InnerCalmOuterStrength.java b/Mage.Sets/src/mage/sets/saviorsofkamigawa/InnerCalmOuterStrength.java index 854cc2aaae..33614ee3c4 100644 --- a/Mage.Sets/src/mage/sets/saviorsofkamigawa/InnerCalmOuterStrength.java +++ b/Mage.Sets/src/mage/sets/saviorsofkamigawa/InnerCalmOuterStrength.java @@ -30,6 +30,7 @@ package mage.sets.saviorsofkamigawa; import java.util.UUID; import mage.abilities.dynamicvalue.DynamicValue; import mage.abilities.dynamicvalue.common.CardsInControllerHandCount; +import mage.abilities.effects.Effect; import mage.abilities.effects.common.continious.BoostTargetEffect; import mage.cards.CardImpl; import mage.constants.CardType; @@ -52,7 +53,9 @@ public class InnerCalmOuterStrength extends CardImpl { // Target creature gets +X/+X until end of turn, where X is the number of cards in your hand. DynamicValue xValue= new CardsInControllerHandCount(); - this.getSpellAbility().addEffect(new BoostTargetEffect(xValue, xValue, Duration.EndOfTurn)); + Effect effect = new BoostTargetEffect(xValue, xValue, Duration.EndOfTurn, true); + effect.setText("Target creature gets +X/+X until end of turn, where X is the number of cards in your hand"); + this.getSpellAbility().addEffect(effect); this.getSpellAbility().addTarget(new TargetCreaturePermanent()); } diff --git a/Mage.Sets/src/mage/sets/saviorsofkamigawa/MasumaroFirstToLive.java b/Mage.Sets/src/mage/sets/saviorsofkamigawa/MasumaroFirstToLive.java index 3ec36740db..785d5167a6 100644 --- a/Mage.Sets/src/mage/sets/saviorsofkamigawa/MasumaroFirstToLive.java +++ b/Mage.Sets/src/mage/sets/saviorsofkamigawa/MasumaroFirstToLive.java @@ -33,6 +33,7 @@ import mage.abilities.common.SimpleStaticAbility; import mage.abilities.dynamicvalue.DynamicValue; import mage.abilities.dynamicvalue.MultipliedValue; import mage.abilities.dynamicvalue.common.CardsInControllerHandCount; +import mage.abilities.effects.Effect; import mage.abilities.effects.common.continious.SetPowerToughnessSourceEffect; import mage.cards.CardImpl; import mage.constants.CardType; @@ -58,7 +59,9 @@ public class MasumaroFirstToLive extends CardImpl { // Masumaro, First to Live's power and toughness are each equal to twice the number of cards in your hand. DynamicValue xValue= new MultipliedValue(new CardsInControllerHandCount(), 2); - this.addAbility(new SimpleStaticAbility(Zone.ALL, new SetPowerToughnessSourceEffect(xValue, Duration.EndOfGame))); + Effect effect = new SetPowerToughnessSourceEffect(xValue, Duration.EndOfGame); + effect.setText("{this}'s power and toughness are each equal to twice the number of cards in your hand"); + this.addAbility(new SimpleStaticAbility(Zone.ALL, effect)); }