diff --git a/code/game/objects/items/stacks/sheets/leather.dm b/code/game/objects/items/stacks/sheets/leather.dm index 31bd9ef6355..179dbdbdb7b 100644 --- a/code/game/objects/items/stacks/sheets/leather.dm +++ b/code/game/objects/items/stacks/sheets/leather.dm @@ -295,6 +295,8 @@ GLOBAL_LIST_INIT(carp_recipes, list ( \ new/datum/stack_recipe("carp costume", /obj/item/clothing/suit/hooded/carp_costume, 4), \ new/datum/stack_recipe("carp mask", /obj/item/clothing/mask/gas/carp, 1), \ new/datum/stack_recipe("carpskin chair", /obj/structure/chair/comfy/carp, 2), \ + new/datum/stack_recipe("carpskin suit", /obj/item/clothing/under/suit/carpskin, 3), \ + new/datum/stack_recipe("carpskin fedora", /obj/item/clothing/head/fedora/carpskin, 2), \ )) /obj/item/stack/sheet/animalhide/carp/get_main_recipes() diff --git a/code/modules/clothing/head/fedora.dm b/code/modules/clothing/head/fedora.dm index a115ed5f53d..3207609cc90 100644 --- a/code/modules/clothing/head/fedora.dm +++ b/code/modules/clothing/head/fedora.dm @@ -24,3 +24,8 @@ sleep(10) H.facial_hairstyle = "Neckbeard" return(BRUTELOSS) + +/obj/item/clothing/head/fedora/carpskin + name = "carpskin fedora" + icon_state = "fedora_carpskin" + inhand_icon_state = "fedora_carpskin" diff --git a/code/modules/clothing/under/suits.dm b/code/modules/clothing/under/suits.dm index 59f24b3354f..3df35615303 100644 --- a/code/modules/clothing/under/suits.dm +++ b/code/modules/clothing/under/suits.dm @@ -145,3 +145,9 @@ desc = "A formal black tuxedo. It exudes classiness." icon_state = "tuxedo" inhand_icon_state = "tuxedo" + +/obj/item/clothing/under/suit/carpskin + name = "carpskin suit" + desc = "An luxurious suit made with only the finest scales, perfect for conducting dodgy business deals." + icon_state = "carpskin_suit" + inhand_icon_state = "carpskin_suit" diff --git a/icons/mob/clothing/head.dmi b/icons/mob/clothing/head.dmi index adf1f3acabc..e5f1839f671 100644 Binary files a/icons/mob/clothing/head.dmi and b/icons/mob/clothing/head.dmi differ diff --git a/icons/mob/clothing/under/suits.dmi b/icons/mob/clothing/under/suits.dmi index 3fd5f4da6ce..ce0c0a95735 100644 Binary files a/icons/mob/clothing/under/suits.dmi and b/icons/mob/clothing/under/suits.dmi differ diff --git a/icons/obj/clothing/hats.dmi b/icons/obj/clothing/hats.dmi index 1ba3c824bc4..67e567338d0 100644 Binary files a/icons/obj/clothing/hats.dmi and b/icons/obj/clothing/hats.dmi differ diff --git a/icons/obj/clothing/under/suits.dmi b/icons/obj/clothing/under/suits.dmi index 293b549af80..ffb37c931ae 100644 Binary files a/icons/obj/clothing/under/suits.dmi and b/icons/obj/clothing/under/suits.dmi differ