mirror of
https://github.com/ParadiseSS13/Paradise.git
synced 2026-08-22 03:27:05 +01:00
- Makes organ stumps amputatable. (Seriously, why the fuck were they not? You NEED to remove them to attach new limbs, including heads.) - Removes organ rejection (But muh reelizms! No, fuck that, test dummies were rejecting their own organs and dying. Why did this even exist? - Organs removed from a body take SIGNIFICANTLY longer to take damage and decay now. That brain you just removed will actually be transplantable a minute later.
23 lines
657 B
Plaintext
23 lines
657 B
Plaintext
/obj/item/organ/external/stump
|
|
name = "limb stump"
|
|
icon_name = ""
|
|
cannot_amputate = 0 //You need to remove stumps to attach new limbs, but you can't remove stumps... What the fuck?
|
|
|
|
/obj/item/organ/external/stump/New(var/mob/living/carbon/holder, var/internal, var/obj/item/organ/external/limb)
|
|
if(istype(limb))
|
|
limb_name = limb.limb_name
|
|
body_part = limb.body_part
|
|
amputation_point = limb.amputation_point
|
|
parent_organ = limb.parent_organ
|
|
wounds = limb.wounds
|
|
..(holder, internal)
|
|
if(istype(limb))
|
|
max_damage = limb.max_damage
|
|
|
|
/obj/item/organ/external/stump/is_stump()
|
|
return 1
|
|
|
|
/obj/item/organ/external/stump/removed()
|
|
..()
|
|
del(src)
|