Fix Orphion's pulse heal, fix single item page for armor
This commit is contained in:
parent
45614a4c8b
commit
bf28e219f4
5 changed files with 8 additions and 7 deletions
|
@ -59,7 +59,6 @@
|
|||
<script type="text/javascript" src="/js/icons.js"></script>
|
||||
<script type="text/javascript" src="/js/damage_calc.js"></script>
|
||||
<script type="text/javascript" src="/js/powders.js"></script>
|
||||
<!-- <script type="text/javascript" src="/js/powders.js"></script> -->
|
||||
<script type="text/javascript" src="/js/load.js"></script>
|
||||
<script type="text/javascript" src="/js/load_ing.js"></script>
|
||||
<script type="text/javascript" src="/js/display_constants.js"></script>
|
||||
|
|
|
@ -3843,14 +3843,16 @@ const atrees = {
|
|||
"col": 2,
|
||||
"icon": "node_2"
|
||||
},
|
||||
"properties": {
|
||||
"duration": 90
|
||||
},
|
||||
"properties": {},
|
||||
"effects": [
|
||||
{
|
||||
"type": "add_spell_prop",
|
||||
"base_spell": 4,
|
||||
"cost": 10
|
||||
},
|
||||
{
|
||||
"type": "raw_stat",
|
||||
"bonuses": [ {"type": "prop", "abil": "War Scream", "name": "duration", "value": 90} ]
|
||||
}
|
||||
]
|
||||
},
|
||||
|
|
File diff suppressed because one or more lines are too long
|
@ -620,7 +620,7 @@ class SpellDamageCalcNode extends ComputeNode {
|
|||
}
|
||||
}
|
||||
else {
|
||||
spell_result.heal_amount += subpart.heal_amount;
|
||||
spell_result.heal_amount += subpart.heal_amount * hits;
|
||||
}
|
||||
}
|
||||
spell_result.name = part.name;
|
||||
|
|
|
@ -20,8 +20,8 @@ function init_itempage() {
|
|||
//displayExpandedItem(expandItem(itemMap.get(item_url_tag).statMap, []), "item-view");
|
||||
try{
|
||||
item = expandItem(itemMap.get(item_url_tag.replaceAll("%20"," ")), []);
|
||||
item.set('powders', []);
|
||||
if (item.get('category') === 'weapon') {
|
||||
item.set('powders', []);
|
||||
apply_weapon_powders(item);
|
||||
}
|
||||
displayExpandedItem(item, "item-view");
|
||||
|
|
Loading…
Reference in a new issue