diff --git a/code/modules/client/preference_setup/loadout/items/xeno/machine.dm b/code/modules/client/preference_setup/loadout/items/xeno/machine.dm index 90cddf29dca..1729b51a0b2 100644 --- a/code/modules/client/preference_setup/loadout/items/xeno/machine.dm +++ b/code/modules/client/preference_setup/loadout/items/xeno/machine.dm @@ -138,8 +138,6 @@ goldendeep["golden deep vest"] = /obj/item/clothing/under/goldendeep/vest goldendeep["golden deep suit"] = /obj/item/clothing/under/goldendeep/suit goldendeep["golden deep skirtsuit"] = /obj/item/clothing/under/goldendeep/skirtsuit - goldendeep["golden deep hoplan uniform"] = /obj/item/clothing/under/goldendeep/hoplan - goldendeep["golden deep porter uniform"] = /obj/item/clothing/under/goldendeep/porter gear_tweaks += new /datum/gear_tweak/path(goldendeep) ABSTRACT_TYPE(/datum/gear/augment/machine) @@ -262,6 +260,16 @@ ABSTRACT_TYPE(/datum/gear/augment/machine) goldendeephat["golden deep cube hood"] = /obj/item/clothing/head/goldendeep/cubehood gear_tweaks += new /datum/gear_tweak/path(goldendeephat) +// Hoplan uniforms are restricted to Golden Deep Consulars and Diplomatic Aides. As military uniforms, they aren't something you'd see among the general crew. +/datum/gear/uniform/goldendeephoplan + display_name = "golden deep hoplan uniform" + description = "An ornate piece of clothing usually worn by members of the Hoplan, but known to circulate elsewhere." + path = /obj/item/clothing/under/goldendeep/hoplan + whitelisted = list(SPECIES_IPC, SPECIES_IPC_G1, SPECIES_IPC_G2, SPECIES_IPC_XION, SPECIES_IPC_ZENGHU, SPECIES_IPC_BISHOP, SPECIES_IPC_SHELL) + sort_category = "Xenowear - IPC" + allowed_roles = list("Consular Officer", "Diplomatic Aide") + culture_restriction = list(/singleton/origin_item/culture/golden_deep) + /datum/gear/head/goldendeephoplan display_name = "golden deep hoplan hat" description = "A large poofy hat typically worn by members of the Hoplan, but known to circulate elsewhere." @@ -269,6 +277,16 @@ ABSTRACT_TYPE(/datum/gear/augment/machine) flags = GEAR_HAS_NAME_SELECTION | GEAR_HAS_DESC_SELECTION whitelisted = list(SPECIES_IPC, SPECIES_IPC_G1, SPECIES_IPC_G2, SPECIES_IPC_XION, SPECIES_IPC_ZENGHU, SPECIES_IPC_BISHOP, SPECIES_IPC_SHELL) sort_category = "Xenowear - IPC" + allowed_roles = list("Consular Officer", "Diplomatic Aide") + culture_restriction = list(/singleton/origin_item/culture/golden_deep) + +/datum/gear/uniform/goldendeepporter + display_name = "golden deep porter uniform" + description = "A plain and durable suit popular among the menial synthetics fo the Golden Deep, but known to ciculate elsewhere." + path = /obj/item/clothing/under/goldendeep/porter + flags = GEAR_HAS_NAME_SELECTION | GEAR_HAS_DESC_SELECTION + whitelisted = list(SPECIES_IPC, SPECIES_IPC_G1, SPECIES_IPC_G2, SPECIES_IPC_XION, SPECIES_IPC_ZENGHU, SPECIES_IPC_BISHOP, SPECIES_IPC_SHELL) + sort_category = "Xenowear - IPC" /datum/gear/head/goldendeepporter display_name = "golden deep porter hat"