From f3b072f0160bcb9d1faad9a544b38f2c42659355 Mon Sep 17 00:00:00 2001 From: dg <dg@51575b47-30f0-44d4-a5cc-537603b46e54> Date: Tue, 1 Nov 2011 11:01:23 +0000 Subject: [PATCH] Time Prison now completly removes the target from the timeflow, no turns will pass for it (no cooldowns, regen, ... will happen) git-svn-id: http://svn.net-core.org/repos/t-engine4@4595 51575b47-30f0-44d4-a5cc-537603b46e54 --- .../interface/ActorTemporaryEffects.lua | 20 ++++++++++--------- game/modules/tome/class/Actor.lua | 6 +++++- .../tome/data/talents/spells/temporal.lua | 1 + .../modules/tome/data/timed_effects/other.lua | 5 ++++- 4 files changed, 21 insertions(+), 11 deletions(-) diff --git a/game/engines/default/engine/interface/ActorTemporaryEffects.lua b/game/engines/default/engine/interface/ActorTemporaryEffects.lua index e945eb6f2a..142804d461 100644 --- a/game/engines/default/engine/interface/ActorTemporaryEffects.lua +++ b/game/engines/default/engine/interface/ActorTemporaryEffects.lua @@ -61,22 +61,24 @@ function _M:init(t) end --- Counts down timed effects, call from your actors "act" method --- -function _M:timedEffects() +-- @param filter if not nil a function that gets passed the effect and its parameters, must return true to handle the effect +function _M:timedEffects(filter) local todel = {} local def for eff, p in pairs(self.tmp) do def = _M.tempeffect_def[eff] - if p.dur <= 0 then - todel[#todel+1] = eff - else - if def.on_timeout then - if def.on_timeout(self, p) then - todel[#todel+1] = eff + if not filter or filter(def, p) then + if p.dur <= 0 then + todel[#todel+1] = eff + else + if def.on_timeout then + if def.on_timeout(self, p) then + todel[#todel+1] = eff + end end end + p.dur = p.dur - def.decrease end - p.dur = p.dur - def.decrease end while #todel > 0 do diff --git a/game/modules/tome/class/Actor.lua b/game/modules/tome/class/Actor.lua index b743012c2d..515a84f7ba 100644 --- a/game/modules/tome/class/Actor.lua +++ b/game/modules/tome/class/Actor.lua @@ -284,7 +284,11 @@ end function _M:actBase() self.energyBase = self.energyBase - game.energy_to_act - if self:attr("no_timeflow") then return end + if self:attr("no_timeflow") then + -- Compute timed effects that can happen even in timeless mode + self:timedEffects(function(e, p) if e.tick_on_timeless then return true end end) + return + end if self:isTalentActive (self.T_DARKEST_LIGHT) and self.positive > self.negative then self:forceUseTalent(self.T_DARKEST_LIGHT, {ignore_energy=true}) diff --git a/game/modules/tome/data/talents/spells/temporal.lua b/game/modules/tome/data/talents/spells/temporal.lua index a91a5322f2..da02dd1091 100644 --- a/game/modules/tome/data/talents/spells/temporal.lua +++ b/game/modules/tome/data/talents/spells/temporal.lua @@ -98,6 +98,7 @@ newTalent{ info = function(self, t) local duration = t.getDuration(self, t) return ([[Removes the target from the flow of time for %d turns. In this state the target can neither act nor be harmed. + Time does not pass at all for the target, no talents will cooldown, no resources will regen, ... The duration will increase with your Spellpower.]]): format(duration) end, diff --git a/game/modules/tome/data/timed_effects/other.lua b/game/modules/tome/data/timed_effects/other.lua index f3ff2d6f02..4b38512b59 100644 --- a/game/modules/tome/data/timed_effects/other.lua +++ b/game/modules/tome/data/timed_effects/other.lua @@ -75,22 +75,25 @@ newEffect{ newEffect{ name = "TIME_PRISON", image = "talents/time_prison.png", desc = "Time Prison", - long_desc = function(self, eff) return "The target is removed from the normal time stream, unable to act but unable to take any damage." end, + long_desc = function(self, eff) return "The target is removed from the normal time stream, unable to act but unable to take any damage. Time does not pass for this creature." end, type = "other", subtype = { time=true }, status = "detrimental", + tick_on_timeless = true, parameters = {}, on_gain = function(self, err) return "#Target# is removed from time!", "+Out of Time" end, on_lose = function(self, err) return "#Target# is returned to normal time.", "-Out of Time" end, activate = function(self, eff) eff.iid = self:addTemporaryValue("invulnerable", 1) eff.sid = self:addTemporaryValue("time_prison", 1) + eff.tid = self:addTemporaryValue("no_timeflow", 1) eff.particle = self:addParticles(Particles.new("time_prison", 1)) self.energy.value = 0 end, deactivate = function(self, eff) self:removeTemporaryValue("invulnerable", eff.iid) self:removeTemporaryValue("time_prison", eff.sid) + self:removeTemporaryValue("no_timeflow", eff.tid) self:removeParticles(eff.particle) end, } -- GitLab