diff --git a/code/game/machinery/vendors/wardrobe_vendors.dm b/code/game/machinery/vendors/wardrobe_vendors.dm index d2b832e42eb..8e74878479d 100644 --- a/code/game/machinery/vendors/wardrobe_vendors.dm +++ b/code/game/machinery/vendors/wardrobe_vendors.dm @@ -26,6 +26,7 @@ /obj/item/clothing/head/cowboyhat/sec = 4, /obj/item/clothing/head/officer = 4, /obj/item/clothing/head/beret/sec = 4, + /obj/item/clothing/head/beret/sec/corporate = 4, /obj/item/clothing/head/soft/sec = 4, /obj/item/clothing/head/drillsgt = 4, /obj/item/clothing/mask/bandana/red = 4, @@ -65,6 +66,7 @@ /obj/item/clothing/head/soft/sec/corp = 40, /obj/item/clothing/head/officer = 40, /obj/item/clothing/head/beret/sec = 40, + /obj/item/clothing/head/beret/sec/corporate = 40, /obj/item/clothing/head/soft/sec = 40, /obj/item/clothing/head/cowboyhat/sec = 50, /obj/item/clothing/head/drillsgt = 40, diff --git a/code/modules/clothing/head/beret.dm b/code/modules/clothing/head/beret.dm index 15d8c72bd49..d386ee2c754 100644 --- a/code/modules/clothing/head/beret.dm +++ b/code/modules/clothing/head/beret.dm @@ -89,7 +89,11 @@ icon_state = "beret_officer" armor = list(MELEE = 25, BULLET = 20, LASER = 20, ENERGY = 5, BOMB = 0, RAD = 0, FIRE = 10, ACID = 50) strip_delay = 60 - dog_fashion = /datum/dog_fashion/head/beret/sec + dog_fashion = /datum/dog_fashion/head/beret/sec + +/obj/item/clothing/head/beret/sec/corporate + name = "corporate security beret" + icon_state = "beret_corporate_officer" /obj/item/clothing/head/beret/warden name = "warden's beret" diff --git a/icons/mob/clothing/head/beret.dmi b/icons/mob/clothing/head/beret.dmi index 97a7a4593c6..549de094bc0 100644 Binary files a/icons/mob/clothing/head/beret.dmi and b/icons/mob/clothing/head/beret.dmi differ diff --git a/icons/mob/clothing/species/drask/head/beret.dmi b/icons/mob/clothing/species/drask/head/beret.dmi index 0cda154eff1..7003f13e9e2 100644 Binary files a/icons/mob/clothing/species/drask/head/beret.dmi and b/icons/mob/clothing/species/drask/head/beret.dmi differ diff --git a/icons/mob/clothing/species/kidan/head/beret.dmi b/icons/mob/clothing/species/kidan/head/beret.dmi index 93135fcd955..b49554d4868 100644 Binary files a/icons/mob/clothing/species/kidan/head/beret.dmi and b/icons/mob/clothing/species/kidan/head/beret.dmi differ diff --git a/icons/mob/clothing/species/vox/head/beret.dmi b/icons/mob/clothing/species/vox/head/beret.dmi index 490ba4c6244..5925c2904e7 100644 Binary files a/icons/mob/clothing/species/vox/head/beret.dmi and b/icons/mob/clothing/species/vox/head/beret.dmi differ diff --git a/icons/obj/clothing/head/beret.dmi b/icons/obj/clothing/head/beret.dmi index 8a0ee23d414..00f341b791d 100644 Binary files a/icons/obj/clothing/head/beret.dmi and b/icons/obj/clothing/head/beret.dmi differ