mirror of
https://github.com/correl/mage.git
synced 2024-12-26 11:09:27 +00:00
* Plow Through Reito - Fixed bug that the boost effect did not work.
This commit is contained in:
parent
6b48fe225f
commit
1cbe322da8
1 changed files with 1 additions and 1 deletions
|
@ -53,7 +53,7 @@ public class PlowThroughReito extends CardImpl<PlowThroughReito> {
|
||||||
|
|
||||||
// Sweep - Return any number of Plains you control to their owner's hand. Target creature gets +1/+1 until end of turn for each Plains returned this way.
|
// Sweep - Return any number of Plains you control to their owner's hand. Target creature gets +1/+1 until end of turn for each Plains returned this way.
|
||||||
this.getSpellAbility().addEffect(new SweepEffect("Plains"));
|
this.getSpellAbility().addEffect(new SweepEffect("Plains"));
|
||||||
DynamicValue sweepValue = new SweepNumber("Plains", false);
|
DynamicValue sweepValue = new SweepNumber("Plains", true);
|
||||||
this.getSpellAbility().addEffect(new BoostTargetEffect(sweepValue, sweepValue, Duration.EndOfTurn));
|
this.getSpellAbility().addEffect(new BoostTargetEffect(sweepValue, sweepValue, Duration.EndOfTurn));
|
||||||
this.getSpellAbility().addTarget(new TargetCreaturePermanent(true));
|
this.getSpellAbility().addTarget(new TargetCreaturePermanent(true));
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue