- Text fixes

This commit is contained in:
jeffwadsworth 2020-06-17 14:32:34 -05:00
parent 2f68db7086
commit cec7be8604
2 changed files with 8 additions and 7 deletions

View file

@ -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());
}

View file

@ -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) {