mirror of
https://github.com/CHOMPStation2/CHOMPStation2.git
synced 2025-12-11 02:34:00 +00:00
Corrects names of computers, code formatting, updated computer descriptions.
Everything in game/machinery/computers/ and modules/shuttles should now have properly (de)capitalized names. Computer, board and research names should now be coherent, too. Adds a research for employment records circuit board.
This commit is contained in:
@@ -77,8 +77,8 @@ datum/design/New()
|
||||
|
||||
///////////////////Computer Boards///////////////////////////////////
|
||||
datum/design/circuit
|
||||
req_tech = list("programming" = 2)
|
||||
build_type = IMPRINTER
|
||||
req_tech = list("programming" = 2)
|
||||
materials = list("$glass" = 2000, "sacid" = 20)
|
||||
|
||||
datum/design/circuit/AssembleDesignInfo()
|
||||
@@ -109,11 +109,6 @@ datum/design/circuit/borgupload
|
||||
req_tech = list("programming" = 4)
|
||||
build_path = /obj/item/weapon/circuitboard/borgupload
|
||||
|
||||
datum/design/circuit/med_data
|
||||
name = "medical records console"
|
||||
id = "med_data"
|
||||
build_path = /obj/item/weapon/circuitboard/med_data
|
||||
|
||||
datum/design/circuit/operating
|
||||
name = "patient monitoring console"
|
||||
id = "operating"
|
||||
@@ -150,9 +145,19 @@ datum/design/circuit/teleconsole
|
||||
id = "teleconsole"
|
||||
req_tech = list("programming" = 3, "bluespace" = 2)
|
||||
|
||||
datum/design/circuit/emp_data
|
||||
name = "employment records console"
|
||||
id = "emp_data"
|
||||
build_path = /obj/item/weapon/circuitboard/skills
|
||||
|
||||
datum/design/circuit/med_data
|
||||
name = "medical records console"
|
||||
id = "med_data"
|
||||
build_path = /obj/item/weapon/circuitboard/med_data
|
||||
|
||||
datum/design/circuit/secdata
|
||||
name = "security records console"
|
||||
id = "secdata"
|
||||
id = "sec_data"
|
||||
build_path = /obj/item/weapon/circuitboard/secure_data
|
||||
|
||||
datum/design/circuit/atmosalerts
|
||||
@@ -281,6 +286,29 @@ datum/design/circuit/aifixer
|
||||
req_tech = list("programming" = 3, "biotech" = 2)
|
||||
build_path = /obj/item/weapon/circuitboard/aifixer
|
||||
|
||||
///////////////////////////////////
|
||||
/////////Shield Generators/////////
|
||||
///////////////////////////////////
|
||||
datum/design/shield
|
||||
req_tech = list("bluespace" = 4, "phorontech" = 3)
|
||||
materials = list("$glass" = 2000, "sacid" = 20, "$phoron" = 10000, "$diamond" = 5000, "$gold" = 10000)
|
||||
|
||||
datum/design/shield/bubble
|
||||
name = "bubble shield generator"
|
||||
id = "shield_gen"
|
||||
build_path = "/obj/machinery/shield_gen/external"
|
||||
|
||||
datum/design/shield/hull
|
||||
name = "hull shield generator"
|
||||
id = "shield_gen_ex"
|
||||
build_path = "/obj/machinery/shield_gen/external"
|
||||
|
||||
datum/design/shield/capacitor
|
||||
name = "shield capacitor"
|
||||
id = "shield_cap"
|
||||
req_tech = list("magnets" = 3, "powerstorage" = 4)
|
||||
build_path = "/obj/machinery/shield_gen/external"
|
||||
|
||||
///////////////////////////////////
|
||||
//////////AI Module Disks//////////
|
||||
///////////////////////////////////
|
||||
|
||||
@@ -32,7 +32,7 @@ won't update every console in existence) but it's more of a hassle to do. Also,
|
||||
*/
|
||||
|
||||
/obj/machinery/computer/rdconsole
|
||||
name = "R&D Console"
|
||||
name = "R&D control console"
|
||||
icon_state = "rdcomp"
|
||||
circuit = /obj/item/weapon/circuitboard/rdconsole
|
||||
var/datum/research/files //Stores all the collected research data.
|
||||
|
||||
Reference in New Issue
Block a user