Skip to content
Snippets Groups Projects
Commit 8a95ef7c authored by Eric Wykoff's avatar Eric Wykoff
Browse files

thread walk now gives out of phase bonuses on teleport

parent c7c2b584
No related branches found
No related tags found
No related merge requests found
......@@ -24,7 +24,7 @@ newTalent{
type = {"chronomancy/threaded-combat", 1},
require = chrono_req_high1,
points = 5,
cooldown = function(self, t) return 20 - math.floor(self:combatTalentLimit(t, 16, 2, 14)) end,
cooldown = 10,
paradox = function (self, t) return getParadoxCost(self, t, 10) end,
tactical = { ATTACK = {weapon = 2}, CLOSEIN = 2, ESCAPE = 2 },
requires_target = true,
......@@ -36,8 +36,21 @@ newTalent{
is_melee = function(self, t) return not self:hasArcheryWeapon("bow") end,
speed = function(self, t) return self:hasArcheryWeapon("bow") and "archery" or "weapon" end,
getDamage = function(self, t) return self:combatTalentWeaponDamage(t, 1, 1.5) end,
getTeleportRange = function(self, t) return math.floor(self:combatTalentScale(t, 4, 8, 0.5, 0, 1)) end,
getDefense = function(self, t) return self:combatTalentStatDamage(t, "mag", 10, 50) end,
getResist = function(self, t) return self:combatTalentStatDamage(t, "mag", 10, 25) end,
getReduction = function(self, t) return self:combatTalentStatDamage(t, "mag", 10, 25) end,
on_pre_use = function(self, t, silent) if self:attr("disarmed") then if not silent then game.logPlayer(self, "You require a weapon to use this talent.") end return false end return true end,
passives = function(self, t, p)
self:talentTemporaryValue(p, "defense_on_teleport", t.getDefense(self, t))
self:talentTemporaryValue(p, "resist_all_on_teleport", t.getResist(self, t))
self:talentTemporaryValue(p, "effect_reduction_on_teleport", t.getReduction(self, t))
end,
callbackOnStatChange = function(self, t, stat, v)
if stat == self.STAT_MAG then
self:updateTalentPassives(t)
end
end,
archery_onhit = function(self, t, target, x, y)
game:onTickEnd(function()
game.level.map:particleEmitter(self.x, self.y, 1, "temporal_teleport")
......@@ -69,7 +82,7 @@ newTalent{
if hitted then
-- Find our teleport location
local dist = t.getTeleportRange(self, t) / core.fov.distance(x, y, self.x, self.y)
local dist = 10 / core.fov.distance(x, y, self.x, self.y)
local destx, desty = math.floor((self.x - x) * dist + x), math.floor((self.y - y) * dist + y)
local l = core.fov.line(x, y, destx, desty, false)
local lx, ly, is_corner_blocked = l:step()
......@@ -100,10 +113,13 @@ newTalent{
end,
info = function(self, t)
local damage = t.getDamage(self, t) * 100
local range = t.getTeleportRange(self, t)
return ([[Attack with your bow or dual-weapons for %d%% damage.
If you shoot an arrow you'll teleport near any target hit. If you hit with either of your dual-weapons you'll teleport up to %d tiles away from the target.]])
:format(damage, range)
local defense = t.getDefense(self, t)
local resist = t.getResist(self, t)
local reduction = t.getReduction(self, t)
return ([[Attack with your bow or dual-weapons for %d%% damage. If you shoot an arrow you'll teleport near any target hit. If you hit with either of your dual-weapons you'll teleport up to ten tiles away from the target.
Additionally you now go Out of Phase for five turns after any teleport, gaining %d defense, %d%% resist all, and reducing the duration of new detrimental effects by %d%%.
The Out of Phase bonuses will scale with your Magic stat.]])
:format(damage, defense, resist, reduction)
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