mirror of
https://github.com/CHOMPStation2/CHOMPStation2.git
synced 2025-12-09 16:12:17 +00:00
Co-authored-by: Muted Kobold <tangletail@gmail.com> Co-authored-by: Kashargul <144968721+Kashargul@users.noreply.github.com>
67 lines
2.4 KiB
Plaintext
67 lines
2.4 KiB
Plaintext
/datum/design_techweb/board/atmosalerts
|
|
name = "atmosphere alert console circuit"
|
|
id = "atmosalerts"
|
|
build_path = /obj/item/circuitboard/atmos_alert
|
|
category = list(
|
|
RND_CATEGORY_COMPUTER + RND_SUBCATEGORY_COMPUTER_ENGINEERING
|
|
)
|
|
departmental_flags = DEPARTMENT_BITFLAG_ENGINEERING | DEPARTMENT_BITFLAG_SCIENCE
|
|
|
|
/datum/design_techweb/board/air_management
|
|
name = "atmosphere monitoring console circuit"
|
|
id = "air_management"
|
|
build_path = /obj/item/circuitboard/air_management
|
|
category = list(
|
|
RND_CATEGORY_COMPUTER + RND_SUBCATEGORY_COMPUTER_ENGINEERING
|
|
)
|
|
departmental_flags = DEPARTMENT_BITFLAG_ENGINEERING | DEPARTMENT_BITFLAG_SCIENCE
|
|
|
|
/datum/design_techweb/board/tank_management
|
|
name = "tank monitoring console circuit"
|
|
id = "tank_management"
|
|
build_path = /obj/item/circuitboard/air_management/tank_control
|
|
category = list(
|
|
RND_CATEGORY_COMPUTER + RND_SUBCATEGORY_COMPUTER_ENGINEERING
|
|
)
|
|
departmental_flags = DEPARTMENT_BITFLAG_ENGINEERING | DEPARTMENT_BITFLAG_SCIENCE
|
|
|
|
/datum/design_techweb/board/shutoff_monitor
|
|
name = "Automatic shutoff valve monitor circuit"
|
|
id = "shutoff_monitor"
|
|
// req_tech = list(TECH_DATA = 4, TECH_ENGINEERING = 3)
|
|
build_path = /obj/item/circuitboard/shutoff_monitor
|
|
category = list(
|
|
RND_CATEGORY_MACHINE + RND_SUBCATEGORY_MACHINE_ATMOS
|
|
)
|
|
departmental_flags = DEPARTMENT_BITFLAG_ENGINEERING | DEPARTMENT_BITFLAG_SCIENCE
|
|
|
|
/datum/design_techweb/board/gas_heater
|
|
name = "gas heating system circuit"
|
|
id = "gasheater"
|
|
// req_tech = list(TECH_POWER = 2, TECH_ENGINEERING = 1)
|
|
build_path = /obj/item/circuitboard/unary_atmos/heater
|
|
category = list(
|
|
RND_CATEGORY_MACHINE + RND_SUBCATEGORY_MACHINE_ATMOS
|
|
)
|
|
departmental_flags = DEPARTMENT_BITFLAG_ENGINEERING | DEPARTMENT_BITFLAG_SCIENCE
|
|
|
|
/datum/design_techweb/board/gas_cooler
|
|
name = "gas cooling system circuit"
|
|
id = "gascooler"
|
|
// req_tech = list(TECH_MAGNET = 2, TECH_ENGINEERING = 2)
|
|
build_path = /obj/item/circuitboard/unary_atmos/cooler
|
|
category = list(
|
|
RND_CATEGORY_MACHINE + RND_SUBCATEGORY_MACHINE_ATMOS
|
|
)
|
|
departmental_flags = DEPARTMENT_BITFLAG_ENGINEERING | DEPARTMENT_BITFLAG_SCIENCE
|
|
|
|
/datum/design_techweb/board/arf_generator
|
|
name = "atmospheric field generator circuit"
|
|
id = "arf_generator"
|
|
// req_tech = list(TECH_MAGNET = 4, TECH_POWER = 4, TECH_BIO = 3)
|
|
build_path = /obj/item/circuitboard/arf_generator
|
|
category = list(
|
|
RND_CATEGORY_MACHINE + RND_SUBCATEGORY_MACHINE_ATMOS
|
|
)
|
|
departmental_flags = DEPARTMENT_BITFLAG_ENGINEERING | DEPARTMENT_BITFLAG_SCIENCE
|