Merge pull request #6647 from VOREStation/aro-table

Additional table type
This commit is contained in:
Novacat
2020-03-01 10:54:31 -05:00
committed by GitHub
4 changed files with 27 additions and 1 deletions

View File

@@ -0,0 +1,19 @@
/obj/structure/table/darkglass
name = "darkglass table"
desc = "Shiny!"
icon = 'icons/obj/tables_vr.dmi'
icon_state = "darkglass_table_preview"
flipped = -1
can_reinforce = FALSE
can_plate = FALSE
/obj/structure/table/darkglass/New()
material = get_material_by_name("darkglass")
verbs -= /obj/structure/table/verb/do_flip
verbs -= /obj/structure/table/proc/do_put
..()
/obj/structure/table/darkglass/dismantle(obj/item/weapon/wrench/W, mob/user)
to_chat(user, "<span class='warning'>You cannot dismantle \the [src].</span>")
return