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

moooar

git-svn-id: http://svn.net-core.org/repos/t-engine4@5590 51575b47-30f0-44d4-a5cc-537603b46e54
parent b18af91f
No related branches found
No related tags found
No related merge requests found
game/modules/tome/data/gfx/talents/irresistible_sun.png

3.77 KiB

......@@ -111,9 +111,15 @@ uberTalent{
uberTalent{
name = "Irresistible Sun",
cooldown = 20,
cooldown = 25,
action = function(self, t)
self:setEffect(self.EFF_IRRESISTIBLE_SUN, 6, {dam=50 + self:getStr() * 2})
end,
info = function(self, t)
return ([[]])
:format()
local dam = (50 + self:getStr() * 2) / 3
return ([[For 6 turns you gain the mass and power of a star, drawing all creatures in a radius 5 toward you and dealing %0.2f fire, %0.2f light and %0.2f physical damage to all foes.
Foes closer to you take up to 200%% more damage.
Damage will increase with Strength.]])
:format(damDesc(self, DamageType.FIRE, dam), damDesc(self, DamageType.LIGHT, dam), damDesc(self, DamageType.PHYSICAL, dam))
end,
}
......@@ -1933,7 +1933,7 @@ newEffect{
desc = "Vulnerability Poison",
long_desc = function(self, eff) return ("The target is poisoned and sick, doing %0.2f arcane damage per turn. All resistances are reduced by %d%%."):format(eff.power, eff.res) end,
type = "magical",
subtype = { poison=true, arcane=true }, no_ct_effect = true,
subtype = { poison=true, arcane=true },
status = "detrimental",
parameters = {power=10, res=15},
on_gain = function(self, err) return "#Target# is poisoned!", "+Vulnerability Poison" end,
......@@ -1951,3 +1951,37 @@ newEffect{
self:removeTemporaryValue("resists", eff.tmpid)
end,
}
newEffect{
name = "IRRESISTIBLE_SUN", image = "talents/irresistible_sun.png",
desc = "Irresistible Sun",
long_desc = function(self, eff) return ("The target is attracting all toward it, also dealing fire, light and physical damage each turn.."):format() end,
type = "magical",
subtype = { sun=true },
status = "beneficial",
parameters = {dam=100},
on_gain = function(self, err) return "#Target# starts to attract all creatures around!", "+Irresistible Sun" end,
on_lose = function(self, err) return "#Target# is no longer attracting creatures.", "-Irresistible Sun" end,
on_timeout = function(self, eff)
local tgts = {}
self:project({type="ball", range=0, friendlyfire=false, radius=5}, self.x, self.y, function(px, py)
local target = game.level.map(px, py, Map.ACTOR)
if not target then return end
if not tgts[target] then
tgts[target] = true
local ox, oy = target.x, target.y
target:pull(self.x, self.y, 1)
if target.x ~= ox or target.y ~= oy then
game.logSeen(target, "%s is pulled in!", target.name:capitalize())
end
if self:reactionToward(target) < 0 then
local dam = eff.dam * (1 + (5 - core.fov.distance(self.x, self.y, target.x, target.y)) / 5)
DamageType:get(DamageType.FIRE).projector(self, target.x, target.y, DamageType.FIRE, dam/3)
DamageType:get(DamageType.LIGHT).projector(self, target.x, target.y, DamageType.LIGHT, dam/3)
DamageType:get(DamageType.PHYSICAL).projector(self, target.x, target.y, DamageType.PHYSICAL, dam/3)
end
end
end)
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