diff --git a/code/defines/obj.dm b/code/defines/obj.dm index 470774cf7b..f57b4cb6c8 100644 --- a/code/defines/obj.dm +++ b/code/defines/obj.dm @@ -157,7 +157,7 @@ var/global/list/PDA_Manifest = list() list("cat" = "Medical", "elems" = med), list("cat" = "Science", "elems" = sci), list("cat" = "Cargo", "elems" = car), - // list("cat" = "Planetside", "elems" = pla), // VOREStation Edit - Don't show empty dpt in PDA + list("cat" = "Exploration", "elems" = pla), // VOREStation Edit list("cat" = "Civilian", "elems" = civ), list("cat" = "Silicon", "elems" = bot), list("cat" = "Miscellaneous", "elems" = misc) diff --git a/code/game/jobs/job/offduty_vr.dm b/code/game/jobs/job/offduty_vr.dm index 420943c562..a82f459b89 100644 --- a/code/game/jobs/job/offduty_vr.dm +++ b/code/game/jobs/job/offduty_vr.dm @@ -79,3 +79,16 @@ access = list(access_maint_tunnels) minimal_access = list(access_maint_tunnels) outfit_type = /decl/hierarchy/outfit/job/assistant + +/datum/job/offduty_exploration + title = "Off-duty Explorer" + latejoin_only = TRUE + timeoff_factor = -1 + total_positions = -1 + faction = "Station" + department = "Exploration" + supervisors = "nobody! Enjoy your time off" + selection_color = "#999440" + access = list(access_maint_tunnels, access_external_airlocks) + minimal_access = list(access_maint_tunnels, access_external_airlocks) + outfit_type = /decl/hierarchy/outfit/job/assistant diff --git a/code/modules/nano/nanoui.dm b/code/modules/nano/nanoui.dm index 43f98e3361..9e02ec88b1 100644 --- a/code/modules/nano/nanoui.dm +++ b/code/modules/nano/nanoui.dm @@ -111,6 +111,7 @@ nanoui is used to open and update nano browser uis add_script("nano_base_callbacks.js") // The NanoBaseCallbacks JS, this is used to set up (before and after update) callbacks which are common to all UIs add_script("nano_base_helpers.js") // The NanoBaseHelpers JS, this is used to set up template helpers which are common to all UIs add_stylesheet("shared.css") // this CSS sheet is common to all UIs + add_stylesheet("shared_vr.css") // VOREStation Add add_stylesheet("icons.css") // this CSS sheet is common to all UIs /** diff --git a/icons/mob/hud_jobs_vr.dmi b/icons/mob/hud_jobs_vr.dmi index 88d68a41f1..4a0eba7d74 100644 Binary files a/icons/mob/hud_jobs_vr.dmi and b/icons/mob/hud_jobs_vr.dmi differ diff --git a/nano/css/shared_vr.css b/nano/css/shared_vr.css new file mode 100644 index 0000000000..a368b1fac5 --- /dev/null +++ b/nano/css/shared_vr.css @@ -0,0 +1,5 @@ +th.Exploration{ + background: #bab421; + font-weight: bold; + color: #ffffff; +} \ No newline at end of file