Skip to content

Commit

Permalink
vomitboys
Browse files Browse the repository at this point in the history
  • Loading branch information
AndroBetel committed Aug 20, 2024
1 parent 51c5474 commit 8230227
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 0 deletions.
1 change: 1 addition & 0 deletions code/modules/mob/living/carbon/human/human.dm
Original file line number Diff line number Diff line change
Expand Up @@ -978,6 +978,7 @@
nutrition -= 40
apply_damage(-3, TOX)
addtimer(VARSET_CALLBACK(src, lastpuke, FALSE), 35 SECONDS)
reagents.remove_any(rand(15, 30))

/mob/living/carbon/human/proc/get_visible_gender()
if(wear_suit && wear_suit.flags_inv_hide & HIDEJUMPSUIT && ((head && head.flags_inv_hide & HIDEMASK) || wear_mask))
Expand Down
6 changes: 6 additions & 0 deletions code/modules/reagents/chemistry_reagents/other.dm
Original file line number Diff line number Diff line change
Expand Up @@ -132,6 +132,12 @@
if(M.fire_stacks <= 0)
M.ExtinguishMob()

/datum/reagent/water/on_mob_life(mob/living/M)
. = ..()
if(ishuman(M) && volume >= 100 && prob(25))
var/mob/living/carbon/human/human = M
human.vomit()

/datum/reagent/water/holywater
name = "Holy Water"
id = "holywater"
Expand Down

0 comments on commit 8230227

Please sign in to comment.