mirror of
https://github.com/correl/mage.git
synced 2024-12-26 19:16:54 +00:00
Merge pull request #1460 from rollergo11/patch-1
Fix typo on Groundswell
This commit is contained in:
commit
552d7f1db7
1 changed files with 2 additions and 2 deletions
|
@ -50,13 +50,13 @@ public class Groundswell extends CardImpl {
|
||||||
this.expansionSetCode = "WWK";
|
this.expansionSetCode = "WWK";
|
||||||
|
|
||||||
// Target creature gets +2/+2 until end of turn.
|
// Target creature gets +2/+2 until end of turn.
|
||||||
//Landfall - If you had a land enter the battlefield under your control this turn, that creature gets +4/+4 until end of turn instead.
|
// Landfall - If you had a land enter the battlefield under your control this turn, that creature gets +4/+4 until end of turn instead.
|
||||||
this.getSpellAbility().addWatcher(new LandfallWatcher());
|
this.getSpellAbility().addWatcher(new LandfallWatcher());
|
||||||
this.getSpellAbility().addEffect(new ConditionalOneShotEffect(
|
this.getSpellAbility().addEffect(new ConditionalOneShotEffect(
|
||||||
new AddContinuousEffectToGame(new BoostTargetEffect(4, 4, Duration.EndOfTurn)),
|
new AddContinuousEffectToGame(new BoostTargetEffect(4, 4, Duration.EndOfTurn)),
|
||||||
new AddContinuousEffectToGame(new BoostTargetEffect(2, 2, Duration.EndOfTurn)),
|
new AddContinuousEffectToGame(new BoostTargetEffect(2, 2, Duration.EndOfTurn)),
|
||||||
LandfallCondition.getInstance(),
|
LandfallCondition.getInstance(),
|
||||||
"Target creature gets +2/+2 until end of turn. <br><i>Landfall</i> — If you had a land enter the battlefield under your control this turn, that creature gets +4/44 until end of turn instead"));
|
"Target creature gets +2/+2 until end of turn. <br><i>Landfall</i> — If you had a land enter the battlefield under your control this turn, that creature gets +4/+4 until end of turn instead"));
|
||||||
this.getSpellAbility().addTarget(new TargetCreaturePermanent());
|
this.getSpellAbility().addTarget(new TargetCreaturePermanent());
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue