From 4b4aec191da771479bb954f619bc284a18f1a7a4 Mon Sep 17 00:00:00 2001 From: Pickle-Coding <58013024+Pickle-Coding@users.noreply.github.com> Date: Wed, 7 Jun 2023 00:02:54 +0100 Subject: [PATCH] Adds a crafting recipe for the atmospherics gas mask. (#75476) ## About The Pull Request Adds a crafting recipe for the atmospherics gas mask, allowing them to be replaced. It requires a sheet of metallic hydrogen for the frame, painted with zaukerite via a welding tool in the crafting menu. ## Why It's Good For The Game Allows atmospheric gas masks to get replaced. ## Changelog :cl: add: Crafting recipe for atmospherics gas mask. /:cl: --- code/datums/components/crafting/tailoring.dm | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/code/datums/components/crafting/tailoring.dm b/code/datums/components/crafting/tailoring.dm index c2a171d46af..80c0d04534e 100644 --- a/code/datums/components/crafting/tailoring.dm +++ b/code/datums/components/crafting/tailoring.dm @@ -317,6 +317,18 @@ ) category = CAT_CLOTHING + +/datum/crafting_recipe/atmospherics_gas_mask + name = "atmospherics gas mask" + result = /obj/item/clothing/mask/gas/atmos + tool_behaviors = list(TOOL_WELDER) + time = 8 SECONDS + reqs = list( + /obj/item/stack/sheet/mineral/metal_hydrogen = 1, + /obj/item/stack/sheet/mineral/zaukerite = 1, + ) + + category = CAT_CLOTHING /datum/crafting_recipe/paper_hat name = "Paper Hat"