From f77cdeafa21e0107d61f9bd456e94ea99c3ebea2 Mon Sep 17 00:00:00 2001 From: Dongwaiver Date: Thu, 26 Dec 2024 14:29:46 -0600 Subject: [PATCH 01/17] Update cloaks.dm --- code/modules/clothing/rogueclothes/cloaks.dm | 22 ++++++++++---------- 1 file changed, 11 insertions(+), 11 deletions(-) diff --git a/code/modules/clothing/rogueclothes/cloaks.dm b/code/modules/clothing/rogueclothes/cloaks.dm index 22b0a419975..23a4c9039b8 100644 --- a/code/modules/clothing/rogueclothes/cloaks.dm +++ b/code/modules/clothing/rogueclothes/cloaks.dm @@ -42,8 +42,8 @@ flags_inv = HIDECROTCH|HIDEBOOB /obj/item/clothing/cloak/psydontabard - name = "inquisitorial tabard" - desc = "A long vest bearing Psydonian symbology" + name = "psydonian tabard" + desc = "A tabard worn by Psydon's disciples. Delicate stitchwork professes the psycross with pride." color = null icon_state = "psydontabard" item_state = "psydontabard" @@ -51,13 +51,13 @@ alternate_worn_layer = TABARD_LAYER body_parts_covered = CHEST|GROIN boobed = TRUE - slot_flags = ITEM_SLOT_ARMOR|ITEM_SLOT_CLOAK + slot_flags = ITEM_SLOT_CHEST|ITEM_SLOT_ARMOR|ITEM_SLOT_CLOAK flags_inv = HIDECROTCH|HIDEBOOB var/open_wear = FALSE /obj/item/clothing/cloak/psydontabard/alt - name = "open otavan tabard" - desc = "A long vest bearing Psydonian symbology" + name = "opened psydonian tabard" + desc = "A tabard worn by Psydon's disciples, peeled back to reveal its enduring innards." body_parts_covered = GROIN icon_state = "psydontabardalt" item_state = "psydontabardalt" @@ -67,23 +67,23 @@ /obj/item/clothing/cloak/psydontabard/attack_right(mob/user) switch(open_wear) if(FALSE) - name = "inquisitorial tabard" - desc = "A long vest bearing Psydonian symbology" + name = "opened psydonian tabard" + desc = "A tabard worn by Psydon's disciples, peeled back to reveal its enduring innards." body_parts_covered = GROIN icon_state = "psydontabardalt" item_state = "psydontabardalt" open_wear = TRUE flags_inv = HIDECROTCH // BARE YOUR CHEST, NOT YOUR WEEN! - to_chat(usr, span_warning("Now wearing ENDURINGLY!")) + to_chat(usr, span_warning("ENDURING, like the MARTYRS who'll guide the faithful-and-pious to PARADISE.")) if(TRUE) - name = "inquisitorial tabard" - desc = "A long vest bearing Psydonian symbology" + name = "psydonian tabard" + desc = "A tabard worn by Psydon's disciples. Delicate stitchwork professes the psycross with pride." body_parts_covered = CHEST|GROIN icon_state = "psydontabard" item_state = "psydontabard" flags_inv = HIDECROTCH|HIDEBOOB open_wear = FALSE - to_chat(usr, span_warning("Now wearing normally!")) + to_chat(usr, span_warning("VEILED, like the CORPSES who've been shepherded by your steel to the AFTERLYFE.")) update_icon() if(user) if(ishuman(user)) From 83f0021f6b8811740eff22381ee0dff9017ebec7 Mon Sep 17 00:00:00 2001 From: Dongwaiver Date: Thu, 26 Dec 2024 14:55:58 -0600 Subject: [PATCH 02/17] Replaces 'ITEM_SLOT_CHEST' with 'ITEM_SLOT_SHIRT'. Whoopsie-doodles! --- code/modules/clothing/rogueclothes/cloaks.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/modules/clothing/rogueclothes/cloaks.dm b/code/modules/clothing/rogueclothes/cloaks.dm index 23a4c9039b8..a3867c788a7 100644 --- a/code/modules/clothing/rogueclothes/cloaks.dm +++ b/code/modules/clothing/rogueclothes/cloaks.dm @@ -51,7 +51,7 @@ alternate_worn_layer = TABARD_LAYER body_parts_covered = CHEST|GROIN boobed = TRUE - slot_flags = ITEM_SLOT_CHEST|ITEM_SLOT_ARMOR|ITEM_SLOT_CLOAK + slot_flags = ITEM_SLOT_SHIRT|ITEM_SLOT_ARMOR|ITEM_SLOT_CLOAK flags_inv = HIDECROTCH|HIDEBOOB var/open_wear = FALSE From eb47899fb10d1804813c88f98a689950c91362d1 Mon Sep 17 00:00:00 2001 From: Dongwaiver Date: Thu, 26 Dec 2024 15:21:48 -0600 Subject: [PATCH 03/17] Update armor.dm --- code/modules/clothing/rogueclothes/armor.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/modules/clothing/rogueclothes/armor.dm b/code/modules/clothing/rogueclothes/armor.dm index f774d685109..5c969572bbb 100644 --- a/code/modules/clothing/rogueclothes/armor.dm +++ b/code/modules/clothing/rogueclothes/armor.dm @@ -78,7 +78,7 @@ /obj/item/clothing/suit/roguetown/armor/chainmail/hauberk/fluted name = "fluted hauberk" - desc = "A steel maille, of a pattern popularized by Otavan templars." + desc = "An ornate cuirass, flanked with sleeves of steel maille." icon_state = "flutedhauberk" item_state = "flutedhauberk" From b87fd8da69873f0abbeb3eca5dfaa54e36fb4524 Mon Sep 17 00:00:00 2001 From: Dongwaiver Date: Thu, 26 Dec 2024 15:29:59 -0600 Subject: [PATCH 04/17] Update feet.dm --- code/modules/clothing/rogueclothes/feet.dm | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/code/modules/clothing/rogueclothes/feet.dm b/code/modules/clothing/rogueclothes/feet.dm index daf04be102e..fe26072379a 100644 --- a/code/modules/clothing/rogueclothes/feet.dm +++ b/code/modules/clothing/rogueclothes/feet.dm @@ -24,11 +24,14 @@ armor = list("blunt" = 30, "slash" = 10, "stab" = 20, "bullet" = 0, "laser" = 0,"energy" = 0, "bomb" = 0, "bio" = 0, "rad" = 0, "fire" = 0, "acid" = 0) /obj/item/clothing/shoes/roguetown/psydonboots - name = "enduring boots" - desc = "A reliable pair of dark leather boots. Seems like they could endure the world!" + name = "psydonian boots" + desc = "Blacksteel-heeled boots. The leather refuses to be worn down, no matter how far you march through these lands. color = "#d5c2aa" + gender = PLURAL icon_state = "psydonboots" item_state = "psydonboots" + sewrepair = TRUE + armor = list("blunt" = 30, "slash" = 10, "stab" = 20, "bullet" = 0, "laser" = 0,"energy" = 0, "bomb" = 0, "bio" = 0, "rad" = 0, "fire" = 0, "acid" = 0) /obj/item/clothing/shoes/roguetown/nobleboot name = "noble boots" From e0b144a68db352a77140caa3991f6156bdd528d0 Mon Sep 17 00:00:00 2001 From: Dongwaiver Date: Thu, 26 Dec 2024 16:11:47 -0600 Subject: [PATCH 05/17] Update gloves.dm --- code/modules/clothing/rogueclothes/gloves.dm | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/code/modules/clothing/rogueclothes/gloves.dm b/code/modules/clothing/rogueclothes/gloves.dm index de6355abb60..f09bc640af0 100644 --- a/code/modules/clothing/rogueclothes/gloves.dm +++ b/code/modules/clothing/rogueclothes/gloves.dm @@ -91,7 +91,8 @@ smeltresult = /obj/item/ingot/steel /obj/item/clothing/gloves/roguetown/chain/psydon - name = "otavan chain gauntlets" + name = "psydonian gloves" + desc = "Blacksteel-bound gauntlets. These ritualistic restraints, when left to dangle-and-sway, assist in the deflection of unpredictable blows." icon_state = "psydongloveschain" item_state = "psydongloveschains" From fb1c3cd35ffc2a4923d63368e80ebf4f57db992e Mon Sep 17 00:00:00 2001 From: Dongwaiver Date: Thu, 26 Dec 2024 21:34:27 -0600 Subject: [PATCH 06/17] Update hats.dm --- code/modules/clothing/rogueclothes/hats.dm | 33 +++++++++++++--------- 1 file changed, 19 insertions(+), 14 deletions(-) diff --git a/code/modules/clothing/rogueclothes/hats.dm b/code/modules/clothing/rogueclothes/hats.dm index 3cd6f9b31fc..dc6567023b2 100644 --- a/code/modules/clothing/rogueclothes/hats.dm +++ b/code/modules/clothing/rogueclothes/hats.dm @@ -549,16 +549,6 @@ body_parts_covered = HEAD|HAIR|EARS armor = list("blunt" = 80, "slash" = 90, "stab" = 70, "bullet" = 100, "laser" = 0,"energy" = 0, "bomb" = 0, "bio" = 0, "rad" = 0, "fire" = 0, "acid" = 0) -/obj/item/clothing/head/roguetown/helmet/psydonbarbute - name = "psydonian barbute" - desc = "A barbute styled with Psydonian Imagery." - icon_state = "psydonbarbute" - item_state = "psydonbarbute" - block2add = FOV_BEHIND - flags_inv = HIDEEARS|HIDEFACE - flags_cover = HEADCOVERSEYES | HEADCOVERSMOUTH - body_parts_covered = FULL_HEAD - /obj/item/clothing/head/roguetown/helmet/kettle/attackby(obj/item/W, mob/living/user, params) ..() if(istype(W, /obj/item/natural/cloth) && !detail_tag) @@ -936,9 +926,16 @@ smeltresult = /obj/item/ingot/steel smelt_bar_num = 2 +/obj/item/clothing/head/roguetown/helmet/heavy/psydonbarbute + name = "psydonian barbute" + desc = "A ceremonial barbute, masterfully forged to represent Psydon's divine authority. The Order of Saint Malum's artisans have chiseled this pronged visage into more statues than you could possibly imagine." + icon_state = "psydonbarbute" + item_state = "psydonbarbute" + flags_inv = HIDEEARS|HIDEFACE|HIDEHAIR + /obj/item/clothing/head/roguetown/helmet/heavy/psydonhelm - name ="otavan armet" - desc = "Headwear commonly worn by Templars in service to the Inquisition of Otava. PSYDON Endures." + name = "psydonian armet" + desc = "An ornate helmet, whose visor has been bound shut with blacksteel chains. The Order of Saint Eora often decorates these armets with flowers - not only as a lucky charm gifted to them by fair maidens and family, but also as a vibrant reminder that 'happiness has to be fought for.'" icon_state = "psydonarmet" item_state = "psydonarmet" flags_inv = HIDEEARS|HIDEFACE|HIDEHAIR @@ -973,6 +970,14 @@ var/mob/living/carbon/H = user H.update_inv_head() +/obj/item/clothing/head/roguetown/helmet/heavy/psydonhelm/update_icon() + cut_overlays() + if(get_detail_tag()) + var/mutable_appearance/pic = mutable_appearance(icon(icon, "[icon_state][detail_tag]")) + pic.appearance_flags = RESET_COLOR + if(get_detail_color()) + pic.color = get_detail_color() + add_overlay(pic) /obj/item/clothing/head/roguetown/helmet/heavy/nochelm name = "noc helmet" @@ -1449,12 +1454,12 @@ /obj/item/clothing/head/roguetown/roguehood/psydon name = "psydonian hood" - desc = "A hood worn by those who favor Psydon. Forever enduring!" + desc = "A hood worn by Psydon's disciples, oft-worn in conjunction with its matching tabard." icon_state = "psydonhood" item_state = "psydonhood" color = null body_parts_covered = NECK - slot_flags = ITEM_SLOT_HEAD + slot_flags = ITEM_SLOT_HEAD|ITEM_SLOT_MASK dynamic_hair_suffix = "" edelay_type = 1 adjustable = CAN_CADJUST From e9e249cdb9fe42a866bb7b13d8709c0a287ebdb4 Mon Sep 17 00:00:00 2001 From: Dongwaiver Date: Thu, 26 Dec 2024 21:55:29 -0600 Subject: [PATCH 07/17] Update mask.dm --- code/modules/clothing/rogueclothes/mask.dm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/code/modules/clothing/rogueclothes/mask.dm b/code/modules/clothing/rogueclothes/mask.dm index d8819c1f5af..4d0da06c2a1 100644 --- a/code/modules/clothing/rogueclothes/mask.dm +++ b/code/modules/clothing/rogueclothes/mask.dm @@ -113,8 +113,8 @@ smeltresult = /obj/item/ingot/iron /obj/item/clothing/mask/rogue/facemask/psydonmask - name = "Psydonian Mask" - desc = "A symbolic mask typically worn by members of the Otavan Inquisition." + name = "psydonian mask" + desc = "A silver mask, forever locked in a rigor of uncontestable joy. The Order of Saint Xylix can't decide on whether it's meant to represent one's 'mirthfulness', 'theatricality', or the unpredictable melding of both." icon_state = "psydonmask" item_state = "psydonmask" From 209efe29c33fff3a6f8b8dec771438d5b910d4a4 Mon Sep 17 00:00:00 2001 From: Dongwaiver Date: Thu, 26 Dec 2024 22:52:53 -0600 Subject: [PATCH 08/17] Update neck.dm --- code/modules/clothing/rogueclothes/neck.dm | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/code/modules/clothing/rogueclothes/neck.dm b/code/modules/clothing/rogueclothes/neck.dm index 672f8dd613a..9260b728fc8 100644 --- a/code/modules/clothing/rogueclothes/neck.dm +++ b/code/modules/clothing/rogueclothes/neck.dm @@ -191,7 +191,7 @@ /obj/item/clothing/neck/roguetown/psicross name = "psycross" - desc = "" + desc = "'With every broken bone, I swore I lived!'" icon_state = "psicross" //dropshrink = 0.75 resistance_flags = FIRE_PROOF @@ -247,12 +247,14 @@ /obj/item/clothing/neck/roguetown/psicross/wood name = "wooden psycross" + desc = "'A man with nothing can still have faith!'" icon_state = "psycross_w" item_state = "psycross_w" sellprice = 0 /obj/item/clothing/neck/roguetown/psicross/silver name = "silver psycross" + desc = "'The horrors persist, but so do I!'" icon_state = "psycross_s" item_state = "psycross_s" sellprice = 50 @@ -307,7 +309,7 @@ /obj/item/clothing/neck/roguetown/psicross/g name = "golden psycross" - desc = "" + desc = "'Purity afloat, for paradise awaits!'" icon_state = "psycross_g" item_state = "psycross_g" //dropshrink = 0.75 From 7e74ed25db8bb22d6144a6075a77b01a5d09f7c6 Mon Sep 17 00:00:00 2001 From: Dongwaiver Date: Thu, 26 Dec 2024 23:11:06 -0600 Subject: [PATCH 09/17] Update dun_manor.dmm --- _maps/map_files/dun_manor/dun_manor.dmm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/_maps/map_files/dun_manor/dun_manor.dmm b/_maps/map_files/dun_manor/dun_manor.dmm index f62217b0cee..8f14e515a0f 100644 --- a/_maps/map_files/dun_manor/dun_manor.dmm +++ b/_maps/map_files/dun_manor/dun_manor.dmm @@ -11111,7 +11111,7 @@ /obj/structure/table/wood{ icon_state = "longtable" }, -/obj/item/clothing/head/roguetown/helmet/psydonbarbute, +/obj/item/clothing/head/roguetown/helmet/heavy/psydonbarbute, /turf/open/floor/rogue/tile, /area/rogue/under/town/basement) "khi" = ( @@ -20577,7 +20577,7 @@ dir = 1; icon_state = "longtable" }, -/obj/item/clothing/head/roguetown/helmet/psydonbarbute, +/obj/item/clothing/head/roguetown/helmet/heavy/psydonbarbute, /turf/open/floor/rogue/tile, /area/rogue/under/town/basement) "swd" = ( From 63fc119d244eb54425ef46010eec44c521a99c5e Mon Sep 17 00:00:00 2001 From: Dongwaiver Date: Thu, 26 Dec 2024 23:16:31 -0600 Subject: [PATCH 10/17] Update mask.dm (again) --- code/modules/clothing/rogueclothes/mask.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/modules/clothing/rogueclothes/mask.dm b/code/modules/clothing/rogueclothes/mask.dm index 4d0da06c2a1..daddab4cd3a 100644 --- a/code/modules/clothing/rogueclothes/mask.dm +++ b/code/modules/clothing/rogueclothes/mask.dm @@ -114,7 +114,7 @@ /obj/item/clothing/mask/rogue/facemask/psydonmask name = "psydonian mask" - desc = "A silver mask, forever locked in a rigor of uncontestable joy. The Order of Saint Xylix can't decide on whether it's meant to represent one's 'mirthfulness', 'theatricality', or the unpredictable melding of both." + desc = "A silver mask, forever locked in a rigor of uncontestable joy. The Order of Saint Xylix can't decide on whether it's meant to represent Psydon's 'mirthfulness', 'theatricality', or the unpredictable melding of both." icon_state = "psydonmask" item_state = "psydonmask" From 8972649bd10cc2e58556428fddbcded73f20d8a0 Mon Sep 17 00:00:00 2001 From: Dongwaiver Date: Tue, 31 Dec 2024 19:35:27 -0600 Subject: [PATCH 11/17] Update feet.dm (again) --- code/modules/clothing/rogueclothes/feet.dm | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/code/modules/clothing/rogueclothes/feet.dm b/code/modules/clothing/rogueclothes/feet.dm index 18082615cd4..eb8771be72c 100644 --- a/code/modules/clothing/rogueclothes/feet.dm +++ b/code/modules/clothing/rogueclothes/feet.dm @@ -25,13 +25,12 @@ /obj/item/clothing/shoes/roguetown/psydonboots name = "psydonian boots" - desc = "Blacksteel-heeled boots. The leather refuses to be worn down, no matter how far you march through these lands. + desc = "Blacksteel-heeled boots. The leather refuses to be worn down, no matter how far you march through these lands." color = "#d5c2aa" - gender = PLURAL icon_state = "psydonboots" item_state = "psydonboots" sewrepair = TRUE - armor = list("blunt" = 30, "slash" = 10, "stab" = 20, "bullet" = 0, "laser" = 0,"energy" = 0, "bomb" = 0, "bio" = 0, "rad" = 0, "fire" = 0, "acid" = 0) + armor = list("blunt" = 30, "slash" = 10, "stab" = 20, "fire" = 0, "acid" = 0) /obj/item/clothing/shoes/roguetown/nobleboot name = "noble boots" From 83b50ffcd5652caef0d314b3579bc791736f4534 Mon Sep 17 00:00:00 2001 From: Dongwaiver Date: Tue, 31 Dec 2024 19:38:56 -0600 Subject: [PATCH 12/17] Update feet.dm (again-again) --- code/modules/clothing/rogueclothes/feet.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/modules/clothing/rogueclothes/feet.dm b/code/modules/clothing/rogueclothes/feet.dm index eb8771be72c..94f7df29faf 100644 --- a/code/modules/clothing/rogueclothes/feet.dm +++ b/code/modules/clothing/rogueclothes/feet.dm @@ -29,7 +29,7 @@ color = "#d5c2aa" icon_state = "psydonboots" item_state = "psydonboots" - sewrepair = TRUE + sewrepair = TRUE armor = list("blunt" = 30, "slash" = 10, "stab" = 20, "fire" = 0, "acid" = 0) /obj/item/clothing/shoes/roguetown/nobleboot From 7e1fe333090ab969b9d8e45302b4140386bbf217 Mon Sep 17 00:00:00 2001 From: Dongwaiver Date: Tue, 31 Dec 2024 19:40:22 -0600 Subject: [PATCH 13/17] I AM GOING TO KILL MYSELF WORK AGAUUUUUGH --- code/modules/clothing/rogueclothes/feet.dm | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/code/modules/clothing/rogueclothes/feet.dm b/code/modules/clothing/rogueclothes/feet.dm index 94f7df29faf..d8e4a2d1f49 100644 --- a/code/modules/clothing/rogueclothes/feet.dm +++ b/code/modules/clothing/rogueclothes/feet.dm @@ -23,14 +23,12 @@ sewrepair = TRUE armor = list("blunt" = 30, "slash" = 10, "stab" = 20, "fire" = 0, "acid" = 0) -/obj/item/clothing/shoes/roguetown/psydonboots +/obj/item/clothing/shoes/roguetown/boots/psydonboots name = "psydonian boots" desc = "Blacksteel-heeled boots. The leather refuses to be worn down, no matter how far you march through these lands." color = "#d5c2aa" icon_state = "psydonboots" item_state = "psydonboots" - sewrepair = TRUE - armor = list("blunt" = 30, "slash" = 10, "stab" = 20, "fire" = 0, "acid" = 0) /obj/item/clothing/shoes/roguetown/nobleboot name = "noble boots" From 13aec1474b178e08b236c726ce23812b5fc66448 Mon Sep 17 00:00:00 2001 From: Dongwaiver Date: Tue, 31 Dec 2024 19:41:03 -0600 Subject: [PATCH 14/17] WORK!!!!!!!!!!!!!!!!!! --- _maps/map_files/dun_manor/dun_manor.dmm | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/_maps/map_files/dun_manor/dun_manor.dmm b/_maps/map_files/dun_manor/dun_manor.dmm index fda70a47a37..040061ad91b 100644 --- a/_maps/map_files/dun_manor/dun_manor.dmm +++ b/_maps/map_files/dun_manor/dun_manor.dmm @@ -10124,9 +10124,9 @@ /area/rogue/under/town/sewer) "jiL" = ( /obj/structure/closet/crate/roguecloset, -/obj/item/clothing/shoes/roguetown/psydonboots, -/obj/item/clothing/shoes/roguetown/psydonboots, -/obj/item/clothing/shoes/roguetown/psydonboots, +/obj/item/clothing/shoes/roguetown/boots/psydonboots, +/obj/item/clothing/shoes/roguetown/boots/psydonboots, +/obj/item/clothing/shoes/roguetown/boots/psydonboots, /obj/item/clothing/head/roguetown/helmet/heavy/psydonhelm, /obj/item/clothing/head/roguetown/helmet/heavy/psydonhelm, /obj/item/clothing/head/roguetown/roguehood/psydon, From 597a3e4687cf58b698485e38c575e972900bab9f Mon Sep 17 00:00:00 2001 From: Dongwaiver Date: Tue, 31 Dec 2024 19:44:38 -0600 Subject: [PATCH 15/17] GFBDH FVHFAAAAAAAAAGH --- code/modules/clothing/rogueclothes/feet.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/modules/clothing/rogueclothes/feet.dm b/code/modules/clothing/rogueclothes/feet.dm index d8e4a2d1f49..2e0f2add5ce 100644 --- a/code/modules/clothing/rogueclothes/feet.dm +++ b/code/modules/clothing/rogueclothes/feet.dm @@ -23,7 +23,7 @@ sewrepair = TRUE armor = list("blunt" = 30, "slash" = 10, "stab" = 20, "fire" = 0, "acid" = 0) -/obj/item/clothing/shoes/roguetown/boots/psydonboots +/obj/item/clothing/shoes/roguetown/psydonboots name = "psydonian boots" desc = "Blacksteel-heeled boots. The leather refuses to be worn down, no matter how far you march through these lands." color = "#d5c2aa" From 729f5d5639b4fb26474ed259496540d3df9edb80 Mon Sep 17 00:00:00 2001 From: Dongwaiver Date: Tue, 31 Dec 2024 19:46:12 -0600 Subject: [PATCH 16/17] GGAUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUGH --- code/modules/clothing/rogueclothes/hats.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/modules/clothing/rogueclothes/hats.dm b/code/modules/clothing/rogueclothes/hats.dm index 549ef77f898..ee4ca62ecad 100644 --- a/code/modules/clothing/rogueclothes/hats.dm +++ b/code/modules/clothing/rogueclothes/hats.dm @@ -551,7 +551,7 @@ desc = "A steel helmet which protects the top and sides of the head." icon_state = "kettle" body_parts_covered = HEAD|HAIR|EARS - armor = list("blunt" = 80, "slash" = 90, "piercing" = 100, "stab" = 70, "fire" = 0, "acid" = 0) + armor = list("blunt" = 80, "slash" = 90, "piercing" = 100, "stab" = 70, "fire" = 0, "acid" = 0) /obj/item/clothing/head/roguetown/helmet/kettle/attackby(obj/item/W, mob/living/user, params) ..() From 6ad9b4e7102eeab1c6aaee7346664bccda6a071a Mon Sep 17 00:00:00 2001 From: Dongwaiver Date: Tue, 31 Dec 2024 19:49:00 -0600 Subject: [PATCH 17/17] PLASE WORKEGKAPLEAAAAAAAAAAAAAAAAAAASE --- code/modules/clothing/rogueclothes/feet.dm | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/code/modules/clothing/rogueclothes/feet.dm b/code/modules/clothing/rogueclothes/feet.dm index 2e0f2add5ce..8f838aec1c9 100644 --- a/code/modules/clothing/rogueclothes/feet.dm +++ b/code/modules/clothing/rogueclothes/feet.dm @@ -26,9 +26,10 @@ /obj/item/clothing/shoes/roguetown/psydonboots name = "psydonian boots" desc = "Blacksteel-heeled boots. The leather refuses to be worn down, no matter how far you march through these lands." - color = "#d5c2aa" icon_state = "psydonboots" item_state = "psydonboots" + sewrepair = TRUE + armor = list("blunt" = 30, "slash" = 10, "stab" = 20, "fire" = 0, "acid" = 0) /obj/item/clothing/shoes/roguetown/nobleboot name = "noble boots"