mirror of
https://github.com/VOREStation/VOREStation.git
synced 2026-07-15 00:54:16 +01:00
Merge pull request #4959 from Screemonster/itsmostlywater
Makes drinking bleach bad for you
This commit is contained in:
@@ -319,6 +319,8 @@
|
||||
M.update_inv_wear_mask(0)
|
||||
if(ishuman(M))
|
||||
var/mob/living/carbon/human/H = M
|
||||
if(alien == IS_SLIME)
|
||||
M.adjustToxLoss(rand(5, 10))
|
||||
if(H.head)
|
||||
if(H.head.clean_blood())
|
||||
H.update_inv_head(0)
|
||||
@@ -336,6 +338,14 @@
|
||||
return
|
||||
M.clean_blood()
|
||||
|
||||
/datum/reagent/space_cleaner/affect_ingest(var/mob/living/carbon/M, var/alien, var/removed)
|
||||
if(alien == IS_SLIME)
|
||||
M.adjustToxLoss(6 * removed)
|
||||
else
|
||||
M.adjustToxLoss(3 * removed)
|
||||
if(prob(5))
|
||||
M.vomit()
|
||||
|
||||
/datum/reagent/lube // TODO: spraying on borgs speeds them up
|
||||
name = "Space Lube"
|
||||
id = "lube"
|
||||
|
||||
Reference in New Issue
Block a user