Skip to content
Snippets Groups Projects
Commit 9b6c3930 authored by Alex Ksandra's avatar Alex Ksandra
Browse files

tamed Arcane Might a bit

parent 4d837fbf
No related branches found
No related tags found
No related merge requests found
......@@ -1657,12 +1657,11 @@ function _M:combatPhysicalpower(mod, weapon, add)
if self:attr("hit_penalty_2h") then d = d * (1 - math.max(0, 20 - (self.size_category - 4) * 5) / 100) end
local amight = 0
if self:knowTalent(self.T_ARCANE_MIGHT) then
amight = self:combatSpellpower() * 0.5
return self:combatSpellpower(mod, d) -- will do the rescaling and multiplying for us
else
return self:rescaleCombatStats(d) * mod
end
return self:rescaleCombatStats(d) * mod + amight * mod
end
--- Gets damage based on talent
......
......@@ -88,7 +88,7 @@ uberTalent{
return ([[You have learned to harness your latent arcane powers, channeling them through your weapon.
This has the following effects:
Equipped weapons are treated as having an additional 50%% Magic modifier;
Your effective Physical Power is increased by 50%% of your effective Spellpower;
Your raw Physical Power is increased by 100%% of your raw Spellpower;
Your physical critical chance is increased by 25%% of your bonus spell critical chance.]])
:format()
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