mirror of
https://github.com/correl/mage.git
synced 2025-03-17 01:06:26 -09: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.
|
// Target player discards two cards. If Bog Down was kicked, that player discards three cards instead.
|
||||||
this.getSpellAbility().addEffect(new ConditionalOneShotEffect(new DiscardTargetEffect(3),
|
this.getSpellAbility().addEffect(new ConditionalOneShotEffect(new DiscardTargetEffect(3),
|
||||||
new DiscardTargetEffect(2), KickedCondition.instance,
|
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());
|
this.getSpellAbility().addTarget(new TargetPlayer());
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -1,4 +1,3 @@
|
||||||
|
|
||||||
package mage.cards.s;
|
package mage.cards.s;
|
||||||
|
|
||||||
import java.util.UUID;
|
import java.util.UUID;
|
||||||
|
@ -34,14 +33,17 @@ public final class ScorchingLava extends CardImpl {
|
||||||
|
|
||||||
// Kicker {R}
|
// Kicker {R}
|
||||||
this.addAbility(new KickerAbility("{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 DamageTargetEffect(2));
|
||||||
this.getSpellAbility().addEffect(new ConditionalContinuousRuleModifyingEffect(
|
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(
|
this.getSpellAbility().addEffect(new ConditionalOneShotEffect(
|
||||||
new ExileTargetIfDiesEffect(),
|
new ExileTargetIfDiesEffect(),
|
||||||
new LockedInCondition(KickedCondition.instance)
|
new LockedInCondition(KickedCondition.instance),
|
||||||
).setText("and if it would die this turn, exile it instead"));
|
"and if it would die this turn, exile it instead."));
|
||||||
this.getSpellAbility().addTarget(new TargetAnyTarget());
|
this.getSpellAbility().addTarget(new TargetAnyTarget());
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -59,7 +61,6 @@ class ScorchingLavaEffect extends OneShotEffect {
|
||||||
|
|
||||||
public ScorchingLavaEffect() {
|
public ScorchingLavaEffect() {
|
||||||
super(Outcome.Exile);
|
super(Outcome.Exile);
|
||||||
this.staticText = "and if it would die this turn, exile it instead";
|
|
||||||
}
|
}
|
||||||
|
|
||||||
public ScorchingLavaEffect(final ScorchingLavaEffect effect) {
|
public ScorchingLavaEffect(final ScorchingLavaEffect effect) {
|
||||||
|
|
Loading…
Add table
Reference in a new issue