mirror of
https://github.com/Aurorastation/Aurora.3.git
synced 2026-07-29 08:42:34 +01:00
df0cd6189a
gamer time.
17 lines
431 B
Plaintext
17 lines
431 B
Plaintext
/obj/item/organ/internal/appendix
|
|
name = "appendix"
|
|
icon_state = "appendix"
|
|
parent_organ = BP_GROIN
|
|
organ_tag = "appendix"
|
|
|
|
/obj/item/organ/internal/appendix/removed()
|
|
if(owner)
|
|
var/inflamed = 0
|
|
for(var/datum/disease/appendicitis/appendicitis in owner.viruses)
|
|
inflamed = 1
|
|
appendicitis.cure()
|
|
owner.resistances += appendicitis
|
|
if(inflamed)
|
|
icon_state = "appendixinflamed"
|
|
name = "inflamed appendix"
|
|
..() |