mirror of
https://github.com/correl/mage.git
synced 2025-01-12 11:08:01 +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.
|
// {1}, Sacrifice two lands: Destroy target land.
|
||||||
Ability ability = new SimpleActivatedAbility(Zone.BATTLEFIELD, new DestroyTargetEffect(), new GenericManaCost(1));
|
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.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);
|
this.addAbility(ability);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue