diff --git a/code/modules/materials/materials_vr.dm b/code/modules/materials/materials_vr.dm index 7e3d98ac4a..16e5fa3ae6 100644 --- a/code/modules/materials/materials_vr.dm +++ b/code/modules/materials/materials_vr.dm @@ -17,4 +17,10 @@ sheet_singular_name = "fluff" sheet_plural_name = "fluffs" hardness = 60 - weight = 20 //Strong as iron. \ No newline at end of file + weight = 20 //Strong as iron. + +/material/darkglass + name = "darkglass" + display_name = "darkglass" + icon_base = "darkglass" + icon_colour = "#FFFFFF" diff --git a/code/modules/tables/presets_vr.dm b/code/modules/tables/presets_vr.dm new file mode 100644 index 0000000000..16658e19a5 --- /dev/null +++ b/code/modules/tables/presets_vr.dm @@ -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, "You cannot dismantle \the [src].") + return \ No newline at end of file diff --git a/icons/obj/tables_vr.dmi b/icons/obj/tables_vr.dmi index ca7acf81d3..683b233c58 100644 Binary files a/icons/obj/tables_vr.dmi and b/icons/obj/tables_vr.dmi differ diff --git a/vorestation.dme b/vorestation.dme index 06497c5ca3..9e1a766d12 100644 --- a/vorestation.dme +++ b/vorestation.dme @@ -3215,6 +3215,7 @@ #include "code\modules\tables\flipping.dm" #include "code\modules\tables\interactions.dm" #include "code\modules\tables\presets.dm" +#include "code\modules\tables\presets_vr.dm" #include "code\modules\tables\rack.dm" #include "code\modules\tables\rack_vr.dm" #include "code\modules\tables\tables.dm"