Added the Parts Lathe!

* The parts lathe can print tech level 1 stock parts (matter bins, capacitors) required to build basic unupgraded machines.
* This is a separate machine from the autolathe to ease any concern that the autolathe would become OP.
* ALSO, it can be hit with a circuit board and will conveniently display the parts required to build that board's machine.
* Added circuitboard and design for constructing a parts lathe.
This commit is contained in:
Leshana
2017-03-01 17:16:16 -05:00
parent 0ff31bd69f
commit 12957f703b
6 changed files with 479 additions and 0 deletions
@@ -8,3 +8,14 @@
/obj/item/weapon/circuitboard/jukebox/vore
name = T_BOARD("VORE jukebox")
build_path = /obj/machinery/media/jukebox/vore
// Board for the parts lathe in partslathe.dm
/obj/item/weapon/circuitboard/partslathe
name = T_BOARD("parts lathe")
build_path = /obj/machinery/partslathe
board_type = new /datum/frame/frame_types/machine
origin_tech = list(TECH_ENGINEERING = 2, TECH_DATA = 2)
req_components = list(
/obj/item/weapon/stock_parts/matter_bin = 2,
/obj/item/weapon/stock_parts/manipulator = 2,
/obj/item/weapon/stock_parts/console_screen = 1)