Added set text.

This commit is contained in:
richard.coates 2018-04-16 14:38:36 +02:00
parent cb06be905f
commit 03a59f5867

View file

@ -48,8 +48,8 @@ public class RunAmok extends CardImpl {
super(ownerId,setInfo,new CardType[]{CardType.INSTANT},"{1}{R}");
// Target attacking creature gets +3/+3 and gains trample until end of turn.
this.getSpellAbility().addEffect(new BoostTargetEffect(3, 3, Duration.EndOfTurn));
this.getSpellAbility().addEffect(new GainAbilityTargetEffect(TrampleAbility.getInstance(), Duration.EndOfTurn));
this.getSpellAbility().addEffect(new BoostTargetEffect(3, 3, Duration.EndOfTurn).setText("Target attacking creature gets +3/+3"));
this.getSpellAbility().addEffect(new GainAbilityTargetEffect(TrampleAbility.getInstance(), Duration.EndOfTurn).setText("and gains trample until end of turn"));
this.getSpellAbility().addTarget(new TargetAttackingCreature());
}