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

Fix knife&exotic masteries

git-svn-id: http://svn.net-core.org/repos/t-engine4@4670 51575b47-30f0-44d4-a5cc-537603b46e54
parent c5d14297
No related branches found
No related tags found
No related merge requests found
......@@ -841,10 +841,10 @@ function _M:combatPhysicalpower(mod)
add = add + 5 * self:getTalentLevel(Talents.T_WEAPONS_MASTERY)
end
if self:knowTalent(Talents.T_KNIFE_MASTERY) then
add = add + 5 * self:getTalentLevel(Talents.T_WEAPONS_MASTERY)
add = add + 5 * self:getTalentLevel(Talents.T_KNIFE_MASTERY)
end
if self:knowTalent(Talents.T_EXOTIC_WEAPONS_MASTERY) then
add = add + 5 * self:getTalentLevel(Talents.T_WEAPONS_MASTERY)
add = add + 5 * self:getTalentLevel(Talents.T_EXOTIC_WEAPONS_MASTERY)
end
if self:knowTalent(Talents.T_UNARMED_MASTERY) then
add = add + 5 * self:getTalentLevel(Talents.T_UNARMED_MASTERY)
......
......@@ -107,7 +107,7 @@ newTalent{
info = function(self, t)
local damage = t.getDamage(self, t)
local inc = t.getPercentInc(self, t)
return ([[Increases Physical Power by %d. Also increases damage done with swords, axes, maces, knives, and exotic weapons by %d%%]]):
return ([[Increases Physical Power by %d. Also increases damage done with swords, axes, maces by %d%%]]):
format(damage, 100*inc)
end,
}
......
No preview for this file type
No preview for this file type
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