Merge pull request #8069 from klaasjared/The-PCU

The Personal Computer Unit
This commit is contained in:
Atermonera
2021-05-09 22:14:17 -07:00
committed by VirgoBot
parent 5c2c83cd81
commit a712cdf5cc
5 changed files with 26 additions and 25 deletions
@@ -18,12 +18,12 @@
/obj/machinery/computer/atmoscontrol/New()
..()
/obj/machinery/computer/atmoscontrol/laptop
name = "Atmospherics Laptop"
desc = "A cheap laptop."
icon_screen = "medlaptop"
icon_state = "laptop"
icon_keyboard = "laptop_key"
/obj/machinery/computer/atmoscontrol/laptop //[TO DO] Change name to PCU and update mapdata to include replacement computers
name = "\improper Atmospherics PCU"
desc = "A personal computer unit. It seems to have only the Atmosphereics Control program installed."
icon_screen = "pcu_atmo"
icon_state = "pcu"
icon_keyboard = "pcu_key"
density = 0
/obj/machinery/computer/atmoscontrol/attack_ai(var/mob/user as mob)
+8 -7
View File
@@ -493,13 +493,14 @@
..(severity)
/obj/machinery/computer/med_data/laptop
name = "Medical Laptop"
desc = "A cheap laptop. It seems to have only the medical records program."
icon_state = "laptop"
icon_keyboard = "laptop_key"
icon_screen = "medlaptop"
circuit = /obj/item/weapon/circuitboard/med_data/laptop
/obj/machinery/computer/med_data/laptop //[TO DO] Change name to PCU and update mapdata to include replacement computers
name = "\improper Medical Laptop"
desc = "A personal computer unit. It seems to have only the medical records program installed."
icon_screen = "pcu_generic"
icon_state = "pcu"
icon_keyboard = "pcu_key"
light_color = "#00b000"
circuit = /obj/item/weapon/circuitboard/med_data/pcu
density = 0
#undef FIELD
+8 -8
View File
@@ -6,15 +6,15 @@
#define FIELD(N, V, E) list(field = N, value = V, edit = E)
/obj/machinery/computer/skills//TODO:SANITY
name = "employment records console"
desc = "Used to view, edit and maintain employment records."
icon_state = "laptop"
icon_keyboard = "laptop_key"
icon_screen = "medlaptop"
/obj/machinery/computer/skills//TODO:SANITY //[TO DO] Change name to PCU and update mapdata to include replacement computers
name = "\improper Employment Records PCU"
desc = "A personal computer unit that's used to view, edit and maintain employment records."
icon_screen = "pcu_generic"
icon_state = "pcu"
icon_keyboard = "pcu_key"
light_color = "#00b000"
req_one_access = list(access_heads)
circuit = /obj/item/weapon/circuitboard/skills
circuit = /obj/item/weapon/circuitboard/skills/pcu
density = 0
var/obj/item/weapon/card/id/scan = null
var/authenticated = null
@@ -175,7 +175,7 @@
screen = GENERAL_RECORD_LIST
else
. = FALSE
if(.)
return
@@ -21,8 +21,8 @@
name = T_BOARD("medical records console")
build_path = /obj/machinery/computer/med_data
/obj/item/weapon/circuitboard/med_data/laptop
name = T_BOARD("medical records laptop")
/obj/item/weapon/circuitboard/med_data/pcu
name = T_BOARD("medical records PCU")
build_path = /obj/machinery/computer/med_data/laptop
/obj/item/weapon/circuitboard/scan_consolenew
@@ -52,8 +52,8 @@
name = T_BOARD("security records console")
build_path = /obj/machinery/computer/secure_data
/obj/item/weapon/circuitboard/skills
name = T_BOARD("employment records console")
/obj/item/weapon/circuitboard/skills/pcu
name = T_BOARD("employment records PCU")
build_path = /obj/machinery/computer/skills
/obj/item/weapon/circuitboard/stationalert_engineering
Binary file not shown.

Before

Width:  |  Height:  |  Size: 136 KiB

After

Width:  |  Height:  |  Size: 138 KiB