* Westvale Abbey - fixed wrong text;

This commit is contained in:
Oleg Agafonov 2019-06-27 23:26:16 +04:00
parent 783095f0d2
commit fe52ffd56a

View file

@ -46,7 +46,7 @@ public final class WestvaleAbbey extends CardImpl {
this.addAbility(new TransformAbility());
ability = new SimpleActivatedAbility(Zone.BATTLEFIELD, new TransformSourceEffect(true), new GenericManaCost(5));
ability.addCost(new TapSourceCost());
ability.addCost(new SacrificeTargetCost(new TargetControlledPermanent(5, 5, new FilterControlledCreaturePermanent("five creatures"), true)));
ability.addCost(new SacrificeTargetCost(new TargetControlledPermanent(5, 5, new FilterControlledCreaturePermanent("creatures"), true)));
ability.addEffect(new UntapSourceEffect());
this.addAbility(ability);
}