From cec7be86044b43793d56b4177579303f8f537604 Mon Sep 17 00:00:00 2001 From: jeffwadsworth Date: Wed, 17 Jun 2020 14:32:34 -0500 Subject: [PATCH] - Text fixes --- Mage.Sets/src/mage/cards/b/BogDown.java | 2 +- Mage.Sets/src/mage/cards/s/ScorchingLava.java | 13 +++++++------ 2 files changed, 8 insertions(+), 7 deletions(-) diff --git a/Mage.Sets/src/mage/cards/b/BogDown.java b/Mage.Sets/src/mage/cards/b/BogDown.java index cf00d5babd..64fa2d7913 100644 --- a/Mage.Sets/src/mage/cards/b/BogDown.java +++ b/Mage.Sets/src/mage/cards/b/BogDown.java @@ -29,7 +29,7 @@ public final class BogDown extends CardImpl { // Target player discards two cards. If Bog Down was kicked, that player discards three cards instead. this.getSpellAbility().addEffect(new ConditionalOneShotEffect(new DiscardTargetEffect(3), new DiscardTargetEffect(2), KickedCondition.instance, - "Target player discards two cards. if this spell was kicked, that player discards three cards instead.")); + "Target player discards two cards. If this spell was kicked, that player discards three cards instead.")); this.getSpellAbility().addTarget(new TargetPlayer()); } diff --git a/Mage.Sets/src/mage/cards/s/ScorchingLava.java b/Mage.Sets/src/mage/cards/s/ScorchingLava.java index 6cf9e7255b..6a16e3c70f 100644 --- a/Mage.Sets/src/mage/cards/s/ScorchingLava.java +++ b/Mage.Sets/src/mage/cards/s/ScorchingLava.java @@ -1,4 +1,3 @@ - package mage.cards.s; import java.util.UUID; @@ -34,14 +33,17 @@ public final class ScorchingLava extends CardImpl { // Kicker {R} this.addAbility(new KickerAbility("{R}")); - // Scorching Lava deals 2 damage to any target. If Scorching Lava was kicked, that creature can't be regenerated this turn and if it would die this turn, exile it instead. + // Scorching Lava deals 2 damage to any target. If Scorching Lava was kicked, + // that creature can't be regenerated this turn and if it would die this turn, exile it instead. this.getSpellAbility().addEffect(new DamageTargetEffect(2)); this.getSpellAbility().addEffect(new ConditionalContinuousRuleModifyingEffect( - new CantRegenerateTargetEffect(Duration.EndOfTurn, "that creature"), new LockedInCondition(KickedCondition.instance))); + new CantRegenerateTargetEffect(Duration.EndOfTurn, "If Scorching Lava was kicked, " + + "\n" + "that creature "), + new LockedInCondition(KickedCondition.instance))); this.getSpellAbility().addEffect(new ConditionalOneShotEffect( new ExileTargetIfDiesEffect(), - new LockedInCondition(KickedCondition.instance) - ).setText("and if it would die this turn, exile it instead")); + new LockedInCondition(KickedCondition.instance), + "and if it would die this turn, exile it instead.")); this.getSpellAbility().addTarget(new TargetAnyTarget()); } @@ -59,7 +61,6 @@ class ScorchingLavaEffect extends OneShotEffect { public ScorchingLavaEffect() { super(Outcome.Exile); - this.staticText = "and if it would die this turn, exile it instead"; } public ScorchingLavaEffect(final ScorchingLavaEffect effect) {