From e15608cdcb56a35dc025273e47ccbfcb06a00a95 Mon Sep 17 00:00:00 2001 From: genessee596 <46986487+genessee596@users.noreply.github.com> Date: Wed, 30 Oct 2019 19:33:06 -0400 Subject: [PATCH] Cap Guns and Capgun Ammo can now be made in a hacked Autolathe (#47447) --- .../research/designs/autolathe_designs.dm | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) diff --git a/code/modules/research/designs/autolathe_designs.dm b/code/modules/research/designs/autolathe_designs.dm index 209e25244b4..283d26eef48 100644 --- a/code/modules/research/designs/autolathe_designs.dm +++ b/code/modules/research/designs/autolathe_designs.dm @@ -984,3 +984,19 @@ build_path = /obj/item/stack/ducts category = list("initial", "Construction") maxstack = 50 + +/datum/design/toygun + name = "Cap Gun" + id = "toygun" + build_type = AUTOLATHE + materials = list(/datum/material/iron = 100, /datum/material/glass = 50) + build_path = /obj/item/toy/gun + category = list("hacked", "Misc") + +/datum/design/capbox + name = "Box of Cap Gun Shots" + id = "capbox" + build_type = AUTOLATHE + materials = list(/datum/material/iron = 20, /datum/material/glass = 5) + build_path = /obj/item/toy/ammo/gun + category = list("hacked", "Misc") \ No newline at end of file