mirror of
https://github.com/magefree/mage.git
synced 2025-12-23 03:51:58 -08:00
* Rathi Trapper - Fixed missing tap source cost.
This commit is contained in:
parent
2052e07eda
commit
b5d96bc98e
1 changed files with 2 additions and 0 deletions
|
|
@ -34,6 +34,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.common.TapTargetEffect;
|
||||
import mage.cards.CardImpl;
|
||||
|
|
@ -58,6 +59,7 @@ public class RathiTrapper extends CardImpl<RathiTrapper> {
|
|||
|
||||
// {B}, {tap}: Tap target creature.
|
||||
Ability ability = new SimpleActivatedAbility(Zone.BATTLEFIELD, new TapTargetEffect(), new ManaCostsImpl("{B}"));
|
||||
ability.addCost(new TapSourceCost());
|
||||
ability.addTarget(new TargetCreaturePermanent());
|
||||
this.addAbility(ability);
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue