From 7e3c610dceeb115b1c1ad7162eae64b2dc19c8d0 Mon Sep 17 00:00:00 2001 From: Evan Kranzler Date: Mon, 20 Apr 2020 21:29:29 -0400 Subject: [PATCH] fixed Monstrous Step text --- Mage.Sets/src/mage/cards/m/MonstrousStep.java | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/Mage.Sets/src/mage/cards/m/MonstrousStep.java b/Mage.Sets/src/mage/cards/m/MonstrousStep.java index 8adde7371be..801c0083012 100644 --- a/Mage.Sets/src/mage/cards/m/MonstrousStep.java +++ b/Mage.Sets/src/mage/cards/m/MonstrousStep.java @@ -1,9 +1,8 @@ package mage.cards.m; -import java.util.UUID; import mage.abilities.Ability; -import mage.abilities.effects.RequirementEffect; import mage.abilities.costs.mana.ManaCostsImpl; +import mage.abilities.effects.RequirementEffect; import mage.abilities.effects.common.continuous.BoostTargetEffect; import mage.abilities.keyword.CyclingAbility; import mage.cards.CardImpl; @@ -16,8 +15,9 @@ import mage.game.permanent.Permanent; import mage.target.common.TargetCreaturePermanent; import mage.watchers.common.BlockedAttackerWatcher; +import java.util.UUID; + /** - * * @author drowinternet */ public final class MonstrousStep extends CardImpl { @@ -30,8 +30,8 @@ public final class MonstrousStep extends CardImpl { // Target creature gets +7/+7 until end of turn. - this.getSpellAbility().addEffect(new BoostTargetEffect(7,7, Duration.EndOfTurn) - .setText("Target creature gets +7/+7 until end of turn.")); + this.getSpellAbility().addEffect(new BoostTargetEffect(7, 7, Duration.EndOfTurn) + .setText("Target creature gets +7/+7 until end of turn")); //Up to one target creature blocks it this turn if able. this.getSpellAbility().addEffect(new MonstrousStepEffect()); @@ -63,7 +63,7 @@ class MonstrousStepEffect extends RequirementEffect { public MonstrousStepEffect(Duration duration) { super(duration); - staticText = "Up to one target creature blocks it this turn if able."; + staticText = "Up to one other target creature blocks it this turn if able."; } public MonstrousStepEffect(final MonstrousStepEffect effect) {