Merge pull request #1407 from Poddo/patch-1

Fix to mana cost of Goblin Dynamo's 2nd ability
This commit is contained in:
LevelX2 2015-12-05 16:36:13 +01:00
commit 560807ac39

View file

@ -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);
}
}
}