Files
VOREStation/code/modules/tables/presets_vr.dm
T
Kashargul 46bea7cfa2 Initialize fixing (#17279)
* Initialoize fixing

* diff fix

* add init grep test

* fixed missed ones

* .

* some more

* ,
2025-03-08 13:59:29 -05:00

51 lines
1.3 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/Initialize(mapload)
material = get_material_by_name(MAT_DARKGLASS)
verbs -= /obj/structure/table/verb/do_flip
verbs -= /obj/structure/table/proc/do_put
. = ..()
/obj/structure/table/darkglass/dismantle(obj/item/tool/wrench/W, mob/user)
to_chat(user, span_warning("You cannot dismantle \the [src]."))
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/Initialize(mapload)
material = get_material_by_name(MAT_FANCYBLACK)
verbs -= /obj/structure/table/verb/do_flip
verbs -= /obj/structure/table/proc/do_put
. = ..()
/obj/structure/table/fancyblack/dismantle(obj/item/tool/wrench/W, mob/user)
to_chat(user, span_warning("You cannot dismantle \the [src]."))
return
/obj/structure/table/gold
icon_state = "plain_preview"
color = "#FFFF00"
/obj/structure/table/gold/Initialize(mapload)
material = get_material_by_name(MAT_GOLD)
. = ..()