From b54b795bc1dc116c736b8b1be4af8bea0875c382 Mon Sep 17 00:00:00 2001 From: Andy Fries Date: Wed, 29 Jul 2015 22:42:52 -0700 Subject: [PATCH] made Zedruu's upkeep ability into a single ability with two effects --- .../src/mage/sets/commander/ZedruuTheGreathearted.java | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/Mage.Sets/src/mage/sets/commander/ZedruuTheGreathearted.java b/Mage.Sets/src/mage/sets/commander/ZedruuTheGreathearted.java index 881dc212f2d..22c05643085 100644 --- a/Mage.Sets/src/mage/sets/commander/ZedruuTheGreathearted.java +++ b/Mage.Sets/src/mage/sets/commander/ZedruuTheGreathearted.java @@ -68,11 +68,12 @@ public class ZedruuTheGreathearted extends CardImpl { this.toughness = new MageInt(4); // At the beginning of your upkeep, you gain X life and draw X cards, where X is the number of permanents you own that your opponents control. - this.addAbility(new BeginningOfUpkeepTriggeredAbility(new GainLifeEffect(new PermanentsYouOwnThatOpponentsControlCount()), TargetController.YOU, false)); - this.addAbility(new BeginningOfUpkeepTriggeredAbility(new DrawCardSourceControllerEffect(new PermanentsYouOwnThatOpponentsControlCount()), TargetController.YOU, false)); + Ability ability = new BeginningOfUpkeepTriggeredAbility(new GainLifeEffect(new PermanentsYouOwnThatOpponentsControlCount()), TargetController.YOU, false); + ability.addEffect(new DrawCardSourceControllerEffect(new PermanentsYouOwnThatOpponentsControlCount())); + this.addAbility(ability); // {R}{W}{U}: Target opponent gains control of target permanent you control. - Ability ability = new SimpleActivatedAbility(Zone.BATTLEFIELD, new ZedruuTheGreatheartedEffect(), new ManaCostsImpl("{R}{W}{U}")); + ability = new SimpleActivatedAbility(Zone.BATTLEFIELD, new ZedruuTheGreatheartedEffect(), new ManaCostsImpl("{R}{W}{U}")); ability.addTarget(new TargetOpponent()); ability.addTarget(new TargetControlledPermanent()); this.addAbility(ability);