Merge pull request #4610 from VOREStation/vplk-breakerbox

Allow constructing breaker boxes in game
This commit is contained in:
Anewbe
2018-01-23 12:05:48 -06:00
committed by GitHub
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)