Fix cost application
This commit is contained in:
parent
645f3145f0
commit
4b9460ebc2
1 changed files with 10 additions and 6 deletions
|
@ -844,23 +844,27 @@ const atree_collect_spells = new (class extends ComputeNode {
|
||||||
continue;
|
continue;
|
||||||
case 'add_spell_prop': {
|
case 'add_spell_prop': {
|
||||||
const { base_spell, target_part = null, cost = 0, behavior = 'merge'} = effect;
|
const { base_spell, target_part = null, cost = 0, behavior = 'merge'} = effect;
|
||||||
if (target_part === null) {
|
|
||||||
continue;
|
|
||||||
}
|
|
||||||
|
|
||||||
if (!ret_spells.has(base_spell)) {
|
if (!ret_spells.has(base_spell)) {
|
||||||
continue;
|
continue;
|
||||||
}
|
}
|
||||||
|
|
||||||
const ret_spell = ret_spells.get(base_spell);
|
const ret_spell = ret_spells.get(base_spell);
|
||||||
|
|
||||||
|
// :enraged:
|
||||||
|
// NOTE to hpp: this is out here because:
|
||||||
|
// target_part doesn't exist for spell cost modification abilities
|
||||||
|
// except when it does... in which case it should apply exactly once.
|
||||||
|
if ('cost' in ret_spell) { ret_spell.cost += cost; }
|
||||||
|
|
||||||
|
// NOTE: see above comment for the weird placement of this code block.
|
||||||
|
if (target_part === null) { continue; }
|
||||||
|
|
||||||
let found_part = false;
|
let found_part = false;
|
||||||
for (let part of ret_spell.parts) { // TODO: replace with Map? to avoid this linear search... idk prolly good since its not more verbose to type in json
|
for (let part of ret_spell.parts) { // TODO: replace with Map? to avoid this linear search... idk prolly good since its not more verbose to type in json
|
||||||
if (part.name !== target_part) {
|
if (part.name !== target_part) {
|
||||||
continue;
|
continue;
|
||||||
}
|
}
|
||||||
// we found the part. merge or modify it!
|
// we found the part. merge or modify it!
|
||||||
if ('cost' in ret_spell) { ret_spell.cost += cost; }
|
|
||||||
|
|
||||||
if ('multipliers' in effect) {
|
if ('multipliers' in effect) {
|
||||||
for (const [idx, v] of effect.multipliers.entries()) { // python: enumerate()
|
for (const [idx, v] of effect.multipliers.entries()) { // python: enumerate()
|
||||||
part.multipliers[idx] += v;
|
part.multipliers[idx] += v;
|
||||||
|
|
Loading…
Reference in a new issue