diff --git a/modular_citadel/code/modules/client/loadout/shoes.dm b/modular_citadel/code/modules/client/loadout/shoes.dm index 9bf9e39b..662d36d0 100644 --- a/modular_citadel/code/modules/client/loadout/shoes.dm +++ b/modular_citadel/code/modules/client/loadout/shoes.dm @@ -23,6 +23,11 @@ category = SLOT_SHOES path = /obj/item/clothing/shoes/jackboots/toeless +/datum/gear/jackboots/tall + name = "tall jackboots" + category = SLOT_SHOES + path = /obj/item/clothing/shoes/jackboots/tall + /datum/gear/winterboots name = "Winter boots" category = SLOT_SHOES @@ -86,4 +91,4 @@ datum/gear/highheels name = "High Heels" category = SLOT_SHOES - path= /obj/item/clothing/shoes/highheels \ No newline at end of file + path= /obj/item/clothing/shoes/highheels diff --git a/modular_citadel/code/modules/client/loadout/uniform.dm b/modular_citadel/code/modules/client/loadout/uniform.dm index 023507fc..27694232 100644 --- a/modular_citadel/code/modules/client/loadout/uniform.dm +++ b/modular_citadel/code/modules/client/loadout/uniform.dm @@ -422,4 +422,18 @@ name = "Corset" category = SLOT_W_UNIFORM path = /obj/item/clothing/under/corset - cost = 1 \ No newline at end of file + cost = 1 + +/datum/gear/pinksec + name = "Pink Security Jumpsuit" + category = SLOT_W_UNIFORM + path = /obj/item/clothing/under/rank/security/pink + cost = 1 + restricted_roles = list("Security Officer","Warden","Head of Security") + +/datum/gear/pinksecskirt + name = "Pink Security Jumpskirt" + category = SLOT_W_UNIFORM + path = /obj/item/clothing/under/rank/security/skirt/slut/pink + cost = 1 + restricted_roles = list("Security Officer","Warden","Head of Security")