Add alternative detective wear

This commit is contained in:
Aronai Sieyes
2020-02-21 13:46:49 -05:00
parent b0c6118a52
commit 2a53830fa7
10 changed files with 35 additions and 4 deletions

View File

@@ -37,10 +37,13 @@
satchel_one = /obj/item/weapon/storage/backpack/satchel/norm
backpack_contents = list(/obj/item/weapon/storage/box/evidence = 1)
//VOREStation Edit - More cyberpunky
/decl/hierarchy/outfit/job/security/detective/forensic
name = OUTFIT_JOB_NAME("Forensic technician")
head = null
suit = /obj/item/clothing/suit/storage/forensics/blue
head = /obj/item/clothing/head/helmet/detective_alt
suit = null
uniform = /obj/item/clothing/under/detective_alt
//VOREStation Edit End
/decl/hierarchy/outfit/job/security/officer
name = OUTFIT_JOB_NAME("Security Officer")

View File

@@ -9,3 +9,9 @@
/datum/gear/head/headbando/New()
..()
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")

View File

@@ -173,3 +173,9 @@ Swimsuits
/datum/gear/uniform/suit/v_nanovest
display_name = "Varmacorp 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")

View 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

View 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"

Binary file not shown.

Before

Width:  |  Height:  |  Size: 16 KiB

After

Width:  |  Height:  |  Size: 17 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 10 KiB

After

Width:  |  Height:  |  Size: 11 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 3.0 KiB

After

Width:  |  Height:  |  Size: 3.2 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.6 KiB

After

Width:  |  Height:  |  Size: 1.8 KiB

View File

@@ -1705,6 +1705,7 @@
#include "code\modules\clothing\head\helmet_vr.dm"
#include "code\modules\clothing\head\hood.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_special.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\medsci.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\vox.dm"
#include "code\modules\customitems\item_spawning.dm"