diff --git a/code/game/objects/items/stacks/sheets/sheet_types.dm b/code/game/objects/items/stacks/sheets/sheet_types.dm index 435d4530a1e..fa1c9ff00e8 100644 --- a/code/game/objects/items/stacks/sheets/sheet_types.dm +++ b/code/game/objects/items/stacks/sheets/sheet_types.dm @@ -590,6 +590,7 @@ GLOBAL_LIST_INIT(plastic_recipes, list( new /datum/stack_recipe("wet floor sign", /obj/item/caution, 2), new /datum/stack_recipe("water bottle", /obj/item/reagent_containers/glass/beaker/waterbottle/empty), new /datum/stack_recipe("large water bottle", /obj/item/reagent_containers/glass/beaker/waterbottle/large/empty,3), + new /datum/stack_recipe("spray bottle", /obj/item/reagent_containers/spray/empty, 6), null, new /datum/stack_recipe_list("first-aid kits", list( new /datum/stack_recipe("first-aid kit", /obj/item/storage/firstaid/regular, 4), diff --git a/code/modules/reagents/reagent_containers/spray.dm b/code/modules/reagents/reagent_containers/spray.dm index 9d28a5b3038..d46b9c17038 100644 --- a/code/modules/reagents/reagent_containers/spray.dm +++ b/code/modules/reagents/reagent_containers/spray.dm @@ -113,6 +113,13 @@ reagents.reaction(user.loc) reagents.clear_reagents() +/obj/item/reagent_containers/spray/empty + lefthand_file = 'icons/mob/inhands/equipment/custodial_lefthand.dmi' + righthand_file = 'icons/mob/inhands/equipment/custodial_righthand.dmi' + spray_maxrange = 2 + spray_currentrange = 2 + amount_per_transfer_from_this = 10 + //space cleaner /obj/item/reagent_containers/spray/cleaner name = "space cleaner" diff --git a/code/modules/research/designs/autolathe_designs.dm b/code/modules/research/designs/autolathe_designs.dm index ba1f1ddf3d1..f9aa0bea58c 100644 --- a/code/modules/research/designs/autolathe_designs.dm +++ b/code/modules/research/designs/autolathe_designs.dm @@ -950,6 +950,14 @@ build_path = /obj/item/mail_scanner category = list("initial", "Miscellaneous") +/datum/design/spraybottle + name = "Spray Bottle" + id = "spraybottle" + build_type = AUTOLATHE + materials = list(MAT_METAL = 2000, MAT_GLASS = 5000) + build_path = /obj/item/reagent_containers/spray/empty + category = list("initial", "Miscellaneous") + /datum/design/knuckleduster name = "Knuckleduster" id = "knuckleduster"