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

Fix Mandible of Ungolmor

Fix Endless Woes


git-svn-id: http://svn.net-core.org/repos/t-engine4@6293 51575b47-30f0-44d4-a5cc-537603b46e54
parent 4410b962
No related branches found
No related tags found
No related merge requests found
......@@ -4252,7 +4252,7 @@ end
function _M:hasLOS(x, y, what, range, source_x, source_y)
source_x = source_x or self.x
source_y = source_y or self.y
if not x or not y then return false, source_x, source_y end
if not x or not y or not source_x or not source_y then return false, source_x, source_y end
what = what or "block_sight"
range = range or self.sight
......
......@@ -415,7 +415,6 @@ newEntity{ base = "BASE_KNIFE", define_as = "MANDIBLE_UNGOLMOR",
special_on_crit = {desc="inflicts pinning spydric poison upon the target", fct=function(combat, who, target)
if target:canBe("poison") then
local tg = {type="hit", range=1}
local x, y = who:getTarget(tg)
who:project(tg, target.x, target.y, engine.DamageType.SPYDRIC_POISON, {src=who, dam=30, dur=3})
end
end},
......
......@@ -112,7 +112,7 @@ uberTalent{
Any blight damage you do has a 20%% chance to cause a random disease, that deals %d%% of the initial damage for 5 turns and reduces a stat by %d.
Any darkness damage you do has a 20%% chance to blind the target for 5 turns.
Any temporal damage you do has a 20%% chance to slow (30%%) the target for 5 turns.
Any mind damage you do has a 20% chance to confuse (20%%) the target for 5 turns.
Any mind damage you do has a 20%% chance to confuse (20%%) the target for 5 turns.
This only triggers for hits over 150 damage.
Values increase with your Cunning.]])
:format(self:getCun() / 2.5, self:getCun() / 2, self:getCun() / 2.5, self:getCun() / 2)
......
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