* Keldon Arsonist - improved dialog info;

This commit is contained in:
Oleg Agafonov 2019-03-10 15:50:02 +04:00
parent d8bee36892
commit 188de12592

View file

@ -33,7 +33,9 @@ public final class KeldonArsonist extends CardImpl {
// {1}, Sacrifice two lands: Destroy target land.
Ability ability = new SimpleActivatedAbility(Zone.BATTLEFIELD, new DestroyTargetEffect(), new GenericManaCost(1));
ability.addCost(new SacrificeTargetCost(new TargetControlledPermanent(2, 2, new FilterControlledLandPermanent("two lands"), true)));
ability.addTarget(new TargetLandPermanent());
TargetLandPermanent target = new TargetLandPermanent();
target.setTargetName("land (to destroy)");
ability.addTarget(target);
this.addAbility(ability);
}