mirror of
https://github.com/VOREStation/VOREStation.git
synced 2026-08-24 12:37:50 +01:00
Bunsen Burner (#18361)
* bunsen burner port * reacting reagents returns if it did * small fixes * new bunsen burner icon * fixes * deconstruction fixing * smaller range * code review
This commit is contained in:
@@ -89,7 +89,7 @@
|
||||
)
|
||||
departmental_flags = DEPARTMENT_BITFLAG_MEDICAL | DEPARTMENT_BITFLAG_SCIENCE
|
||||
|
||||
/datum/design_techweb/board/rtg
|
||||
/datum/design_techweb/board/vitals_monitor
|
||||
name = "vitals monitor circuit"
|
||||
id = "vitals"
|
||||
// req_tech = list(TECH_DATA = 3, TECH_BIO = 4, TECH_ENGINEERING = 2)
|
||||
@@ -98,3 +98,23 @@
|
||||
RND_CATEGORY_MACHINE + RND_SUBCATEGORY_MACHINE_MEDICAL
|
||||
)
|
||||
departmental_flags = DEPARTMENT_BITFLAG_MEDICAL | DEPARTMENT_BITFLAG_SCIENCE
|
||||
|
||||
/datum/design_techweb/board/smart_centrifuge
|
||||
name = "smart centrifuge circuit"
|
||||
id = "smart_centrifuge"
|
||||
// req_tech = list(TECH_MAGNET = 2, TECH_DATA = 1, TECH_MATERIAL = 2)
|
||||
build_path = /obj/item/circuitboard/smart_centrifuge
|
||||
category = list(
|
||||
RND_CATEGORY_MACHINE + RND_SUBCATEGORY_MACHINE_MEDICAL
|
||||
)
|
||||
departmental_flags = DEPARTMENT_BITFLAG_MEDICAL | DEPARTMENT_BITFLAG_ENGINEERING
|
||||
|
||||
/datum/design_techweb/board/chem_analyzer
|
||||
name = "chem analyzer PRO circuit"
|
||||
id = "chem_analyzer"
|
||||
// req_tech = list(TECH_MATERIAL = 1, TECH_ENGINEERING = 1)
|
||||
build_path = /obj/item/circuitboard/chemical_analyzer
|
||||
category = list(
|
||||
RND_CATEGORY_MACHINE + RND_SUBCATEGORY_MACHINE_MEDICAL
|
||||
)
|
||||
departmental_flags = DEPARTMENT_BITFLAG_MEDICAL | DEPARTMENT_BITFLAG_ENGINEERING
|
||||
|
||||
@@ -98,16 +98,6 @@
|
||||
)
|
||||
departmental_flags = DEPARTMENT_BITFLAG_ENGINEERING
|
||||
|
||||
/datum/design_techweb/board/smart_centrifuge
|
||||
name = "Smart Centrifuge"
|
||||
id = "smart_centrifuge"
|
||||
// req_tech = list(TECH_MAGNET = 2, TECH_DATA = 1, TECH_MATERIAL = 2)
|
||||
build_path = /obj/item/circuitboard/smart_centrifuge
|
||||
category = list(
|
||||
RND_CATEGORY_MACHINE + RND_SUBCATEGORY_MACHINE_ENGINEERING
|
||||
)
|
||||
departmental_flags = DEPARTMENT_BITFLAG_ENGINEERING
|
||||
|
||||
/datum/design_techweb/board/pump_relay
|
||||
name = "Pump Relay"
|
||||
id = "pump_relay"
|
||||
|
||||
@@ -330,7 +330,6 @@
|
||||
"industrial_reagent_vat",
|
||||
"industrial_reagent_mixer",
|
||||
"industrial_reagent_waste_processor",
|
||||
"smart_centrifuge",
|
||||
"pump_relay",
|
||||
"fluid_pump"
|
||||
)
|
||||
|
||||
@@ -65,6 +65,18 @@
|
||||
research_costs = list(TECHWEB_POINT_TYPE_GENERIC = TECHWEB_TIER_1_POINTS)
|
||||
announce_channels = list(CHANNEL_MEDICAL)
|
||||
|
||||
/datum/techweb_node/chemical_isolation
|
||||
id = TECHWEB_NODE_CHEM_ISOLATION
|
||||
display_name = "Chemical Identification"
|
||||
description = "Scanning and identifying chemicals and their uses."
|
||||
prereq_ids = list(TECHWEB_NODE_CHEM_SYNTHESIS)
|
||||
design_ids = list(
|
||||
"chem_analyzer",
|
||||
"smart_centrifuge",
|
||||
)
|
||||
research_costs = list(TECHWEB_POINT_TYPE_GENERIC = TECHWEB_TIER_2_POINTS)
|
||||
announce_channels = list(CHANNEL_ENGINEERING,CHANNEL_MEDICAL)
|
||||
|
||||
/datum/techweb_node/medbay_equip_adv
|
||||
id = TECHWEB_NODE_MEDBAY_EQUIP_ADV
|
||||
display_name = "Advanced Medbay Equipment"
|
||||
|
||||
Reference in New Issue
Block a user