diff --git a/code/modules/clothing/armor/cuirass.dm b/code/modules/clothing/armor/cuirass.dm index 5641879f926..eff4b002750 100644 --- a/code/modules/clothing/armor/cuirass.dm +++ b/code/modules/clothing/armor/cuirass.dm @@ -117,6 +117,11 @@ max_integrity = INTEGRITY_OLD_STRONGEST item_weight = 6.5 KILOGRAMS +/obj/item/clothing/armor/cuirass/fluted/ornate + name = "ornate fluted cuirass" + icon_state = "ornatecuirass" + desc = "A fluted cuirass with decorative engravings across its surface. Fitting for a noble, or maybe just someone who wants to look fancy." + /obj/item/clothing/armor/cuirass/fluted/iron name = "iron fluted cuirass" desc = "Relatively sturdy iron cuirass with tassets. Supposedly protective, though maybe not against crossbow bolts." diff --git a/code/modules/crafting/anvil_recipes/armor.dm b/code/modules/crafting/anvil_recipes/armor.dm index 8a0033a859f..8ee08cb8024 100644 --- a/code/modules/crafting/anvil_recipes/armor.dm +++ b/code/modules/crafting/anvil_recipes/armor.dm @@ -514,6 +514,11 @@ additional_items = list(/obj/item/ingot/steel) created_item = /obj/item/clothing/armor/cuirass/fluted +/datum/anvil_recipe/armor/steel/ornate_fluted_cuirass + name = "Ornate Fluted Cuirass" + additional_items = list(/obj/item/ingot/steel) + created_item = /obj/item/clothing/armor/cuirass/fluted/ornate + /datum/anvil_recipe/armor/steel/brigadine name = "Brigandine (+Bar x2, +Cloth)" additional_items = list(/obj/item/ingot/steel, /obj/item/ingot/steel, /obj/item/natural/cloth) diff --git a/code/modules/jobs/job_types/nobility/minor_noble.dm b/code/modules/jobs/job_types/nobility/minor_noble.dm index d5c1c9f6728..5974f096158 100644 --- a/code/modules/jobs/job_types/nobility/minor_noble.dm +++ b/code/modules/jobs/job_types/nobility/minor_noble.dm @@ -108,7 +108,7 @@ head = /obj/item/clothing/head/helmet/heavy/decorated/bascinet cloak = /obj/item/clothing/cloak/cape shirt = /obj/item/clothing/armor/gambeson/arming - armor = /obj/item/clothing/armor/cuirass/fluted + armor = /obj/item/clothing/armor/cuirass/fluted/ornate gloves = /obj/item/clothing/gloves/plate backl = /obj/item/storage/backpack/satchel