fix Mangara of Condor

This commit is contained in:
Plopman 2012-11-27 12:04:30 +01:00
parent 153e3bc12e
commit 7086250e8a

View file

@ -38,6 +38,7 @@ import mage.abilities.costs.common.TapSourceCost;
import mage.abilities.effects.common.ExileSourceEffect;
import mage.abilities.effects.common.ExileTargetEffect;
import mage.cards.CardImpl;
import mage.target.TargetPermanent;
/**
*
@ -59,6 +60,7 @@ public class MangaraOfCorondor extends CardImpl<MangaraOfCorondor> {
// {tap}: Exile Mangara of Corondor and target permanent.
Ability ability = new SimpleActivatedAbility(Constants.Zone.BATTLEFIELD, new ExileSourceEffect(), new TapSourceCost());
ability.addEffect(new ExileTargetEffect());
ability.addTarget(new TargetPermanent());
this.addAbility(ability);
}