diff --git a/modular_citadel/code/modules/client/loadout/gloves.dm b/modular_citadel/code/modules/client/loadout/gloves.dm index ec67fbc0ec..d504444506 100644 --- a/modular_citadel/code/modules/client/loadout/gloves.dm +++ b/modular_citadel/code/modules/client/loadout/gloves.dm @@ -1,4 +1,4 @@ /datum/gear/fingerless name = "Fingerless Gloves" category = slot_gloves - path = /obj/item/clothing/gloves/fingerless \ No newline at end of file + path = /obj/item/clothing/gloves/fingerless diff --git a/modular_citadel/code/modules/client/loadout/hands.dm b/modular_citadel/code/modules/client/loadout/hands.dm index 94815a7243..3bb58a8719 100644 --- a/modular_citadel/code/modules/client/loadout/hands.dm +++ b/modular_citadel/code/modules/client/loadout/hands.dm @@ -59,3 +59,9 @@ category = slot_hands path = /obj/item/lighter cost = 2 + +/datum/gear/cigar + name = "Cigar" + category = slot_hands + path = /obj/item/clothing/mask/cigarette/cigar + cost = 4 //smoking is bad mkay diff --git a/modular_citadel/code/modules/client/loadout/mask.dm b/modular_citadel/code/modules/client/loadout/mask.dm index 839502d99c..5de520a20a 100644 --- a/modular_citadel/code/modules/client/loadout/mask.dm +++ b/modular_citadel/code/modules/client/loadout/mask.dm @@ -2,3 +2,8 @@ name = "Balaclava" category = slot_wear_mask path = /obj/item/clothing/mask/balaclava + +/datum/gear/moustache + name = "Fake moustache" + category = slot_wear_mask + path = /obj/item/clothing/mask/fakemoustache diff --git a/modular_citadel/code/modules/client/loadout/suit.dm b/modular_citadel/code/modules/client/loadout/suit.dm index 941da5c29f..85d5b5cbd0 100644 --- a/modular_citadel/code/modules/client/loadout/suit.dm +++ b/modular_citadel/code/modules/client/loadout/suit.dm @@ -13,6 +13,12 @@ category = slot_wear_suit path = /obj/item/clothing/suit/poncho/red +/datum/gear/redhood + name = "Red cloak" + category = slot_wear_suit + path = /obj/item/clothing/suit/hooded/cloak/david + cost = 3 + /datum/gear/jacketbomber name = "Bomber jacket" category = slot_wear_suit @@ -99,4 +105,4 @@ name = "fed (movie) uniform, ops/eng" category = slot_wear_suit path = /obj/item/clothing/suit/storage/fluff/fedcoat/eng - restricted_roles = list("Chief Engineer","Atmospheric Technician","Station Engineer","Cargo Technician", "Shaft Miner", "Quartermaster") \ No newline at end of file + restricted_roles = list("Chief Engineer","Atmospheric Technician","Station Engineer","Cargo Technician", "Shaft Miner", "Quartermaster") diff --git a/modular_citadel/code/modules/clothing/suits/suits.dm b/modular_citadel/code/modules/clothing/suits/suits.dm index 8c88a7e193..60b951bdb4 100644 --- a/modular_citadel/code/modules/clothing/suits/suits.dm +++ b/modular_citadel/code/modules/clothing/suits/suits.dm @@ -10,4 +10,17 @@ desc = "A trenchcoat enchanced with a special lightweight kevlar. This one appears to be designed to be draped over one's shoulders rather than worn normally.." alternate_worn_icon = 'modular_citadel/icons/mob/citadel/suit.dmi' icon_state = "hostrench" - item_state = "hostrench" \ No newline at end of file + item_state = "hostrench" + +/obj/item/clothing/suit/hooded/cloak/david + name = "red cloak" + icon_state = "goliath_cloak" + desc = "Ever wanted to look like a badass without ANY effort? Try this nanotrasen brand red cloak, perfect for kids" + hoodtype = /obj/item/clothing/head/hooded/cloakhood/david + body_parts_covered = CHEST|GROIN|ARMS + +/obj/item/clothing/head/hooded/cloakhood/david + name = "red cloak hood" + icon_state = "golhood" + desc = "conceal your face in shame with this nanotrasen brand hood" + flags_inv = HIDEEARS|HIDEEYES|HIDEHAIR|HIDEFACIALHAIR