mirror of
https://github.com/Bubberstation/Bubberstation.git
synced 2026-08-25 14:08:31 +01:00
* gah muhfuckin dam!! * boutta go eat me some chicken parmesan * gates and fence gates * things that dont exist anymore * updates some of the other stuff * hot and steamy * oops * those particles shoulda ctually work now * fixes various things * makes the fence gate actually work * right * fixes some stuff * are u a grass? * this map is cool as fuck * wow those forge structures are crusty ahh hell * lets get lighting that looks cooler * wall mounted torches for lighting * i have plans that I cannot share with you * ohj yea,, * i think the map might be ready * map template, removes the old map * right, component lists * oops 2 * may i be confused forever * lets do the automapper solution * fixes fences * makes the posts more resistant to stray plasma cutter bolts * linta * puts some climbing hooks around * everything everywhere all at once * reverts the forge structure change * Update modular_skyrat/modules/primitive_structures/code/storage_structures.dm Co-authored-by: GoldenAlpharex <58045821+GoldenAlpharex@users.noreply.github.com> * Update modular_skyrat/modules/primitive_structures/code/storage_structures.dm Co-authored-by: GoldenAlpharex <58045821+GoldenAlpharex@users.noreply.github.com> * Update modular_skyrat/modules/primitive_structures/code/storage_structures.dm Co-authored-by: GoldenAlpharex <58045821+GoldenAlpharex@users.noreply.github.com> * Update modular_skyrat/modules/primitive_cooking_additions/code/stone_stove.dm Co-authored-by: GoldenAlpharex <58045821+GoldenAlpharex@users.noreply.github.com> * Update modular_skyrat/modules/primitive_cooking_additions/code/stone_oven.dm Co-authored-by: GoldenAlpharex <58045821+GoldenAlpharex@users.noreply.github.com> * Update modular_skyrat/modules/primitive_cooking_additions/code/stone_oven.dm Co-authored-by: GoldenAlpharex <58045821+GoldenAlpharex@users.noreply.github.com> * Update modular_skyrat/modules/primitive_cooking_additions/code/stone_stove.dm Co-authored-by: GoldenAlpharex <58045821+GoldenAlpharex@users.noreply.github.com> * makes big doors reset their layer when not facing east * im so mad * makes the vendor actually work for cats again * that's not suppsoed to happen * fixes test failure --------- Co-authored-by: GoldenAlpharex <58045821+GoldenAlpharex@users.noreply.github.com>
59 lines
1.9 KiB
Plaintext
59 lines
1.9 KiB
Plaintext
/*
|
|
* FURNITURE
|
|
*/
|
|
|
|
/obj/structure/decorative/shelf
|
|
name = "shelf"
|
|
desc = "A sturdy wooden shelf to store a variety of items on."
|
|
icon = 'modular_skyrat/modules/mapping/icons/unique/furniture.dmi'
|
|
icon_state = "empty_shelf_1"
|
|
density = 0
|
|
|
|
/obj/structure/decorative/shelf/crates
|
|
desc = "A sturdy wooden shelf with a bunch of crates on it."
|
|
icon_state = "shelf_1"
|
|
|
|
/obj/structure/decorative/shelf/milkjugs
|
|
desc = "A sturdy wooden shelf with a jugs and cartons of skimmed, semi-skimmed and full fat milk."
|
|
icon_state = "shelf_2"
|
|
|
|
/obj/structure/decorative/shelf/alcohol
|
|
desc = "A sturdy wooden shelf with a bunch of probably alcoholic drinks on it."
|
|
icon_state = "shelf_3"
|
|
|
|
/obj/structure/decorative/shelf/soda
|
|
desc = "A sturdy wooden shelf with a bunch of soft drinks on it. This planet's version of coca cola?"
|
|
icon_state = "shelf_4"
|
|
|
|
/obj/structure/decorative/shelf/soda_multipacks
|
|
desc = "A sturdy wooden shelf with a bunch of multipack soft drinks."
|
|
icon_state = "shelf_5"
|
|
|
|
/obj/structure/decorative/shelf/crates1
|
|
desc = "A sturdy wooden shelf with a bunch of crates on it. How... generic?"
|
|
icon_state = "shelf_6"
|
|
|
|
/obj/structure/decorative/shelf/soda_milk
|
|
desc = "A sturdy wooden shelf with an assortment of boxes. Multipack soft drinks and some milk."
|
|
icon_state = "shelf_7"
|
|
|
|
/obj/structure/decorative/shelf/milk
|
|
desc = "A sturdy wooden shelf with a variety of small milk cartons. Great for those who live alone!"
|
|
icon_state = "shelf_8"
|
|
|
|
/obj/structure/decorative/shelf/milk_big
|
|
desc = "A sturdy wooden shelf with lots of larger milk cartons."
|
|
icon_state = "shelf_9"
|
|
|
|
/obj/structure/decorative/shelf/alcohol_small
|
|
desc = "A sturdy wooden shelf with lots of alcohol."
|
|
icon_state = "shelf_10"
|
|
|
|
/obj/structure/decorative/shelf/alcohol_assortment
|
|
desc = "A sturdy wooden shelf with a variety of branded alcoholic drinks."
|
|
icon_state = "shelf_11"
|
|
|
|
// Toilet with a snap pop.
|
|
/obj/structure/toilet/snappop
|
|
contents = newlist(/obj/item/toy/snappop/phoenix)
|