From 1f418780154f08bf113f7ae1ff84c396e44fafc1 Mon Sep 17 00:00:00 2001 From: "maurer.it" Date: Wed, 23 Feb 2011 13:51:07 -0500 Subject: [PATCH] Changed ability name, put LoseLifeTargetEffect as the first effect in the hopes that it will show the AI that it shouldn't target itself? --- .../mage/sets/worldwake/KalastriaHighborn.java | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/Mage.Sets/src/mage/sets/worldwake/KalastriaHighborn.java b/Mage.Sets/src/mage/sets/worldwake/KalastriaHighborn.java index 1853e06d93..ce98625ee4 100644 --- a/Mage.Sets/src/mage/sets/worldwake/KalastriaHighborn.java +++ b/Mage.Sets/src/mage/sets/worldwake/KalastriaHighborn.java @@ -60,7 +60,7 @@ public class KalastriaHighborn extends CardImpl { this.power = new MageInt(2); this.toughness = new MageInt(2); - this.addAbility(new KalastriaHighbornTriggerAbility()); + this.addAbility(new KalastriaHighbornTriggeredAbility()); } public KalastriaHighborn(final KalastriaHighborn card) { @@ -73,21 +73,21 @@ public class KalastriaHighborn extends CardImpl { } } -class KalastriaHighbornTriggerAbility extends TriggeredAbilityImpl { - KalastriaHighbornTriggerAbility ( ) { - super(Zone.ALL, new GainLifeEffect(2), false); +class KalastriaHighbornTriggeredAbility extends TriggeredAbilityImpl { + KalastriaHighbornTriggeredAbility ( ) { + super(Zone.ALL, new LoseLifeTargetEffect(2), false); this.addCost(new ManaCostsImpl("{B}")); this.addTarget(new TargetPlayer()); - this.getEffects().add(new LoseLifeTargetEffect(2)); + this.getEffects().add(new GainLifeEffect(2)); } - KalastriaHighbornTriggerAbility ( KalastriaHighbornTriggerAbility ability ) { + KalastriaHighbornTriggeredAbility ( KalastriaHighbornTriggeredAbility ability ) { super(ability); } @Override - public KalastriaHighbornTriggerAbility copy() { - return new KalastriaHighbornTriggerAbility(this); + public KalastriaHighbornTriggeredAbility copy() { + return new KalastriaHighbornTriggeredAbility(this); } @Override