Skip to content
Snippets Groups Projects
Commit f8f973d7 authored by dg's avatar dg
Browse files

Disruption Shield can never cost negative mana

git-svn-id: http://svn.net-core.org/repos/t-engine4@4895 51575b47-30f0-44d4-a5cc-537603b46e54
parent 090ade8c
No related branches found
No related tags found
No related merge requests found
......@@ -125,7 +125,7 @@ newTalent{
sustain_mana = 10,
no_energy = true,
tactical = { DEFEND = 2 },
getManaRatio = function(self, t) return 3 - math.max(self:combatTalentSpellDamage(t, 10, 200) / 100, 0.5) end,
getManaRatio = function(self, t) return math.max(3 - self:combatTalentSpellDamage(t, 10, 200) / 100, 0.5) end,
getArcaneResist = function(self, t) return 10 + self:combatTalentSpellDamage(t, 10, 500) / 10 end,
explode = function(self, t, dam)
game.logSeen(self, "#VIOLET#%s's disruption shield collapses and then explodes in a powerful manastorm!", self.name:capitalize())
......
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