mirror of
https://github.com/correl/mage.git
synced 2024-11-15 03:00:16 +00:00
Add TapSourceCost
This commit is contained in:
parent
95ef0d933c
commit
9f304bf4ae
1 changed files with 1 additions and 0 deletions
|
@ -44,6 +44,7 @@ public final class FoodToken extends TokenImpl {
|
|||
|
||||
// {2}, {T}, Sacrifice this artifact: You gain 3 life.”
|
||||
Ability ability = new SimpleActivatedAbility(Zone.BATTLEFIELD, new GainLifeEffect(3), new GenericManaCost(2));
|
||||
ability.addCost(new TapSourceCost());
|
||||
SacrificeSourceCost cost = new SacrificeSourceCost();
|
||||
cost.setText("Sacrifice this artifact");
|
||||
ability.addCost(cost);
|
||||
|
|
Loading…
Reference in a new issue