Add circuit and research design to allow constructing breaker boxes in game.

This commit is contained in:
Leshana
2018-01-21 20:36:44 -05:00
parent d58b25f1a5
commit 01925e9de2
4 changed files with 40 additions and 5 deletions
@@ -29,3 +29,13 @@
board_type = new /datum/frame/frame_types/machine
origin_tech = list(TECH_POWER = 4, TECH_ENGINEERING = 3)
req_components = list(/obj/item/weapon/stock_parts/capacitor = 3, /obj/item/stack/cable_coil = 10)
/obj/item/weapon/circuitboard/breakerbox
name = T_BOARD("breaker box")
build_path = /obj/machinery/power/breakerbox
board_type = new /datum/frame/frame_types/machine
origin_tech = list(TECH_POWER = 3, TECH_ENGINEERING = 3)
req_components = list(
/obj/item/weapon/stock_parts/spring = 1,
/obj/item/weapon/stock_parts/manipulator = 1,
/obj/item/stack/cable_coil = 10)