diff --git a/code/modules/clothing/head/helmets/misc.dm b/code/modules/clothing/head/helmets/misc.dm index 00c5fb1ff23..f4b38bd6975 100644 --- a/code/modules/clothing/head/helmets/misc.dm +++ b/code/modules/clothing/head/helmets/misc.dm @@ -3,11 +3,21 @@ desc = "A steel nasal helmet, usually worn by the guards of any respectable fief." icon_state = "nasal" sellprice = VALUE_STEEL_SMALL_ITEM - smeltresult = /obj/item/ingot/iron + smeltresult = /obj/item/ingot/steel_slag body_parts_covered = COVERAGE_NASAL max_integrity = INTEGRITY_STRONGEST item_weight = 2.3 KILOGRAMS +/obj/item/clothing/head/helmet/nasal/iron + name = "iron nasal helmet" + desc = "An iron nasal helmet, usually worn by the guards of any somewhat respectable fief." + icon_state = "ironnasal" + sellprice = VALUE_CHEAP_IRON_HELMET + smeltresult = /obj/item/ingot/iron + body_parts_covered = COVERAGE_NASAL + max_integrity = INTEGRITY_STRONG + item_weight = 2.0 KILOGRAMS + //................ Gallowglass ............... // /obj/item/clothing/head/helmet/gallowglass diff --git a/code/modules/crafting/anvil_recipes/armor.dm b/code/modules/crafting/anvil_recipes/armor.dm index 1fc0a277430..f44a57360d9 100644 --- a/code/modules/crafting/anvil_recipes/armor.dm +++ b/code/modules/crafting/anvil_recipes/armor.dm @@ -366,8 +366,8 @@ additional_items = list(/obj/item/ingot/gold) /datum/anvil_recipe/armor/iron/nasal_helmet - name = "Nasal helmet" - created_item = /obj/item/clothing/head/helmet/nasal + name = "Iron Nasal Helmet" + created_item = /obj/item/clothing/head/helmet/nasal/iron /datum/anvil_recipe/armor/iron/skullcap name = "x2 Skullcap" diff --git a/icons/roguetown/clothing/head.dmi b/icons/roguetown/clothing/head.dmi index b642862419e..1d60f50c629 100644 Binary files a/icons/roguetown/clothing/head.dmi and b/icons/roguetown/clothing/head.dmi differ diff --git a/icons/roguetown/clothing/onmob/head.dmi b/icons/roguetown/clothing/onmob/head.dmi index fa2b0afe9a3..f27102660f8 100644 Binary files a/icons/roguetown/clothing/onmob/head.dmi and b/icons/roguetown/clothing/onmob/head.dmi differ diff --git a/icons/roguetown/clothing/onmob/pants.dmi b/icons/roguetown/clothing/onmob/pants.dmi index e39fd9439aa..01c76cd7f0c 100644 Binary files a/icons/roguetown/clothing/onmob/pants.dmi and b/icons/roguetown/clothing/onmob/pants.dmi differ diff --git a/icons/roguetown/clothing/pants.dmi b/icons/roguetown/clothing/pants.dmi index 7f63eff6d86..e5660bb0646 100644 Binary files a/icons/roguetown/clothing/pants.dmi and b/icons/roguetown/clothing/pants.dmi differ