From f7e6f57a63b0d2df6af73400bf29a4339898a7da Mon Sep 17 00:00:00 2001 From: IcyV Date: Sun, 10 Aug 2014 19:44:18 -0700 Subject: [PATCH] Allows for the antimov core to be created in research. Requires high and illegal research to reach, allows antimov modules to be created. --- code/modules/research/designs.dm | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/code/modules/research/designs.dm b/code/modules/research/designs.dm index b68177a892f..0b57f706b04 100644 --- a/code/modules/research/designs.dm +++ b/code/modules/research/designs.dm @@ -515,6 +515,15 @@ datum/design/custom_module materials = list("$glass" = 2000, "sacid" = 20, "$diamond" = 100) build_path = /obj/item/weapon/aiModule/core/full/custom +datum/design/antimov_module + name = "Core Module Design (Antimov) + desc = "Allows for the construction of a Antimov AI Core Module." + id = "antimov_module" + req_tech = list("programming" = 4, "materials" = 6, "syndicate" = 2) + build_type = IMPRINTER + materials = list("$glass" = 2000, "sacid" = 20, "$diamond" = 100) + build_path = /obj/item/weapon/aiModule/core/full/antimov + /////////////////////////////////// /////Subspace Telecomms//////////// ///////////////////////////////////