mirror of
https://github.com/Bubberstation/Bubberstation.git
synced 2025-12-21 07:03:05 +00:00
* Crate, Closet Refactors & Access Secured Stuff * CI * e --------- Co-authored-by: SyncIt21 <110812394+SyncIt21@users.noreply.github.com> Co-authored-by: Gandalf <9026500+Gandalf2k15@users.noreply.github.com>
25 lines
836 B
Plaintext
25 lines
836 B
Plaintext
/obj/structure/closet/crate/wooden
|
|
name = "wooden crate"
|
|
desc = "Works just as well as a metal one."
|
|
material_drop = /obj/item/stack/sheet/mineral/wood
|
|
material_drop_amount = 6
|
|
icon_state = "wooden"
|
|
base_icon_state = "wooden"
|
|
open_sound = 'sound/machines/wooden_closet_open.ogg'
|
|
close_sound = 'sound/machines/wooden_closet_close.ogg'
|
|
open_sound_volume = 25
|
|
close_sound_volume = 50
|
|
paint_jobs = null
|
|
|
|
/obj/structure/closet/crate/wooden/toy
|
|
name = "toy box"
|
|
desc = "It has the words \"Clown + Mime\" written underneath of it with marker."
|
|
|
|
/obj/structure/closet/crate/wooden/toy/PopulateContents()
|
|
. = ..()
|
|
new /obj/item/megaphone/clown(src)
|
|
new /obj/item/reagent_containers/cup/soda_cans/canned_laughter(src)
|
|
new /obj/item/pneumatic_cannon/pie(src)
|
|
new /obj/item/food/pie/cream(src)
|
|
new /obj/item/storage/crayons(src)
|