From 385cda84d87f4d0951f6745c3b2c490e2140262d Mon Sep 17 00:00:00 2001
From: Cabbage <130223709+SomeCabbage@users.noreply.github.com>
Date: Fri, 7 Aug 2026 06:06:23 -0400
Subject: [PATCH] Adds radiation and welding protection to elder atmos armor.
(#6067)
## About The Pull Request
Title.
## Why It's Good For The Game
This is how it was intended to function, since the prerequisite helmet
had welding protection but this doesn't for some reason and also it
doesn't protect against radiation even though you're near the most
radioactive things in the game so I fixed that.
## Proof Of Testing
## Changelog
:cl:
add: Adds welding and radiation protection to the elder atmosian armor.
/:cl:
Co-authored-by: Cabbage
---
modular_zubbers/code/modules/clothing/head/helmet.dm | 5 +++++
modular_zubbers/code/modules/clothing/suits/armor.dm | 1 +
2 files changed, 6 insertions(+)
diff --git a/modular_zubbers/code/modules/clothing/head/helmet.dm b/modular_zubbers/code/modules/clothing/head/helmet.dm
index dc19035530c..dad6754c3bb 100644
--- a/modular_zubbers/code/modules/clothing/head/helmet.dm
+++ b/modular_zubbers/code/modules/clothing/head/helmet.dm
@@ -682,9 +682,14 @@
max_heat_protection_temperature = FIRE_IMMUNITY_MAX_TEMP_PROTECT
min_cold_protection_temperature = FIRE_HELM_MIN_TEMP_PROTECT
resistance_flags = FIRE_PROOF
+ flash_protect = FLASH_PROTECTION_WELDER
flags_inv = HIDEFACE | HIDEFACIALHAIR | HIDEHAIR | HIDEMASK | HIDEEYES | HIDEEARS
custom_materials = list(/datum/material/metalhydrogen = SHEET_MATERIAL_AMOUNT * 3)
+/obj/item/clothing/head/helmet/elder_atmosian/Initialize(mapload)
+ . = ..()
+ AddElement(/datum/element/radiation_protected_clothing)
+
/datum/armor/helmet_elder_atmosian
melee = 40
bullet = 30
diff --git a/modular_zubbers/code/modules/clothing/suits/armor.dm b/modular_zubbers/code/modules/clothing/suits/armor.dm
index ac3d82403bd..2e64e14e2bf 100644
--- a/modular_zubbers/code/modules/clothing/suits/armor.dm
+++ b/modular_zubbers/code/modules/clothing/suits/armor.dm
@@ -99,6 +99,7 @@
allowed += list(
/obj/item/fireaxe/metal_h2_axe,
)
+ AddElement(/datum/element/radiation_protected_clothing)
/datum/armor/armor_elder_atmosian
melee = 40