From 69bbddc43e69933c3e67c626a027db031499fee1 Mon Sep 17 00:00:00 2001 From: Enric Gabriel <43283559+SandPoot@users.noreply.github.com> Date: Mon, 22 Jun 2020 11:18:58 -0300 Subject: [PATCH] craftable double o2 --- sandcode/code/modules/crafting/recipes/recipes_misc.dm | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/sandcode/code/modules/crafting/recipes/recipes_misc.dm b/sandcode/code/modules/crafting/recipes/recipes_misc.dm index 7cb2c93311..090222cfdb 100644 --- a/sandcode/code/modules/crafting/recipes/recipes_misc.dm +++ b/sandcode/code/modules/crafting/recipes/recipes_misc.dm @@ -18,3 +18,11 @@ tools = list(TOOL_WELDER, TOOL_SCREWDRIVER, TOOL_WRENCH) category = CAT_WEAPONRY subcategory = CAT_AMMO + +/datum/crafting_recipe/double_o2 + name = "Double emergency oxygen tank" + reqs = list(/obj/item/tank/internals/emergency_oxygen/engi = 2, + /obj/item/stack/sheet/metal = 1) + result = /obj/item/tank/internals/emergency_oxygen/double/empty + tools = list(TOOL_WELDER) + category = CAT_MISC