- Fixed cost of Crackleburr.

This commit is contained in:
Jeff 2013-10-24 11:01:36 -05:00
parent 0b31a933e2
commit 2859599045
2 changed files with 85 additions and 1 deletions

View file

@ -35,6 +35,7 @@ import mage.abilities.common.SimpleActivatedAbility;
import mage.abilities.costs.common.TapSourceCost;
import mage.abilities.costs.common.TapTargetCost;
import mage.abilities.costs.common.UntapSourceCost;
import mage.abilities.costs.common.UntapTargetCost;
import mage.abilities.costs.mana.ManaCostsImpl;
import mage.abilities.effects.common.DamageTargetEffect;
import mage.abilities.effects.common.ReturnToHandTargetEffect;
@ -88,7 +89,7 @@ public class Crackleburr extends CardImpl<Crackleburr> {
// {UR}{UR}, {untap}, Untap two tapped blue creatures you control: Return target creature to its owner's hand.
Ability ability2 = new SimpleActivatedAbility(Zone.BATTLEFIELD, new ReturnToHandTargetEffect(), new ManaCostsImpl("{U/R}{U/R}"));
ability2.addCost(new UntapSourceCost());
ability2.addCost(new TapTargetCost(new TargetControlledCreaturePermanent(2, 2, filter2, true)));
ability2.addCost(new UntapTargetCost(new TargetControlledCreaturePermanent(2, 2, filter2, true)));
ability2.addTarget(new TargetCreaturePermanent(true));
this.addAbility(ability2);