mirror of
https://github.com/correl/mage.git
synced 2024-11-15 19:19:33 +00:00
fix Mangara of Condor
This commit is contained in:
parent
153e3bc12e
commit
7086250e8a
1 changed files with 2 additions and 0 deletions
|
@ -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);
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue