mirror of
https://github.com/CHOMPStation2/CHOMPStation2.git
synced 2025-12-10 18:22:39 +00:00
Additional table type
Darkglass!
This commit is contained in:
@@ -18,3 +18,9 @@
|
||||
sheet_plural_name = "fluffs"
|
||||
hardness = 60
|
||||
weight = 20 //Strong as iron.
|
||||
|
||||
/material/darkglass
|
||||
name = "darkglass"
|
||||
display_name = "darkglass"
|
||||
icon_base = "darkglass"
|
||||
icon_colour = "#FFFFFF"
|
||||
|
||||
19
code/modules/tables/presets_vr.dm
Normal file
19
code/modules/tables/presets_vr.dm
Normal 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
|
||||
Binary file not shown.
|
Before Width: | Height: | Size: 32 KiB After Width: | Height: | Size: 35 KiB |
@@ -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"
|
||||
|
||||
Reference in New Issue
Block a user