From 310fe44285df78fc2e17f963385f04232228fa0f Mon Sep 17 00:00:00 2001 From: nevimer <77420409+nevimer@users.noreply.github.com> Date: Sat, 10 Jan 2026 20:45:48 -0500 Subject: [PATCH] add skull helmet to loadout --- modular_zubbers/code/modules/clothing/head/helmet.dm | 10 ++++++++++ .../code/modules/loadout/categories/heads.dm | 5 +++++ 2 files changed, 15 insertions(+) diff --git a/modular_zubbers/code/modules/clothing/head/helmet.dm b/modular_zubbers/code/modules/clothing/head/helmet.dm index 2f799b70458..043349021ec 100644 --- a/modular_zubbers/code/modules/clothing/head/helmet.dm +++ b/modular_zubbers/code/modules/clothing/head/helmet.dm @@ -718,3 +718,13 @@ fire = 100 acid = 50 wound = 25 + +/obj/item/clothing/head/helmet/skull/fake + + strip_delay = 2 SECONDS + flags_inv = HIDEMASK|HIDEEARS|HIDEEYES|HIDEFACE|HIDESNOUT + flags_cover = HEADCOVERSEYES + min_cold_protection_temperature = HELMET_MIN_TEMP_PROTECT + max_heat_protection_temperature = HELMET_MAX_TEMP_PROTECT + armor_type = /datum/armor/none + resistance_flags = FIRE_PROOF diff --git a/modular_zubbers/code/modules/loadout/categories/heads.dm b/modular_zubbers/code/modules/loadout/categories/heads.dm index b836bb5103c..11efc8ea90d 100644 --- a/modular_zubbers/code/modules/loadout/categories/heads.dm +++ b/modular_zubbers/code/modules/loadout/categories/heads.dm @@ -181,3 +181,8 @@ /datum/loadout_item/head/soft/frontier_colonist name = "Frontier Cap" item_path = /obj/item/clothing/head/soft/frontier_colonist + +/datum/loadout_item/head/skull + name = "Skull Helmet" + item_path = /obj/item/clothing/head/helmet/skull/fake +