mirror of
https://github.com/ParadiseSS13/Paradise.git
synced 2026-08-25 21:19:00 +01:00
Stage 1: deconstruction.
This commit is contained in:
@@ -25,10 +25,30 @@
|
||||
return
|
||||
|
||||
|
||||
/obj/structure/sign/attackby(obj/item/tool as obj, mob/user as mob)
|
||||
if(istype(tool, /obj/item/weapon/screwdriver))
|
||||
user << "You unfasten the sign with your [tool]."
|
||||
var/obj/item/sign/S = new(src.loc)
|
||||
S.name = name
|
||||
S.desc = desc
|
||||
S.icon_state = icon_state
|
||||
del(src)
|
||||
else
|
||||
..()
|
||||
|
||||
/obj/item/sign
|
||||
name = "sign"
|
||||
desc = "if you see this, it's a bug"
|
||||
icon = 'icons/obj/decals.dmi'
|
||||
icon_state = "securearea"
|
||||
|
||||
/obj/structure/sign/map
|
||||
name = "station map"
|
||||
desc = "A framed picture of the station."
|
||||
|
||||
/obj/structure/sign/map/attackby()
|
||||
return ..()
|
||||
|
||||
/obj/structure/sign/map/left
|
||||
icon_state = "map-left"
|
||||
|
||||
@@ -116,6 +136,9 @@
|
||||
name = "The Maltese Falcon"
|
||||
desc = "The Maltese Falcon, Space Bar and Grill."
|
||||
|
||||
/obj/structure/sign/maltesefalcon/attackby()
|
||||
return ..()
|
||||
|
||||
/obj/structure/sign/maltesefalcon/left
|
||||
icon_state = "maltesefalcon-left"
|
||||
|
||||
|
||||
Reference in New Issue
Block a user