Files
CHOMPStation2/code/modules/research/designs/bio_devices.dm
2024-08-26 08:46:45 +02:00

65 lines
2.4 KiB
Plaintext

/datum/design/item/biotech
materials = list(MAT_STEEL = 30, MAT_GLASS = 20)
department = LATHE_ALL | LATHE_MEDICAL // CHOMPAdd
/datum/design/item/biotech/AssembleDesignName()
..()
name = "Biotech device prototype ([item_name])"
// Biotech of various types
/datum/design/item/biotech/mass_spectrometer
desc = "A device for analyzing chemicals in blood."
id = "mass_spectrometer"
req_tech = list(TECH_BIO = 2, TECH_MAGNET = 2)
build_path = /obj/item/device/mass_spectrometer
sort_string = "JAAAA"
/datum/design/item/biotech/adv_mass_spectrometer
desc = "A device for analyzing chemicals in blood and their quantities."
id = "adv_mass_spectrometer"
req_tech = list(TECH_BIO = 2, TECH_MAGNET = 4)
build_path = /obj/item/device/mass_spectrometer/adv
sort_string = "JAAAB"
/datum/design/item/biotech/reagent_scanner
desc = "A device for identifying chemicals."
id = "reagent_scanner"
req_tech = list(TECH_BIO = 2, TECH_MAGNET = 2)
build_path = /obj/item/device/reagent_scanner
sort_string = "JAABA"
/datum/design/item/biotech/adv_reagent_scanner
desc = "A device for identifying chemicals and their proportions."
id = "adv_reagent_scanner"
req_tech = list(TECH_BIO = 2, TECH_MAGNET = 4)
build_path = /obj/item/device/reagent_scanner/adv
sort_string = "JAABB"
/datum/design/item/biotech/robot_scanner
desc = "A hand-held scanner able to diagnose robotic injuries."
id = "robot_scanner"
req_tech = list(TECH_MAGNET = 3, TECH_BIO = 2, TECH_ENGINEERING = 3)
materials = list(MAT_STEEL = 500, MAT_GLASS = 200)
build_path = /obj/item/device/robotanalyzer
sort_string = "JAACA"
department = LATHE_ALL | LATHE_SCIENCE // CHOMPAdd
/datum/design/item/biotech/nanopaste
desc = "A tube of paste containing swarms of repair nanites. Very effective in repairing robotic machinery."
id = "nanopaste"
req_tech = list(TECH_MATERIAL = 4, TECH_ENGINEERING = 3)
materials = list(MAT_STEEL = 7000, MAT_GLASS = 7000)
build_path = /obj/item/stack/nanopaste
sort_string = "JAACB"
department = LATHE_ALL | LATHE_SCIENCE // CHOMPAdd
/datum/design/item/biotech/plant_analyzer
desc = "A device capable of quickly scanning all relevant data about a plant."
id = "plant_analyzer"
req_tech = list(TECH_MAGNET = 2, TECH_BIO = 2)
materials = list(MAT_STEEL = 500, MAT_GLASS = 500)
build_path = /obj/item/device/analyzer/plant_analyzer
sort_string = "JAADA"
department = LATHE_ALL | LATHE_SERVICE // CHOMPAdd