Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions STALKER 12/code/modules/food&drinks/drinks/drinks.dm
Original file line number Diff line number Diff line change
Expand Up @@ -46,6 +46,7 @@
var/fraction = min(gulp_size/reagents.total_volume, 1)
reagents.reaction(M, INGEST, fraction)
reagents.trans_to(M, gulp_size)
M.bladder += reagents.total_volume * 2 //For pissing
playsound(M.loc,'sound/items/drink.ogg', rand(10,50), 1)
return 1

Expand Down
8 changes: 8 additions & 0 deletions STALKER 12/code/modules/mob/living/carbon/human/emote.dm
Original file line number Diff line number Diff line change
Expand Up @@ -317,6 +317,14 @@
message = "<B>[src]</B> yawns."
m_type = 2

if ("shit","shits")
handle_shit()
m_type = 1

if ("piss","pisses")
handle_piss()
m_type = 1

if("wag","wags")
if(dna && dna.species && (("tail_lizard" in dna.species.mutant_bodyparts) || ((dna.features["tail_human"] != "None") && !("waggingtail_human" in dna.species.mutant_bodyparts))))
message = "<B>[src]</B> wags \his tail."
Expand Down
1 change: 1 addition & 0 deletions STALKER 12/code/modules/mob/living/carbon/human/species.dm
Original file line number Diff line number Diff line change
Expand Up @@ -643,6 +643,7 @@
H.Jitter(5)
hunger_rate = 3 * HUNGER_FACTOR
H.nutrition = max (0, H.nutrition - hunger_rate)
H.bowels += H.nutrition * 0.003 //For pooping

if (H.nutrition > NUTRITION_LEVEL_FULL)
if(H.overeatduration < 600) //capped so people don't take forever to unfat
Expand Down
Loading