From 22f4c272b996ba7645ef4015e75d5f9a287b73bb Mon Sep 17 00:00:00 2001 From: Poddo Date: Sat, 5 Dec 2015 08:52:01 -0600 Subject: [PATCH] Fix to mana cost of Goblin Dynamo's 2nd ability Goblin Dynamo's second ability was incorrectly costed as {X}, instead of {X}{R}. Implemented the correct cost. --- Mage.Sets/src/mage/sets/legions/GoblinDynamo.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Mage.Sets/src/mage/sets/legions/GoblinDynamo.java b/Mage.Sets/src/mage/sets/legions/GoblinDynamo.java index 53ad2996a72..51ec832eccd 100644 --- a/Mage.Sets/src/mage/sets/legions/GoblinDynamo.java +++ b/Mage.Sets/src/mage/sets/legions/GoblinDynamo.java @@ -61,7 +61,7 @@ public class GoblinDynamo extends CardImpl { this.addAbility(ability); //{X}{R}, {T}, Sacrifice Goblin Dynamo: Goblin Dynamo deals X damage to target creature or player. - ability = new SimpleActivatedAbility(Zone.BATTLEFIELD,new DamageTargetEffect(new ManacostVariableValue()), new ManaCostsImpl("{X}")); + ability = new SimpleActivatedAbility(Zone.BATTLEFIELD,new DamageTargetEffect(new ManacostVariableValue()), new ManaCostsImpl("{X}{R}")); ability.addCost(new TapSourceCost()); ability.addTarget(new TargetCreatureOrPlayer()); this.addAbility(ability); @@ -75,4 +75,4 @@ public class GoblinDynamo extends CardImpl { public GoblinDynamo copy() { return new GoblinDynamo(this); } -} \ No newline at end of file +}