Page 1 of 1

1.05 indescernible anatomy - no confusion and cuts resist

Posted: Wed Dec 11, 2013 11:49 am
by Tharsonius
yea the oozemancer passive doesnt grant confusion and cuts(bleeding?) - if cuts is wounds and doesnt show under defense tab an addition:

i checked my values after saving the yeek in ruined halfling complex and now have 10% confusion resistance, lvl 1 indescernible anatomy - should have 33%

more infos: thalore, i500 addon latest release

while the talent seems overpowered anyway the text needs update if confusion resistance was removed

Re: 1.05 indescernible anatomy - no confusion and cuts resis

Posted: Wed Dec 11, 2013 6:14 pm
by Hachem_Muche
Thought this was fixed.

Code: Select all

 game/modules/tome/data/talents/gifts/ooze.lua | 4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)

diff --git a/game/modules/tome/data/talents/gifts/ooze.lua b/game/modules/tome/data/talents/gifts/ooze.lua
index aeb948a..10b354d 100644
--- a/game/modules/tome/data/talents/gifts/ooze.lua
+++ b/game/modules/tome/data/talents/gifts/ooze.lua
@@ -231,12 +231,14 @@ newTalent{
 		self:talentTemporaryValue(p, "blind_immune", t.immunities(self, t))
 		self:talentTemporaryValue(p, "poison_immune", t.immunities(self, t))
 		self:talentTemporaryValue(p, "disease_immune", t.immunities(self, t))
+		self:talentTemporaryValue(p, "cut_immune", t.immunities(self, t))
+		self:talentTemporaryValue(p, "confusion_immune", t.immunities(self, t))
 		self:talentTemporaryValue(p, "ignore_direct_crits", t.critResist(self, t))
 	end,
 	info = function(self, t)
 		return ([[Your body's internal organs are melded together, disguising your vital areas.
 		All direct critical hits (physical, mental, spells) against you have a %d%% lower Critical multiplier (but always do at least normal damage).
-		In addition you gain %d%% disease, poison, cuts, confusion and blindness resistances.]]):
+		In addition you gain %d%% disease, poison, bleeding, confusion and blindness resistances.]]):
 		format(t.critResist(self, t), 100*t.immunities(self, t))
 	end,
 }