I always thought that 100% immunity meant that that particular type of attack couldn't affect me.
But a recent (1.4.6, offline) character got blinded by a Dark surprise attack even though he wore Eye of the Forrest which grants 100% immunity to blindness.
Is there such a thing as blindness resistance penetration?
100% Immunity: bug or misunderstanding?
Moderator: Moderator
Re: 100% Immunity: bug or misunderstanding?
There is not, but another effect could lower your blindness resistance.
Another option is that it doesn't check immunity, but the code does the check.
Another option is that it doesn't check immunity, but the code does the check.
My feedback meter decays into coding. Give me feedback and I make mods.
Re: 100% Immunity: bug or misunderstanding?
There's a debuff called Breach which reduces blind resistance. In addition, a few, rare debuffs may ignore resists. If you know what sort of talent or mob caused it I could tell you.
Re: 100% Immunity: bug or misunderstanding?
The talent was Dark surprise, the mob was Argoniel himself (who then continued to slaughter me.)Razakai wrote:There's a debuff called Breach which reduces blind resistance. In addition, a few, rare debuffs may ignore resists. If you know what sort of talent or mob caused it I could tell you.
Re: 100% Immunity: bug or misunderstanding?
Code: Select all
if hit2 and target:canBe("blind") then
target:setEffect(target.EFF_BLINDED, 4, {apply_power=self:combatPhysicalpower()})
else
game.logSeen(self, "%s resists the darkness.", target.name:capitalize())
end