From af74fb335cec258be792e11cb97aaab2549c0907 Mon Sep 17 00:00:00 2001 From: jeffwadsworth Date: Mon, 6 Jul 2020 14:18:12 -0500 Subject: [PATCH] - Fixed other cards related to #6787 --- Mage.Sets/src/mage/cards/b/BlueManaBattery.java | 9 +++++---- Mage.Sets/src/mage/cards/g/GreenManaBattery.java | 9 +++++---- Mage.Sets/src/mage/cards/r/RedManaBattery.java | 9 +++++---- Mage.Sets/src/mage/cards/w/WhiteManaBattery.java | 9 +++++---- 4 files changed, 20 insertions(+), 16 deletions(-) diff --git a/Mage.Sets/src/mage/cards/b/BlueManaBattery.java b/Mage.Sets/src/mage/cards/b/BlueManaBattery.java index 05ad3bfc873..3aa71cb1d91 100644 --- a/Mage.Sets/src/mage/cards/b/BlueManaBattery.java +++ b/Mage.Sets/src/mage/cards/b/BlueManaBattery.java @@ -1,4 +1,3 @@ - package mage.cards.b; import java.util.UUID; @@ -28,12 +27,14 @@ public final class BlueManaBattery extends CardImpl { public BlueManaBattery(UUID ownerId, CardSetInfo setInfo) { super(ownerId, setInfo, new CardType[]{CardType.ARTIFACT}, "{4}"); - // {2}, {tap}: Put a charge counter on Blue Mana Battery. - Ability ability = new SimpleActivatedAbility(Zone.BATTLEFIELD, new AddCountersSourceEffect(CounterType.STORAGE.createInstance(1)), new GenericManaCost(2)); + // {2}, {T}: Put a charge counter on Blue Mana Battery. + Ability ability = new SimpleActivatedAbility(Zone.BATTLEFIELD, + new AddCountersSourceEffect(CounterType.CHARGE.createInstance(1)), new GenericManaCost(2)); ability.addCost(new TapSourceCost()); this.addAbility(ability); - // {tap}, Remove any number of charge counters from Blue Mana Battery: Add {U}, then add an additional {U} for each charge counter removed this way. + // {T}, Remove any number of charge counters from Blue Mana Battery: Add {U}, + // then add an additional {U} for each charge counter removed this way. ability = new DynamicManaAbility( Mana.BlueMana(1), new IntPlusDynamicValue(1, RemovedCountersForCostValue.instance), diff --git a/Mage.Sets/src/mage/cards/g/GreenManaBattery.java b/Mage.Sets/src/mage/cards/g/GreenManaBattery.java index 9669605db22..2b3a52b95fd 100644 --- a/Mage.Sets/src/mage/cards/g/GreenManaBattery.java +++ b/Mage.Sets/src/mage/cards/g/GreenManaBattery.java @@ -1,4 +1,3 @@ - package mage.cards.g; import java.util.UUID; @@ -28,12 +27,14 @@ public final class GreenManaBattery extends CardImpl { public GreenManaBattery(UUID ownerId, CardSetInfo setInfo) { super(ownerId, setInfo, new CardType[]{CardType.ARTIFACT}, "{4}"); - // {2}, {tap}: Put a charge counter on Green Mana Battery. - Ability ability = new SimpleActivatedAbility(Zone.BATTLEFIELD, new AddCountersSourceEffect(CounterType.STORAGE.createInstance(1)), new GenericManaCost(2)); + // {2}, {T}: Put a charge counter on Green Mana Battery. + Ability ability = new SimpleActivatedAbility(Zone.BATTLEFIELD, + new AddCountersSourceEffect(CounterType.CHARGE.createInstance(1)), new GenericManaCost(2)); ability.addCost(new TapSourceCost()); this.addAbility(ability); - // {tap}, Remove any number of charge counters from Green Mana Battery: Add {G}, then add an additional {G} for each charge counter removed this way. + // {T}, Remove any number of charge counters from Green Mana Battery: Add {G}, + // then add an additional {G} for each charge counter removed this way. ability = new DynamicManaAbility( Mana.GreenMana(1), new IntPlusDynamicValue(1, RemovedCountersForCostValue.instance), diff --git a/Mage.Sets/src/mage/cards/r/RedManaBattery.java b/Mage.Sets/src/mage/cards/r/RedManaBattery.java index 1281c0d257b..b8f0e44b684 100644 --- a/Mage.Sets/src/mage/cards/r/RedManaBattery.java +++ b/Mage.Sets/src/mage/cards/r/RedManaBattery.java @@ -1,4 +1,3 @@ - package mage.cards.r; import java.util.UUID; @@ -28,12 +27,14 @@ public final class RedManaBattery extends CardImpl { public RedManaBattery(UUID ownerId, CardSetInfo setInfo) { super(ownerId, setInfo, new CardType[]{CardType.ARTIFACT}, "{4}"); - // {2}, {tap}: Put a charge counter on Red Mana Battery. - Ability ability = new SimpleActivatedAbility(Zone.BATTLEFIELD, new AddCountersSourceEffect(CounterType.STORAGE.createInstance(1)), new GenericManaCost(2)); + // {2}, {T}: Put a charge counter on Red Mana Battery. + Ability ability = new SimpleActivatedAbility(Zone.BATTLEFIELD, + new AddCountersSourceEffect(CounterType.CHARGE.createInstance(1)), new GenericManaCost(2)); ability.addCost(new TapSourceCost()); this.addAbility(ability); - // {tap}, Remove any number of charge counters from Red Mana Battery: Add {R}, then add an additional {R} for each charge counter removed this way. + // {T}, Remove any number of charge counters from Red Mana Battery: Add {R}, + // then add an additional {R} for each charge counter removed this way. ability = new DynamicManaAbility( Mana.RedMana(1), new IntPlusDynamicValue(1, RemovedCountersForCostValue.instance), diff --git a/Mage.Sets/src/mage/cards/w/WhiteManaBattery.java b/Mage.Sets/src/mage/cards/w/WhiteManaBattery.java index b08a197b181..fd52f168c50 100644 --- a/Mage.Sets/src/mage/cards/w/WhiteManaBattery.java +++ b/Mage.Sets/src/mage/cards/w/WhiteManaBattery.java @@ -1,4 +1,3 @@ - package mage.cards.w; import java.util.UUID; @@ -28,12 +27,14 @@ public final class WhiteManaBattery extends CardImpl { public WhiteManaBattery(UUID ownerId, CardSetInfo setInfo) { super(ownerId, setInfo, new CardType[]{CardType.ARTIFACT}, "{4}"); - // {2}, {tap}: Put a charge counter on White Mana Battery. - Ability ability = new SimpleActivatedAbility(Zone.BATTLEFIELD, new AddCountersSourceEffect(CounterType.STORAGE.createInstance(1)), new GenericManaCost(2)); + // {2}, {T}: Put a charge counter on White Mana Battery. + Ability ability = new SimpleActivatedAbility(Zone.BATTLEFIELD, + new AddCountersSourceEffect(CounterType.CHARGE.createInstance(1)), new GenericManaCost(2)); ability.addCost(new TapSourceCost()); this.addAbility(ability); - // {tap}, Remove any number of charge counters from White Mana Battery: Add {W}, then add an additional {W} for each charge counter removed this way. + // {T}, Remove any number of charge counters from White Mana Battery: Add {W}, + // then add an additional {W} for each charge counter removed this way. ability = new DynamicManaAbility( Mana.WhiteMana(1), new IntPlusDynamicValue(1, RemovedCountersForCostValue.instance),