Skip to content
Snippets Groups Projects
Commit d35f0b4b authored by razakai's avatar razakai
Browse files

More stuff.

parent e84d4889
No related branches found
No related tags found
No related merge requests found
......@@ -720,7 +720,7 @@ newTalent{
points = 5,
mode = "passive",
require = techs_dex_req4,
getSpeed = function(self, t) return math.floor(self:combatTalentLimit(t, 25, 5, 20))/100 end,
getSpeed = function(self, t) return math.floor(self:combatTalentLimit(t, 25, 5, 15))/100 end,
getTalentCount = function(self, t) return math.floor(self:combatTalentLimit(t, 4, 1, 2.5)) end,
getCooldown = function(self, t) return math.floor(self:combatTalentLimit(t, 5, 1, 3)) end,
proc = function(self, t)
......
......@@ -141,7 +141,7 @@ newTalent{
if not weapon then return end
local targets = self:archeryAcquireTargets(nil, {one_shot=true, x=target.x, y=target.y}) --Ammo check done here
if not targets then return end
if not target.turn_procs.intuitive_shots and not self:isTalentActive(self.T_CONCEALMENT) then self:archeryShoot(targets, t, nil, {mult=t.getDamage(self,t)}) end
if not target.turn_procs.intuitive_shots and not (self:isTalentActive(self.T_CONCEALMENT) or self:hasEffect(self.EFF_WILD_SPEED) or self:hasEffect(self.EFF_ESCAPE)) then self:archeryShoot(targets, t, nil, {mult=t.getDamage(self,t)}) end
target.turn_procs.intuitive_shots = true
self.energy.value = old
return true
......@@ -234,7 +234,7 @@ newTalent{
local power = t.getDamageReduction(self,t)
local speed = t.getSpeed(self,t)
local stamina = t.getStamina(self,t)
self:setEffect(self.EFF_ESCAPE, 4, {src=self, power=power, stamina=stamina, speed=speed})
game:onTickEnd(function() self:setEffect(self.EFF_ESCAPE, 4, {src=self, power=power, stamina=stamina, speed=speed}) end)
return true
end,
info = function(self, t)
......
......@@ -173,6 +173,7 @@ newTalent{
radius = function(self, t) return math.floor(self:combatTalentScale(t, 1, 2.7)) end,
getDamage = function(self, t) return self:combatTalentWeaponDamage(t, 1.1, 1.9) end,
getSightLoss = function(self, t) return math.floor(self:combatTalentScale(t,1, 6, "log", 0, 4)) end, -- 1@1 6@5
getCooldownReduction = function(self, t) return math.min(10, math.floor(self:combatTalentScale(t, 2, 8))) end,
target = function(self, t)
local weapon, ammo = self:hasArcheryWeapon()
return {type="ball", radius=self:getTalentRadius(t), range=self:getTalentRange(t), selffire=false, display=self:archeryDefaultProjectileVisual(weapon, ammo)}
......@@ -189,8 +190,8 @@ newTalent{
self:archeryShoot(targets, t, nil, {mult=dam})
game:onTickEnd(function()
if self:knowTalent(self.T_CONCEALMENT) and not self:isTalentActive(self.T_CONCEALMENT) then
self:alterTalentCoolingdown(self.T_CONCEALMENT, -20)
self:forceUseTalent(self.T_CONCEALMENT, {ignore_energy=true, ignore_cd=true, no_talent_fail=true, silent=true})
self:alterTalentCoolingdown(self.T_CONCEALMENT, -t.getCooldownReduction(self,t))
if not self:isTalentCoolingDown(self.T_CONCEALMENT) then self:forceUseTalent(self.T_CONCEALMENT, {ignore_energy=true, ignore_cd=true, no_talent_fail=true, silent=true}) end
end
end)
game.level.map:redisplay()
......@@ -200,10 +201,11 @@ newTalent{
local dam = t.getDamage(self,t)*100
local radius = self:getTalentRadius(t)
local sight = t.getSightLoss(self,t)
local cooldown = t.getCooldownReduction(self,t)
return ([[Fire an arrow tipped with a smoke bomb inflicting %d%% damage and creating a radius %d cloud of thick, disorientating smoke. Those caught within will be confused (power 50%%) and have their vision range reduced by %d for 5 turns.
You take advantage of this distraction to immediately enter Concealment, regardless of it's cooldown.
The distraction caused by this effect reduces the cooldown of your Concealment by %d turns. If the cooldown is reduced to 0, you instantly activate Concealment regardless of whether foes are too close.
The chance for the smoke bomb to affect your targets increases with your Accuracy.]]):
format(dam, radius, sight)
format(dam, radius, sight, cooldown)
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