diff --git a/code/modules/client/preference_setup/loadout/loadout_general.dm b/code/modules/client/preference_setup/loadout/loadout_general.dm index 4bc22562e3..70f230688b 100644 --- a/code/modules/client/preference_setup/loadout/loadout_general.dm +++ b/code/modules/client/preference_setup/loadout/loadout_general.dm @@ -313,6 +313,11 @@ gear_tweaks += new/datum/gear_tweak/path(toytype) gear_tweaks += gear_tweak_free_color_choice +/datum/gear/ducky + display_name = "rubber ducky" + description = "A rubbery friend to make your bathtime better." + path = /obj/item/bikehorn/rubberducky + /datum/gear/textmug display_name = "mug with text" description = "A mug with something written on it." diff --git a/code/modules/client/preference_setup/loadout/loadout_suit.dm b/code/modules/client/preference_setup/loadout/loadout_suit.dm index cd1430c241..be96ef9df4 100644 --- a/code/modules/client/preference_setup/loadout/loadout_suit.dm +++ b/code/modules/client/preference_setup/loadout/loadout_suit.dm @@ -838,6 +838,20 @@ ) gear_tweaks += new/datum/gear_tweak/path(labcoats) +/datum/gear/suit/roles/neo_robo_coat + display_name = "robotics labcoat" + description = "A black version of the classic labcoat for roboticists." + path = /obj/item/clothing/suit/storage/toggle/labcoat/neo_robo_coat + allowed_roles = list(JOB_RESEARCH_DIRECTOR, JOB_ROBOTICIST) + show_roles = FALSE + +/datum/gear/suit/traffic_jacket + display_name = "traffic officer's jacket" + description = "A high visibility jacket for security personnel inclined to direct vehicles rather than people." + path = /obj/item/clothing/suit/storage/toggle/labcoat/neo_police + allowed_roles = list(JOB_SECURITY_OFFICER, JOB_HEAD_OF_SECURITY, JOB_WARDEN, JOB_DETECTIVE) + show_roles = FALSE + /datum/gear/suit/jacket_modular display_name = "jacket, modular" path = /obj/item/clothing/suit/storage/fluff/jacket diff --git a/code/modules/client/preference_setup/loadout/loadout_uniform.dm b/code/modules/client/preference_setup/loadout/loadout_uniform.dm index cff45c890b..64dec38af3 100644 --- a/code/modules/client/preference_setup/loadout/loadout_uniform.dm +++ b/code/modules/client/preference_setup/loadout/loadout_uniform.dm @@ -879,3 +879,9 @@ Talon jumpsuit /datum/gear/uniform/cswoopdress/New() ..() gear_tweaks += gear_tweak_free_color_choice + +// waiter's outfit, this should probably be in a selector with all the other service uniforms. +/datum/gear/uniform/waiter + display_name = "waiter's outfit" + description = "It's a very smart uniform with a special pocket for tip." + path = /obj/item/clothing/under/waiter