mirror of
https://github.com/Aurorastation/Aurora.3.git
synced 2026-08-17 18:09:26 +01:00
Fixes #19603 Fixes #20558 - bugfix: "Fixes plant bags - now uses storage_slot system, along with other bag subtypes." - bugfix: "Borgs can interact with tables again." - refactor: "Refactors make_exact_fit to be a binary variable." - refactor: "Refactors storage items to use make_exact_fit instead of arbitrary max_storage_space values." - refactor: "Refactors storage items to use defines for storage space." - bugfix: "Fixes monkey cube boxes having superfluous overlay." - rscadd: "Updates the progress bar toggle message." - qol: "Objects that rotated 90 degrees in storage no longer rotate in storage slots." <img width="732" alt="dreamseeker_qRVkIlYN78" src="https://github.com/user-attachments/assets/1226ed22-52c1-4965-a1b4-2290e56a2ab3" />
26 lines
924 B
Plaintext
26 lines
924 B
Plaintext
//crime scene kit
|
|
/obj/item/storage/briefcase/crimekit
|
|
name = "crime scene kit"
|
|
desc = "A stainless steel-plated carrycase for all your forensic needs. Feels heavy."
|
|
icon = 'icons/obj/forensics.dmi'
|
|
icon_state = "case"
|
|
item_state = "case"
|
|
storage_slots = 14
|
|
max_storage_space = DEFAULT_DUFFELBAG_STORAGE
|
|
contained_sprite = 1
|
|
use_sound = 'sound/items/storage/toolbox.ogg'
|
|
drop_sound = 'sound/items/drop/toolbox.ogg'
|
|
pickup_sound = 'sound/items/pickup/toolbox.ogg'
|
|
|
|
/obj/item/storage/briefcase/crimekit/fill()
|
|
..()
|
|
new /obj/item/storage/box/swabs(src)
|
|
new /obj/item/storage/box/fingerprints(src)
|
|
new /obj/item/reagent_containers/spray/luminol(src)
|
|
new /obj/item/device/uv_light(src)
|
|
new /obj/item/forensics/sample_kit(src)
|
|
new /obj/item/forensics/sample_kit/powder(src)
|
|
new /obj/item/device/mass_spectrometer(src)
|
|
new /obj/item/device/reagent_scanner(src)
|
|
new /obj/item/storage/box/fancy/csi_markers(src)
|