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

archery

git-svn-id: http://svn.net-core.org/repos/t-engine4@352 51575b47-30f0-44d4-a5cc-537603b46e54
parent 760078ab
No related branches found
No related tags found
No related merge requests found
-- Default archery attack
newTalent{
name = "Critical Shot",
type = {"technique/archery-training", 4},
name = "Shoot",
type = {"technique/archery-training", 1},
no_energy = true,
hide = true,
points = 1,
range = 20,
action = function(self, t)
local weapon = self:hasArcheryWeapon()
if not weapon then
game.logPlayer(self, "You must wield a bow or a sling!")
return nil
end
local tg = {type="bolt", range=self:getTalentRange(t), min_range=5 - self:getTalentLevelRaw(self.T_POINT_BLANK_SHOT)}
local x, y, target = self:getTarget(tg)
if not x or not y or not target then return nil end
-- First attack with offhand
local speed, hit = self:attackTargetWith(target, offweapon.combat, nil, 1.2 + self:getTalentLevel(t) / 10)
-- Second attack with mainhand
if hit then
if target:checkHit(self:combatAttackDex(weapon.combat), target:combatPhysicalResist(), 0, 95, 5 - self:getTalentLevel(t) / 2) and target:canBe("stun") then
target:setEffect(target.EFF_STUNNED, 2 + self:getTalentLevel(t), {})
else
game.logSeen(target, "%s resists the stunning strike!", target.name:capitalize())
end
-- Attack after the stun, to benefit from backstabs
self:attackTargetWith(target, weapon.combat, nil, 1.2 + self:getTalentLevel(t) / 10)
end
self:archeryShoot()
return true
end,
info = function(self, t)
return ([[Increases attack speed by %0.2f, but drains stamina quickly.]]):format(-0.1 - self:getTalentLevel(t) / 14)
return ([[Shoot your bow or sling!]])
end,
}
newTalent{
name = "Point Blank Shot",
name = "Steady Shot",
type = {"technique/archery-training", 1},
mode = "passive",
no_energy = true,
points = 5,
cooldown = 3,
stamina = 8,
require = techs_dex_req1,
action = function(self, t)
self:archeryShoot(nil, 1.2 + self:getTalentLevel(t) / 5)
return true
end,
info = function(self, t)
return ([[Allows to fire at shorter range, reducing your dead-zone to %d.]]):format(5 - self:getTalentLevelRaw(t))
return ([[A steady shot, doing %d%% damage.]]):format((1.2 + self:getTalentLevel(t) / 5) * 100)
end,
}
......@@ -72,7 +56,8 @@ newTalent{
return true
end,
info = function(self, t)
return ([[You enter a calm, focused, stance, increasing your damage(+%d), attack(+%d), armor peneration(+%d) and critical chance(+%d%%) but reducing your firing speed by %0.2f.]]):format(4 + (self:getTalentLevel(t) * self:getDex()) / 20)
return ([[You enter a calm, focused, stance, increasing your damage(+%d), attack(+%d), armor peneration(+%d) and critical chance(+%d%%) but reducing your firing speed by %0.2f.]]):
format(4 + (self:getTalentLevel(t) * self:getDex()) / 20)
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