diff --git a/Mage.Sets/src/mage/sets/odyssey/GracefulAntelope.java b/Mage.Sets/src/mage/sets/odyssey/GracefulAntelope.java index 3cb9cc8c37..e3527273ec 100644 --- a/Mage.Sets/src/mage/sets/odyssey/GracefulAntelope.java +++ b/Mage.Sets/src/mage/sets/odyssey/GracefulAntelope.java @@ -58,7 +58,6 @@ public class GracefulAntelope extends CardImpl { // Plainswalk this.addAbility(new PlainswalkAbility()); // Whenever Graceful Antelope deals combat damage to a player, you may have target land become a Plains until Graceful Antelope leaves the battlefield. - //Ability ability = new SimpleTriggeredAbility(Zone.BATTLEFIELD, new BecomesBasicLandTargetEffect(Duration.WhileOnBattlefield), new TapSourceCost()); Ability ability = new DealsCombatDamageToAPlayerTriggeredAbility(new BecomesBasicLandTargetEffect(Duration.WhileOnBattlefield,"Plains"), true); Target target = new TargetLandPermanent(); target.setRequired(true); diff --git a/Mage.Sets/src/mage/sets/theros/ProphetOfKruphix.java b/Mage.Sets/src/mage/sets/theros/ProphetOfKruphix.java index a87188ee1b..8d6d2e7efd 100644 --- a/Mage.Sets/src/mage/sets/theros/ProphetOfKruphix.java +++ b/Mage.Sets/src/mage/sets/theros/ProphetOfKruphix.java @@ -74,7 +74,7 @@ public class ProphetOfKruphix extends CardImpl { this.toughness = new MageInt(3); // Untap all creatures and lands you control during each other player's untap step. - Effect effect = new UntapAllControllerEffect(filter, "Untap all creatures and lands you control during each other player's untap step"); + Effect effect = new UntapAllControllerEffect(filter, "Untap all creatures and lands you control"); this.addAbility(new BeginningOfUntapTriggeredAbility(Zone.BATTLEFIELD, effect, TargetController.NOT_YOU, false)); // You may cast creature cards as though they had flash. this.addAbility(new SimpleStaticAbility(Zone.BATTLEFIELD, new ProphetOfKruphixEffect())); diff --git a/Mage/src/mage/abilities/common/BeginningOfUntapTriggeredAbility.java b/Mage/src/mage/abilities/common/BeginningOfUntapTriggeredAbility.java index 58f17a27d5..38850b0a8c 100644 --- a/Mage/src/mage/abilities/common/BeginningOfUntapTriggeredAbility.java +++ b/Mage/src/mage/abilities/common/BeginningOfUntapTriggeredAbility.java @@ -10,6 +10,7 @@ import mage.constants.TargetController; import mage.constants.Zone; import mage.game.Game; import mage.game.events.GameEvent; +import mage.players.Player; import mage.target.targetpointer.FixedTarget; /** @@ -53,6 +54,17 @@ public class BeginningOfUntapTriggeredAbility extends TriggeredAbilityImpl