diff --git a/game/modules/tome/class/Actor.lua b/game/modules/tome/class/Actor.lua index 95fed50d5aa875ddeb6c7e93467d1a14179d575f..caba67fe0da20849cff6a6b678e99399d7d4a913 100644 --- a/game/modules/tome/class/Actor.lua +++ b/game/modules/tome/class/Actor.lua @@ -369,10 +369,9 @@ function _M:actBase() self.tempeffect_def[self.EFF_CURSE_OF_NIGHTMARES].doNightmare(self, eff) end end - -- this handles Door to the Past random anomalies - if self:isTalentActive(self.T_DOOR_TO_THE_PAST) then - local t = self:getTalentFromId(self.T_DOOR_TO_THE_PAST) - t.do_anomalyCount(self, t) + -- this handles spacetime tuning paradox regen + if self:isTalentActive(self.T_SPACETIME_TUNING) then + self:incParadox(-1) end -- this handles Carbon Spike regrowth if self:isTalentActive(self.T_CARBON_SPIKES) then @@ -2327,7 +2326,7 @@ end --- Paradox checks function _M:paradoxChanceModifier() - local modifier = self:getWil() * 2 + local modifier = self:getWil() * 1.5 if self:knowTalent(self.T_PARADOX_MASTERY) then modifier = modifier * (1 + (self:getTalentLevel(self.T_PARADOX_MASTERY)/10) or 0) end @@ -2335,30 +2334,27 @@ function _M:paradoxChanceModifier() return modifier end -function _M:paradoxFailChance(pa) - local total_paradox = self:getParadox() + (pa or 0) - local chance = (100 + 2*self:combatFatigue()) / 100 * math.pow((total_paradox - self:paradoxChanceModifier()) / 200, 2) +function _M:paradoxFailChance() + local chance = (100 + 2*self:combatFatigue()) / 100 * math.pow((self:getParadox() - self:paradoxChanceModifier()) / 200, 2) if self:getParadox() < 200 then chance = 0 end --print("[Paradox] Fail chance: ", chance, "::", self:getParadox()) - chance = util.bound(chance, 0, 100) + chance = util.bound(math.ceil(chance), 0, 100) return rng.percent(chance), chance end -function _M:paradoxAnomalyChance(pa) - local total_paradox = self:getParadox() + (pa or 0) - local chance = (100 + 2*self:combatFatigue()) / 100 * math.pow((total_paradox- self:paradoxChanceModifier()) / 300, 3) +function _M:paradoxAnomalyChance() + local chance = (100 + 2*self:combatFatigue()) / 100 * math.pow((self:getParadox() - self:paradoxChanceModifier()) / 300, 3) if self:getParadox() < 300 then chance = 0 end --print("[Paradox] Anomaly chance: ", chance, "::", self:getParadox()) - chance = util.bound(chance, 0, 100) + chance = util.bound(math.ceil(chance), 0, 100) return rng.percent(chance), chance end -function _M:paradoxBackfireChance(pa) - local total_paradox = self:getParadox() + (pa or 0) - local chance = (100 + 2*self:combatFatigue()) / 100 * math.pow((total_paradox - self:paradoxChanceModifier()) / 400, 4) +function _M:paradoxBackfireChance() + local chance = (100 + 2 * self:combatFatigue()) / 100 * math.pow((self:getParadox() - self:paradoxChanceModifier()) / 400, 4) if self:getParadox() < 400 then chance = 0 end --print("[Paradox] Backfire chance: ", chance, "::", self:getParadox()) - chance = util.bound(chance, 0, 100) + chance = util.bound(math.ceil(chance), 0, 100) return rng.percent(chance), chance end @@ -2537,10 +2533,10 @@ function _M:preUseTalent(ab, silent, fake) end -- Paradox is special, it has no max, but the higher it is the higher the chance of something bad happening - if (ab.paradox or (ab.sustain_paradox and not self:isTalentActive(ab.id))) and not fake and not self:attr("force_talent_ignore_ressources") then + if (ab.paradox and ab.paradox > 0 or (ab.sustain_paradox and ab.sustain_paradox > 0 and not self:isTalentActive(ab.id))) and not fake and not self:attr("force_talent_ignore_ressources") then -- Check anomalies first since they can reduce paradox, this way paradox is a self correcting resource local paradox_scaling = 1 + self.paradox / 300 - if not game.zone.no_anomalies and not self:attr("no_paradox_fail") and self:paradoxAnomalyChance(ab.paradox or ab.sustain_paradox) then + if not game.zone.no_anomalies and not self:attr("no_paradox_fail") and self:paradoxAnomalyChance() then -- Random anomaly local ts = {} for id, t in pairs(self.talents_def) do @@ -2552,7 +2548,7 @@ function _M:preUseTalent(ab, silent, fake) self:useEnergy() return false -- Now check for failure - elseif not self:attr("no_paradox_fail") and self:paradoxFailChance(ab.paradox or ab.sustain_paradox) and not self:hasEffect(self.EFF_SPACETIME_STABILITY) then + elseif not self:attr("no_paradox_fail") and self:paradoxFailChance() and not self:hasEffect(self.EFF_SPACETIME_STABILITY) then if not silent then game.logPlayer(self, "You fail to use %s due to your paradox!", ab.name) end self:incParadox(ab.paradox or ab.sustain_paradox / 10) self:useEnergy() @@ -2673,7 +2669,7 @@ function _M:postUseTalent(ab, ret) trigger = true; self:incMaxHate(-ab.sustain_hate) end if ab.sustain_paradox then - trigger = true; self:breakGatherTheThreads(); self:incMinParadox(ab.sustain_paradox) + trigger = true; self:incMinParadox(ab.sustain_paradox); end if ab.sustain_psi then trigger = true; self:incMaxPsi(-ab.sustain_psi) @@ -2748,7 +2744,7 @@ function _M:postUseTalent(ab, ret) -- Cancel stealth! if ab.id ~= self.T_STEALTH and ab.id ~= self.T_HIDE_IN_PLAIN_SIGHT and not ab.no_break_stealth then self:breakStealth() end if ab.id ~= self.T_LIGHTNING_SPEED then self:breakLightningSpeed() end - if ab.id ~= self.T_GATHER_THE_THREADS then self:breakGatherTheThreads() end + if ab.id ~= self.T_GATHER_THE_THREADS and ab.id ~= self.T_SPACETIME_TUNING then self:breakChronoSpells() end self:breakStepUp() if ab.id ~= self.T_REDUX and self:hasEffect(self.EFF_REDUX) and ab.type[1]:find("^chronomancy/") and ab.mode == "activated" and self:getTalentLevel(self.T_REDUX) >= self:getTalentLevel(ab.id) then @@ -2811,11 +2807,14 @@ function _M:breakLightningSpeed() end end ---- Breaks gather the threads if active -function _M:breakGatherTheThreads() +--- Breaks some chrono spells if active +function _M:breakChronoSpells() if self:hasEffect(self.EFF_GATHER_THE_THREADS) then self:removeEffect(self.EFF_GATHER_THE_THREADS) end + if self:isTalentActive(self.T_SPACETIME_TUNING) then + self:forceUseTalent(self.T_SPACETIME_TUNING, {ignore_energy=true}) + end end --- Return the full description of a talent diff --git a/game/modules/tome/class/Game.lua b/game/modules/tome/class/Game.lua index 4b386c7688082976c737c06e886b6ab9f41ee030..b1e2ed95aa4fc75528b0ab5cf2d000e69a6d65f8 100644 --- a/game/modules/tome/class/Game.lua +++ b/game/modules/tome/class/Game.lua @@ -599,10 +599,6 @@ function _M:changeLevel(lev, zone, keep_old_lev, force_down, auto_zone_stair) -- clear chrono worlds and their various effects if self._chronoworlds then self._chronoworlds = nil end - if self.player:isTalentActive(self.player.T_DOOR_TO_THE_PAST) then - self.player:forceUseTalent(self.player.T_DOOR_TO_THE_PAST, {ignore_energy=true}) - end - local left_zone = self.zone if self.zone and self.zone.on_leave then diff --git a/game/modules/tome/class/Player.lua b/game/modules/tome/class/Player.lua index d6fb9f6558af9b96ada82361b5ca7551efeb99f6..64e9341d34bdf31e11ad3d24ad9b77a495379a64 100644 --- a/game/modules/tome/class/Player.lua +++ b/game/modules/tome/class/Player.lua @@ -631,6 +631,7 @@ function _M:restCheck() if self:getStamina() < self:getMaxStamina() and self.stamina_regen > 0 then return true end if self:getPsi() < self:getMaxPsi() and self.psi_regen > 0 then return true end if self:getEquilibrium() > 0 and self.equilibrium_regen < 0 then return true end + if self:getParadox() > 0 and self:getParadox() > self.min_paradox and self:isTalentActive(self.T_SPACETIME_TUNING) then return true end if self.life < self.max_life and self.life_regen> 0 then return true end for act, def in pairs(game.party.members) do if game.level:hasEntity(act) and not act.dead then if act.life < act.max_life and act.life_regen> 0 then return true end @@ -945,7 +946,7 @@ function _M:playerUseItem(object, item, inven) self:breakStepUp() self:breakStealth() self:breakLightningSpeed() - self:breakGatherTheThreads() + self:breakChronoSpells() return true end diff --git a/game/modules/tome/class/Store.lua b/game/modules/tome/class/Store.lua index 9cdce4a2752cd5b90932dab163df25f1e7c9db0e..65b21d3f8f49143c286ae9b6a55090c5fcedc648 100644 --- a/game/modules/tome/class/Store.lua +++ b/game/modules/tome/class/Store.lua @@ -71,9 +71,6 @@ function _M:loadup(level, zone) if game._chronoworlds then game.log("#CRIMSON#Your timetravel has no effect on pre-determined outcomes such as this.") game._chronoworlds = nil - if game.player:isTalentActive(game.player.T_DOOR_TO_THE_PAST) then - game.player:forceUseTalent(game.player.T_DOOR_TO_THE_PAST, {ignore_energy=true}) - end end end diff --git a/game/modules/tome/class/interface/Combat.lua b/game/modules/tome/class/interface/Combat.lua index 5a801bec4f6f13c0bf2c54be7b38dce0e963192c..7ed9a0d821578a2c60c6dbb0dde4977367b49626 100644 --- a/game/modules/tome/class/interface/Combat.lua +++ b/game/modules/tome/class/interface/Combat.lua @@ -202,7 +202,7 @@ function _M:attackTarget(target, damtype, mult, noenergy) -- Cancel stealth! if break_stealth then self:breakStealth() end self:breakLightningSpeed() - self:breakGatherTheThreads() + self:breakChronoSpells() return hit end diff --git a/game/modules/tome/data/chats/last-hope-lost-merchant.lua b/game/modules/tome/data/chats/last-hope-lost-merchant.lua index a91079449e5ab1d93f5be3ef08a59fbc95253540..c1cdf8d1db8a0f577faf5313441b0cd1671c4448 100644 --- a/game/modules/tome/data/chats/last-hope-lost-merchant.lua +++ b/game/modules/tome/data/chats/last-hope-lost-merchant.lua @@ -87,9 +87,6 @@ local maker_list = function() if game._chronoworlds then game.log("#CRIMSON#Your timetravel has no effect on pre-determined outcomes such as this.") game._chronoworlds = nil - if player:isTalentActive(player.T_DOOR_TO_THE_PAST) then - player:forceUseTalent(player.T_DOOR_TO_THE_PAST, {ignore_energy=true}) - end end game:saveGame() diff --git a/game/modules/tome/data/talents/chronomancy/age-manipulation.lua b/game/modules/tome/data/talents/chronomancy/age-manipulation.lua index 00c66ca5bf01e5380e0bcd93d132a74734a3cbe1..49bc614f0faa614905fc01551dd2f4e9d10c3c3c 100644 --- a/game/modules/tome/data/talents/chronomancy/age-manipulation.lua +++ b/game/modules/tome/data/talents/chronomancy/age-manipulation.lua @@ -35,7 +35,7 @@ newTalent{ local tg = {type="bolt", range=self:getTalentRange(t), talent=t, display={particle="temporal_bolt"}} local x, y = self:getTarget(tg) if not x or not y then return nil end - x, y = checkBackfire(self, x, y, t.paradox) + x, y = checkBackfire(self, x, y) self:projectile(tg, x, y, DamageType.CLOCK, self:spellCrit(t.getDamage(self, t)), nil) game:playSoundNear(self, "talents/spell_generic2") diff --git a/game/modules/tome/data/talents/chronomancy/chronomancer.lua b/game/modules/tome/data/talents/chronomancy/chronomancer.lua index 9bb4a157543463944f1f0b73829265bc3c731c0f..a16ec30b9310d0e20c79fc41c4e6ee83c2bbf087 100644 --- a/game/modules/tome/data/talents/chronomancy/chronomancer.lua +++ b/game/modules/tome/data/talents/chronomancy/chronomancer.lua @@ -105,8 +105,8 @@ temporal_req5 = { } -- Backfire Function; this does the actual backfire even though the chance is calculated in Actor -checkBackfire = function(self, x, y, pa) - if self:paradoxBackfireChance(pa) and not self:attr("no_paradox_fail") then +checkBackfire = function(self, x, y) + if self:paradoxBackfireChance() and not self:attr("no_paradox_fail") then game.logPlayer(self, "The fabric of spacetime ripples and your spell backfires!!") return self.x, self.y else diff --git a/game/modules/tome/data/talents/chronomancy/chronomancy.lua b/game/modules/tome/data/talents/chronomancy/chronomancy.lua index c63c2a2a359b0ce3973ca959c020a3aa7ce39f4c..30d6c8929ebef88481abc4d745928ba0712abb90 100644 --- a/game/modules/tome/data/talents/chronomancy/chronomancy.lua +++ b/game/modules/tome/data/talents/chronomancy/chronomancy.lua @@ -21,41 +21,35 @@ newTalent{ name = "Spacetime Tuning", type = {"chronomancy/other", 1}, + mode = "sustained", + sustain_paradox = 0, hide = true, points = 1, - message = "@Source@ retunes the fabric of spacetime.", - cooldown = 50, + --message = "@Source@ retunes the fabric of spacetime.", + cooldown = 5, tactical = { PARADOX = 2 }, no_npc_use = true, no_energy = true, no_unlearn_last = true, - getAnomaly = function(self, t) return 6 - (self:getTalentLevelRaw(self.T_STATIC_HISTORY) or 0) end, - getPower = function(self, t) return math.floor(self:getWil()/2) end, - action = function(self, t) - -- open dialog to get desired paradox - local q = engine.dialogs.GetQuantity.new("Retuning the fabric of spacetime...", - "What's your desired paradox level?", math.floor(self.paradox), nil, function(qty) - - -- get reduction amount and find duration - local amount = qty - self.paradox - local dur = math.floor(math.abs(qty-self.paradox)/t.getPower(self, t)) - - -- set tuning effect - if amount >= 0 then - self:setEffect(self.EFF_SPACETIME_TUNING, dur, {power = t.getPower(self, t)}) - elseif amount < 0 then - self:setEffect(self.EFF_SPACETIME_TUNING, dur, {power = - t.getPower(self, t)}) - end - - end) - game:registerDialog(q) + activate = function(self, t) + return {} + end, + deactivate = function(self, t, p) + local _, failure = self:paradoxFailChance() + local _, backfire = self:paradoxBackfireChance() + local _, anomaly = self:paradoxAnomalyChance() + game.logPlayer(self, "Your current failure chance is %d%%, your current anomaly chance is %d%%, and your current backfire chance is %d%%.", failure, anomaly, backfire) return true end, info = function(self, t) - local chance = t.getAnomaly(self, t) - return ([[Retunes your Paradox towards the desired level and informs you of failure, anomaly, and backfire chances when you finish tuning. You will be dazed while tuning and each turn your Paradox will increase or decrease by an amount equal to one half of your Willpower stat. - Each turn you spend increasing Paradox will have a %d%% chance of triggering a temporal anomaly which will end the tuning process. Decreasing Paradox has no chance of triggering an anomaly.]]): - format(chance) + local _, failure = self:paradoxFailChance() + local _, backfire = self:paradoxBackfireChance() + local _, anomaly = self:paradoxAnomalyChance() + return ([[Reduces your paradox by one each turn while sustained. Attacking, using an item, or a talent will cancel the spell. + + Current failure chance : %d%% + Current anomaly chance : %d%% + Current backfire chance : %d%%]]):format(failure, backfire, anomaly) end, } diff --git a/game/modules/tome/data/talents/chronomancy/energy.lua b/game/modules/tome/data/talents/chronomancy/energy.lua index ecacff1552b251d20a64e2379b881bc8a0f08835..d45ac6fd7191244b780f832d874538dcb1ee687e 100644 --- a/game/modules/tome/data/talents/chronomancy/energy.lua +++ b/game/modules/tome/data/talents/chronomancy/energy.lua @@ -101,7 +101,7 @@ newTalent{ local tx, ty = self:getTarget(tg) if not tx or not ty then return nil end local _ _, tx, ty = self:canProject(tg, tx, ty) - tx, ty = checkBackfire(self, tx, ty, t.paradox) + tx, ty = checkBackfire(self, tx, ty) local target = game.level.map(tx, ty, Map.ACTOR) if not target then return end diff --git a/game/modules/tome/data/talents/chronomancy/gravity.lua b/game/modules/tome/data/talents/chronomancy/gravity.lua index 513c7dc1c89c96d056ce40cfb032e5e3b66cb52d..8dc7fe00eaa64a43115548bd12cc1ab661419ce4 100644 --- a/game/modules/tome/data/talents/chronomancy/gravity.lua +++ b/game/modules/tome/data/talents/chronomancy/gravity.lua @@ -76,7 +76,7 @@ newTalent{ local x, y = self:getTarget(tg) if not x or not y then return nil end local _ _, _, _, x, y = self:canProject(tg, x, y) - x, y = checkBackfire(self, x, y, t.paradox) + x, y = checkBackfire(self, x, y) local grids = self:project(tg, x, y, function(px, py) local target = game.level.map(px, py, Map.ACTOR) if not target then return end @@ -173,7 +173,7 @@ newTalent{ local x, y = self:getTarget(tg) if not x or not y then return nil end local _ _, _, _, x, y = self:canProject(tg, x, y) - x, y = checkBackfire(self, x, y, t.paradox) + x, y = checkBackfire(self, x, y) -- Add a lasting map effect game.level.map:addEffect(self, x, y, duration, diff --git a/game/modules/tome/data/talents/chronomancy/matter.lua b/game/modules/tome/data/talents/chronomancy/matter.lua index 0ba31c6bd1ec7f8cf1627a8e7e2d41920f71d164..ad58baf102dce693a9ec3275cbf354c164b5601c 100644 --- a/game/modules/tome/data/talents/chronomancy/matter.lua +++ b/game/modules/tome/data/talents/chronomancy/matter.lua @@ -37,7 +37,7 @@ newTalent{ local tg = self:getTalentTarget(t) local x, y = self:getTarget(tg) if not x or not y then return nil end - x, y = checkBackfire(self, x, y, t.paradox) + x, y = checkBackfire(self, x, y) self:project(tg, x, y, DamageType.MATTER, self:spellCrit(t.getDamage(self, t))) local _ _, _, _, x, y = self:canProject(tg, x, y) game.level.map:particleEmitter(self.x, self.y, math.max(math.abs(x-self.x), math.abs(y-self.y)), "matter_beam", {tx=x-self.x, ty=y-self.y}) @@ -119,7 +119,7 @@ newTalent{ local tg = {type="hit", range=self:getTalentRange(t), talent=t} local x, y = self:getTarget(tg) if not x or not y then return nil end - x, y = checkBackfire(self, x, y, t.paradox) + x, y = checkBackfire(self, x, y) self:project(tg, x, y, function(px, py) local target = game.level.map(px, py, Map.ACTOR) if not target then return end @@ -159,7 +159,7 @@ newTalent{ local tg = self:getTalentTarget(t) local x, y, target = self:getTarget(tg) if not x or not y then return nil end - x, y = checkBackfire(self, x, y, t.paradox) + x, y = checkBackfire(self, x, y) -- bonus damage on targets with temporal destabilization local damage = t.getDamage(self, t) diff --git a/game/modules/tome/data/talents/chronomancy/spacetime-folding.lua b/game/modules/tome/data/talents/chronomancy/spacetime-folding.lua index 7a9adb750af5161518e75387226af144461dbef8..f848c8daf4c1def2128508c966fbb565daf8b378 100644 --- a/game/modules/tome/data/talents/chronomancy/spacetime-folding.lua +++ b/game/modules/tome/data/talents/chronomancy/spacetime-folding.lua @@ -61,7 +61,7 @@ newTalent{ local tg = {type="hit", range=self:getTalentRange(t)} local tx, ty, target = self:getTarget(tg) if not tx or not ty then return nil end - tx, ty = checkBackfire(self, tx, ty, t.paradox) + tx, ty = checkBackfire(self, tx, ty) if tx then local _ _, tx, ty = self:canProject(tg, tx, ty) if tx then @@ -157,7 +157,7 @@ newTalent{ local x, y = self:getTarget(tg) if not x or not y then return nil end if not self:hasLOS(x, y) or game.level.map:checkEntity(x, y, Map.TERRAIN, "block_move") then game.logSeen(self, "You can't move there.") return nil end - x, y = checkBackfire(self, x, y, t.paradox) + x, y = checkBackfire(self, x, y) local _ _, x, y = self:canProject(tg, x, y) -- indirect fire after the teleport from the x, y to our old starting spot would be best here diff --git a/game/modules/tome/data/talents/chronomancy/spacetime-weaving.lua b/game/modules/tome/data/talents/chronomancy/spacetime-weaving.lua index c82a74d56b2441da016b244e02148a22734d7430..6dfec11ad79707d632c1f7851641264328c18ec6 100644 --- a/game/modules/tome/data/talents/chronomancy/spacetime-weaving.lua +++ b/game/modules/tome/data/talents/chronomancy/spacetime-weaving.lua @@ -46,7 +46,7 @@ newTalent{ game.logSeen(self, "You do not have line of sight.") return nil end - x, y = checkBackfire(self, x, y, t.paradox) + x, y = checkBackfire(self, x, y) local __, x, y = self:canProject(tg, x, y) game.level.map:particleEmitter(self.x, self.y, 1, "temporal_teleport") diff --git a/game/modules/tome/data/talents/chronomancy/speed-control.lua b/game/modules/tome/data/talents/chronomancy/speed-control.lua index 542b354f64a51d55aba2ea8fe6723ef4d5ac1901..bffdd85ef285565e6db0022c7a4d216b88b6467b 100644 --- a/game/modules/tome/data/talents/chronomancy/speed-control.lua +++ b/game/modules/tome/data/talents/chronomancy/speed-control.lua @@ -60,7 +60,7 @@ newTalent{ local x, y = self:getTarget(tg) if not x or not y then return nil end local _ _, _, _, x, y = self:canProject(tg, x, y) - x, y = checkBackfire(self, x, y, t.paradox) + x, y = checkBackfire(self, x, y) local grids = self:project(tg, x, y, DamageType.STOP, t.getDuration(self, t)) self:project(tg, x, y, DamageType.TEMPORAL, self:spellCrit(t.getDamage(self, t))) @@ -102,7 +102,7 @@ newTalent{ local tg = self:getTalentTarget(t) local x, y = self:getTarget(tg) if not x or not y then return nil end - x, y = checkBackfire(self, x, y, t.paradox) + x, y = checkBackfire(self, x, y) local _ _, _, _, x, y = self:canProject(tg, x, y) -- Add a lasting map effect game.level.map:addEffect(self, @@ -136,7 +136,7 @@ newTalent{ cooldown = 24, tactical = { BUFF = 2, CLOSEIN = 2, ESCAPE = 2 }, no_energy = true, - getPower = function(self, t) return (self:combatTalentSpellDamage(t, 50, 100) * getParadoxModifier(self, pm)) / 100 end, + getPower = function(self, t) return (self:combatTalentSpellDamage(t, 20, 80) * getParadoxModifier(self, pm)) / 100 end, do_haste_double = function(self, t, x, y) -- Find space local tx, ty = util.findFreeGrid(x, y, 0, true, {[Map.ACTOR]=true}) diff --git a/game/modules/tome/data/talents/chronomancy/timeline-threading.lua b/game/modules/tome/data/talents/chronomancy/timeline-threading.lua index 364da50c5e91a9ecca3e3580d994e25bf65727f5..b56de250416a2a2ccbcd32e356e9662c0500b4d6 100644 --- a/game/modules/tome/data/talents/chronomancy/timeline-threading.lua +++ b/game/modules/tome/data/talents/chronomancy/timeline-threading.lua @@ -37,7 +37,8 @@ newTalent{ local reduction = t.getReduction(self, t) return ([[You begin to gather energy from other timelines, increasing spellpower by %0.2f on the first turn and %0.2f more each additional turn. The effect will end with the first attack, item, or talent used, otherwise the spell ends after five turns. - Eacn turn the effect is active your Paradox will be reduced by %d.]]):format(primary + (primary/5), primary/5, reduction) + Eacn turn the effect is active your Paradox will be reduced by %d. + This spell will not break Spactime Tuning, nor will it be broken by activating Spactime Tuning.]]):format(primary + (primary/5), primary/5, reduction) end, } diff --git a/game/modules/tome/data/talents/chronomancy/timetravel.lua b/game/modules/tome/data/talents/chronomancy/timetravel.lua index c0aa022e62791e288d57c5601a088c70088a8ff7..27e664fa2efe7d476edb73cff7e0c09db1ba7195 100644 --- a/game/modules/tome/data/talents/chronomancy/timetravel.lua +++ b/game/modules/tome/data/talents/chronomancy/timetravel.lua @@ -34,7 +34,7 @@ newTalent{ return duration end, - getReduction = function(self, t) return self:combatTalentSpellDamage(t, 30, 300) end, + getReduction = function(self, t) return self:combatTalentSpellDamage(t, 20, 200) end, action = function(self, t) self:incParadox (- t.getReduction(self, t)) game:playSoundNear(self, "talents/spell_generic") @@ -45,7 +45,6 @@ newTalent{ local reduction = t.getReduction(self, t) local duration = t.getDuration(self, t) return ([[By slightly reorganizing history you reduce your Paradox by %d and temporarily stabilize the timeline; allowing chronomancy to be used without chance of failure for %d turns.(backfires and anomalies may still occur). - Talent points invested in Static History will also reduce your chances of triggering an anomaly while using Spacetime Tuning. The paradox reduction will increase with your Spellpower.]]): format(reduction, duration) end, @@ -69,7 +68,7 @@ newTalent{ local tg = {type="hit", range=self:getTalentRange(t), talent=t} local x, y, _ = self:getTarget(tg) if not x or not y then return nil end - x, y = checkBackfire(self, x, y, t.paradox) + x, y = checkBackfire(self, x, y) _, x, y = self:canProject(tg, x, y) local target = x and game.level.map(x, y, engine.Map.ACTOR) or nil if not target then return nil end diff --git a/game/modules/tome/data/timed_effects/magical.lua b/game/modules/tome/data/timed_effects/magical.lua index 3cf3b5ca6776e3073d0e1418db9bff42c95e8942..7c26563e624699d6fc783692fb72075ef0948a01 100644 --- a/game/modules/tome/data/timed_effects/magical.lua +++ b/game/modules/tome/data/timed_effects/magical.lua @@ -1111,54 +1111,6 @@ newEffect{ end, } -newEffect{ - name = "SPACETIME_TUNING", image = "talents/spacetime_tuning.png", - desc = "Spacetime Tuning", - long_desc = function(self, eff) return "The target is retuning the fabric of spacetime; any damage will stop it." end, - type = "magical", - subtype = { temporal=true }, - status = "beneficial", - parameters = {}, - on_timeout = function(self, eff) - local t = self:getTalentFromId(self.T_SPACETIME_TUNING) - local anomaly = t.getAnomaly(self, t) - - -- first check for anomaly - if rng.percent(anomaly) and not game.zone.no_anomalies and eff.power > 0 then - -- Random anomaly - local ts = {} - for id, t in pairs(self.talents_def) do - if t.type[1] == "chronomancy/anomalies" then ts[#ts+1] = id end - end - if not silent then game.logPlayer(self, "You lose control and unleash an anomaly!") end - self:forceUseTalent(rng.table(ts), {ignore_energy=true}) - -- cancel tuning - self:removeEffect(self.EFF_SPACETIME_TUNING) - -- prevent abusive shananigans - elseif self.paradox > math.max(self:getWil() * 20, 500) and eff.power > 0 then - game.logPlayer(self, "Space time resists your will, you can raise Paradox no further.") - self:removeEffect(self.EFF_SPACETIME_TUNING) - else - self:incParadox(eff.power) - end - - end, - activate = function(self, eff) - -- energy gets used here instead of in the talent since the talent will use it when the dialog box pops up and mess with our daze - self:useEnergy() - -- set daze - eff.tmpid = self:addTemporaryValue("dazed", 1) - end, - deactivate = function(self, eff) - local modifier = self:paradoxChanceModifier() - local _, failure = self:paradoxFailChance() - local _, anomaly = self:paradoxAnomalyChance() - local _, backfire = self:paradoxBackfireChance() - self:removeTemporaryValue("dazed", eff.tmpid) - game.logPlayer(self, "Your current failure chance is %d%%, your current anomaly chance is %d%%, and your current backfire chance is %d%%.", failure, anomaly, backfire) - end, -} - newEffect{ name = "MANAWORM", image = "effects/manaworm.png", desc = "Manaworm", diff --git a/game/modules/tome/data/zones/last-hope-graveyard/zone.lua b/game/modules/tome/data/zones/last-hope-graveyard/zone.lua index da564654c3f90c505ccf11df07da260c4e4a5c70..4e36a8ca3266970305add1e9d006f24b1ff5c37d 100644 --- a/game/modules/tome/data/zones/last-hope-graveyard/zone.lua +++ b/game/modules/tome/data/zones/last-hope-graveyard/zone.lua @@ -89,9 +89,6 @@ return { if game._chronoworlds then game.log("#CRIMSON#Your timetravel has no effect on pre-determined outcomes such as this.") game._chronoworlds = nil - if who:isTalentActive(who.T_DOOR_TO_THE_PAST) then - who:forceUseTalent(who.T_DOOR_TO_THE_PAST, {ignore_energy=true}) - end end local r = rng.range(1, 100) if r <= 10 then