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 +