diff --git a/code/modules/client/preference_setup/loadout/loadout_general.dm b/code/modules/client/preference_setup/loadout/loadout_general.dm index 83d30b92c65..3ad25d480af 100644 --- a/code/modules/client/preference_setup/loadout/loadout_general.dm +++ b/code/modules/client/preference_setup/loadout/loadout_general.dm @@ -312,6 +312,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 2fe3e8668d7..6e8a2fa2060 100644 --- a/code/modules/client/preference_setup/loadout/loadout_suit.dm +++ b/code/modules/client/preference_setup/loadout/loadout_suit.dm @@ -836,6 +836,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 7c8f8f1e958..2b281d6f08a 100644 --- a/code/modules/client/preference_setup/loadout/loadout_uniform.dm +++ b/code/modules/client/preference_setup/loadout/loadout_uniform.dm @@ -880,3 +880,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