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

fix

git-svn-id: http://svn.net-core.org/repos/t-engine4@2108 51575b47-30f0-44d4-a5cc-537603b46e54
parent 1912483e
No related branches found
No related tags found
No related merge requests found
......@@ -147,7 +147,7 @@ newTalent{
range = 12,
getFireDamageOnHit = function(self, t) return self:combatTalentSpellDamage(t, 5, 25) end,
getResistance = function(self, t) return self:combatTalentSpellDamage(t, 5, 45) end,
getFireDamageInSight = function(self, t) return sself:combatTalentSpellDamage(t, 15, 70) end,
getFireDamageInSight = function(self, t) return self:combatTalentSpellDamage(t, 15, 70) end,
getManaDrain = function(self, t) return -0.4 * self:getTalentLevelRaw(t) end,
do_fire = function(self, t)
if self:getMana() <= 0 then
......
......@@ -63,7 +63,7 @@ newTalent{
info = function(self, t)
local daminc = t.getIncrease(self, t)
return ([[When you throw your alchemist bombs you infuse them with explosive acid that can blind, increasing damage by %d%%.]]):
format(daminc)
format(100 * daminc)
end,
}
......@@ -90,7 +90,7 @@ newTalent{
info = function(self, t)
local daminc = t.getIncrease(self, t)
return ([[When you throw your alchemist bombs you infuse them with lightning that can daze, increasing damage by %d%%.]]):
format(daminc)
format(100 * daminc)
end,
}
......@@ -117,6 +117,6 @@ newTalent{
info = function(self, t)
local daminc = t.getIncrease(self, t)
return ([[When you throw your alchemist bombs you infuse them with frost that can freeze, increasing damage by %d%%.]]):
format(daminc)
format(100 * daminc)
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