diff --git a/code/modules/clothing/suits/miscellaneous.dm b/code/modules/clothing/suits/miscellaneous.dm index 63f5cf8dca3..f90b1703d34 100644 --- a/code/modules/clothing/suits/miscellaneous.dm +++ b/code/modules/clothing/suits/miscellaneous.dm @@ -312,6 +312,22 @@ flags = BLOCKHAIR flags_inv = HIDEEARS +/obj/item/clothing/suit/hooded/salmon_costume + name = "salmon suit" + desc = "A costume made from authentic salmon scales, it reeks!" + icon_state = "salmon" + body_parts_covered = UPPER_TORSO|LOWER_TORSO|ARMS + allowed = list(/obj/item/fish/salmon, /obj/item/fish_eggs/salmon) + hoodtype = /obj/item/clothing/head/hooded/salmon_hood + +/obj/item/clothing/head/hooded/salmon_hood + name = "salmon hood" + desc = "A hood attached to a salmon suit." + icon_state = "salmon" + body_parts_covered = HEAD + flags = BLOCKHAIR + flags_inv = HIDEEARS + /obj/item/clothing/suit/hooded/bee_costume // It's Hip! name = "bee costume" desc = "Bee the true Queen!" diff --git a/code/modules/crafting/tailoring.dm b/code/modules/crafting/tailoring.dm index 38419f718c4..68fa7fca3f3 100644 --- a/code/modules/crafting/tailoring.dm +++ b/code/modules/crafting/tailoring.dm @@ -152,3 +152,13 @@ /obj/item/clothing/shoes/sandal = 1) tools = list(TOOL_WIRECUTTER) category = CAT_CLOTHING + +/datum/crafting_recipe/salmonsuit + name = "Salmon Suit" + result = /obj/item/clothing/suit/hooded/salmon_costume + time = 60 + reqs = list(/obj/item/fish/salmon = 20, + /obj/item/stack/tape_roll = 5) + tools = list(TOOL_WIRECUTTER) + pathtools = list(/obj/item/kitchen/knife) + category = CAT_CLOTHING diff --git a/icons/mob/head.dmi b/icons/mob/head.dmi index ddc5f3cf05c..5221aec971f 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 12a0a371a94..c7df6f275aa 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 30f34f01b4f..2418b096381 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 62fc0a6120c..771b784f6cd 100644 Binary files a/icons/obj/clothing/suits.dmi and b/icons/obj/clothing/suits.dmi differ