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

Detonate will also reset a random summon talent

git-svn-id: http://svn.net-core.org/repos/t-engine4@5785 51575b47-30f0-44d4-a5cc-537603b46e54
parent b034e8e4
No related branches found
No related tags found
No related merge requests found
......@@ -67,6 +67,15 @@ newTalent{
dt.on_detonate(self, t, target)
target:die(self)
local l = {}
for tid, cd in pairs(self.talents_cd) do
local t = self:getTalentFromId(tid)
if t.is_summon then l[#l+1] = tid end
end
if #l > 0 then
self.talents_cd[rng.table(l)] = nil
end
game:playSoundNear(self, "talents/fireflash")
return true
end,
......@@ -83,6 +92,7 @@ newTalent{
- Stone Golem: Knocks back all creatures
- Turtle: Grants a small shell shield to all friendly creatures
- Spider: Pins all foes around
In addition a random summon will come off cooldown.
The effects improves with your Willpower.]]):format(radius)
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