Merge pull request #16895 from lewcc/vomit-comet

Nutriment Pump Implants make you projectile vomit when EMPed
This commit is contained in:
variableundefined
2021-11-05 08:38:30 -05:00
committed by GitHub
2 changed files with 37 additions and 13 deletions
@@ -300,14 +300,22 @@
var/hunger_threshold = NUTRITION_LEVEL_STARVING
var/synthesizing = 0
var/poison_amount = 5
var/disabled_by_emp = FALSE
slot = "stomach"
origin_tech = "materials=2;powerstorage=2;biotech=2"
/obj/item/organ/internal/cyberimp/chest/nutriment/examine(mob/user)
. = ..()
if(emp_proof)
. += " The implant has been hardened. It is invulnerable to EMPs."
/obj/item/organ/internal/cyberimp/chest/nutriment/on_life()
if(!owner)
return
if(synthesizing)
return
if(disabled_by_emp)
return
if(owner.stat == DEAD)
return
if(owner.nutrition <= hunger_threshold)
@@ -319,11 +327,20 @@
/obj/item/organ/internal/cyberimp/chest/nutriment/proc/synth_cool()
synthesizing = FALSE
/obj/item/organ/internal/cyberimp/chest/nutriment/proc/emp_cool()
disabled_by_emp = FALSE
/obj/item/organ/internal/cyberimp/chest/nutriment/emp_act(severity)
if(!owner || emp_proof)
return
owner.vomit(100, FALSE, TRUE, 3, FALSE) // because when else do we ever use projectile vomiting
owner.visible_message("<span class='warning'>The contents of [owner]'s stomach erupt violently from [owner.p_their()] mouth!</span>",
"<span class='warning'>You feel like your insides are burning as you vomit profusely!</span>",
"<span class='warning'>You hear vomiting and a sickening splattering against the floor!</span>")
owner.reagents.add_reagent("????",poison_amount / severity) //food poisoning
to_chat(owner, "<span class='warning'>You feel like your insides are burning.</span>")
disabled_by_emp = TRUE // Disable the implant for a little bit so this effect actually matters
synthesizing = FALSE
addtimer(CALLBACK(src, .proc/emp_cool), 60 SECONDS)
/obj/item/organ/internal/cyberimp/chest/nutriment/plus
name = "Nutriment pump implant PLUS"
@@ -333,6 +350,13 @@
hunger_threshold = NUTRITION_LEVEL_HUNGRY
poison_amount = 10
origin_tech = "materials=4;powerstorage=3;biotech=3"
/obj/item/organ/internal/cyberimp/chest/nutriment/hardened
name = "hardened nutrient pump implant"
emp_proof = TRUE
/obj/item/organ/internal/cyberimp/chest/nutriment/plus/hardened
name = "hardened nutrient pump implant PLUS"
emp_proof = TRUE
/obj/item/organ/internal/cyberimp/chest/reviver
name = "Reviver implant"