mirror of
https://github.com/CHOMPStation2/CHOMPStation2.git
synced 2025-12-10 10:12:45 +00:00
42 lines
1.1 KiB
Plaintext
42 lines
1.1 KiB
Plaintext
/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
|
|
/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 |