From 215792e703479c397367b914d25963d60b9fd9be Mon Sep 17 00:00:00 2001 From: KasparoVy <12377767+KasparoVy@users.noreply.github.com> Date: Sun, 14 Jun 2020 23:11:01 -0400 Subject: [PATCH] Adds Creation of Whetstones from Durasteel & Plastitanium Can currently be done with plasteel and titanium. --- code/modules/materials/material_recipes_vr.dm | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/code/modules/materials/material_recipes_vr.dm b/code/modules/materials/material_recipes_vr.dm index 674ec97e9e3..ba2a95250af 100644 --- a/code/modules/materials/material_recipes_vr.dm +++ b/code/modules/materials/material_recipes_vr.dm @@ -82,4 +82,9 @@ /material/durasteel/generate_recipes() . = ..() - recipes += new/datum/stack_recipe("durasteel fishing rod", /obj/item/weapon/material/fishing_rod/modern/strong, 2) \ No newline at end of file + recipes += new/datum/stack_recipe("durasteel fishing rod", /obj/item/weapon/material/fishing_rod/modern/strong, 2) + recipes += new/datum/stack_recipe("whetstone", /obj/item/weapon/whetstone, 2, time = 30) + +/material/plastitanium/generate_recipes() + . = ..() + recipes += new/datum/stack_recipe("whetstone", /obj/item/weapon/whetstone, 2, time = 20)