diff --git a/code/game/machinery/vendors/generic_vendors.dm b/code/game/machinery/vendors/generic_vendors.dm index 07122c7b523..ccc56ee6c50 100644 --- a/code/game/machinery/vendors/generic_vendors.dm +++ b/code/game/machinery/vendors/generic_vendors.dm @@ -670,6 +670,7 @@ /obj/item/clothing/under/costume/pirate = 1, /obj/item/clothing/suit/pirate_brown = 1, /obj/item/clothing/suit/pirate_black =1, + /obj/item/clothing/head/cool_bandana =1, /obj/item/clothing/under/costume/pirate_rags =1, /obj/item/clothing/head/pirate = 1, /obj/item/clothing/under/costume/soviet = 1, @@ -789,6 +790,7 @@ /obj/item/clothing/under/costume/pirate = 100, /obj/item/clothing/suit/pirate_brown = 100, /obj/item/clothing/suit/pirate_black = 100, + /obj/item/clothing/head/cool_bandana = 50, /obj/item/clothing/under/costume/pirate_rags = 100, /obj/item/clothing/head/pirate = 50, /obj/item/clothing/under/costume/soviet = 100, diff --git a/code/modules/clothing/head/misc_hats.dm b/code/modules/clothing/head/misc_hats.dm index 82ed36e1a68..6545d49cba3 100644 --- a/code/modules/clothing/head/misc_hats.dm +++ b/code/modules/clothing/head/misc_hats.dm @@ -614,3 +614,14 @@ "Grey" = 'icons/mob/clothing/species/grey/head.dmi', "Drask" = 'icons/mob/clothing/species/drask/head.dmi' ) +/obj/item/clothing/head/cool_bandana + name = "badass bandana" + desc = "You know what time it is." + icon_state = "tmc_hat" + item_state = "armor" + sprite_sheets = list( + "Vox" = 'icons/mob/clothing/species/vox/head.dmi', + "Grey" = 'icons/mob/clothing/species/grey/head.dmi', + "Drask" = 'icons/mob/clothing/species/drask/head.dmi', + "Kidan" = 'icons/mob/clothing/species/kidan/head.dmi' + ) diff --git a/icons/mob/clothing/head.dmi b/icons/mob/clothing/head.dmi index 5fbb0f01023..401fd200fe6 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 30d4bbb0def..b5c66b68118 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/grey/head.dmi b/icons/mob/clothing/species/grey/head.dmi index 5b86db8ba29..cef48cd7dcf 100644 Binary files a/icons/mob/clothing/species/grey/head.dmi and b/icons/mob/clothing/species/grey/head.dmi differ diff --git a/icons/mob/clothing/species/kidan/head.dmi b/icons/mob/clothing/species/kidan/head.dmi index eb4f8aa065d..d1657adf3af 100644 Binary files a/icons/mob/clothing/species/kidan/head.dmi and b/icons/mob/clothing/species/kidan/head.dmi differ diff --git a/icons/mob/clothing/species/vox/head.dmi b/icons/mob/clothing/species/vox/head.dmi index d375080b891..6bc672a7fa2 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 020c2e84716..e99588b2e83 100644 Binary files a/icons/obj/clothing/hats.dmi and b/icons/obj/clothing/hats.dmi differ