Skip to content
Snippets Groups Projects
Commit 18e62698 authored by Eric Wykoff's avatar Eric Wykoff
Browse files

Paradox spellpower modifier scales more normally under 300 paradox (caps at 50% at 150 paradox)

parent 7aa3710a
No related branches found
No related tags found
No related merge requests found
......@@ -153,7 +153,9 @@ load("/data/talents/chronomancy/anomalies.lua")
-- Caps at -50% and +50%
getParadoxModifier = function (self)
local paradox = self:getParadox()
local pm = util.bound(math.sqrt(paradox / 300), 0.5, 1.5)
local pm = math.sqrt(paradox / 300)
if paradox < 300 then pm = paradox/300 end
pm = util.bound(pm, 0.5, 1.5)
return pm
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