mirror of
https://github.com/correl/mage.git
synced 2025-01-12 03:00:13 +00:00
Fixed cost on second ability
This commit is contained in:
parent
234aa6b264
commit
95ef0d933c
1 changed files with 1 additions and 1 deletions
|
@ -39,7 +39,7 @@ public final class GoldenEgg extends CardImpl {
|
|||
this.addAbility(ability);
|
||||
|
||||
// {2}, {T}, Sacrifice Golden Egg: You gain 3 life.
|
||||
Ability ability1 = new SimpleActivatedAbility(Zone.BATTLEFIELD, new GainLifeEffect(3), new ManaCostsImpl("{1}"));
|
||||
Ability ability1 = new SimpleActivatedAbility(Zone.BATTLEFIELD, new GainLifeEffect(3), new ManaCostsImpl("{2}"));
|
||||
ability1.addCost(new TapSourceCost());
|
||||
ability1.addCost(new SacrificeSourceCost());
|
||||
this.addAbility(ability1);
|
||||
|
|
Loading…
Reference in a new issue