Fix bugs in #bug-reports

defense mult working correctly
rejuv skin has 5 pally req
This commit is contained in:
hppeng 2022-07-04 12:32:36 -07:00
parent 6a2e885473
commit 0ac8998a76
3 changed files with 3 additions and 3 deletions

View file

@ -3319,7 +3319,7 @@ const atrees = {
"display_name": "Rejuvenating Skin",
"desc": "Regain back 30% of the damage you take as healing over 30s",
"archetype": "Paladin",
"archetype_req": 0,
"archetype_req": 5,
"parents": ["Burning Heart", "Stronger Bash"],
"dependencies": [],
"blockers": [],

File diff suppressed because one or more lines are too long

View file

@ -51,7 +51,7 @@ let boosts_node = new (class extends ComputeNode {
}
let res = new Map();
res.set('damageMultiplier', 1+damage_boost);
res.set('defMultiplier', 1+def_boost);
res.set('defMultiplier', 1-def_boost);
return res;
}
})().update();