mirror of
https://github.com/correl/mage.git
synced 2024-12-26 11:09:27 +00:00
fixed Wingspan Mentor activation cost
This commit is contained in:
parent
9979f76542
commit
e249036e92
1 changed files with 1 additions and 1 deletions
|
@ -54,7 +54,7 @@ public final class WingspanMentor extends CardImpl {
|
||||||
|
|
||||||
// {2}{U}, {T}: Put a +1/+1 counter on each creature you control with flying.
|
// {2}{U}, {T}: Put a +1/+1 counter on each creature you control with flying.
|
||||||
ability = new SimpleActivatedAbility(
|
ability = new SimpleActivatedAbility(
|
||||||
new AddCountersAllEffect(CounterType.P1P1.createInstance(), filter2), new ManaCostsImpl("{2}{R}")
|
new AddCountersAllEffect(CounterType.P1P1.createInstance(), filter2), new ManaCostsImpl("{2}{U}")
|
||||||
);
|
);
|
||||||
ability.addCost(new TapSourceCost());
|
ability.addCost(new TapSourceCost());
|
||||||
this.addAbility(ability);
|
this.addAbility(ability);
|
||||||
|
|
Loading…
Reference in a new issue