mirror of
https://github.com/Citadel-Station-13/Citadel-Station-13-RP.git
synced 2026-08-18 19:57:05 +01:00
19 lines
465 B
Plaintext
19 lines
465 B
Plaintext
//The base 'prop' for PoIs or other large junk.
|
|
|
|
/obj/structure/prop
|
|
name = "something"
|
|
desc = "My description is broken, bug a developer."
|
|
icon = 'icons/obj/structures.dmi'
|
|
icon_state = "safe"
|
|
density = TRUE
|
|
anchored = TRUE
|
|
var/interaction_message = null
|
|
|
|
/obj/structure/prop/attack_hand(mob/user, datum/event_args/actor/clickchain/e_args)
|
|
if(!istype(user))
|
|
return FALSE
|
|
if(!interaction_message)
|
|
return ..()
|
|
else
|
|
to_chat(user, interaction_message)
|