Stage 1: deconstruction.

This commit is contained in:
Spamcat
2013-07-06 02:53:01 +04:00
parent 87feed7e7b
commit 0e4271f97c
+23
View File
@@ -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"