diff --git a/code/modules/client/preference_setup/loadout/loadout_head.dm b/code/modules/client/preference_setup/loadout/loadout_head.dm index d26413c19c..6220a01c81 100644 --- a/code/modules/client/preference_setup/loadout/loadout_head.dm +++ b/code/modules/client/preference_setup/loadout/loadout_head.dm @@ -251,4 +251,20 @@ /datum/gear/head/sombrero display_name = "sombrero" - path = /obj/item/clothing/head/sombrero \ No newline at end of file + path = /obj/item/clothing/head/sombrero + +/datum/gear/head/flatcapg + display_name = "flat cap" + path = /obj/item/clothing/head/flatcap/grey + +/datum/gear/head/flatcapg/New() + ..() + gear_tweaks = list(gear_tweak_free_color_choice) + +/datum/gear/head/bow + display_name = "hair bow" + path = /obj/item/clothing/head/hairflower/bow + +/datum/gear/head/bow/New() + ..() + gear_tweaks = list(gear_tweak_free_color_choice) \ No newline at end of file diff --git a/code/modules/clothing/head/misc.dm b/code/modules/clothing/head/misc.dm index 1c9c069987..b77fc97b68 100644 --- a/code/modules/clothing/head/misc.dm +++ b/code/modules/clothing/head/misc.dm @@ -32,6 +32,11 @@ /obj/item/clothing/head/hairflower/orange icon_state = "hairflower_orange" +/obj/item/clothing/head/hairflower/bow + icon_state = "bow" + name = "hair bow" + desc = "A ribbon tied into a bow with a clip on the back to attach to hair." + /obj/item/clothing/head/powdered_wig name = "powdered wig" desc = "A powdered wig." @@ -144,6 +149,10 @@ item_state_slots = list(slot_r_hand_str = "detective", slot_l_hand_str = "detective") siemens_coefficient = 0.9 //...what? +/obj/item/clothing/head/flatcap/grey + icon_state = "flat_capg" + list(slot_r_hand_str = "greysoft", slot_l_hand_str = "greysoft") + /obj/item/clothing/head/pirate name = "pirate hat" desc = "Yarr." diff --git a/icons/mob/head.dmi b/icons/mob/head.dmi index b9e90df4b1..734e7e7a86 100644 Binary files a/icons/mob/head.dmi and b/icons/mob/head.dmi differ diff --git a/icons/obj/clothing/hats.dmi b/icons/obj/clothing/hats.dmi index 7afaa10443..8d639b6506 100644 Binary files a/icons/obj/clothing/hats.dmi and b/icons/obj/clothing/hats.dmi differ