diff --git a/Mage.Sets/src/mage/cards/b/BlackManaBattery.java b/Mage.Sets/src/mage/cards/b/BlackManaBattery.java index 8af335b237c..72f4b37d460 100644 --- a/Mage.Sets/src/mage/cards/b/BlackManaBattery.java +++ b/Mage.Sets/src/mage/cards/b/BlackManaBattery.java @@ -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); diff --git a/Mage.Sets/src/mage/cards/b/BlueManaBattery.java b/Mage.Sets/src/mage/cards/b/BlueManaBattery.java index 3aa71cb1d91..05733f41d86 100644 --- a/Mage.Sets/src/mage/cards/b/BlueManaBattery.java +++ b/Mage.Sets/src/mage/cards/b/BlueManaBattery.java @@ -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); diff --git a/Mage.Sets/src/mage/cards/g/GreenManaBattery.java b/Mage.Sets/src/mage/cards/g/GreenManaBattery.java index 2b3a52b95fd..46d3669bdfe 100644 --- a/Mage.Sets/src/mage/cards/g/GreenManaBattery.java +++ b/Mage.Sets/src/mage/cards/g/GreenManaBattery.java @@ -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); diff --git a/Mage.Sets/src/mage/cards/r/RedManaBattery.java b/Mage.Sets/src/mage/cards/r/RedManaBattery.java index b8f0e44b684..36a08f3c7ea 100644 --- a/Mage.Sets/src/mage/cards/r/RedManaBattery.java +++ b/Mage.Sets/src/mage/cards/r/RedManaBattery.java @@ -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); diff --git a/Mage.Sets/src/mage/cards/w/WhiteManaBattery.java b/Mage.Sets/src/mage/cards/w/WhiteManaBattery.java index fd52f168c50..ab033311631 100644 --- a/Mage.Sets/src/mage/cards/w/WhiteManaBattery.java +++ b/Mage.Sets/src/mage/cards/w/WhiteManaBattery.java @@ -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);