mirror of
https://github.com/magefree/mage.git
synced 2025-12-22 19:41:59 -08:00
Fixed Frontier Guide - missing ability
This commit is contained in:
parent
7badc7ff96
commit
a4ed12b47b
1 changed files with 2 additions and 0 deletions
|
|
@ -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) {
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue