diff --git a/game/modules/tome/class/Actor.lua b/game/modules/tome/class/Actor.lua index 0361037cd88ffb2a196d9468d324695956fd62ad..853e9e0e5634b192c6bfb1828df0bb2575904fe1 100644 --- a/game/modules/tome/class/Actor.lua +++ b/game/modules/tome/class/Actor.lua @@ -1931,7 +1931,6 @@ function _M:tooltip(x, y, seen_by) for tid, act in pairs(self.sustain_talents) do if act then ts:add(true, "- ", {"color", "LIGHT_GREEN"}, self:getTalentFromId(tid) and self:getTalentFromId(tid).name or "???", {"color", "WHITE"} ) end end - if ts[#ts-1] == "Sustained Talents: " then table.remove(ts) table.remove(ts) table.remove(ts) table.remove(ts) end ts:add(true, {"color", "ORANGE"}, "Temporary Status Effects: ",{"color", "WHITE"}) @@ -3394,6 +3393,9 @@ function _M:onStatChange(stat, v) -- life local multi_life = 4 + (self.inc_resource_multi.life or 0) self.max_life = math.max(1, self.max_life + multi_life * v) -- no negative max life + + -- heal mod + self.healing_factor = self.healing_factor + v * 0.005 elseif stat == self.STAT_DEX then self.ignore_direct_crits = (self.ignore_direct_crits or 0) + 0.3 * v elseif stat == self.STAT_WIL then diff --git a/game/modules/tome/class/Game.lua b/game/modules/tome/class/Game.lua index 7977ad7a324a26c2c842809b1c883f898741a083..fd2e13790a737b0139cbd6d0f5b987e6c46a4152 100644 --- a/game/modules/tome/class/Game.lua +++ b/game/modules/tome/class/Game.lua @@ -2049,7 +2049,7 @@ do return end end), LEVELUP = function() - if self.player.no_levelup_access then return end + if self.player:attr("no_levelup_access") then return end self.player:playerLevelup(nil, false) end, diff --git a/game/modules/tome/class/interface/TooltipsData.lua b/game/modules/tome/class/interface/TooltipsData.lua index fac3e72365d4aca0ade8474da83a8ef9d1fe533f..9c81722df3e1f472004428894f35a25d4222bc1a 100644 --- a/game/modules/tome/class/interface/TooltipsData.lua +++ b/game/modules/tome/class/interface/TooltipsData.lua @@ -67,6 +67,7 @@ This value can be improved with spells, talents, infusions, equipment. TOOLTIP_HEALING_MOD = [[#GOLD#Healing mod#LAST# This represents how effective healing is for you. All healing values are multiplied by this value (including life regeneration). +It is increased by Constitution. ]] TOOLTIP_AIR = [[#GOLD#Air#LAST# @@ -231,7 +232,7 @@ TOOLTIP_DEX = [[#GOLD#Dexterity#LAST# Dexterity defines your character's ability to be agile and alert. It increases Accuracy, Defense, chance to shrug off critical hits and your damage with light weapons. ]] TOOLTIP_CON = [[#GOLD#Constitution#LAST# -Constitution defines your character's ability to withstand and resist damage. It increases your maximum life and Physical Save. +Constitution defines your character's ability to withstand and resist damage. It increases your maximum life, Physical Save and Healing mod. ]] TOOLTIP_MAG = [[#GOLD#Magic#LAST# Magic defines your character's ability to manipulate the magical energy of the world. It increases your Spellpower, Spell Save, and the effect of spells and other magic items. diff --git a/game/modules/tome/dialogs/LevelupDialog.lua b/game/modules/tome/dialogs/LevelupDialog.lua index cc3676400bada874596f088eb8736233939126b4..3371a3a115e08bd79b0c3c3db2fabdb27dfd4530 100644 --- a/game/modules/tome/dialogs/LevelupDialog.lua +++ b/game/modules/tome/dialogs/LevelupDialog.lua @@ -839,6 +839,7 @@ function _M:getStatDesc(item) local multi_life = 4 + (self.actor.inc_resource_multi.life or 0) text:add("Max life: ", color, ("%0.2f"):format(diff * multi_life), dc, true) text:add("Physical save: ", color, ("%0.2f"):format(diff * 0.35), dc, true) + text:add("Healing mod: ", color, ("%0.1f%%"):format(diff * 0.5), dc, true) elseif stat_id == self.actor.STAT_WIL then if self.actor:knowTalent(self.actor.T_MANA_POOL) then local multi_mana = 5 + (self.actor.inc_resource_multi.mana or 0)