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
@@ -22,12 +22,12 @@
lich = null
return ..()
/obj/item/phylactery/examine(mob/user)
/obj/item/phylactery/get_examine_text(mob/user, distance, is_adjacent, infix, suffix)
. = ..()
if(!lich)
to_chat(user, "The heart is inert.")
. += "The heart is inert."
else
to_chat(user, "The heart is pulsing slowly.")
. += "The heart is pulsing slowly."
/obj/item/phylactery/attackby(var/obj/item/I, var/mob/user)
..()
@@ -15,10 +15,10 @@
to_chat(target, "<span class='notice'>The strange presence vanishes away...</span>")
return ..()
/obj/item/poppet/examine(mob/user)
/obj/item/poppet/get_examine_text(mob/user, distance, is_adjacent, infix, suffix)
. = ..()
if(countenance)
to_chat(user, "<span class='notice'>It is modeled after a [countenance].</span>")
. += "<span class='notice'>It is modeled after a [countenance].</span>"
/obj/item/poppet/afterattack(var/atom/A, var/mob/user, var/proximity)