mirror of
https://github.com/correl/mage.git
synced 2024-12-26 03:00:11 +00:00
- Text fixes
This commit is contained in:
parent
2f68db7086
commit
cec7be8604
2 changed files with 8 additions and 7 deletions
|
@ -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());
|
||||
}
|
||||
|
||||
|
|
|
@ -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) {
|
||||
|
|
Loading…
Reference in a new issue