* Priest of Iroas - Fixed wrong ability activation costs.

This commit is contained in:
LevelX2 2013-09-20 01:13:02 +02:00
parent 01f4ed66ba
commit 6249516b45

View file

@ -59,7 +59,7 @@ public class PriestOfIroas extends CardImpl<PriestOfIroas> {
this.toughness = new MageInt(1);
// {3}{W}, Sacrifice Priest of Iroas: Destroy target enchantment.
Ability ability = new SimpleActivatedAbility(Zone.BATTLEFIELD, new DestroyTargetEffect(), new ManaCostsImpl("{2}{R}"));
Ability ability = new SimpleActivatedAbility(Zone.BATTLEFIELD, new DestroyTargetEffect(), new ManaCostsImpl("{3}{W}"));
ability.addCost(new SacrificeSourceCost());
Target target = new TargetPermanent(new FilterEnchantmentPermanent());
target.setRequired(true);