Files
CRUNCH da1ebd039d Adds Materials to Every Autolathe and Protolathe Item (except for ammo boxes, IK mags, and Dart Boxes) (#31445)
* Holy fuck there's so much shit I'm not even done

* oh god there's so many

* it is done

* Update autolathe_designs.dm

* Update circuitboard.dm
2026-01-30 21:25:40 +00:00

27 lines
911 B
Plaintext

/obj/item/organ/internal/kidneys
name = "kidneys"
icon_state = "kidneys"
gender = PLURAL
organ_tag = "kidneys"
parent_organ = "groin"
slot = "kidneys"
/obj/item/organ/internal/kidneys/cybernetic
name = "cybernetic kidneys"
icon_state = "kidneys-c"
desc = "An electronic device designed to mimic the functions of human kidneys. It has no benefits over a pair of organic kidneys, but is easy to produce."
origin_tech = "biotech=4"
materials = list(MAT_METAL = 500, MAT_GLASS = 500)
status = ORGAN_ROBOT
/obj/item/organ/internal/kidneys/cybernetic/upgraded
name = "upgraded cybernetic kidneys"
icon_state = "kidneys-c-u"
desc = "An electronic device designed to mimic the functions of human kidneys. It passively heals any toxin damage the user might have."
origin_tech = "biotech=5"
/obj/item/organ/internal/kidneys/cybernetic/upgraded/on_life()
if(!owner)
return
owner.adjustToxLoss(-0.4)