"Summoned tentacle falls you notice that XXX..."

Have a really dumb question? Ask it here to get help from the experts (or those with too much time on their hands)

Moderator: Moderator

Post Reply
Message
Author
seewen
Wayist
Posts: 28
Joined: Mon Jan 11, 2016 10:07 am

"Summoned tentacle falls you notice that XXX..."

#1 Post by seewen »

"As Summoned tentacle falls you notice that XXX seems to shudder in pain!"

Already my 3rd Death with this character (Oozemancer, Halfing), which dies Oneshotted (from 100 to 0).
And nothing in the log about any damage received (3 differents ennemis, in Norgos Lair)

And everytime I read the same thing (different name of ennemy, different attack on the tentacle):
Whatever The brown bear uses Mind Sear.
As summoned tentacle falls you notice that XXX seems to shudder in pain!
XXX is recovering from the damage!
XXX tries to evade attacks.
Whatever the brown bear hit summoned tentacle for 44 mind damage.
XXX the level 8 halfling oozemancer was battered to death by Whatever the brown bear on level 2 of Norgos Lair.

There's a chance for a character using "Summon tentacle" to die if the tentacle die ?!?
(No damage on my character in the log. Nothing. Not even a debuff).
Someone knows what's happened ?

Radon26
Sher'Tul
Posts: 1439
Joined: Mon Jun 23, 2014 11:50 am

Re: "Summoned tentacle falls you notice that XXX..."

#2 Post by Radon26 »

there are attacks that take have a chance of instakill, although thats... well, chance.

as for tentacle, i am pretty sure losing a tentacle takes a % of your max health, so it shouldn't be possible to drop from 100% to 0.
the only way that could work is if the bear, SOMEHOW, managed to kill the tentacle multiple times, although that should show in the log if that happened.

edit

Code: Select all

	on_die = function(self, who)
		if self.summoner and not self.summoner.dead and who then
			self:logCombat(self.summoner, "#AQUAMARINE#As #Source# falls you notice that #Target# seems to shudder in pain!")
			if self.summoner.is_grgglck then
				self.summoner:takeHit(self.max_life, who)
			else
				self.summoner:takeHit(self.max_life * 0.66, who)
			end
		end
	end,
is that a 66% of max life?!

Sheila
Magical Girl
Posts: 431
Joined: Wed Aug 27, 2014 11:36 am

Re: "Summoned tentacle falls you notice that XXX..."

#3 Post by Sheila »

Radon26 wrote:there are attacks that take have a chance of instakill, although thats... well, chance.

as for tentacle, i am pretty sure losing a tentacle takes a % of your max health, so it shouldn't be possible to drop from 100% to 0.
the only way that could work is if the bear, SOMEHOW, managed to kill the tentacle multiple times, although that should show in the log if that happened.

edit

Code: Select all

	on_die = function(self, who)
		if self.summoner and not self.summoner.dead and who then
			self:logCombat(self.summoner, "#AQUAMARINE#As #Source# falls you notice that #Target# seems to shudder in pain!")
			if self.summoner.is_grgglck then
				self.summoner:takeHit(self.max_life, who)
			else
				self.summoner:takeHit(self.max_life * 0.66, who)
			end
		end
	end,
is that a 66% of max life?!
I believe it's 66% of the max life of the tentacle, which is very lethal early on but quickly falls off :)
"As dying is one of the leading causes of death, you should avoid dying." -rekenner

"I'll bond with a cactus until my buttcheeks touch the sand before I play nethack again" -Gagarin

seewen
Wayist
Posts: 28
Joined: Mon Jan 11, 2016 10:07 am

Re: "Summoned tentacle falls you notice that XXX..."

#4 Post by seewen »

Ohhh thanks a lot.
Now it suddenly makes sense. !

My character max life 171.
Tentacle max life 262.


262 * 0.66 = 172.92 :-)

I'm no coder, but reading piece of code, I understand it's somehow related to luck ?
You know how many % chance for this event to happend ? (beccause it happened to me 3 times in the same dungeon).

Micbran
Sher'Tul
Posts: 1154
Joined: Sun Jun 15, 2014 12:19 am
Location: Yeehaw, pardner

Re: "Summoned tentacle falls you notice that XXX..."

#5 Post by Micbran »

No luck, from what I can see.
A little bit of a starters guide written by yours truly here.

Radon26
Sher'Tul
Posts: 1439
Joined: Mon Jun 23, 2014 11:50 am

Re: "Summoned tentacle falls you notice that XXX..."

#6 Post by Radon26 »

there are talents, that have a chance of instakill.

this talent isn't a chance.
if tentacle is killed, you take a hit.

and the talent's that do have a chance to instakill, are either "must already be below", "if bring below," or "hit for at least % of max", or for you to have a certain status effect on.
all instakill talent's have a condition.

Patashu
Higher
Posts: 74
Joined: Tue Dec 18, 2012 3:54 am

Re: "Summoned tentacle falls you notice that XXX..."

#7 Post by Patashu »

I thought that all players had 100% instakill resistance anyway.

Dopaminka
Halfling
Posts: 116
Joined: Fri Jan 01, 2016 2:23 pm

Re: "Summoned tentacle falls you notice that XXX..."

#8 Post by Dopaminka »

It should be visible in the log... I had no idea losing a tentacle makes you lose HP and recently lost a character to that as well.

Sheila
Magical Girl
Posts: 431
Joined: Wed Aug 27, 2014 11:36 am

Re: "Summoned tentacle falls you notice that XXX..."

#9 Post by Sheila »

Patashu wrote:I thought that all players had 100% instakill resistance anyway.
Instakill doesn't refer to dying in one hit of damage, it refers to not dying to things like Swallow that end you if you go below a certain % of health.
There are also other things affected by instakill immunity, such as Stone Touch.

And yeah, there's no luck involved, if the tentacle dies, you take damage.
It wasn't that hard for me to figure out that you take damage when your tentacle dies honestly, but I don't see any harm in pointing it out in the tooltip.
Last edited by Sheila on Sat Oct 15, 2016 10:45 pm, edited 1 time in total.
"As dying is one of the leading causes of death, you should avoid dying." -rekenner

"I'll bond with a cactus until my buttcheeks touch the sand before I play nethack again" -Gagarin

HousePet
Perspiring Physicist
Posts: 6215
Joined: Sun Sep 09, 2012 7:43 am

Re: "Summoned tentacle falls you notice that XXX..."

#10 Post by HousePet »

Dopaminka wrote:It should be visible in the log... I had no idea losing a tentacle makes you lose HP and recently lost a character to that as well.
Might be better to not give players access to special boss specific talents.
If people really want to play with tentacles; make a safer copy of the talent that isn't tied to the method for killing that boss.
My feedback meter decays into coding. Give me feedback and I make mods.

Zicher
Thalore
Posts: 120
Joined: Mon Jun 23, 2014 1:02 pm

Re: "Summoned tentacle falls you notice that XXX..."

#11 Post by Zicher »

seewen wrote:'m no coder, but reading piece of code, I understand it's somehow related to luck ?
Grgglck is one particulrly nasty unique enemy, if you mean that. I see nothing else even closely related to luck in the code :).
A bus station is a place where buses stop.
A train station is a place where trains stop.
On my table, there is a workstation ...

seewen
Wayist
Posts: 28
Joined: Mon Jan 11, 2016 10:07 am

Re: "Summoned tentacle falls you notice that XXX..."

#12 Post by seewen »

Zicher wrote:
seewen wrote:'m no coder, but reading piece of code, I understand it's somehow related to luck ?
Grgglck is one particulrly nasty unique enemy, if you mean that. I see nothing else even closely related to luck in the code :).
:D . You understood me well.

Radon26
Sher'Tul
Posts: 1439
Joined: Mon Jun 23, 2014 11:50 am

Re: "Summoned tentacle falls you notice that XXX..."

#13 Post by Radon26 »

its probably because of the "on_die" part, since for some bizarre (as in unknown to me) reason, instead of dice, D&D players say die.

confused me the first few times i heard it, only in the other way.

Post Reply