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

Slightly increase numbers for Combat Accuracy

Melee characters having <50% hit chance against lots of basetypes until level 4 isn't really adding anything to the game
The majority of accuracy will still come from gear, but this will add slightly more to Combat Accuracy
parent fccc0235
No related branches found
No related tags found
1 merge request!603Misc 1.6.6
......@@ -165,7 +165,7 @@ newTalent{
points = 5,
require = { level=function(level) return (level - 1) * 4 end },
mode = "passive",
getAttack = function(self, t) return self:combatTalentScale(t, 10, 50, 0.75) end, -- match values at 1 and 5 for old formula
getAttack = function(self, t) return math.floor(self:combatTalentScale(t, 15, 55, 0.75)) end,
info = function(self, t)
local attack = t.getAttack(self, t)
return ([[Increases the accuracy of unarmed, melee and ranged weapons by %d.]]):
......
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