forked from External/mage
* Fixed available mana calculation of the 5 Mana Batteries (related #6698).
This commit is contained in:
parent
49d94cb84f
commit
d47a59fea5
5 changed files with 5 additions and 5 deletions
|
|
@ -41,7 +41,7 @@ public final class BlackManaBattery extends CardImpl {
|
|||
new IntPlusDynamicValue(1, RemovedCountersForCostValue.instance),
|
||||
new TapSourceCost(),
|
||||
"Add {B}, then add {B} for each charge counter removed this way",
|
||||
true, new CountersSourceCount(CounterType.CHARGE));
|
||||
true, new IntPlusDynamicValue(1, new CountersSourceCount(CounterType.CHARGE)));
|
||||
ability.addCost(new RemoveVariableCountersSourceCost(CounterType.CHARGE.createInstance(),
|
||||
"Remove any number of charge counters from {this}"));
|
||||
this.addAbility(ability);
|
||||
|
|
|
|||
|
|
@ -40,7 +40,7 @@ public final class BlueManaBattery extends CardImpl {
|
|||
new IntPlusDynamicValue(1, RemovedCountersForCostValue.instance),
|
||||
new TapSourceCost(),
|
||||
"Add {U}, then add {U} for each charge counter removed this way",
|
||||
true, new CountersSourceCount(CounterType.CHARGE));
|
||||
true, new IntPlusDynamicValue(1, new CountersSourceCount(CounterType.CHARGE)));
|
||||
ability.addCost(new RemoveVariableCountersSourceCost(CounterType.CHARGE.createInstance(),
|
||||
"Remove any number of charge counters from {this}"));
|
||||
this.addAbility(ability);
|
||||
|
|
|
|||
|
|
@ -40,7 +40,7 @@ public final class GreenManaBattery extends CardImpl {
|
|||
new IntPlusDynamicValue(1, RemovedCountersForCostValue.instance),
|
||||
new TapSourceCost(),
|
||||
"Add {G}, then add {G} for each charge counter removed this way",
|
||||
true, new CountersSourceCount(CounterType.CHARGE));
|
||||
true, new IntPlusDynamicValue(1, new CountersSourceCount(CounterType.CHARGE)));
|
||||
ability.addCost(new RemoveVariableCountersSourceCost(CounterType.CHARGE.createInstance(),
|
||||
"Remove any number of charge counters from {this}"));
|
||||
this.addAbility(ability);
|
||||
|
|
|
|||
|
|
@ -40,7 +40,7 @@ public final class RedManaBattery extends CardImpl {
|
|||
new IntPlusDynamicValue(1, RemovedCountersForCostValue.instance),
|
||||
new TapSourceCost(),
|
||||
"Add {R}, then add {R} for each charge counter removed this way",
|
||||
true, new CountersSourceCount(CounterType.CHARGE));
|
||||
true, new IntPlusDynamicValue(1, new CountersSourceCount(CounterType.CHARGE)));
|
||||
ability.addCost(new RemoveVariableCountersSourceCost(CounterType.CHARGE.createInstance(),
|
||||
"Remove any number of charge counters from {this}"));
|
||||
this.addAbility(ability);
|
||||
|
|
|
|||
|
|
@ -40,7 +40,7 @@ public final class WhiteManaBattery extends CardImpl {
|
|||
new IntPlusDynamicValue(1, RemovedCountersForCostValue.instance),
|
||||
new TapSourceCost(),
|
||||
"Add {W}, then add {W} for each charge counter removed this way",
|
||||
true, new CountersSourceCount(CounterType.CHARGE));
|
||||
true, new IntPlusDynamicValue(1, new CountersSourceCount(CounterType.CHARGE)));
|
||||
ability.addCost(new RemoveVariableCountersSourceCost(CounterType.CHARGE.createInstance(),
|
||||
"Remove any number of charge counters from {this}"));
|
||||
this.addAbility(ability);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue