Adds fancy tables

This commit is contained in:
Aronai Sieyes
2020-04-18 21:45:09 -04:00
parent a51657162e
commit fecfd86389
5 changed files with 35 additions and 8 deletions

View File

@@ -19,3 +19,24 @@
return
/obj/structure/table/alien/blue
icon = 'icons/turf/shuttle_alien_blue.dmi'
/obj/structure/table/fancyblack
name = "fancy table"
desc = "Cloth!"
icon = 'icons/obj/tablesfancy_vr.dmi'
icon_state = "fancyblack"
flipped = -1
can_reinforce = FALSE
can_plate = FALSE
/obj/structure/table/fancyblack/New()
material = get_material_by_name("fancyblack")
verbs -= /obj/structure/table/verb/do_flip
verbs -= /obj/structure/table/proc/do_put
..()
/obj/structure/table/fancyblack/dismantle(obj/item/weapon/wrench/W, mob/user)
to_chat(user, "<span class='warning'>You cannot dismantle \the [src].</span>")
return