mirror of
https://github.com/CHOMPStation2/CHOMPStation2.git
synced 2025-12-27 10:33:21 +00:00
Co-authored-by: Changelogs <action@github.com> Co-authored-by: Heroman3003 <31296024+Heroman3003@users.noreply.github.com> Co-authored-by: Guti <32563288+TheCaramelion@users.noreply.github.com> Co-authored-by: Kashargul <144968721+Kashargul@users.noreply.github.com> Co-authored-by: Kashargul <KashL@t-online.de>
22 lines
834 B
Plaintext
22 lines
834 B
Plaintext
#ifndef T_BOARD
|
|
#error T_BOARD macro is not defined but we need it!
|
|
#endif
|
|
|
|
/obj/item/circuitboard/mining_equipment_vendor
|
|
name = T_BOARD("Mining Equipment Vendor")
|
|
board_type = new /datum/frame/frame_types/machine
|
|
build_path = /obj/machinery/mineral/equipment_vendor
|
|
origin_tech = list(TECH_DATA = 1, TECH_ENGINEERING = 3)
|
|
req_components = list(
|
|
/obj/item/stock_parts/console_screen = 1,
|
|
/obj/item/stock_parts/matter_bin = 3)
|
|
|
|
/obj/item/circuitboard/exploration_equipment_vendor
|
|
name = T_BOARD("Exploration Equipment Vendor")
|
|
board_type = new /datum/frame/frame_types/machine
|
|
build_path = /obj/machinery/mineral/equipment_vendor/survey
|
|
origin_tech = list(TECH_DATA = 1, TECH_ENGINEERING = 2)
|
|
req_components = list(
|
|
/obj/item/stock_parts/console_screen = 1,
|
|
/obj/item/stock_parts/matter_bin = 3)
|