diff --git a/code/modules/client/preferences_gear.dm b/code/modules/client/preferences_gear.dm index 7fa789d9d93..215827c98cc 100644 --- a/code/modules/client/preferences_gear.dm +++ b/code/modules/client/preferences_gear.dm @@ -556,6 +556,32 @@ var/global/list/gear_datums = list() slot = slot_w_uniform allowed_roles = list("Security Officer","Head of Security","Warden") +//medical scrubs + +/datum/gear/bluescrub + display_name = "medical scrubs, blue" + path = /obj/item/clothing/under/rank/medical/blue + slot = slot_w_uniform + cost = 1 + +/datum/gear/greenscrub + display_name = "medical scrubs, green" + path = /obj/item/clothing/under/rank/medical/green + slot = slot_w_uniform + cost = 1 + +/datum/gear/purplescrub + display_name = "medical scrubs, purple" + path = /obj/item/clothing/under/rank/medical/purple + slot = slot_w_uniform + cost = 1 + +/datum/gear/blackscrub + display_name = "medical scrubs, black" + path = /obj/item/clothing/under/rank/medical/black + slot = slot_w_uniform + cost = 1 + // Attachments /datum/gear/armband_cargo @@ -600,7 +626,7 @@ var/global/list/gear_datums = list() slot = slot_tie cost = 1 -/datum/gear/armband_science +/datum/gear/armband_movement display_name = "armband, synthetic intelligence movement" path = /obj/item/clothing/accessory/armband/movement slot = slot_tie diff --git a/html/changelogs/alberyk-PR-507.yml b/html/changelogs/alberyk-PR-507.yml new file mode 100644 index 00000000000..e25606e8174 --- /dev/null +++ b/html/changelogs/alberyk-PR-507.yml @@ -0,0 +1,38 @@ +################################ +# Example Changelog File +# +# Note: This file, and files beginning with ".", and files that don't end in ".yml" will not be read. If you change this file, you will look really dumb. +# +# Your changelog will be merged with a master changelog. (New stuff added only, and only on the date entry for the day it was merged.) +# When it is, any changes listed below will disappear. +# +# Valid Prefixes: +# bugfix +# wip (For works in progress) +# tweak +# soundadd +# sounddel +# rscadd (general adding of nice things) +# rscdel (general deleting of nice things) +# imageadd +# imagedel +# maptweak +# spellcheck (typo fixes) +# experiment +################################# + +# Your name. +author: Alberyk + +# Optional: Remove this file after generating master changelog. Useful for PR changelogs that won't get used again. +delete-after: True + +# Any changes you've made. See valid prefix list above. +# INDENT WITH TWO SPACES. NOT TABS. SPACES. +# SCREW THIS UP AND IT WON'T WORK. +# Also, all entries are changed into a single [] after a master changelog generation. Just remove the brackets when you add new entries. +# Please surround your changes in double quotes ("), as certain characters otherwise screws up compiling. The quotes will not show up in the changelog. +changes: + - bugfix: "Science armbands should be available again in the custom loadout." + - rscadd: "Added medical scrubs to the custom loadout." + - imageadd: "Workboots should have a better sprite." diff --git a/icons/mob/feet.dmi b/icons/mob/feet.dmi index bb891c8f442..1b467859feb 100644 Binary files a/icons/mob/feet.dmi and b/icons/mob/feet.dmi differ diff --git a/icons/obj/clothing/shoes.dmi b/icons/obj/clothing/shoes.dmi index df58a782ed6..52c4a1aae42 100644 Binary files a/icons/obj/clothing/shoes.dmi and b/icons/obj/clothing/shoes.dmi differ