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

Pulverizing Auger max range limited to 10

git-svn-id: http://svn.net-core.org/repos/t-engine4@6772 51575b47-30f0-44d4-a5cc-537603b46e54
parent 69ebb053
No related branches found
No related tags found
No related merge requests found
......@@ -56,7 +56,7 @@ newTalent{
points = 5,
mana = 15,
cooldown = 6,
range = function(self, t) return math.ceil(2 + self:getTalentLevel(t)) end,
range = function(self, t) return math.min(10, math.ceil(2 + self:getTalentLevel(t))) end,
tactical = { ATTACK = {PHYSICAL = 2} },
direct_hit = true,
requires_target = true,
......
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