mirror of
https://github.com/Aurorastation/Aurora.3.git
synced 2025-12-26 01:52:15 +00:00
* Adds icon and hitsound where needed. * Moves alt_attack to /obj/item and deletes weapons.dm * Replaced /obj/item/weapon with /obj/item * Fixes merge issues. * Fix merge issues.
13 lines
406 B
Plaintext
13 lines
406 B
Plaintext
/obj/item/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/reagent_containers/spray/luminol/Initialize()
|
|
. = ..()
|
|
reagents.add_reagent("luminol", 250) |