mirror of
https://github.com/correl/mage.git
synced 2024-12-26 03:00:11 +00:00
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.
This commit is contained in:
parent
de285ba1ed
commit
22f4c272b9
1 changed files with 2 additions and 2 deletions
|
@ -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);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue