mirror of
https://github.com/correl/mage.git
synced 2024-12-25 11:11:16 +00:00
[ZNR] fixed Throne of Makindi generating too much mana (#7046)
This commit is contained in:
parent
a896e68b6f
commit
5c59b60e54
1 changed files with 1 additions and 1 deletions
|
@ -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);
|
||||||
|
|
Loading…
Reference in a new issue