diff --git a/code/game/objects/items/storage/garment.dm b/code/game/objects/items/storage/garment.dm index ef6539506b6..53892fd28ce 100644 --- a/code/game/objects/items/storage/garment.dm +++ b/code/game/objects/items/storage/garment.dm @@ -62,11 +62,11 @@ /obj/item/storage/bag/garment/hop/PopulateContents() new /obj/item/clothing/under/rank/civilian/head_of_personnel(src) new /obj/item/clothing/under/rank/civilian/head_of_personnel/skirt(src) - new /obj/item/clothing/suit/armor/vest/alt(src) + new /obj/item/clothing/suit/armor/vest/hop(src) new /obj/item/clothing/glasses/sunglasses(src) new /obj/item/clothing/head/hopcap(src) new /obj/item/clothing/neck/cloak/hop(src) - new /obj/item/clothing/shoes/sneakers/brown(src) + new /obj/item/clothing/shoes/laceup(src) new /obj/item/clothing/suit/hooded/wintercoat/hop(src) /obj/item/storage/bag/garment/hos/PopulateContents() diff --git a/code/modules/clothing/suits/armor.dm b/code/modules/clothing/suits/armor.dm index 29aa68183c5..13e349d4560 100644 --- a/code/modules/clothing/suits/armor.dm +++ b/code/modules/clothing/suits/armor.dm @@ -371,3 +371,10 @@ /obj/item/clothing/suit/armor/centcom_formal/Initialize(mapload) . = ..() AddComponent(/datum/component/toggle_icon) + +/obj/item/clothing/suit/armor/vest/hop + name = "head of personnel's coat" + desc = "A stylish coat given to a Head of Personnel." + icon_state = "hop_coat" + inhand_icon_state = "b_suit" + body_parts_covered = CHEST|GROIN|ARMS diff --git a/code/modules/clothing/under/jobs/civilian/civilian.dm b/code/modules/clothing/under/jobs/civilian/civilian.dm index 9d8ff4f892e..a5c65f09c7a 100644 --- a/code/modules/clothing/under/jobs/civilian/civilian.dm +++ b/code/modules/clothing/under/jobs/civilian/civilian.dm @@ -60,14 +60,15 @@ supports_variations_flags = CLOTHING_DIGITIGRADE_VARIATION_NO_NEW_ICON /obj/item/clothing/under/rank/civilian/head_of_personnel - desc = "It's a jumpsuit worn by someone who works in the position of \"Head of Personnel\"." - name = "head of personnel's jumpsuit" + desc = "A slick uniform worn by those to earn the position of \"Head of Personnel\"." + name = "head of personnel's uniform" icon_state = "hop" inhand_icon_state = "b_suit" + alt_covers_chest = TRUE /obj/item/clothing/under/rank/civilian/head_of_personnel/skirt - name = "head of personnel's jumpskirt" - desc = "It's a jumpskirt worn by someone who works in the position of \"Head of Personnel\"." + name = "head of personnel's skirt" + desc = "A slick uniform and skirt combo worn by those to earn the position of \"Head of Personnel\"." icon_state = "hop_skirt" inhand_icon_state = "b_suit" body_parts_covered = CHEST|GROIN|ARMS diff --git a/code/modules/jobs/job_types/head_of_personnel.dm b/code/modules/jobs/job_types/head_of_personnel.dm index 17a1bad9d03..69e56ab13e9 100644 --- a/code/modules/jobs/job_types/head_of_personnel.dm +++ b/code/modules/jobs/job_types/head_of_personnel.dm @@ -63,7 +63,8 @@ belt = /obj/item/modular_computer/tablet/pda/heads/hop ears = /obj/item/radio/headset/heads/hop head = /obj/item/clothing/head/hopcap - shoes = /obj/item/clothing/shoes/sneakers/brown + shoes = /obj/item/clothing/shoes/laceup + suit = /obj/item/clothing/suit/armor/vest/hop chameleon_extras = list( /obj/item/gun/energy/e_gun, diff --git a/code/modules/modular_computers/computers/item/role_tablet_presets.dm b/code/modules/modular_computers/computers/item/role_tablet_presets.dm index dc7ca587ccc..961d16ed01f 100644 --- a/code/modules/modular_computers/computers/item/role_tablet_presets.dm +++ b/code/modules/modular_computers/computers/item/role_tablet_presets.dm @@ -34,6 +34,8 @@ /obj/item/modular_computer/tablet/pda/heads/hop name = "head of personnel PDA" + greyscale_config = /datum/greyscale_config/tablet/stripe_thick/head + greyscale_colors = "#374f7e#a52f29#a52f29" default_applications = list( /datum/computer_file/program/crew_manifest, /datum/computer_file/program/status, diff --git a/icons/mob/clothing/head.dmi b/icons/mob/clothing/head.dmi index e7ae49ac0bd..92b42d3593a 100644 Binary files a/icons/mob/clothing/head.dmi and b/icons/mob/clothing/head.dmi differ diff --git a/icons/mob/clothing/suit.dmi b/icons/mob/clothing/suit.dmi index 99fe1b55b08..733fb783870 100644 Binary files a/icons/mob/clothing/suit.dmi and b/icons/mob/clothing/suit.dmi differ diff --git a/icons/mob/clothing/under/civilian.dmi b/icons/mob/clothing/under/civilian.dmi index 88e01659982..82705389c6c 100644 Binary files a/icons/mob/clothing/under/civilian.dmi and b/icons/mob/clothing/under/civilian.dmi differ diff --git a/icons/obj/clothing/hats.dmi b/icons/obj/clothing/hats.dmi index eb3321b7838..37f79a8ea41 100644 Binary files a/icons/obj/clothing/hats.dmi and b/icons/obj/clothing/hats.dmi differ diff --git a/icons/obj/clothing/suits.dmi b/icons/obj/clothing/suits.dmi index 0b4dba3e586..22a737220ee 100644 Binary files a/icons/obj/clothing/suits.dmi and b/icons/obj/clothing/suits.dmi differ diff --git a/icons/obj/clothing/under/civilian.dmi b/icons/obj/clothing/under/civilian.dmi index 501cebec217..ccb203e1fbb 100644 Binary files a/icons/obj/clothing/under/civilian.dmi and b/icons/obj/clothing/under/civilian.dmi differ diff --git a/icons/obj/pda.dmi b/icons/obj/pda.dmi index 4363a1c5ede..a26fb0f7d58 100644 Binary files a/icons/obj/pda.dmi and b/icons/obj/pda.dmi differ