mirror of
https://github.com/Bubberstation/Bubberstation.git
synced 2026-08-25 06:00:16 +01:00
initial commit for table overhaul
This commit is contained in:
@@ -0,0 +1,43 @@
|
||||
/* Table Frames
|
||||
* Contains:
|
||||
* Frames
|
||||
* Wooden Frames
|
||||
* Reinforced Frames
|
||||
*/
|
||||
|
||||
|
||||
/*
|
||||
* Normal Frames
|
||||
*/
|
||||
|
||||
/obj/structure/table_frame
|
||||
name = "table frame"
|
||||
desc = "Four metal legs with four framing rods for a table. You could easily pass through this."
|
||||
icon = 'icons/obj/structures.dmi'
|
||||
icon_state = "table_frame"
|
||||
density = 0
|
||||
anchored = 0
|
||||
layer = 2.8
|
||||
|
||||
/obj/structure/table_frame/attackby()
|
||||
|
||||
/*
|
||||
* Wooden Frames
|
||||
*/
|
||||
|
||||
/obj/structure/table_frame/wood
|
||||
name = "wooden table frame"
|
||||
desc = "Four wooden legs with four framing wooden rods for a wooden table. You could easily pass through this."
|
||||
icon_state = "wood_frame"
|
||||
|
||||
/*
|
||||
* Reinforced Frames
|
||||
*/
|
||||
|
||||
/obj/structure/table_frame/reinforced
|
||||
name = "reinforced table frame"
|
||||
desc = "Four metal legs with four framing rods for a table. They seem especially reinforced."
|
||||
icon_state = "reinforced_frame"
|
||||
density = 1
|
||||
anchored = 1
|
||||
throwpass = 1
|
||||
Reference in New Issue
Block a user