Update DwarvenMiner.java

This commit is contained in:
myersn024 2015-02-26 11:17:38 -06:00
parent c35e51c7de
commit fd7f1362ae

View file

@ -30,15 +30,13 @@ public class DwarvenMiner extends CardImpl {
this.expansionSetCode = "MIR"; this.expansionSetCode = "MIR";
this.subtype.add("Dwarf"); this.subtype.add("Dwarf");
this.color.setRed(true);
this.power = new MageInt(1); this.power = new MageInt(1);
this.toughness = new MageInt(2); this.toughness = new MageInt(2);
// {2}{R}, {tap}: Destroy target nonbasic land // {2}{R}, {tap}: Destroy target nonbasic land
Ability ability = new SimpleActivatedAbility(Zone.BATTLEFIELD, new DestroyTargetEffect(), new ManaCostsImpl("{2}{R}")); Ability ability = new SimpleActivatedAbility(Zone.BATTLEFIELD, new DestroyTargetEffect(), new ManaCostsImpl("{2}{R}"));
ability.addCost(new TapSourceCost()); ability.addCost(new TapSourceCost());
Target target = new TargetNonBasicLandPermanent(); ability.addTarget(new TargetNonBasicLandPermanent());
ability.addTarget(target);
this.addAbility(ability); this.addAbility(ability);
} }