diff --git a/modular_citadel/code/modules/client/loadout/hands.dm b/modular_citadel/code/modules/client/loadout/hands.dm index 3b07ecae..b8cb0885 100644 --- a/modular_citadel/code/modules/client/loadout/hands.dm +++ b/modular_citadel/code/modules/client/loadout/hands.dm @@ -65,3 +65,9 @@ category = SLOT_HANDS path = /obj/item/clothing/mask/cigarette/cigar cost = 4 //smoking is bad mkay + +/datum/gear/romanshield + name = "Improper Roman shield" + category = SLOT_HANDS + path = /obj/item/shield/riot/roman/fake + cost = 2 \ No newline at end of file diff --git a/modular_citadel/code/modules/client/loadout/head.dm b/modular_citadel/code/modules/client/loadout/head.dm index 93e6b1cc..921881a1 100644 --- a/modular_citadel/code/modules/client/loadout/head.dm +++ b/modular_citadel/code/modules/client/loadout/head.dm @@ -113,3 +113,19 @@ name = "Pharaoh Hat" category = SLOT_HEAD path = /obj/item/clothing/head/pharaoh + +/datum/gear/gladiatorhelmet + name = "Gladiator helmet" + category = SLOT_HEAD + path = /obj/item/clothing/head/helmet/gladiator + +/datum/gear/romanhelmet + name = "Improper Roman helmet" + category = SLOT_HEAD + path = /obj/item/clothing/head/helmet/roman/fake + +/datum/gear/legionnaire + name = "Improper Roman legionnaire helmet" + category = SLOT_HEAD + path = /obj/item/clothing/head/helmet/roman/legionnaire/fake + cost = 2 \ No newline at end of file diff --git a/modular_citadel/code/modules/client/loadout/shoes.dm b/modular_citadel/code/modules/client/loadout/shoes.dm index 662d36d0..9a7b16bd 100644 --- a/modular_citadel/code/modules/client/loadout/shoes.dm +++ b/modular_citadel/code/modules/client/loadout/shoes.dm @@ -92,3 +92,8 @@ datum/gear/highheels name = "High Heels" category = SLOT_SHOES path= /obj/item/clothing/shoes/highheels + +datum/gear/romansandals + name = "Roman sandals" + category = SLOT_SHOES + path= /obj/item/clothing/shoes/roman \ No newline at end of file diff --git a/modular_citadel/code/modules/client/loadout/uniform.dm b/modular_citadel/code/modules/client/loadout/uniform.dm index e6d981ac..c8f5ae22 100644 --- a/modular_citadel/code/modules/client/loadout/uniform.dm +++ b/modular_citadel/code/modules/client/loadout/uniform.dm @@ -467,3 +467,15 @@ category = SLOT_W_UNIFORM path = /obj/item/clothing/under/polychromic/shortsbra cost = 1 + +/datum/gear/gladiator + name = "Gladiator uniform" + category = SLOT_W_UNIFORM + path = /obj/item/clothing/under/gladiator + cost = 1 + +/datum/gear/roman + name = "Improper Roman armor" + category = SLOT_W_UNIFORM + path = /obj/item/clothing/under/roman + cost = 1