diff --git a/modular_zubbers/code/modules/clothing/head/helmet.dm b/modular_zubbers/code/modules/clothing/head/helmet.dm index 4c11359bd34..dfd766e89ef 100644 --- a/modular_zubbers/code/modules/clothing/head/helmet.dm +++ b/modular_zubbers/code/modules/clothing/head/helmet.dm @@ -7,3 +7,11 @@ icon_state = "metrocopHelm" inhand_icon_state = null armor_type = /datum/armor/head_helmet + +/obj/item/clothing/head/helmet/abductor/fake + name = "Kabrus Utility Helmet" + desc = "A very plain helmet used by the Greys of the Kabrus Mining Site. This helmet only protects the wearer from wind and rain it seems." + icon_state = "alienhelmet" + inhand_icon_state = null + armor_type = /datum/armor/none + flags_inv = HIDEMASK|HIDEEARS|HIDEEYES|HIDEFACE|HIDEHAIR|HIDEFACIALHAIR|HIDESNOUT diff --git a/modular_zubbers/code/modules/loadouts/loadout_items/loadout_datum_heads.dm b/modular_zubbers/code/modules/loadouts/loadout_items/loadout_datum_heads.dm index 8ede432fd61..03b5d17c883 100644 --- a/modular_zubbers/code/modules/loadouts/loadout_items/loadout_datum_heads.dm +++ b/modular_zubbers/code/modules/loadouts/loadout_items/loadout_datum_heads.dm @@ -1,3 +1,8 @@ +/datum/loadout_item/head/alien_fake + name = "Kabrus Utility Helmet" + item_path = /obj/item/clothing/head/helmet/abductor/fake + donator_only = TRUE //Dono item for MyphicBowser + /datum/loadout_item/head/hats/warden/drill name = "warden's campaign hat" item_path = /obj/item/clothing/head/hats/warden/drill @@ -24,4 +29,4 @@ name = "Representative's campaign hat" item_path = /obj/item/clothing/head/nanotasen_consultant/drill donator_only = TRUE - restricted_roles = list(JOB_NT_REP) + restricted_roles = list(JOB_NT_REP) \ No newline at end of file