From 29f6c444c926ccf371ccffb0a7d311b984571f02 Mon Sep 17 00:00:00 2001 From: Screemonster Date: Mon, 6 Nov 2017 10:09:47 +0000 Subject: [PATCH] hunger feral tweak --- .../living/carbon/human/species/station/station_special_vr.dm | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/code/modules/mob/living/carbon/human/species/station/station_special_vr.dm b/code/modules/mob/living/carbon/human/species/station/station_special_vr.dm index 33777448d5d..edfa941d753 100644 --- a/code/modules/mob/living/carbon/human/species/station/station_special_vr.dm +++ b/code/modules/mob/living/carbon/human/species/station/station_special_vr.dm @@ -75,9 +75,11 @@ if(H.feral == 0) H << "Something in your mind flips, your instincts taking over, no longer able to fully comprehend your surroundings as survival becomes your primary concern - you must feed, survive, there is nothing else. Hunt. Eat. Hide. Repeat." log_and_message_admins("has gone feral due to hunger.", H) + H.feral += 5 //just put them over the threshold by a decent amount for the first chunk. if(H.stat == CONSCIOUS) H.emote("twitch") - H.feral = min(150-H.nutrition, H.feral+1) //Feralness increases while this hungry, capped at 50-150 depending on hunger. + if(H.feral + H.nutrition < 150) //Feralness increases while this hungry, capped at 50-150 depending on hunger. + H.feral += 1 // If they're hurt, chance of snapping. Not if they're straight-up KO'd though. if (H.stat == CONSCIOUS && H.traumatic_shock >=min(60, H.nutrition/10)) //at 360 nutrition, this is 30 brute/burn, or 18 halloss. Capped at 50 brute/30 halloss - if they take THAT much, no amount of satiation will help them. Also they're fat.