Adds examine boxes. (#18370)

* Adds examine boxes.

* lint

* what kind of dreams did you dream?

* unlimited

* midgardsormr

* sdsd

* fixes

---------

Co-authored-by: Matt Atlas <liermattia@gmail.com>
This commit is contained in:
Matt Atlas
2024-02-11 21:58:20 +00:00
committed by GitHub
co-authored by Matt Atlas
parent d57c5e7c43
commit 4423d03f2f
296 changed files with 1317 additions and 1257 deletions
+3 -4
View File
@@ -235,14 +235,13 @@
return //no eating the limb until everything's been removed
return ..()
/obj/item/organ/external/examine(mob/user, distance, is_adjacent)
/obj/item/organ/external/get_examine_text(mob/user, distance, is_adjacent, infix, suffix)
. = ..()
if(distance <= 1)
for(var/obj/item/I in contents)
if(istype(I, /obj/item/organ))
continue
to_chat(usr, "<span class='danger'>There is \a [I] sticking out of it.</span>")
return
. += "<span class='danger'>There is \a [I] sticking out of it.</span>"
/obj/item/organ/external/attackby(obj/item/W as obj, mob/user as mob)
switch(stage)
@@ -869,7 +868,7 @@ Note that amputating the affected organ does in fact remove the infection from t
return null
/obj/item/organ/external/proc/covered_bleed_report(var/blood_type)
return "[owner.get_pronoun("has")] [blood_type] soaking through the clothes on their [src]!"
return "[owner.get_pronoun("has")] [blood_type] soaking through the clothes on [owner.get_pronoun("his")] [src]!"
//Updating wounds. Handles wound natural I had some free spachealing, internal bleedings and infections
/obj/item/organ/external/proc/update_wounds()