Skip to content

Commit

Permalink
Adds job overalls to the loadout menu (#27427)
Browse files Browse the repository at this point in the history
* Adds janitor's overalls to the loadout menu

* Adds ALL the overalls

* Update code/modules/client/preference/loadout/loadout_uniform.dm

Yay formatting

Co-authored-by: Luc <[email protected]>
Signed-off-by: Rowan Lea <[email protected]>

---------

Signed-off-by: Rowan Lea <[email protected]>
Co-authored-by: Luc <[email protected]>
  • Loading branch information
Screampuff and lewcc authored Nov 29, 2024
1 parent f0ac13b commit 9f26a62
Showing 1 changed file with 22 additions and 0 deletions.
22 changes: 22 additions & 0 deletions code/modules/client/preference/loadout/loadout_uniform.dm
Original file line number Diff line number Diff line change
Expand Up @@ -345,6 +345,28 @@
path = /obj/item/clothing/under/rank/cargo/tech/delivery
allowed_roles = list("Quartermaster", "Cargo Technician")

/datum/gear/uniform/overalls
main_typepath = /datum/gear/uniform/overalls

/datum/gear/uniform/overalls/job
main_typepath = /datum/gear/uniform/overalls/job
subtype_selection_cost = FALSE

/datum/gear/uniform/overalls/job/janitor
display_name = "Overalls, janitor"
path = /obj/item/clothing/under/rank/civilian/janitor/overalls
allowed_roles = list("Janitor")

/datum/gear/uniform/overalls/job/cargo
display_name = "Overalls, cargo tech"
path = /obj/item/clothing/under/rank/cargo/tech/overalls
allowed_roles = list("Quartermaster", "Cargo Technician")

/datum/gear/uniform/overalls/job/expedition
display_name = "Overalls, expedition"
path = /obj/item/clothing/under/rank/cargo/expedition/overalls
allowed_roles = list("Quartermaster", "Explorer")

/datum/gear/uniform/sec
main_typepath = /datum/gear/uniform/sec

Expand Down

0 comments on commit 9f26a62

Please sign in to comment.