From f2a45d16955e673bac7287ae3bc297decd62ffe2 Mon Sep 17 00:00:00 2001 From: FartMaster69420 <78667902+FartMaster69420@users.noreply.github.com> Date: Sat, 9 Apr 2022 21:55:46 -0400 Subject: [PATCH] Adding recipes to the lathe. --- code/modules/research/designs/xenobio_toys_vr.dm | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 code/modules/research/designs/xenobio_toys_vr.dm diff --git a/code/modules/research/designs/xenobio_toys_vr.dm b/code/modules/research/designs/xenobio_toys_vr.dm new file mode 100644 index 0000000000..ea46432791 --- /dev/null +++ b/code/modules/research/designs/xenobio_toys_vr.dm @@ -0,0 +1,15 @@ +/datum/design/item/weapon/xenobio/monkey_gun + id = "bluespace monkey deployment system" + req_tech = list(TECH_MATERIAL = 3, TECH_BIO = 3, TECH_POWER = 4, TECH_COMBAT = 4, TECH_BLUESPACE = 6) + materials = list(MAT_PLASTEEL = 5000, MAT_GLASS = 5000, MAT_DIAMOND = 500, MAT_MORPHIUM = 350) + build_path = /obj/item/weapon/xenobio/monkey_gun + sort_string = "HBBA" + +/datum/design/item/weapon/xenobio/grinder + name = "portable slime processor" + desc = "This high tech device combines the slime processor with the latest in woodcutting technology." + id = "slime_scanner" + req_tech = list(TECH_MAGNET = 4, TECH_BIO = 7) + materials = list(MAT_STEEL = 500, MAT_GLASS = 500, MAT_DIAMOND = 500, MAT_MORPHIUM = 100) + build_path = /obj/item/weapon/slime_grinder + sort_string = "HBBB" \ No newline at end of file