From ee5376c896c0cabdd034625a95f1a033739b21d2 Mon Sep 17 00:00:00 2001 From: LevelX2 Date: Sun, 20 Nov 2016 09:26:48 +0100 Subject: [PATCH] * Nature's Way - Fixed that trample was not applied to target creature. --- Mage.Sets/src/mage/cards/n/NaturesWay.java | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Mage.Sets/src/mage/cards/n/NaturesWay.java b/Mage.Sets/src/mage/cards/n/NaturesWay.java index 92fecc3215..4a8212e290 100644 --- a/Mage.Sets/src/mage/cards/n/NaturesWay.java +++ b/Mage.Sets/src/mage/cards/n/NaturesWay.java @@ -61,7 +61,7 @@ public class NaturesWay extends CardImpl { } public NaturesWay(UUID ownerId, CardSetInfo setInfo) { - super(ownerId,setInfo,new CardType[]{CardType.SORCERY},"{1}{G}"); + super(ownerId, setInfo, new CardType[]{CardType.SORCERY}, "{1}{G}"); // Target creature you control gains vigilance and trample until end of turn. It deals damage equal to its power to target creature you don't control. Effect effect = new GainAbilityTargetEffect(VigilanceAbility.getInstance(), Duration.EndOfTurn); @@ -69,6 +69,7 @@ public class NaturesWay extends CardImpl { this.getSpellAbility().addEffect(effect); effect = new GainAbilityTargetEffect(TrampleAbility.getInstance(), Duration.EndOfTurn); effect.setText("and trample until end of turn"); + this.getSpellAbility().addEffect(effect); this.getSpellAbility().addEffect(new NaturesWayEffect()); this.getSpellAbility().addTarget(new TargetControlledCreaturePermanent()); this.getSpellAbility().addTarget(new TargetCreaturePermanent(filter));