mirror of
https://github.com/correl/mage.git
synced 2024-11-15 19:19:33 +00:00
Update DwarvenMiner.java
This commit is contained in:
parent
c35e51c7de
commit
fd7f1362ae
1 changed files with 1 additions and 3 deletions
|
@ -30,15 +30,13 @@ public class DwarvenMiner extends CardImpl {
|
|||
this.expansionSetCode = "MIR";
|
||||
this.subtype.add("Dwarf");
|
||||
|
||||
this.color.setRed(true);
|
||||
this.power = new MageInt(1);
|
||||
this.toughness = new MageInt(2);
|
||||
|
||||
// {2}{R}, {tap}: Destroy target nonbasic land
|
||||
Ability ability = new SimpleActivatedAbility(Zone.BATTLEFIELD, new DestroyTargetEffect(), new ManaCostsImpl("{2}{R}"));
|
||||
ability.addCost(new TapSourceCost());
|
||||
Target target = new TargetNonBasicLandPermanent();
|
||||
ability.addTarget(target);
|
||||
ability.addTarget(new TargetNonBasicLandPermanent());
|
||||
this.addAbility(ability);
|
||||
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue