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

Bellowing Roar now uses strength for the save test

git-svn-id: http://svn.net-core.org/repos/t-engine4@2984 51575b47-30f0-44d4-a5cc-537603b46e54
parent f84456ec
No related branches found
No related tags found
No related merge requests found
...@@ -36,7 +36,12 @@ newTalent{ ...@@ -36,7 +36,12 @@ newTalent{
tactical = { DEFEND = 1, DISABLE = 3 }, tactical = { DEFEND = 1, DISABLE = 3 },
action = function(self, t) action = function(self, t)
local tg = self:getTalentTarget(t) local tg = self:getTalentTarget(t)
self:project(tg, self.x, self.y, DamageType.CONFUSION, {dur=3, dam=40 + 6 * self:getTalentLevel(t)}, {type="flame"}) self:project(tg, self.x, self.y, DamageType.CONFUSION, {
dur=3,
dam=40 + 6 * self:getTalentLevel(t),
power_check=function() return self:combatAttackStr() end,
resist_check=self.combatPhysicalResist,
}, {type="flame"})
return true return true
end, end,
info = function(self, t) info = function(self, t)
......
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