mirror of
https://github.com/Citadel-Station-13/Citadel-Station-13-RP.git
synced 2026-08-22 04:39:05 +01:00
38 lines
1.0 KiB
Plaintext
38 lines
1.0 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
|
|
material_parts = MATERIAL_DEFAULT_DISABLED
|
|
|
|
/obj/structure/table/darkglass/Initialize(mapload, base_material, reinforcing_material)
|
|
. = ..()
|
|
remove_obj_verb(src, /obj/structure/table/verb/do_flip)
|
|
remove_obj_verb(src, /obj/structure/table/proc/do_put)
|
|
|
|
/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
|
|
material_parts = MATERIAL_DEFAULT_DISABLED
|
|
|
|
/obj/structure/table/fancyblack/Initialize(mapload)
|
|
. = ..()
|
|
remove_obj_verb(src, /obj/structure/table/verb/do_flip)
|
|
remove_obj_verb(src, /obj/structure/table/proc/do_put)
|
|
|
|
/obj/structure/table/gold
|
|
icon_state = "plain_preview"
|
|
color = "#FFFF00"
|
|
material_base = /datum/prototype/material/gold
|