From 7619a96b237b7658ebffc9e7735da9ba16dbca0d Mon Sep 17 00:00:00 2001 From: Aronai Sieyes Date: Thu, 15 Jul 2021 18:00:02 -0400 Subject: [PATCH] Add recipe, subject to balancing --- .../components/crafting/recipes/weapons.dm | 35 ++++++++++++++++++- 1 file changed, 34 insertions(+), 1 deletion(-) diff --git a/code/datums/components/crafting/recipes/weapons.dm b/code/datums/components/crafting/recipes/weapons.dm index 32a8b2cc4e..4022265137 100644 --- a/code/datums/components/crafting/recipes/weapons.dm +++ b/code/datums/components/crafting/recipes/weapons.dm @@ -6,4 +6,37 @@ /obj/item/weapon/tool/wirecutters = 1) time = 40 category = CAT_WEAPONRY - subcategory = CAT_WEAPON \ No newline at end of file + subcategory = CAT_WEAPON + +/datum/crafting_recipe/shortbow + name = "Shortbow" + result = /obj/item/weapon/gun/launcher/crossbow/bow + reqs = list( + /obj/item/stack/material/wood = 10, + /obj/item/stack/material/cloth = 5 + ) + time = 120 + category = CAT_WEAPONRY + subcategory = CAT_WEAPON + +/datum/crafting_recipe/arrow_sandstone + name = "Wood arrow (sandstone tip)" + result = /obj/item/weapon/arrow/standard + reqs = list( + /obj/item/stack/material/wood = 2, + /obj/item/stack/material/sandstone = 2 + ) + time = 40 + category = CAT_WEAPONRY + subcategory = CAT_AMMO + +/datum/crafting_recipe/arrow_marble + name = "Wood arrow (marble tip)" + result = /obj/item/weapon/arrow/standard + reqs = list( + /obj/item/stack/material/wood = 2, + /obj/item/stack/material/marble = 2 + ) + time = 40 + category = CAT_WEAPONRY + subcategory = CAT_AMMO