Skip to content

Commit

Permalink
Limits the Hoplan uniforms
Browse files Browse the repository at this point in the history
  • Loading branch information
hazelrat committed Oct 31, 2024
1 parent 23f0c3f commit 999df3d
Showing 1 changed file with 20 additions and 2 deletions.
22 changes: 20 additions & 2 deletions code/modules/client/preference_setup/loadout/items/xeno/machine.dm
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down Expand Up @@ -262,13 +260,33 @@ 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."
path = /obj/item/clothing/head/goldendeep/hoplan
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"
Expand Down

0 comments on commit 999df3d

Please sign in to comment.