From b84cc64027f42f0c3d7979bdf2f05a10406a8ae9 Mon Sep 17 00:00:00 2001 From: Amunak Date: Sun, 14 Dec 2014 05:05:55 +0100 Subject: [PATCH] Removes duplicate shield research definitions. They were moved to the common designs file by a previous commit. --- .../modules/shieldgen/circuits_and_designs.dm | 37 ------------------- 1 file changed, 37 deletions(-) diff --git a/code/modules/shieldgen/circuits_and_designs.dm b/code/modules/shieldgen/circuits_and_designs.dm index c7fd23a3bf..e055bddcab 100644 --- a/code/modules/shieldgen/circuits_and_designs.dm +++ b/code/modules/shieldgen/circuits_and_designs.dm @@ -1,7 +1,3 @@ - -//////////////////////////////////////// -// External Shield Generator - /obj/item/weapon/circuitboard/shield_gen_ex name = "Circuit board (Hull shield generator)" board_type = "machine" @@ -16,18 +12,6 @@ "/obj/item/weapon/stock_parts/console_screen" = 1, "/obj/item/stack/cable_coil" = 5) -datum/design/shield_gen_ex - name = "Circuit Design (Experimental hull shield generator)" - desc = "Allows for the construction of circuit boards used to build an experimental hull shield generator." - id = "shield_gen" - req_tech = list("bluespace" = 4, "phorontech" = 3) - build_type = IMPRINTER - materials = list("$glass" = 2000, "sacid" = 20, "$phoron" = 10000, "$diamond" = 5000, "$gold" = 10000) - build_path = "/obj/machinery/shield_gen/external" - -//////////////////////////////////////// -// Shield Generator - /obj/item/weapon/circuitboard/shield_gen name = "Circuit board (Bubble shield generator)" board_type = "machine" @@ -42,18 +26,6 @@ datum/design/shield_gen_ex "/obj/item/weapon/stock_parts/console_screen" = 1, "/obj/item/stack/cable_coil" = 5) -datum/design/shield_gen - name = "Circuit Design (Bubble shield generator)" - desc = "Allows for the construction of circuit boards used to build an experimental shield generator." - id = "shield_gen" - req_tech = list("bluespace" = 4, "phorontech" = 3) - build_type = IMPRINTER - materials = list("$glass" = 2000, "sacid" = 20, "$phoron" = 10000, "$diamond" = 5000, "$gold" = 10000) - build_path = "/obj/machinery/shield_gen" - -//////////////////////////////////////// -// Shield Capacitor - /obj/item/weapon/circuitboard/shield_cap name = "Circuit board (Shield capacitor)" board_type = "machine" @@ -67,12 +39,3 @@ datum/design/shield_gen "/obj/item/weapon/stock_parts/subspace/analyzer" = 1, "/obj/item/weapon/stock_parts/console_screen" = 1, "/obj/item/stack/cable_coil" = 5) - -datum/design/shield_cap - name = "Circuit Design (Shield capacitor)" - desc = "Allows for the construction of circuit boards used to build an experimental shielding capacitor." - id = "shield_cap" - req_tech = list("magnets" = 3, "powerstorage" = 4) - build_type = IMPRINTER - materials = list("$glass" = 2000, "sacid" = 20, "$phoron" = 10000, "$diamond" = 5000, "$silver" = 10000) - build_path = "/obj/machinery/shield_gen/external"