Add alternative detective wear
@@ -37,10 +37,13 @@
|
|||||||
satchel_one = /obj/item/weapon/storage/backpack/satchel/norm
|
satchel_one = /obj/item/weapon/storage/backpack/satchel/norm
|
||||||
backpack_contents = list(/obj/item/weapon/storage/box/evidence = 1)
|
backpack_contents = list(/obj/item/weapon/storage/box/evidence = 1)
|
||||||
|
|
||||||
|
//VOREStation Edit - More cyberpunky
|
||||||
/decl/hierarchy/outfit/job/security/detective/forensic
|
/decl/hierarchy/outfit/job/security/detective/forensic
|
||||||
name = OUTFIT_JOB_NAME("Forensic technician")
|
name = OUTFIT_JOB_NAME("Forensic technician")
|
||||||
head = null
|
head = /obj/item/clothing/head/helmet/detective_alt
|
||||||
suit = /obj/item/clothing/suit/storage/forensics/blue
|
suit = null
|
||||||
|
uniform = /obj/item/clothing/under/detective_alt
|
||||||
|
//VOREStation Edit End
|
||||||
|
|
||||||
/decl/hierarchy/outfit/job/security/officer
|
/decl/hierarchy/outfit/job/security/officer
|
||||||
name = OUTFIT_JOB_NAME("Security Officer")
|
name = OUTFIT_JOB_NAME("Security Officer")
|
||||||
|
|||||||
@@ -8,4 +8,10 @@
|
|||||||
|
|
||||||
/datum/gear/head/headbando/New()
|
/datum/gear/head/headbando/New()
|
||||||
..()
|
..()
|
||||||
gear_tweaks = list(gear_tweak_free_color_choice)
|
gear_tweaks = list(gear_tweak_free_color_choice)
|
||||||
|
|
||||||
|
//Detective alternative
|
||||||
|
/datum/gear/head/detective_alt
|
||||||
|
display_name = "cyberscope headgear, detective"
|
||||||
|
path = /obj/item/clothing/head/helmet/detective_alt
|
||||||
|
allowed_roles = list("Head of Security", "Detective")
|
||||||
|
|||||||
@@ -172,4 +172,10 @@ Swimsuits
|
|||||||
|
|
||||||
/datum/gear/uniform/suit/v_nanovest
|
/datum/gear/uniform/suit/v_nanovest
|
||||||
display_name = "Varmacorp nanovest"
|
display_name = "Varmacorp nanovest"
|
||||||
path = /obj/item/clothing/under/fluff/v_nanovest
|
path = /obj/item/clothing/under/fluff/v_nanovest
|
||||||
|
|
||||||
|
//Detective alternative
|
||||||
|
/datum/gear/uniform/detective_alt
|
||||||
|
display_name = "sleek modern coat, detective"
|
||||||
|
path = /obj/item/clothing/under/detective_alt
|
||||||
|
allowed_roles = list("Head of Security", "Detective")
|
||||||
|
|||||||
8
code/modules/clothing/head/jobs_vr.dm
Normal file
@@ -0,0 +1,8 @@
|
|||||||
|
/obj/item/clothing/head/helmet/detective_alt
|
||||||
|
name = "Type-34C Semi-Enclosed Headwear"
|
||||||
|
desc = "Civilian model of a popular helmet used by certain law enforcement agencies. It does not have any armor plating, but has a neo-laminated fiber lining."
|
||||||
|
icon_state = "cyberpunkgoggle"
|
||||||
|
icon = 'icons/obj/clothing/hats_vr.dmi'
|
||||||
|
icon_override = 'icons/mob/head_vr.dmi'
|
||||||
|
flags_inv = HIDEEARS|HIDEEYES|BLOCKHAIR
|
||||||
|
|
||||||
6
code/modules/clothing/under/jobs/security_vr.dm
Normal file
@@ -0,0 +1,6 @@
|
|||||||
|
/obj/item/clothing/under/detective_alt
|
||||||
|
desc = "sleek modern coat"
|
||||||
|
icon = 'icons/obj/clothing/uniforms_vr.dmi'
|
||||||
|
icon_override = 'icons/mob/uniform_vr.dmi'
|
||||||
|
icon_state = "cyberpunksleek"
|
||||||
|
item_state = "cyberpunksleek"
|
||||||
|
Before Width: | Height: | Size: 16 KiB After Width: | Height: | Size: 17 KiB |
|
Before Width: | Height: | Size: 10 KiB After Width: | Height: | Size: 11 KiB |
|
Before Width: | Height: | Size: 3.0 KiB After Width: | Height: | Size: 3.2 KiB |
|
Before Width: | Height: | Size: 1.6 KiB After Width: | Height: | Size: 1.8 KiB |
@@ -1705,6 +1705,7 @@
|
|||||||
#include "code\modules\clothing\head\helmet_vr.dm"
|
#include "code\modules\clothing\head\helmet_vr.dm"
|
||||||
#include "code\modules\clothing\head\hood.dm"
|
#include "code\modules\clothing\head\hood.dm"
|
||||||
#include "code\modules\clothing\head\jobs.dm"
|
#include "code\modules\clothing\head\jobs.dm"
|
||||||
|
#include "code\modules\clothing\head\jobs_vr.dm"
|
||||||
#include "code\modules\clothing\head\misc.dm"
|
#include "code\modules\clothing\head\misc.dm"
|
||||||
#include "code\modules\clothing\head\misc_special.dm"
|
#include "code\modules\clothing\head\misc_special.dm"
|
||||||
#include "code\modules\clothing\head\misc_vr.dm"
|
#include "code\modules\clothing\head\misc_vr.dm"
|
||||||
@@ -1813,6 +1814,7 @@
|
|||||||
#include "code\modules\clothing\under\jobs\engineering.dm"
|
#include "code\modules\clothing\under\jobs\engineering.dm"
|
||||||
#include "code\modules\clothing\under\jobs\medsci.dm"
|
#include "code\modules\clothing\under\jobs\medsci.dm"
|
||||||
#include "code\modules\clothing\under\jobs\security.dm"
|
#include "code\modules\clothing\under\jobs\security.dm"
|
||||||
|
#include "code\modules\clothing\under\jobs\security_vr.dm"
|
||||||
#include "code\modules\clothing\under\xenos\seromi.dm"
|
#include "code\modules\clothing\under\xenos\seromi.dm"
|
||||||
#include "code\modules\clothing\under\xenos\vox.dm"
|
#include "code\modules\clothing\under\xenos\vox.dm"
|
||||||
#include "code\modules\customitems\item_spawning.dm"
|
#include "code\modules\customitems\item_spawning.dm"
|
||||||
|
|||||||