From 16f0eaa081314f46d7d313774ad1b0fef9e550e2 Mon Sep 17 00:00:00 2001 From: LevelX2 Date: Tue, 12 Jan 2016 15:33:01 +0100 Subject: [PATCH] * Joraga Auxiliary - Fixed missing target of support. --- .../src/mage/sets/oathofthegatewatch/JoragaAuxiliary.java | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/Mage.Sets/src/mage/sets/oathofthegatewatch/JoragaAuxiliary.java b/Mage.Sets/src/mage/sets/oathofthegatewatch/JoragaAuxiliary.java index 9b055b9964..33a466c758 100644 --- a/Mage.Sets/src/mage/sets/oathofthegatewatch/JoragaAuxiliary.java +++ b/Mage.Sets/src/mage/sets/oathofthegatewatch/JoragaAuxiliary.java @@ -29,6 +29,7 @@ package mage.sets.oathofthegatewatch; import java.util.UUID; import mage.MageInt; +import mage.abilities.Ability; import mage.abilities.common.SimpleActivatedAbility; import mage.abilities.costs.mana.ManaCostsImpl; import mage.abilities.effects.keyword.SupportEffect; @@ -36,6 +37,8 @@ import mage.cards.CardImpl; import mage.constants.CardType; import mage.constants.Rarity; import mage.constants.Zone; +import mage.filter.common.FilterCreaturePermanent; +import mage.target.common.TargetCreaturePermanent; /** * @@ -53,7 +56,9 @@ public class JoragaAuxiliary extends CardImpl { this.toughness = new MageInt(3); // {4}{G}{W}: Support 2. - this.addAbility(new SimpleActivatedAbility(Zone.BATTLEFIELD, new SupportEffect(this, 2), new ManaCostsImpl("{4}{G}{W}"))); + Ability ability = new SimpleActivatedAbility(Zone.BATTLEFIELD, new SupportEffect(this, 2), new ManaCostsImpl("{4}{G}{W}")); + ability.addTarget(new TargetCreaturePermanent(0, 2, new FilterCreaturePermanent("target creatures"), false)); + this.addAbility(ability); } public JoragaAuxiliary(final JoragaAuxiliary card) {