mirror of
https://github.com/CHOMPStation2/CHOMPStation2.git
synced 2025-12-10 02:09:41 +00:00
Cooking times are now no longer 10-15 minutes per item, the LARGEST items will take around ~4-5 minutes, 6 at the maximum in the case of the superbigbite (one of the most filling food items in the game). Cooking oil tanks added Appliances are now constructible instead of being eldritch black magic Recipes are now reorganized to either fryer/oven/grill based on where they're made (Although recipes_microwave still needs a LOT more sorting) Critical time bug with cooking fixed, AND you can now upgrade your appliances for even higher efficiencies!
656 lines
20 KiB
Plaintext
656 lines
20 KiB
Plaintext
/*
|
|
CIRCUITS BELOW
|
|
*/
|
|
|
|
/datum/design/circuit
|
|
build_type = IMPRINTER
|
|
req_tech = list(TECH_DATA = 2)
|
|
materials = list("glass" = 2000)
|
|
chemicals = list("sacid" = 20)
|
|
time = 5
|
|
|
|
/datum/design/circuit/AssembleDesignName()
|
|
..()
|
|
if(build_path)
|
|
var/obj/item/weapon/circuitboard/C = build_path
|
|
if(initial(C.board_type) == "machine")
|
|
name = "Machine circuit design ([item_name])"
|
|
else if(initial(C.board_type) == "computer")
|
|
name = "Computer circuit design ([item_name])"
|
|
else
|
|
name = "Circuit design ([item_name])"
|
|
|
|
/datum/design/circuit/AssembleDesignDesc()
|
|
if(!desc)
|
|
desc = "Allows for the construction of \a [item_name] circuit board."
|
|
|
|
/datum/design/circuit/arcademachine
|
|
name = "battle arcade machine"
|
|
id = "arcademachine"
|
|
req_tech = list(TECH_DATA = 1)
|
|
build_path = /obj/item/weapon/circuitboard/arcade/battle
|
|
sort_string = "MAAAA"
|
|
|
|
/datum/design/circuit/oriontrail
|
|
name = "orion trail arcade machine"
|
|
id = "oriontrail"
|
|
req_tech = list(TECH_DATA = 1)
|
|
build_path = /obj/item/weapon/circuitboard/arcade/orion_trail
|
|
sort_string = "MAAAZ" // Duplicate string, really need to redo this whole thing
|
|
|
|
/datum/design/circuit/jukebox
|
|
name = "jukebox"
|
|
id = "jukebox"
|
|
req_tech = list(TECH_MAGNET = 2, TECH_DATA = 1)
|
|
build_path = /obj/item/weapon/circuitboard/jukebox
|
|
sort_string = "MAAAB"
|
|
|
|
/datum/design/circuit/seccamera
|
|
name = "security camera monitor"
|
|
id = "seccamera"
|
|
build_path = /obj/item/weapon/circuitboard/security
|
|
sort_string = "DAAAZ" // Duplicate string, really need to redo this whole thing
|
|
|
|
/datum/design/circuit/secdata
|
|
name = "security records console"
|
|
id = "sec_data"
|
|
build_path = /obj/item/weapon/circuitboard/secure_data
|
|
sort_string = "DABAA"
|
|
|
|
/datum/design/circuit/prisonmanage
|
|
name = "prisoner management console"
|
|
id = "prisonmanage"
|
|
build_path = /obj/item/weapon/circuitboard/prisoner
|
|
sort_string = "DACAA"
|
|
|
|
/datum/design/circuit/med_data
|
|
name = "medical records console"
|
|
id = "med_data"
|
|
build_path = /obj/item/weapon/circuitboard/med_data
|
|
sort_string = "FAAAA"
|
|
|
|
/datum/design/circuit/operating
|
|
name = "patient monitoring console"
|
|
id = "operating"
|
|
build_path = /obj/item/weapon/circuitboard/operating
|
|
sort_string = "FACAA"
|
|
|
|
/datum/design/circuit/scan_console
|
|
name = "DNA machine"
|
|
id = "scan_console"
|
|
build_path = /obj/item/weapon/circuitboard/scan_consolenew
|
|
sort_string = "FAGAA"
|
|
|
|
/datum/design/circuit/clonecontrol
|
|
name = "cloning control console"
|
|
id = "clonecontrol"
|
|
req_tech = list(TECH_DATA = 3, TECH_BIO = 3)
|
|
build_path = /obj/item/weapon/circuitboard/cloning
|
|
sort_string = "FAGAC"
|
|
|
|
/datum/design/circuit/clonepod
|
|
name = "clone pod"
|
|
id = "clonepod"
|
|
req_tech = list(TECH_DATA = 3, TECH_BIO = 3)
|
|
build_path = /obj/item/weapon/circuitboard/clonepod
|
|
sort_string = "FAGAE"
|
|
|
|
/datum/design/circuit/clonescanner
|
|
name = "cloning scanner"
|
|
id = "clonescanner"
|
|
req_tech = list(TECH_DATA = 3, TECH_BIO = 3)
|
|
build_path = /obj/item/weapon/circuitboard/clonescanner
|
|
sort_string = "FAGAG"
|
|
|
|
/datum/design/circuit/chem_master
|
|
name = "ChemMaster 3000"
|
|
id = "chemmaster"
|
|
req_tech = list(TECH_DATA = 3, TECH_MAGNET = 2)
|
|
build_path = /obj/item/weapon/circuitboard/chem_master
|
|
sort_string = "FAGAH"
|
|
|
|
/datum/design/circuit/crewconsole
|
|
name = "crew monitoring console"
|
|
id = "crewconsole"
|
|
req_tech = list(TECH_DATA = 3, TECH_MAGNET = 2, TECH_BIO = 2)
|
|
build_path = /obj/item/weapon/circuitboard/crew
|
|
sort_string = "FAGAI"
|
|
|
|
/datum/design/circuit/teleconsole
|
|
name = "teleporter control console"
|
|
id = "teleconsole"
|
|
req_tech = list(TECH_DATA = 3, TECH_BLUESPACE = 2)
|
|
build_path = /obj/item/weapon/circuitboard/teleporter
|
|
sort_string = "HAAAA"
|
|
|
|
/datum/design/circuit/robocontrol
|
|
name = "robotics control console"
|
|
id = "robocontrol"
|
|
req_tech = list(TECH_DATA = 4)
|
|
build_path = /obj/item/weapon/circuitboard/robotics
|
|
sort_string = "HAAAB"
|
|
|
|
/datum/design/circuit/mechacontrol
|
|
name = "exosuit control console"
|
|
id = "mechacontrol"
|
|
req_tech = list(TECH_DATA = 3)
|
|
build_path = /obj/item/weapon/circuitboard/mecha_control
|
|
sort_string = "HAAAC"
|
|
|
|
/datum/design/circuit/rdconsole
|
|
name = "R&D control console"
|
|
id = "rdconsole"
|
|
req_tech = list(TECH_DATA = 4)
|
|
build_path = /obj/item/weapon/circuitboard/rdconsole
|
|
sort_string = "HAAAE"
|
|
|
|
/datum/design/circuit/aifixer
|
|
name = "AI integrity restorer"
|
|
id = "aifixer"
|
|
req_tech = list(TECH_DATA = 3, TECH_BIO = 2)
|
|
build_path = /obj/item/weapon/circuitboard/aifixer
|
|
sort_string = "HAAAF"
|
|
|
|
/datum/design/circuit/comm_monitor
|
|
name = "telecommunications monitoring console"
|
|
id = "comm_monitor"
|
|
req_tech = list(TECH_DATA = 3)
|
|
build_path = /obj/item/weapon/circuitboard/comm_monitor
|
|
sort_string = "HAACA"
|
|
|
|
/datum/design/circuit/comm_server
|
|
name = "telecommunications server monitoring console"
|
|
id = "comm_server"
|
|
req_tech = list(TECH_DATA = 3)
|
|
build_path = /obj/item/weapon/circuitboard/comm_server
|
|
sort_string = "HAACB"
|
|
|
|
/datum/design/circuit/message_monitor
|
|
name = "messaging monitor console"
|
|
id = "message_monitor"
|
|
req_tech = list(TECH_DATA = 5)
|
|
build_path = /obj/item/weapon/circuitboard/message_monitor
|
|
sort_string = "HAACC"
|
|
|
|
/datum/design/circuit/aiupload
|
|
name = "AI upload console"
|
|
id = "aiupload"
|
|
req_tech = list(TECH_DATA = 4)
|
|
build_path = /obj/item/weapon/circuitboard/aiupload
|
|
sort_string = "HAABA"
|
|
|
|
/datum/design/circuit/borgupload
|
|
name = "cyborg upload console"
|
|
id = "borgupload"
|
|
req_tech = list(TECH_DATA = 4)
|
|
build_path = /obj/item/weapon/circuitboard/borgupload
|
|
sort_string = "HAABB"
|
|
|
|
/datum/design/circuit/destructive_analyzer
|
|
name = "destructive analyzer"
|
|
id = "destructive_analyzer"
|
|
req_tech = list(TECH_DATA = 2, TECH_MAGNET = 2, TECH_ENGINEERING = 2)
|
|
build_path = /obj/item/weapon/circuitboard/destructive_analyzer
|
|
sort_string = "HABAA"
|
|
|
|
/datum/design/circuit/protolathe
|
|
name = "protolathe"
|
|
id = "protolathe"
|
|
req_tech = list(TECH_DATA = 2, TECH_ENGINEERING = 2)
|
|
build_path = /obj/item/weapon/circuitboard/protolathe
|
|
sort_string = "HABAB"
|
|
|
|
/datum/design/circuit/circuit_imprinter
|
|
name = "circuit imprinter"
|
|
id = "circuit_imprinter"
|
|
req_tech = list(TECH_DATA = 2, TECH_ENGINEERING = 2)
|
|
build_path = /obj/item/weapon/circuitboard/circuit_imprinter
|
|
sort_string = "HABAC"
|
|
|
|
/datum/design/circuit/autolathe
|
|
name = "autolathe board"
|
|
id = "autolathe"
|
|
req_tech = list(TECH_DATA = 2, TECH_ENGINEERING = 2)
|
|
build_path = /obj/item/weapon/circuitboard/autolathe
|
|
sort_string = "HABAD"
|
|
|
|
/datum/design/circuit/rdservercontrol
|
|
name = "R&D server control console"
|
|
id = "rdservercontrol"
|
|
req_tech = list(TECH_DATA = 3)
|
|
build_path = /obj/item/weapon/circuitboard/rdservercontrol
|
|
sort_string = "HABBA"
|
|
|
|
/datum/design/circuit/rdserver
|
|
name = "R&D server"
|
|
id = "rdserver"
|
|
req_tech = list(TECH_DATA = 3)
|
|
build_path = /obj/item/weapon/circuitboard/rdserver
|
|
sort_string = "HABBB"
|
|
|
|
/datum/design/circuit/mechfab
|
|
name = "exosuit fabricator"
|
|
id = "mechfab"
|
|
req_tech = list(TECH_DATA = 3, TECH_ENGINEERING = 3)
|
|
build_path = /obj/item/weapon/circuitboard/mechfab
|
|
sort_string = "HABAE"
|
|
|
|
/datum/design/circuit/prosfab
|
|
name = "prosthetics fabricator"
|
|
id = "prosfab"
|
|
req_tech = list(TECH_DATA = 3, TECH_ENGINEERING = 3)
|
|
build_path = /obj/item/weapon/circuitboard/prosthetics
|
|
sort_string = "HABAF"
|
|
|
|
/datum/design/circuit/mech_recharger
|
|
name = "mech recharger"
|
|
id = "mech_recharger"
|
|
req_tech = list(TECH_DATA = 2, TECH_POWER = 2, TECH_ENGINEERING = 2)
|
|
build_path = /obj/item/weapon/circuitboard/mech_recharger
|
|
sort_string = "HACAA"
|
|
|
|
/datum/design/circuit/recharge_station
|
|
name = "cyborg recharge station"
|
|
id = "recharge_station"
|
|
req_tech = list(TECH_DATA = 3, TECH_ENGINEERING = 2)
|
|
build_path = /obj/item/weapon/circuitboard/recharge_station
|
|
sort_string = "HACAC"
|
|
|
|
/datum/design/circuit/atmosalerts
|
|
name = "atmosphere alert console"
|
|
id = "atmosalerts"
|
|
build_path = /obj/item/weapon/circuitboard/atmos_alert
|
|
sort_string = "JAAAA"
|
|
|
|
/datum/design/circuit/air_management
|
|
name = "atmosphere monitoring console"
|
|
id = "air_management"
|
|
build_path = /obj/item/weapon/circuitboard/air_management
|
|
sort_string = "JAAAB"
|
|
|
|
/datum/design/circuit/rcon_console
|
|
name = "RCON remote control console"
|
|
id = "rcon_console"
|
|
req_tech = list(TECH_DATA = 4, TECH_ENGINEERING = 3, TECH_POWER = 5)
|
|
build_path = /obj/item/weapon/circuitboard/rcon_console
|
|
sort_string = "JAAAC"
|
|
|
|
/datum/design/circuit/dronecontrol
|
|
name = "drone control console"
|
|
id = "dronecontrol"
|
|
req_tech = list(TECH_DATA = 4)
|
|
build_path = /obj/item/weapon/circuitboard/drone_control
|
|
sort_string = "JAAAD"
|
|
|
|
/datum/design/circuit/powermonitor
|
|
name = "power monitoring console"
|
|
id = "powermonitor"
|
|
build_path = /obj/item/weapon/circuitboard/powermonitor
|
|
sort_string = "JAAAE"
|
|
|
|
/datum/design/circuit/solarcontrol
|
|
name = "solar control console"
|
|
id = "solarcontrol"
|
|
build_path = /obj/item/weapon/circuitboard/solar_control
|
|
sort_string = "JAAAF"
|
|
|
|
/datum/design/circuit/shutoff_monitor
|
|
name = "Automatic shutoff valve monitor"
|
|
id = "shutoff_monitor"
|
|
req_tech = list(TECH_DATA = 4, TECH_ENGINEERING = 3)
|
|
build_path = /obj/item/weapon/circuitboard/shutoff_monitor
|
|
sort_string = "JAAAG"
|
|
|
|
/datum/design/circuit/pacman
|
|
name = "PACMAN-type generator"
|
|
id = "pacman"
|
|
req_tech = list(TECH_DATA = 3, TECH_PHORON = 3, TECH_POWER = 3, TECH_ENGINEERING = 3)
|
|
build_path = /obj/item/weapon/circuitboard/pacman
|
|
sort_string = "JBAAA"
|
|
|
|
/datum/design/circuit/superpacman
|
|
name = "SUPERPACMAN-type generator"
|
|
id = "superpacman"
|
|
req_tech = list(TECH_DATA = 3, TECH_POWER = 4, TECH_ENGINEERING = 4)
|
|
build_path = /obj/item/weapon/circuitboard/pacman/super
|
|
sort_string = "JBAAB"
|
|
|
|
/datum/design/circuit/mrspacman
|
|
name = "MRSPACMAN-type generator"
|
|
id = "mrspacman"
|
|
req_tech = list(TECH_DATA = 3, TECH_POWER = 5, TECH_ENGINEERING = 5)
|
|
build_path = /obj/item/weapon/circuitboard/pacman/mrs
|
|
sort_string = "JBAAC"
|
|
|
|
/datum/design/circuit/batteryrack
|
|
name = "cell rack PSU"
|
|
id = "batteryrack"
|
|
req_tech = list(TECH_POWER = 3, TECH_ENGINEERING = 2)
|
|
build_path = /obj/item/weapon/circuitboard/batteryrack
|
|
sort_string = "JBABA"
|
|
|
|
/datum/design/circuit/smes_cell
|
|
name = "'SMES' superconductive magnetic energy storage"
|
|
desc = "Allows for the construction of circuit boards used to build a SMES."
|
|
id = "smes_cell"
|
|
req_tech = list(TECH_POWER = 7, TECH_ENGINEERING = 5)
|
|
build_path = /obj/item/weapon/circuitboard/smes
|
|
sort_string = "JBABB"
|
|
|
|
/datum/design/circuit/grid_checker
|
|
name = "power grid checker"
|
|
desc = "Allows for the construction of circuit boards used to build a grid checker."
|
|
id = "grid_checker"
|
|
req_tech = list(TECH_POWER = 4, TECH_ENGINEERING = 3)
|
|
build_path = /obj/item/weapon/circuitboard/grid_checker
|
|
sort_string = "JBABC"
|
|
|
|
/datum/design/circuit/breakerbox
|
|
name = "breaker box"
|
|
desc = "Allows for the construction of circuit boards used to build a breaker box."
|
|
id = "breakerbox"
|
|
req_tech = list(TECH_POWER = 3, TECH_ENGINEERING = 3)
|
|
build_path = /obj/item/weapon/circuitboard/breakerbox
|
|
sort_string = "JBABD"
|
|
|
|
/datum/design/circuit/gas_heater
|
|
name = "gas heating system"
|
|
id = "gasheater"
|
|
req_tech = list(TECH_POWER = 2, TECH_ENGINEERING = 1)
|
|
build_path = /obj/item/weapon/circuitboard/unary_atmos/heater
|
|
sort_string = "JCAAA"
|
|
|
|
/datum/design/circuit/gas_cooler
|
|
name = "gas cooling system"
|
|
id = "gascooler"
|
|
req_tech = list(TECH_MAGNET = 2, TECH_ENGINEERING = 2)
|
|
build_path = /obj/item/weapon/circuitboard/unary_atmos/cooler
|
|
sort_string = "JCAAB"
|
|
|
|
/datum/design/circuit/secure_airlock
|
|
name = "secure airlock electronics"
|
|
desc = "Allows for the construction of a tamper-resistant airlock electronics."
|
|
id = "securedoor"
|
|
req_tech = list(TECH_DATA = 3)
|
|
build_path = /obj/item/weapon/airlock_electronics/secure
|
|
sort_string = "JDAAA"
|
|
|
|
/datum/design/circuit/ordercomp
|
|
name = "supply ordering console"
|
|
id = "ordercomp"
|
|
build_path = /obj/item/weapon/circuitboard/supplycomp
|
|
sort_string = "KAAAY" // Duplicate string, really need to redo this whole thing
|
|
|
|
/datum/design/circuit/supplycomp
|
|
name = "supply control console"
|
|
id = "supplycomp"
|
|
req_tech = list(TECH_DATA = 3)
|
|
build_path = /obj/item/weapon/circuitboard/supplycomp/control
|
|
sort_string = "KAAAZ" // Duplicate string, really need to redo this whole thing
|
|
|
|
/datum/design/circuit/biogenerator
|
|
name = "biogenerator"
|
|
id = "biogenerator"
|
|
req_tech = list(TECH_DATA = 2)
|
|
build_path = /obj/item/weapon/circuitboard/biogenerator
|
|
sort_string = "KBAAA"
|
|
|
|
/datum/design/circuit/miningdrill
|
|
name = "mining drill head"
|
|
id = "mining drill head"
|
|
req_tech = list(TECH_DATA = 1, TECH_ENGINEERING = 1)
|
|
build_path = /obj/item/weapon/circuitboard/miningdrill
|
|
sort_string = "KCAAA"
|
|
|
|
/datum/design/circuit/miningdrillbrace
|
|
name = "mining drill brace"
|
|
id = "mining drill brace"
|
|
req_tech = list(TECH_DATA = 1, TECH_ENGINEERING = 1)
|
|
build_path = /obj/item/weapon/circuitboard/miningdrillbrace
|
|
sort_string = "KCAAB"
|
|
|
|
/datum/design/circuit/comconsole
|
|
name = "communications console"
|
|
id = "comconsole"
|
|
build_path = /obj/item/weapon/circuitboard/communications
|
|
sort_string = "LAAAA"
|
|
|
|
/datum/design/circuit/idcardconsole
|
|
name = "ID card modification console"
|
|
id = "idcardconsole"
|
|
build_path = /obj/item/weapon/circuitboard/card
|
|
sort_string = "LAAAB"
|
|
|
|
/datum/design/circuit/emp_data
|
|
name = "employment records console"
|
|
id = "emp_data"
|
|
build_path = /obj/item/weapon/circuitboard/skills
|
|
sort_string = "LAAAC"
|
|
|
|
/datum/design/circuit/mecha
|
|
req_tech = list(TECH_DATA = 3)
|
|
|
|
/datum/design/circuit/mecha/AssembleDesignName()
|
|
name = "Exosuit module circuit design ([name])"
|
|
/datum/design/circuit/mecha/AssembleDesignDesc()
|
|
desc = "Allows for the construction of \a [name] module."
|
|
|
|
/datum/design/circuit/mecha/ripley_main
|
|
name = "APLU 'Ripley' central control"
|
|
id = "ripley_main"
|
|
build_path = /obj/item/weapon/circuitboard/mecha/ripley/main
|
|
sort_string = "NAAAA"
|
|
|
|
/datum/design/circuit/mecha/ripley_peri
|
|
name = "APLU 'Ripley' peripherals control"
|
|
id = "ripley_peri"
|
|
build_path = /obj/item/weapon/circuitboard/mecha/ripley/peripherals
|
|
sort_string = "NAAAB"
|
|
|
|
/datum/design/circuit/mecha/odysseus_main
|
|
name = "'Odysseus' central control"
|
|
id = "odysseus_main"
|
|
req_tech = list(TECH_DATA = 3,TECH_BIO = 2)
|
|
build_path = /obj/item/weapon/circuitboard/mecha/odysseus/main
|
|
sort_string = "NAABA"
|
|
|
|
/datum/design/circuit/mecha/odysseus_peri
|
|
name = "'Odysseus' peripherals control"
|
|
id = "odysseus_peri"
|
|
req_tech = list(TECH_DATA = 3,TECH_BIO = 2)
|
|
build_path = /obj/item/weapon/circuitboard/mecha/odysseus/peripherals
|
|
sort_string = "NAABB"
|
|
|
|
/datum/design/circuit/mecha/gygax_main
|
|
name = "'Gygax' central control"
|
|
id = "gygax_main"
|
|
req_tech = list(TECH_DATA = 4)
|
|
build_path = /obj/item/weapon/circuitboard/mecha/gygax/main
|
|
sort_string = "NAACA"
|
|
|
|
/datum/design/circuit/mecha/gygax_peri
|
|
name = "'Gygax' peripherals control"
|
|
id = "gygax_peri"
|
|
req_tech = list(TECH_DATA = 4)
|
|
build_path = /obj/item/weapon/circuitboard/mecha/gygax/peripherals
|
|
sort_string = "NAACB"
|
|
|
|
/datum/design/circuit/mecha/gygax_targ
|
|
name = "'Gygax' weapon control and targeting"
|
|
id = "gygax_targ"
|
|
req_tech = list(TECH_DATA = 4, TECH_COMBAT = 2)
|
|
build_path = /obj/item/weapon/circuitboard/mecha/gygax/targeting
|
|
sort_string = "NAACC"
|
|
|
|
/datum/design/circuit/mecha/gygax_medical
|
|
name = "'Serenity' medical control"
|
|
id = "gygax_medical"
|
|
req_tech = list(TECH_DATA = 4, TECH_BIO = 2)
|
|
build_path = /obj/item/weapon/circuitboard/mecha/gygax/medical
|
|
sort_string = "NAACD"
|
|
|
|
/datum/design/circuit/mecha/durand_main
|
|
name = "'Durand' central control"
|
|
id = "durand_main"
|
|
req_tech = list(TECH_DATA = 4)
|
|
build_path = /obj/item/weapon/circuitboard/mecha/durand/main
|
|
sort_string = "NAADA"
|
|
|
|
/datum/design/circuit/mecha/durand_peri
|
|
name = "'Durand' peripherals control"
|
|
id = "durand_peri"
|
|
req_tech = list(TECH_DATA = 4)
|
|
build_path = /obj/item/weapon/circuitboard/mecha/durand/peripherals
|
|
sort_string = "NAADB"
|
|
|
|
/datum/design/circuit/mecha/durand_targ
|
|
name = "'Durand' weapon control and targeting"
|
|
id = "durand_targ"
|
|
req_tech = list(TECH_DATA = 4, TECH_COMBAT = 2)
|
|
build_path = /obj/item/weapon/circuitboard/mecha/durand/targeting
|
|
sort_string = "NAADC"
|
|
|
|
/datum/design/circuit/tcom
|
|
req_tech = list(TECH_DATA = 4, TECH_ENGINEERING = 4)
|
|
|
|
/datum/design/circuit/tcom/AssembleDesignName()
|
|
name = "Telecommunications machinery circuit design ([name])"
|
|
/datum/design/circuit/tcom/AssembleDesignDesc()
|
|
desc = "Allows for the construction of a telecommunications [name] circuit board."
|
|
|
|
/datum/design/circuit/tcom/server
|
|
name = "server mainframe"
|
|
id = "tcom-server"
|
|
build_path = /obj/item/weapon/circuitboard/telecomms/server
|
|
sort_string = "PAAAA"
|
|
|
|
/datum/design/circuit/tcom/processor
|
|
name = "processor unit"
|
|
id = "tcom-processor"
|
|
build_path = /obj/item/weapon/circuitboard/telecomms/processor
|
|
sort_string = "PAAAB"
|
|
|
|
/datum/design/circuit/tcom/bus
|
|
name = "bus mainframe"
|
|
id = "tcom-bus"
|
|
build_path = /obj/item/weapon/circuitboard/telecomms/bus
|
|
sort_string = "PAAAC"
|
|
|
|
/datum/design/circuit/tcom/hub
|
|
name = "hub mainframe"
|
|
id = "tcom-hub"
|
|
build_path = /obj/item/weapon/circuitboard/telecomms/hub
|
|
sort_string = "PAAAD"
|
|
|
|
/datum/design/circuit/tcom/relay
|
|
name = "relay mainframe"
|
|
id = "tcom-relay"
|
|
req_tech = list(TECH_DATA = 3, TECH_ENGINEERING = 4, TECH_BLUESPACE = 3)
|
|
build_path = /obj/item/weapon/circuitboard/telecomms/relay
|
|
sort_string = "PAAAE"
|
|
|
|
/datum/design/circuit/tcom/broadcaster
|
|
name = "subspace broadcaster"
|
|
id = "tcom-broadcaster"
|
|
req_tech = list(TECH_DATA = 4, TECH_ENGINEERING = 4, TECH_BLUESPACE = 2)
|
|
build_path = /obj/item/weapon/circuitboard/telecomms/broadcaster
|
|
sort_string = "PAAAF"
|
|
|
|
/datum/design/circuit/tcom/receiver
|
|
name = "subspace receiver"
|
|
id = "tcom-receiver"
|
|
req_tech = list(TECH_DATA = 4, TECH_ENGINEERING = 3, TECH_BLUESPACE = 2)
|
|
build_path = /obj/item/weapon/circuitboard/telecomms/receiver
|
|
sort_string = "PAAAG"
|
|
|
|
/datum/design/circuit/tcom/exonet_node
|
|
name = "exonet node"
|
|
id = "tcom-exonet_node"
|
|
req_tech = list(TECH_DATA = 5, TECH_ENGINEERING = 5, TECH_BLUESPACE = 4)
|
|
build_path = /obj/item/weapon/circuitboard/telecomms/exonet_node
|
|
sort_string = "PAAAH"
|
|
|
|
/datum/design/circuit/ntnet_relay
|
|
name = "NTNet Quantum Relay"
|
|
id = "ntnet_relay"
|
|
req_tech = list(TECH_DATA = 4)
|
|
build_path = /obj/item/weapon/circuitboard/ntnet_relay
|
|
sort_string = "WAAAA"
|
|
|
|
/datum/design/circuit/aicore
|
|
name = "AI core"
|
|
id = "aicore"
|
|
req_tech = list(TECH_DATA = 4, TECH_BIO = 3)
|
|
build_path = /obj/item/weapon/circuitboard/aicore
|
|
sort_string = "XAAAA"
|
|
// Cooking Appliances
|
|
/datum/design/circuit/microwave
|
|
name = "microwave board"
|
|
id = "microwave_board"
|
|
req_tech = list(TECH_MAGNET = 2, TECH_ENGINEERING = 2)
|
|
build_path = /obj/item/weapon/circuitboard/microwave
|
|
sort_string = "HACAM"
|
|
|
|
/datum/design/circuit/oven
|
|
name = "oven board"
|
|
id = "oven_board"
|
|
req_tech = list(TECH_MAGNET = 2, TECH_ENGINEERING = 2)
|
|
build_path = /obj/item/weapon/circuitboard/oven
|
|
sort_string = "HACAN"
|
|
|
|
/datum/design/circuit/fryer
|
|
name = "deep fryer board"
|
|
id = "fryer_board"
|
|
req_tech = list(TECH_MAGNET = 2, TECH_ENGINEERING = 2)
|
|
build_path = /obj/item/weapon/circuitboard/fryer
|
|
sort_string = "HACAO"
|
|
|
|
/datum/design/circuit/cerealmaker
|
|
name = "cereal maker board"
|
|
id = "cerealmaker_board"
|
|
req_tech = list(TECH_MAGNET = 2, TECH_ENGINEERING = 2)
|
|
build_path = /obj/item/weapon/circuitboard/cerealmaker
|
|
sort_string = "HACAP"
|
|
|
|
/datum/design/circuit/candymaker
|
|
name = "candy machine board"
|
|
id = "candymachine_board"
|
|
req_tech = list(TECH_MAGNET = 2, TECH_ENGINEERING = 2)
|
|
build_path = /obj/item/weapon/circuitboard/candymachine
|
|
sort_string = "HACAQ"
|
|
|
|
/datum/design/circuit/microwave/advanced
|
|
name = "deluxe microwave"
|
|
id = "deluxe microwave"
|
|
req_tech = list(TECH_DATA = 5, TECH_ENGINEERING = 5, TECH_BLUESPACE = 4)
|
|
build_path = /obj/item/weapon/circuitboard/microwave/advanced
|
|
sort_string = "HACAA"
|
|
|
|
/datum/design/circuit/shield_generator
|
|
name = "shield generator"
|
|
id = "shield_generator"
|
|
req_tech = list(TECH_MAGNET = 3, TECH_POWER = 4, TECH_BLUESPACE = 2, TECH_ENGINEERING = 3)
|
|
build_path = /obj/item/weapon/circuitboard/shield_generator
|
|
sort_string = "OAAAA"
|
|
|
|
/datum/design/circuit/shield_diffuser
|
|
name = "shield diffuser"
|
|
id = "shield_diffuser"
|
|
req_tech = list(TECH_MAGNET = 4, TECH_POWER = 2, TECH_ENGINEERING = 5)
|
|
build_path = /obj/item/weapon/circuitboard/shield_diffuser
|
|
sort_string = "OAAAB"
|
|
|
|
/datum/design/circuit/pointdefense
|
|
name = "point defense battery"
|
|
id = "pointdefense"
|
|
req_tech = list(TECH_DATA = 2, TECH_ENGINEERING = 3, TECH_COMBAT = 4)
|
|
build_path = /obj/item/weapon/circuitboard/pointdefense
|
|
sort_string = "OAABA"
|
|
|
|
/datum/design/circuit/pointdefense_control
|
|
name = "deluxe microwave"
|
|
id = "pointdefense_control"
|
|
req_tech = list(TECH_DATA = 4, TECH_ENGINEERING = 3, TECH_COMBAT = 2)
|
|
build_path = /obj/item/weapon/circuitboard/pointdefense_control
|
|
sort_string = "OAABB"
|