Code: Select all
getCrit = function(self, t)
if self:getTalentLevelRaw(t) >= 5 then
return 2
elseif self:getTalentLevelRaw(t) >= 3 then
return 1.5
else
return 1
end
end,
Moderator: Moderator
Code: Select all
getCrit = function(self, t)
if self:getTalentLevelRaw(t) >= 5 then
return 2
elseif self:getTalentLevelRaw(t) >= 3 then
return 1.5
else
return 1
end
end,