Le Kidney Beans (#7672)

rscadd: "Adds the ability to remove appendix and other organs in character setup."
    rscadd: "Adds two kidneys! Splits the work up between the two organs."

Also adds the ability for a mechanical liver and kidneys,appendix
This commit is contained in:
Lady Fowl
2019-12-17 07:22:08 -08:00
committed by Erki
parent 609cccbf09
commit fce3617857
16 changed files with 121 additions and 23 deletions

View File

@@ -284,7 +284,7 @@ obj/item/gun/energy/staff/focus/attack_self(mob/living/user as mob)
if(!user.is_wizard())
if(istype(user, /mob/living/carbon/human))
var/mob/living/carbon/human/H = user
var/obj/item/organ/O = H.internal_organs_by_name[pick(H.species.vision_organ || BP_EYES,"appendix",BP_KIDNEYS,BP_LIVER, BP_HEART, BP_LUNGS, BP_BRAIN)]
var/obj/item/organ/O = H.internal_organs_by_name[pick(H.species.vision_organ || BP_EYES,BP_APPENDIX,BP_LKIDNEY,BP_RKIDNEY,BP_LIVER, BP_HEART, BP_LUNGS, BP_BRAIN)]
if(O == null)
to_chat(user, "<span class='notice'>You can't make any sense of the arcane glyphs... maybe you should try again.</span>")
else