From dbbf3c8cdb7931928913d5884c9fac1d2057c95e Mon Sep 17 00:00:00 2001 From: Dreathtil <72713180+Dreathtil@users.noreply.github.com> Date: Sat, 20 Jun 2026 20:27:59 -0400 Subject: [PATCH 1/2] Construct Armor debuff Stat Change. --- .../human/species_types/roguetown/construct/constructm.dm | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/code/modules/mob/living/carbon/human/species_types/roguetown/construct/constructm.dm b/code/modules/mob/living/carbon/human/species_types/roguetown/construct/constructm.dm index 76bb4020537..efc537ee761 100644 --- a/code/modules/mob/living/carbon/human/species_types/roguetown/construct/constructm.dm +++ b/code/modules/mob/living/carbon/human/species_types/roguetown/construct/constructm.dm @@ -755,19 +755,20 @@ owner.remove_stress(/datum/stressevent/integrity_rig) . = ..() +//Caustic Edit - Debuff Changed from -4WIL -1SPD to -1STR, -1WIL, -2SPD for Medium. -4WIL, -2SPD to -1STR, -1WIL, -3SPD for Heavy /datum/status_effect/debuff/ironman_medium id = "ironman_medium" alert_type = /atom/movable/screen/alert/status_effect/debuff/ironman_medium - effectedstats = list(STATKEY_WIL = -4, STATKEY_SPD = -1) + effectedstats = list(STATKEY_STR = -1, STATKEY_WIL = -1, STATKEY_SPD = -2) /atom/movable/screen/alert/status_effect/debuff/ironman_medium name = "Metal Fatigue I" desc = "My frame bears needless burden. Additional metal drags at my joints and dulls the rhythm of my workings." icon_state = "muscles" - + /datum/status_effect/debuff/ironman_heavy id = "ironman_heavy" alert_type = /atom/movable/screen/alert/status_effect/debuff/ironman_heavy - effectedstats = list(STATKEY_WIL = -4, STATKEY_SPD = -2) + effectedstats = list(STATKEY_STR = -1, STATKEY_WIL = -1, STATKEY_SPD = -3) /atom/movable/screen/alert/status_effect/debuff/ironman_heavy name = "Metal Fatigue II" desc = "My frame labors under excess weight. Every motion grinds, every step strains more than they should." From 08bea2be8b1b6794d038c1eb26808b2f251aebc2 Mon Sep 17 00:00:00 2001 From: Dreathtil <72713180+Dreathtil@users.noreply.github.com> Date: Sat, 20 Jun 2026 20:29:48 -0400 Subject: [PATCH 2/2] Cleaned up an accidental space I left. --- .../human/species_types/roguetown/construct/constructm.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/modules/mob/living/carbon/human/species_types/roguetown/construct/constructm.dm b/code/modules/mob/living/carbon/human/species_types/roguetown/construct/constructm.dm index efc537ee761..8ff9f66b98d 100644 --- a/code/modules/mob/living/carbon/human/species_types/roguetown/construct/constructm.dm +++ b/code/modules/mob/living/carbon/human/species_types/roguetown/construct/constructm.dm @@ -764,7 +764,7 @@ name = "Metal Fatigue I" desc = "My frame bears needless burden. Additional metal drags at my joints and dulls the rhythm of my workings." icon_state = "muscles" - + /datum/status_effect/debuff/ironman_heavy id = "ironman_heavy" alert_type = /atom/movable/screen/alert/status_effect/debuff/ironman_heavy