Effect of paradox on spells?

Builds, theorycraft, ... for all chronomancers classes

Moderator: Moderator

Post Reply
Message
Author
tylor
Wyrmic
Posts: 285
Joined: Thu Mar 07, 2013 5:18 am

Effect of paradox on spells?

#1 Post by tylor »

Many time mages spells have "scale with paradox" in description, but how big is this effect exactly? Is it something like 0.1% magnitude per paradox, or something different for each spell?

lukep
Sher'Tul Godslayer
Posts: 1712
Joined: Mon Mar 14, 2011 10:32 am
Location: Canada

Re: Effect of paradox on spells?

#2 Post by lukep »

Most of the spells scale the same:

Code: Select all

 128 -- Paradox modifier.  This controls how much extra effect chronomancy spells have at high paradox.
 129 -- Note that 300 is the optimal balance and going below this number will decrease the effect of chronomancy spells.
 130 getParadoxModifier = function (self, pm)
 131         local pm = math.sqrt((1 + (self:getParadox()/300))/2)
 132         return pm
It gives diminishing returns, so you get ~70% power at 0 paradox, 100% at 300 paradox, and 200% at 900 paradox.
Some of my tools for helping make talents:
Melee Talent Creator
Annotated Talent Code (incomplete)

Post Reply