Page 1 of 1

Paradoxology paradox mage has no talents to control paradox.

Posted: Fri Apr 29, 2011 8:58 pm
by yufra
Postman's report of the paradoxology paradox mage not controlling its paradox level is because it has no talents to do so. I suggest adding Static History to the learned talents, and potentially reducing the Static History cooldown.

I think equilibrium and paradox based talents should probably be modified to have their weights reduced as the fail rate increases, thus allowing other talents to gain preference over them. For example:

Code: Select all

newTalent{
	name = "Gravity Spike",
...
	tactical = { ATTACKAREA = function(self, t)
                             local _, failure_chance = self:paradoxFailChance()
                             return 2 * (1 - failure_chance / 100)
                         end,
                         DISABLE = function(self, t)
                             local _, failure_chance = self:paradoxFailChance()
                             return 2 * (1 - failure_chance / 100)
                         end
                        },
...