Fix bugs in #bug-reports
defense mult working correctly rejuv skin has 5 pally req
This commit is contained in:
parent
6a2e885473
commit
0ac8998a76
3 changed files with 3 additions and 3 deletions
|
@ -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
|
@ -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();
|
||||
|
|
Loading…
Reference in a new issue