Files
Paradise/code/game/objects/effects/spawners/random/furniture_spawners.dm
warriorstar-orion b61f4f3ff8 feat: Storage shelves and gun racks. (#26744)
* feat: Storage shelves and gun racks.

* Apply suggestions from code review

Co-authored-by: Luc <89928798+lewcc@users.noreply.github.com>
Signed-off-by: warriorstar-orion <orion@snowfrost.garden>

* review comments

* better examine

* fix lint

* Examine for empty shelves

* Apply suggestions from code review

Co-authored-by: Luc <89928798+lewcc@users.noreply.github.com>
Co-authored-by: DGamerL <108773801+DGamerL@users.noreply.github.com>
Signed-off-by: warriorstar-orion <orion@snowfrost.garden>

* rest of review comments

---------

Signed-off-by: warriorstar-orion <orion@snowfrost.garden>
Co-authored-by: Luc <89928798+lewcc@users.noreply.github.com>
Co-authored-by: DGamerL <108773801+DGamerL@users.noreply.github.com>
2024-09-28 22:28:44 +00:00

19 lines
479 B
Plaintext

/obj/effect/spawner/random/storage
name = "storage furniture spawner"
icon = 'icons/effects/random_spawners.dmi'
icon_state = "shelf"
layer = BELOW_OBJ_LAYER
loot = list(
list(
/obj/structure/shelf = 10,
/obj/structure/shelf/command,
/obj/structure/shelf/engineering,
/obj/structure/shelf/medbay,
/obj/structure/shelf/science,
/obj/structure/shelf/security,
/obj/structure/shelf/service,
/obj/structure/shelf/supply,
),
/obj/structure/rack,
)