Skip to content
Open
Show file tree
Hide file tree
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions code/modules/clothing/armor/cuirass.dm
Original file line number Diff line number Diff line change
Expand Up @@ -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 it's surface. Fitting for a noble, or maybe just someone who wants to look fancy."
Comment thread
Archeonan marked this conversation as resolved.
Outdated

/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."
Expand Down
5 changes: 5 additions & 0 deletions code/modules/crafting/anvil_recipes/armor.dm
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down
2 changes: 1 addition & 1 deletion code/modules/jobs/job_types/nobility/minor_noble.dm
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down
Loading