mirror of
https://github.com/correl/mage.git
synced 2024-12-26 03:00:11 +00:00
* Dedicated Martyr - Changed cost order (cbt33).
This commit is contained in:
parent
f9c69ccf1d
commit
2ba68211bc
1 changed files with 2 additions and 2 deletions
|
@ -57,8 +57,8 @@ public class DedicatedMartyr extends CardImpl<DedicatedMartyr> {
|
|||
this.toughness = new MageInt(1);
|
||||
|
||||
// {W}, Sacrifice Dedicated Martyr: You gain 3 life.
|
||||
Ability ability = new SimpleActivatedAbility(Zone.BATTLEFIELD, new GainLifeEffect(3), new SacrificeSourceCost());
|
||||
ability.addCost(new ColoredManaCost(ColoredManaSymbol.W));
|
||||
Ability ability = new SimpleActivatedAbility(Zone.BATTLEFIELD, new GainLifeEffect(3), new ColoredManaCost(ColoredManaSymbol.W));
|
||||
ability.addCost(new SacrificeSourceCost());
|
||||
this.addAbility(ability);
|
||||
|
||||
|
||||
|
|
Loading…
Reference in a new issue