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

moooar

git-svn-id: http://svn.net-core.org/repos/t-engine4@5592 51575b47-30f0-44d4-a5cc-537603b46e54
parent f6c93959
No related branches found
No related tags found
No related merge requests found
......@@ -379,6 +379,10 @@ setDefaultProjector(function(src, x, y, type, dam, tmp, no_martyr)
src.turn_procs.meteoric_crash = true
src:triggerTalent(src.T_METEORIC_CRASH, nil, target)
end
if not target.dead and t.is_spell and target.knowTalent and target:knowTalent(src.T_SPELL_FEEDBACK) then
target:triggerTalent(target.T_SPELL_FEEDBACK, nil, src)
end
end
end
......
game/modules/tome/data/gfx/talents/spell_feedback.png

4.1 KiB

......@@ -171,7 +171,7 @@ uberTalent{
uberTalent{
name = "Unbreakable Will",
mode = "passive",
cooldown = 8,
cooldown = 7,
trigger = function(self, t)
self:startTalentCooldown(t)
game.logSeen(self, "#LIGHT_BLUE#%s unbreakable will shrugs off the effect!", self.name:capitalize())
......@@ -183,3 +183,20 @@ uberTalent{
:format()
end,
}
uberTalent{
name = "Spell Feedback",
mode = "passive",
cooldown = 3,
require = { special={desc="Antimagic", fct=function(self) return self:knowTalentType("wild-gift/antimagic") end} },
trigger = function(self, t, target)
self:startTalentCooldown(t)
game.logSeen(self, "#LIGHT_BLUE#%s punishes %s for casting a spell!", self.name:capitalize(), target.name)
DamageType:get(DamageType.MIND).projector(self, target.x, target.y, DamageType.MIND, 70 + self:getWil() * 2)
return true
end,
info = function(self, t)
return ([[Your will is a shield against the assault of crazy arcane users. Each time you take damage from a spell you punish the spellcaster with %0.2f mind damage.]])
:format(damDesc(self, DamageType.MIND, 20 + self:getWil() * 2))
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