[ZNR] fixed Throne of Makindi generating too much mana (#7046)

This commit is contained in:
Evan Kranzler 2020-09-16 17:27:55 -04:00
parent a896e68b6f
commit 5c59b60e54

View file

@ -39,7 +39,7 @@ public final class ThroneOfMakindi extends CardImpl {
// {T}, Remove a charge counter from Throne of Makindi: Add two mana of any one color. Spend this mana only to cast kicked spells. // {T}, Remove a charge counter from Throne of Makindi: Add two mana of any one color. Spend this mana only to cast kicked spells.
ability = new ConditionalAnyColorManaAbility( ability = new ConditionalAnyColorManaAbility(
new TapSourceCost(), 3, new ThroneOfMakindiManaBuilder(), true new TapSourceCost(), 2, new ThroneOfMakindiManaBuilder(), true
); );
ability.addCost(new RemoveCountersSourceCost(CounterType.CHARGE.createInstance())); ability.addCost(new RemoveCountersSourceCost(CounterType.CHARGE.createInstance()));
this.addAbility(ability); this.addAbility(ability);