mirror of
https://github.com/Aurorastation/Aurora.3.git
synced 2026-08-23 04:51:32 +01:00
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:
@@ -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)
|
||||
|
||||
|
||||
Reference in New Issue
Block a user