diff --git a/code/game/objects/items/weapons/storage/garment.dm b/code/game/objects/items/weapons/storage/garment.dm index 0f6c19e7c96..5a3bec68e74 100644 --- a/code/game/objects/items/weapons/storage/garment.dm +++ b/code/game/objects/items/weapons/storage/garment.dm @@ -53,6 +53,7 @@ /obj/item/storage/bag/garment/head_of_personnel/populate_contents() new /obj/item/clothing/head/hopcap(src) + new /obj/item/clothing/head/hopcap/beret(src) new /obj/item/clothing/suit/mantle/armor/head_of_personnel(src) new /obj/item/clothing/suit/armor/vest(src) new /obj/item/clothing/under/rank/civilian/head_of_personnel(src) diff --git a/code/modules/client/preference/loadout/loadout_hat.dm b/code/modules/client/preference/loadout/loadout_hat.dm index 4db77a19b2f..06929b6311e 100644 --- a/code/modules/client/preference/loadout/loadout_hat.dm +++ b/code/modules/client/preference/loadout/loadout_hat.dm @@ -177,6 +177,11 @@ path = /obj/item/clothing/head/beret/sec allowed_roles = list("Head of Security", "Warden", "Security Officer") +/datum/gear/hat/beret_job/hop + display_name = "Beret, head of personnel" + path = /obj/item/clothing/head/hopcap/beret + allowed_roles = list("Head of Personnel") + /datum/gear/hat/beret_job/sci display_name = "Beret, science" path = /obj/item/clothing/head/beret/sci diff --git a/code/modules/clothing/head/job_hats.dm b/code/modules/clothing/head/job_hats.dm index d8a2e8bc7c1..5761dfdcbef 100644 --- a/code/modules/clothing/head/job_hats.dm +++ b/code/modules/clothing/head/job_hats.dm @@ -57,6 +57,15 @@ armor = list(MELEE = 15, BULLET = 10, LASER = 15, ENERGY = 5, BOMB = 15, RAD = 0, FIRE = 50, ACID = 50) dog_fashion = /datum/dog_fashion/head/hop +/obj/item/clothing/head/hopcap/beret + name = "head of personnel's beret" + desc = "For doing paperwork with style." + icon_state = "hop_beret" + sprite_sheets = list( + "Vox" = 'icons/mob/clothing/species/vox/head.dmi', + "Drask" = 'icons/mob/clothing/species/drask/head.dmi', + ) + //Nanotrasen Representative /obj/item/clothing/head/ntrep name = "Nanotrasen Representative's hat" diff --git a/icons/mob/clothing/head.dmi b/icons/mob/clothing/head.dmi index 20e9e40df95..fcac5dc7111 100644 Binary files a/icons/mob/clothing/head.dmi and b/icons/mob/clothing/head.dmi differ diff --git a/icons/mob/clothing/species/drask/head.dmi b/icons/mob/clothing/species/drask/head.dmi index 52d01919f9b..c3ef64d8921 100644 Binary files a/icons/mob/clothing/species/drask/head.dmi and b/icons/mob/clothing/species/drask/head.dmi differ diff --git a/icons/mob/clothing/species/vox/head.dmi b/icons/mob/clothing/species/vox/head.dmi index 3354dd215ba..374d72b7698 100644 Binary files a/icons/mob/clothing/species/vox/head.dmi and b/icons/mob/clothing/species/vox/head.dmi differ diff --git a/icons/obj/clothing/hats.dmi b/icons/obj/clothing/hats.dmi index 15145640d3d..5aedfb731b7 100644 Binary files a/icons/obj/clothing/hats.dmi and b/icons/obj/clothing/hats.dmi differ