diff --git a/code/modules/clothing/head/hood.dm b/code/modules/clothing/head/hood.dm index 2307abf333..7f847d3b47 100644 --- a/code/modules/clothing/head/hood.dm +++ b/code/modules/clothing/head/hood.dm @@ -175,4 +175,10 @@ name = "corgi hood" desc = "A hood that looks just like a corgi's head, it won't guarantee dog biscuits." icon_state = "ian" - item_state_slots = list(slot_r_hand_str = "ian", slot_l_hand_str = "ian") //Does not exist -S2- \ No newline at end of file + item_state_slots = list(slot_r_hand_str = "ian", slot_l_hand_str = "ian") //Does not exist -S2- + +/obj/item/clothing/head/hood/siffet_hood + name = "siffet hood" + desc = "A hood that looks vaguely like a siffet's head. Guaranteed to traumatize your Promethean coworkers." + icon_state = "siffet" + item_state_slots = list(slot_r_hand_str = "siffet", slot_l_hand_str = "siffet") diff --git a/code/modules/clothing/suits/hooded.dm b/code/modules/clothing/suits/hooded.dm index 9ce8e66f5a..6696b48c72 100644 --- a/code/modules/clothing/suits/hooded.dm +++ b/code/modules/clothing/suits/hooded.dm @@ -63,26 +63,32 @@ else RemoveHood() -/obj/item/clothing/suit/storage/hooded/carp_costume +/obj/item/clothing/suit/storage/hooded/costume + body_parts_covered = UPPER_TORSO|LOWER_TORSO|ARMS + flags_inv = HIDEJUMPSUIT|HIDETIE|HIDEHOLSTER + cold_protection = UPPER_TORSO|LOWER_TORSO|ARMS + action_button_name = "Toggle Hood" + +/obj/item/clothing/suit/storage/hooded/costume/siffet + name = "siffet costume" + desc = "A costume made from 'synthetic' siffet fur, it smells like a weasel nest." + icon_state = "siffet" + item_state_slots = list(slot_r_hand_str = "siffet", slot_l_hand_str = "siffet") + hoodtype = /obj/item/clothing/head/hood/siffet_hood + +/obj/item/clothing/suit/storage/hooded/costume/carp name = "carp costume" desc = "A costume made from 'synthetic' carp scales, it smells." icon_state = "carp_casual" item_state_slots = list(slot_r_hand_str = "carp_casual", slot_l_hand_str = "carp_casual") //Does not exist -S2- - body_parts_covered = UPPER_TORSO|LOWER_TORSO|ARMS - flags_inv = HIDEJUMPSUIT|HIDETIE|HIDEHOLSTER - cold_protection = UPPER_TORSO|LOWER_TORSO|ARMS - min_cold_protection_temperature = SPACE_SUIT_MIN_COLD_PROTECTION_TEMPERATURE //Space carp like space, so you should too - action_button_name = "Toggle Carp Hood" hoodtype = /obj/item/clothing/head/hood/carp_hood + min_cold_protection_temperature = SPACE_SUIT_MIN_COLD_PROTECTION_TEMPERATURE //Space carp like space, so you should too -/obj/item/clothing/suit/storage/hooded/ian_costume //It's Ian, rub his bell- oh god what happened to his inside parts? +/obj/item/clothing/suit/storage/hooded/costume/ian //It's Ian, rub his bell- oh god what happened to his inside parts? name = "corgi costume" desc = "A costume that looks like someone made a human-like corgi, it won't guarantee belly rubs." icon_state = "ian" item_state_slots = list(slot_r_hand_str = "ian", slot_l_hand_str = "ian") //Does not exist -S2- - body_parts_covered = UPPER_TORSO|LOWER_TORSO|ARMS - flags_inv = HIDEJUMPSUIT|HIDETIE|HIDEHOLSTER - action_button_name = "Toggle Ian Hood" hoodtype = /obj/item/clothing/head/hood/ian_hood // winter coats go here diff --git a/icons/mob/head.dmi b/icons/mob/head.dmi index c9bd3e46f3..a88b9bfe22 100644 Binary files a/icons/mob/head.dmi and b/icons/mob/head.dmi differ diff --git a/icons/mob/suit.dmi b/icons/mob/suit.dmi index 10c6720f03..27aba23c34 100644 Binary files a/icons/mob/suit.dmi and b/icons/mob/suit.dmi differ diff --git a/icons/obj/clothing/hats.dmi b/icons/obj/clothing/hats.dmi index 34cb2efb31..c44818abce 100644 Binary files a/icons/obj/clothing/hats.dmi and b/icons/obj/clothing/hats.dmi differ diff --git a/icons/obj/clothing/suits.dmi b/icons/obj/clothing/suits.dmi index c8a61946be..548d65a5db 100644 Binary files a/icons/obj/clothing/suits.dmi and b/icons/obj/clothing/suits.dmi differ