mirror of
https://github.com/correl/mage.git
synced 2024-11-15 19:19:33 +00:00
* Stitcher's Apprentice - Fixed the missing tap itself costs.
This commit is contained in:
parent
50c43c839c
commit
106a41f2af
1 changed files with 2 additions and 0 deletions
|
@ -35,6 +35,7 @@ import mage.Constants.Zone;
|
|||
import mage.MageInt;
|
||||
import mage.abilities.Ability;
|
||||
import mage.abilities.common.SimpleActivatedAbility;
|
||||
import mage.abilities.costs.common.TapSourceCost;
|
||||
import mage.abilities.costs.mana.ManaCostsImpl;
|
||||
import mage.abilities.effects.OneShotEffect;
|
||||
import mage.abilities.effects.common.CreateTokenEffect;
|
||||
|
@ -64,6 +65,7 @@ public class StitchersApprentice extends CardImpl<StitchersApprentice> {
|
|||
|
||||
// {1}{U}, {tap}: Put a 2/2 blue Homunculus creature token onto the battlefield, then sacrifice a creature.
|
||||
Ability ability = new SimpleActivatedAbility(Zone.BATTLEFIELD, new CreateTokenEffect(new HomunculusToken()), new ManaCostsImpl("{1}{U}"));
|
||||
ability.addCost(new TapSourceCost());
|
||||
ability.addEffect(new StitchersApprenticeEffect());
|
||||
this.addAbility(ability);
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue