initial commit for table overhaul

This commit is contained in:
paprka
2014-11-01 23:57:01 -07:00
parent e7c387ad72
commit 85de5f7cd5
8 changed files with 207 additions and 261 deletions
@@ -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