Skip to content
Snippets Groups Projects
Commit 3b465c2a authored by Lisa Greene's avatar Lisa Greene
Browse files

Adjust combatDamage calculation

parent 47b220df
No related branches found
No related tags found
1 merge request!599Adjust melee damage
......@@ -1662,11 +1662,12 @@ function _M:combatDamage(weapon, adddammod, damage)
totstat = totstat + self:getStat(stat) * mod
end
end
if self:knowTalent(self["T_FORM_AND_FUNCTION"]) then totstat = totstat + self:callTalent(self["T_FORM_AND_FUNCTION"], "getDamBoost", weapon) end
local talented_mod = 1 + self:combatTrainingPercentInc(weapon)
local power = self:combatDamagePower(damage or weapon, totstat)
local phys = self:combatPhysicalpower(nil, weapon, totstat)
return self:rescaleDamage(0.3 * phys * power * talented_mod)
local power = self:combatDamagePower(damage or weapon)
local phys = self:combatPhysicalpower(nil, weapon)
local statmod = self:rescaleCombatStats(totstat, 25)
return self:rescaleDamage(0.3 * (phys + statmod) * power * talented_mod)
end
--- Gets the 'power' portion of the damage
......@@ -1674,6 +1675,8 @@ function _M:combatDamagePower(weapon_combat, add)
if not weapon_combat then return 1 end
local power = math.max((weapon_combat.dam or 1) + (add or 0), 1)
if self:knowTalent(self["T_FORM_AND_FUNCTION"]) then power = power + self:callTalent(self["T_FORM_AND_FUNCTION"], "getDamBoost", weapon) end
return (math.sqrt(power / 10) - 1) * 0.5 + 1
end
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment