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

Corrupted Strength and Dual Weapon Training description fixed

git-svn-id: http://svn.net-core.org/repos/t-engine4@5901 51575b47-30f0-44d4-a5cc-537603b46e54
parent 9ae2163b
No related branches found
No related tags found
No related merge requests found
......@@ -36,7 +36,7 @@ newTalent{
info = function(self, t)
return ([[Allows you to dual wield any type of one handed weapons and increases the damage of the off-hand weapon to %d%%.
Also casting a spell (which uses a turn) will give a free melee attack at a random target in melee range for %d%% blight damage.]]):
format(100 / (2 - self:getTalentLevel(t) / 9), 100 * self:combatTalentWeaponDamage(t, 0.5, 1.1))
format(100 / (2 - (math.min(self:getTalentLevel(t), 8) / 9)), 100 * self:combatTalentWeaponDamage(t, 0.5, 1.1))
end,
}
......
......@@ -24,7 +24,7 @@ newTalent{
points = 5,
require = techs_dex_req1,
info = function(self, t)
return ([[Increases the damage of the off-hand weapon to %d%%.]]):format(100 / (2 - self:getTalentLevel(t) / 6))
return ([[Increases the damage of the off-hand weapon to %d%%.]]):format(100 / (2 - (math.min(self:getTalentLevel(t), 8) / 6)))
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