mirror of
https://github.com/CHOMPStation2/CHOMPStation2.git
synced 2025-12-10 10:12:45 +00:00
Co-authored-by: Casey <a.roaming.shadow@gmail.com> Co-authored-by: Raeschen <rycoop29@gmail.com>
49 lines
1.1 KiB
Plaintext
49 lines
1.1 KiB
Plaintext
/obj/structure/table/rack
|
|
icon = 'icons/obj/objects_vr.dmi'
|
|
|
|
/obj/structure/table/rack/steel
|
|
color = "#666666"
|
|
|
|
/obj/structure/table/rack/steel/New()
|
|
material = get_material_by_name(MAT_STEEL)
|
|
..()
|
|
|
|
/obj/structure/table/rack/shelf
|
|
name = "shelving"
|
|
desc = "Some nice metal shelves."
|
|
icon_state = "shelf"
|
|
|
|
/obj/structure/table/rack/shelf/steel
|
|
color = "#666666"
|
|
|
|
/obj/structure/table/rack/shelf/steel/New()
|
|
material = get_material_by_name(MAT_STEEL)
|
|
..()
|
|
|
|
// SOMEONE should add cool overlay stuff to this
|
|
/obj/structure/table/rack/gun_rack
|
|
name = "gun rack"
|
|
desc = "Seems like you could prop up some rifles here."
|
|
icon_state = "gunrack"
|
|
|
|
/obj/structure/table/rack/gun_rack/steel
|
|
color = "#666666"
|
|
|
|
/obj/structure/table/rack/gun_rack/steel/New()
|
|
material = get_material_by_name(MAT_STEEL)
|
|
..()
|
|
|
|
/obj/structure/table/rack/wood
|
|
color = "#A1662F"
|
|
|
|
/obj/structure/table/rack/wood/New()
|
|
material = get_material_by_name(MAT_WOOD)
|
|
..()
|
|
|
|
/obj/structure/table/rack/shelf/wood
|
|
color = "#A1662F"
|
|
|
|
/obj/structure/table/rack/shelf/wood/New()
|
|
material = get_material_by_name(MAT_WOOD)
|
|
..()
|