mirror of
https://github.com/correl/mage.git
synced 2024-11-25 11:09:53 +00:00
- Outcome fix for Incremental Growth
This commit is contained in:
parent
e4ae2f3fec
commit
fe9deec071
1 changed files with 10 additions and 9 deletions
|
@ -1,4 +1,3 @@
|
|||
|
||||
package mage.cards.i;
|
||||
|
||||
import java.util.UUID;
|
||||
|
@ -23,10 +22,10 @@ import mage.target.common.TargetCreaturePermanent;
|
|||
public final class IncrementalGrowth extends CardImpl {
|
||||
|
||||
public IncrementalGrowth(UUID ownerId, CardSetInfo setInfo) {
|
||||
super(ownerId,setInfo,new CardType[]{CardType.SORCERY},"{3}{G}{G}");
|
||||
super(ownerId, setInfo, new CardType[]{CardType.SORCERY}, "{3}{G}{G}");
|
||||
|
||||
|
||||
// Put a +1/+1 counter on target creature, two +1/+1 counters on another target creature, and three +1/+1 counters on a third target creature.
|
||||
// Put a +1/+1 counter on target creature, two +1/+1 counters on another target
|
||||
// creature, and three +1/+1 counters on a third target creature.
|
||||
this.getSpellAbility().addEffect(new IncrementalGrowthEffect());
|
||||
|
||||
FilterCreaturePermanent filter1 = new FilterCreaturePermanent("creature (gets a +1/+1 counter)");
|
||||
|
@ -60,8 +59,10 @@ public final class IncrementalGrowth extends CardImpl {
|
|||
class IncrementalGrowthEffect extends OneShotEffect {
|
||||
|
||||
public IncrementalGrowthEffect() {
|
||||
super(Outcome.UnboostCreature);
|
||||
this.staticText = "Put a +1/+1 counter on target creature, two +1/+1 counters on another target creature, and three +1/+1 counters on a third target creature";
|
||||
super(Outcome.Benefit);
|
||||
this.staticText = "Put a +1/+1 counter on target creature, "
|
||||
+ "two +1/+1 counters on another target creature, "
|
||||
+ "and three +1/+1 counters on a third target creature";
|
||||
}
|
||||
|
||||
public IncrementalGrowthEffect(final IncrementalGrowthEffect effect) {
|
||||
|
|
Loading…
Reference in a new issue