Files
CHOMPStation2/modular_chomp/code/modules/mob/living/silicon/robot/robot.dm
2023-11-23 11:51:59 +01:00

11 lines
369 B
Plaintext

/mob/living/silicon/robot/verb/purge_nutrition()
set name = "Purge Nutrition"
set category = "IC"
set desc = "Allows you to clear out most of your nutrition if needed."
if (stat != CONSCIOUS || nutrition <= 1000)
return
nutrition = 1000
to_chat(src, "<span class='warning'>You have purged most of the nutrition lingering in your systems.</span>")
return TRUE