mirror of
https://github.com/Aurorastation/Aurora.3.git
synced 2025-12-23 08:31:57 +00:00
Converts all reagent containers to use Initialize, fixes the hand-chew cool down so it's no longer for everyone, and moves the suit sensor Z-level to the global.dm right above the station name so anyone else using the code can't miss it. Closes #3363 Closes #3361 Closes #3362
13 lines
420 B
Plaintext
13 lines
420 B
Plaintext
/obj/item/weapon/reagent_containers/spray/luminol
|
|
name = "luminol bottle"
|
|
desc = "A bottle containing an odourless, colorless liquid."
|
|
icon = 'icons/obj/forensics.dmi'
|
|
icon_state = "luminol"
|
|
item_state = "cleaner"
|
|
amount_per_transfer_from_this = 10
|
|
possible_transfer_amounts = list(5,10)
|
|
volume = 250
|
|
|
|
/obj/item/weapon/reagent_containers/spray/luminol/Initialize()
|
|
. = ..()
|
|
reagents.add_reagent("luminol", 250) |