* Fixed available mana calculation of the 5 Mana Batteries (related #6698).

This commit is contained in:
LevelX2 2020-07-12 12:02:06 +02:00
parent 49d94cb84f
commit d47a59fea5
5 changed files with 5 additions and 5 deletions

View file

@ -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);

View file

@ -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);

View file

@ -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);

View file

@ -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);

View file

@ -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);