Fixed Frontier Guide - missing ability

This commit is contained in:
magenoxx 2011-09-03 21:04:36 +04:00
parent 7badc7ff96
commit a4ed12b47b

View file

@ -57,10 +57,12 @@ public class FrontierGuide extends CardImpl<FrontierGuide> {
this.color.setGreen(true); this.color.setGreen(true);
this.power = new MageInt(1); this.power = new MageInt(1);
this.toughness = new MageInt(1); this.toughness = new MageInt(1);
SimpleActivatedAbility ability = new SimpleActivatedAbility(Zone.BATTLEFIELD, SimpleActivatedAbility ability = new SimpleActivatedAbility(Zone.BATTLEFIELD,
new SearchLibraryPutInPlayEffect(new TargetCardInLibrary(filter), true), new SearchLibraryPutInPlayEffect(new TargetCardInLibrary(filter), true),
new ManaCostsImpl("{3}{G}")); new ManaCostsImpl("{3}{G}"));
ability.addCost(new TapSourceCost()); ability.addCost(new TapSourceCost());
this.addAbility(ability);
} }
public FrontierGuide(final FrontierGuide card) { public FrontierGuide(final FrontierGuide card) {