Merge pull request #2707 from VOREStation/aro-armoryagain

Redesigns the armory
This commit is contained in:
Arokha Sieyes
2018-01-09 12:04:23 -05:00
committed by GitHub
9 changed files with 234 additions and 173 deletions
+2
View File
@@ -19,6 +19,8 @@
return
/obj/structure/table/rack/update_icon()
if(material) //VOREStation Add for rack colors based on materials
color = material.icon_colour
return
/obj/structure/table/rack/holorack/dismantle(obj/item/weapon/wrench/W, mob/user)
+19
View File
@@ -0,0 +1,19 @@
/obj/structure/table/rack/steel
color = "#666666"
/obj/structure/table/rack/steel/New()
material = get_material_by_name(DEFAULT_WALL_MATERIAL)
..()
/obj/structure/table/rack/shelf
name = "shelving"
desc = "Some nice metal shelves."
icon = 'icons/obj/objects_vr.dmi'
icon_state = "shelf"
/obj/structure/table/rack/shelf/steel
color = "#666666"
/obj/structure/table/rack/shelf/steel/New()
material = get_material_by_name(DEFAULT_WALL_MATERIAL)
..()