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

Fix crippling shot description

git-svn-id: http://svn.net-core.org/repos/t-engine4@2522 51575b47-30f0-44d4-a5cc-537603b46e54
parent f4248e4f
No related branches found
No related tags found
No related merge requests found
......@@ -238,7 +238,7 @@ newTalent{
return true
end,
info = function(self, t)
return ([[You fire a crippling shot, doing %d%% damage and reducing your target's speed by %d%% for 7 turns.]]):format(self:combatTalentWeaponDamage(t, 1, 1.5) * 100, util.bound((self:combatAttack() * 0.15 * self:getTalentLevel(t)) / 100, 0.1, 0.4))
return ([[You fire a crippling shot, doing %d%% damage and reducing your target's speed by %d%% for 7 turns.]]):format(self:combatTalentWeaponDamage(t, 1, 1.5) * 100, util.bound((self:combatAttack() * 0.15 * self:getTalentLevel(t)) / 100, 0.1, 0.4) * 100)
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