diff --git a/code/modules/client/preference_setup/loadout/loadout_head.dm b/code/modules/client/preference_setup/loadout/loadout_head.dm index 7bcc8275a5..5205d9f367 100644 --- a/code/modules/client/preference_setup/loadout/loadout_head.dm +++ b/code/modules/client/preference_setup/loadout/loadout_head.dm @@ -287,6 +287,14 @@ ..() gear_tweaks += gear_tweak_free_color_choice +/datum/gear/head/bow/large + display_name = "hair bow, large (colorable)" + path = /obj/item/clothing/head/pin/bow/big + +/datum/gear/head/bow/large/New() + ..() + gear_tweaks += gear_tweak_free_color_choice + /datum/gear/head/welding/ display_name = "welding helmet selection (engineering/robotics)" path = /obj/item/clothing/head/welding diff --git a/code/modules/client/preference_setup/loadout/loadout_suit.dm b/code/modules/client/preference_setup/loadout/loadout_suit.dm index a63053c17c..4992bfda29 100644 --- a/code/modules/client/preference_setup/loadout/loadout_suit.dm +++ b/code/modules/client/preference_setup/loadout/loadout_suit.dm @@ -18,6 +18,14 @@ display_name = "greatcoat" path = /obj/item/clothing/suit/greatcoat +/datum/gear/suit/greatcoat_white + display_name = "greatcoat, colorable" + path = /obj/item/clothing/suit/greatcoat/white + +/datum/gear/suit/greatcoat_white/New() + ..() + gear_tweaks += gear_tweak_free_color_choice + /datum/gear/suit/leather_coat display_name = "leather coat" path = /obj/item/clothing/suit/leathercoat diff --git a/code/modules/clothing/suits/miscellaneous.dm b/code/modules/clothing/suits/miscellaneous.dm index 2afd010619..effc7273e6 100644 --- a/code/modules/clothing/suits/miscellaneous.dm +++ b/code/modules/clothing/suits/miscellaneous.dm @@ -286,6 +286,10 @@ item_state_slots = list(slot_r_hand_str = "greatcoat", slot_l_hand_str = "greatcoat") flags_inv = HIDEHOLSTER +/obj/item/clothing/suit/greatcoat/white + icon_state = "greatcoat_white" + item_state_slots = list(slot_r_hand_str = "duster", slot_l_hand_str = "duster") + /obj/item/clothing/suit/straight_jacket //A misspelling from time immemorial... name = "straitjacket" desc = "A suit that completely restrains the wearer." diff --git a/icons/mob/suit.dmi b/icons/mob/suit.dmi index cafc60896f..686590cd2a 100644 Binary files a/icons/mob/suit.dmi and b/icons/mob/suit.dmi differ diff --git a/icons/obj/clothing/suits.dmi b/icons/obj/clothing/suits.dmi index ac398d2166..69308450dd 100644 Binary files a/icons/obj/clothing/suits.dmi and b/icons/obj/clothing/suits.dmi differ