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

Fix Shadow Mages description

git-svn-id: http://svn.net-core.org/repos/t-engine4@4246 51575b47-30f0-44d4-a5cc-537603b46e54
parent 2d8fc34b
No related branches found
No related tags found
No related merge requests found
......@@ -505,22 +505,10 @@ newTalent{
local closeAttackSpellChance = t.getCloseAttackSpellChance(self, t)
local farAttackSpellChance = t.getFarAttackSpellChance(self, t)
local level = self:getTalentLevelRaw(t)
if level < 3 then
return ([[Infuse magic into your shadows to give them fearsome spells.
Your shadows can strike adjacent foes with Lightning (%d%% chance at range 1).
At 3 talent points they will gain Flames and at 5 talent points they will gain Reform.]]):format(closeAttackSpellChance)
elseif level < 5 then
return ([[Infuse magic into your shadows to give them fearsome spells.
Your shadows can strike adjacent foes with Lightning (%d%% chance at range 1).
Your shadows can sear their enemies from a distance with Flames (%d%% chance at range 2 to 6).
At 5 talent points they will gain Reform.]]):format(closeAttackSpellChance, farAttackSpellChance)
else
return ([[Infuse magic into your shadows to give them fearsome spells.
Your shadows can strike adjacent foes with Lightning (%d%% chance at range 1).
Your shadows can sear their enemies from a distance with Flames (%d%% chance at range 2 to 6).
When your shadows are struck down they will attempt to Reform, becoming whole again.]]):format(closeAttackSpellChance, farAttackSpellChance)
end
return ([[Infuse magic into your shadows to give them fearsome spells.
Your shadows can strike adjacent foes with Lightning (%d%% chance at range 1).
At level 3 your shadows can sear their enemies from a distance with Flames (%d%% chance at range 2 to 6).
At level 5 when your shadows are struck down they will attempt to Reform, becoming whole again.]]):format(closeAttackSpellChance, farAttackSpellChance)
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