mirror of
https://github.com/CHOMPStation2/CHOMPStation2.git
synced 2025-12-11 10:43:20 +00:00
Co-authored-by: Changelogs <action@github.com> Co-authored-by: Heroman3003 <31296024+Heroman3003@users.noreply.github.com> Co-authored-by: Guti <32563288+TheCaramelion@users.noreply.github.com> Co-authored-by: Kashargul <144968721+Kashargul@users.noreply.github.com> Co-authored-by: Kashargul <KashL@t-online.de>
36 lines
1001 B
Plaintext
36 lines
1001 B
Plaintext
/obj/item/storage/box/swabs
|
|
name = "box of swab kits"
|
|
desc = "Sterilized equipment within. Do not contaminate."
|
|
icon = 'icons/obj/forensics.dmi'
|
|
icon_state = "dnakit"
|
|
can_hold = list(/obj/item/forensics/swab)
|
|
storage_slots = 14
|
|
|
|
/obj/item/storage/box/swabs/New()
|
|
..()
|
|
for(var/i = 1 to storage_slots) // Fill 'er up.
|
|
new /obj/item/forensics/swab(src)
|
|
|
|
/obj/item/storage/box/evidence
|
|
name = "evidence bag box"
|
|
desc = "A box claiming to contain evidence bags."
|
|
storage_slots = 7
|
|
can_hold = list(/obj/item/evidencebag)
|
|
|
|
/obj/item/storage/box/evidence/New()
|
|
..()
|
|
for(var/i = 1 to storage_slots)
|
|
new /obj/item/evidencebag(src)
|
|
|
|
/obj/item/storage/box/fingerprints
|
|
name = "box of fingerprint cards"
|
|
desc = "Sterilized equipment within. Do not contaminate."
|
|
icon = 'icons/obj/forensics.dmi'
|
|
icon_state = "dnakit"
|
|
can_hold = list(/obj/item/sample/print)
|
|
storage_slots = 14
|
|
|
|
/obj/item/storage/box/fingerprints/New()
|
|
..()
|
|
for(var/i = 1 to storage_slots)
|
|
new /obj/item/sample/print(src) |