diff --git a/code/modules/clothing/suits/miscellaneous.dm b/code/modules/clothing/suits/miscellaneous.dm index 195c9440e1..9d8eb4d4af 100644 --- a/code/modules/clothing/suits/miscellaneous.dm +++ b/code/modules/clothing/suits/miscellaneous.dm @@ -826,6 +826,21 @@ armor = list("melee" = 0, "bullet" = 0, "laser" = 0,"energy" = 0, "bomb" = 0, "bio" = 0, "rad" = 0, "fire" = 0, "acid" = 0) real = FALSE +/obj/item/clothing/suit/hooded/wintercoat/durathread + name = "durathread winter coat" + desc = "The one coat to rule them all. Extremely durable while providing the utmost comfort." + icon_state = "coatdurathread" + item_state = "coatdurathread" + armor = list("melee" = 40, "bullet" = 25, "laser" = 25, "energy" = 25, "bomb" = 50, "bio" = 50, "rad" = 50, "fire" = 50, "acid" = 50) + hoodtype = /obj/item/clothing/head/hooded/winterhood/durathread + +/obj/item/clothing/suit/hooded/wintercoat/durathread/Initialize() + . = ..() + allowed = GLOB.security_wintercoat_allowed + +/obj/item/clothing/head/hooded/winterhood/durathread + icon_state = "winterhood_durathread" + /obj/item/clothing/suit/spookyghost name = "spooky ghost" diff --git a/code/modules/crafting/recipes/recipes_clothing.dm b/code/modules/crafting/recipes/recipes_clothing.dm index 8cb35df9d1..26de5f380d 100644 --- a/code/modules/crafting/recipes/recipes_clothing.dm +++ b/code/modules/crafting/recipes/recipes_clothing.dm @@ -159,6 +159,14 @@ always_availible = TRUE category = CAT_CLOTHING +/datum/crafting_recipe/durathread_wintercoat + name = "Durathread Winter Coat" + result = /obj/item/clothing/suit/hooded/wintercoat/durathread + reqs = list(/obj/item/stack/sheet/durathread = 12, + /obj/item/stack/sheet/leather = 10) + time = 70 + category = CAT_CLOTHING + /datum/crafting_recipe/wintercoat_cosmic name = "Cosmic Winter Coat" result = /obj/item/clothing/suit/hooded/wintercoat/cosmic diff --git a/icons/mob/head.dmi b/icons/mob/head.dmi index 6bba2fc7fb..f8785ae2f7 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 dec1c372b5..8e294916f5 100644 Binary files a/icons/mob/suit.dmi and b/icons/mob/suit.dmi differ diff --git a/icons/mob/suit_digi.dmi b/icons/mob/suit_digi.dmi index a0f6e6ab08..3b1491f0f6 100644 Binary files a/icons/mob/suit_digi.dmi and b/icons/mob/suit_digi.dmi differ diff --git a/icons/obj/clothing/hats.dmi b/icons/obj/clothing/hats.dmi index f94106dd55..a79ca3be45 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 6831c17e56..2fdbd491de 100644 Binary files a/icons/obj/clothing/suits.dmi and b/icons/obj/clothing/suits.dmi differ