mirror of
https://github.com/magefree/mage.git
synced 2025-12-26 13:32:06 -08:00
[AFR] Implemented Demilich
This commit is contained in:
parent
77e5a7da2d
commit
c08c4bbb36
3 changed files with 170 additions and 1 deletions
|
|
@ -62,7 +62,7 @@ public class SpellCostReductionForEachSourceEffect extends CostModificationEffec
|
|||
if (reduceManaCosts != null) {
|
||||
// color reduce
|
||||
ManaCosts<ManaCost> needReduceMana = new ManaCostsImpl<>();
|
||||
for (int i = 0; i <= needReduceAmount; i++) {
|
||||
for (int i = 0; i < needReduceAmount; i++) {
|
||||
needReduceMana.add(reduceManaCosts.copy());
|
||||
}
|
||||
CardUtil.adjustCost((SpellAbility) abilityToModify, needReduceMana, false);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue