From df61e734ab66cda4c044738ffd5059804313dc6f Mon Sep 17 00:00:00 2001 From: Razharas Date: Fri, 7 Feb 2014 12:25:29 +0400 Subject: [PATCH] Quick fix to designs and boards Abloobloo --- code/game/machinery/constructable_frame.dm | 8 ++++---- code/modules/research/designs.dm | 17 +++++++++++++---- 2 files changed, 17 insertions(+), 8 deletions(-) diff --git a/code/game/machinery/constructable_frame.dm b/code/game/machinery/constructable_frame.dm index aad11ae80bd..04d83b9b2db 100644 --- a/code/game/machinery/constructable_frame.dm +++ b/code/game/machinery/constructable_frame.dm @@ -187,7 +187,7 @@ to destroy them and players will be able to make replacements. name = "circuit board (SMES)" build_path = /obj/machinery/power/smes board_type = "machine" - origin_tech = "programming=4;power=5;engineering=5" + origin_tech = "programming=4;powerstorage=5;engineering=5" req_components = list( "/obj/item/stack/cable_coil" = 5, "/obj/item/weapon/cell" = 5, @@ -197,7 +197,7 @@ to destroy them and players will be able to make replacements. name = "circuit board (Power Compressor)" build_path = /obj/machinery/compressor board_type = "machine" - origin_tech = "programming=4;power=5;engineering=4" + origin_tech = "programming=4;powerstorage=5;engineering=4" req_components = list( "/obj/item/stack/cable_coil" = 5, "/obj/item/weapon/stock_parts/manipulator" = 6) @@ -206,7 +206,7 @@ to destroy them and players will be able to make replacements. name = "circuit board (Power Turbine)" build_path = /obj/machinery/power/turbine board_type = "machine" - origin_tech = "programming=4;power=4;engineering=5" + origin_tech = "programming=4;powerstorage=4;engineering=5" req_components = list( "/obj/item/stack/cable_coil" = 5, "/obj/item/weapon/stock_parts/capacitor" = 6) @@ -215,7 +215,7 @@ to destroy them and players will be able to make replacements. name = "circuit board (Mechbay Recharger)" build_path = /obj/machinery/mech_bay_recharge_port board_type = "machine" - origin_tech = "programming=3;power=4;engineering=4" + origin_tech = "programming=3;powerstorage=4;engineering=4" req_components = list( "/obj/item/stack/cable_coil" = 1, "/obj/item/weapon/stock_parts/capacitor" = 5) diff --git a/code/modules/research/designs.dm b/code/modules/research/designs.dm index 11c3a1fa7dc..c2723d04b5c 100644 --- a/code/modules/research/designs.dm +++ b/code/modules/research/designs.dm @@ -1194,6 +1194,15 @@ datum/design/light_replacer //////////////MISC Boards/////////////// //////////////////////////////////////// +datum/design/turbine_computer + name = "Power Turbine Console Board" + desc = "The circuit board for a power turbine console." + id = "power_turbine_console" + req_tech = list("programming" = 4, "power" = 5, "engineering" = 4) + build_type = IMPRINTER + materials = list("$glass" = 2000, "sacid" = 20) + build_path = /obj/item/weapon/circuitboard/smes + datum/design/turbine_computer name = "Power Turbine Console Board" desc = "The circuit board for a power turbine console." @@ -1274,7 +1283,7 @@ datum/design/thermomachine build_type = IMPRINTER materials = list("$glass" = 2000, "sacid" = 20) build_path = /obj/item/weapon/circuitboard/thermomachine -/* + datum/design/biogenerator name = "Biogenerator Board" desc = "The circuit board for a biogenerator." @@ -1283,7 +1292,7 @@ datum/design/biogenerator build_type = IMPRINTER materials = list("$glass" = 2000, "sacid" = 20) build_path = /obj/item/weapon/circuitboard/biogenerator - +/* datum/design/hydroponics name = "Hydroponics Tray Board" desc = "The circuit board for a hydroponics tray." @@ -1292,7 +1301,7 @@ datum/design/hydroponics build_type = IMPRINTER materials = list("$glass" = 2000, "sacid" = 20) build_path = /obj/item/weapon/circuitboard/hydroponics - +*/ datum/design/microwave name = "Microwave Board" desc = "The circuit board for a microwave." @@ -1301,7 +1310,7 @@ datum/design/microwave build_type = IMPRINTER materials = list("$glass" = 2000, "sacid" = 20) build_path = /obj/item/weapon/circuitboard/microwave -*/ + datum/design/chem_dispenser name = "Portable Chem Dispenser Board" desc = "The circuit board for a portable chem dispenser."