Skip to content

Commit

Permalink
Fixed a bug of Hired Torturer. Tap source cost was missing.
Browse files Browse the repository at this point in the history
  • Loading branch information
LevelX2 committed May 21, 2013
1 parent d6d9420 commit ea1fce8
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions Mage.Sets/src/mage/sets/dragonsmaze/HiredTorturer.java
Expand Up @@ -36,6 +36,7 @@
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.LoseLifeTargetEffect;
Expand Down Expand Up @@ -69,6 +70,7 @@ public HiredTorturer (UUID ownerId) {

// {3}{B}, {T}: Target opponent loses 2 life and reveals a card at random from his or her hand.
Ability ability = new SimpleActivatedAbility(Zone.BATTLEFIELD, new LoseLifeTargetEffect(2),new ManaCostsImpl("{3}{B}"));
ability.addCost(new TapSourceCost());
ability.addEffect(new HiredTorturerEffect());
ability.addTarget(new TargetOpponent(true));
this.addAbility(ability);
Expand Down

0 comments on commit ea1fce8

Please sign in to comment.