mirror of
https://github.com/correl/mage.git
synced 2024-12-24 11:50:45 +00:00
* Keldon Arsonist - improved dialog info;
This commit is contained in:
parent
d8bee36892
commit
188de12592
1 changed files with 3 additions and 1 deletions
|
@ -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);
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue