mirror of
https://github.com/magefree/mage.git
synced 2026-01-25 04:39:18 -08:00
- Fixed cost of Crackleburr.
This commit is contained in:
parent
0b31a933e2
commit
2859599045
2 changed files with 85 additions and 1 deletions
|
|
@ -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);
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue