diff --git a/code/modules/client/preference_setup/loadout/loadout_accessories.dm b/code/modules/client/preference_setup/loadout/loadout_accessories.dm index 7f7fcb059c..e887a9ac5e 100644 --- a/code/modules/client/preference_setup/loadout/loadout_accessories.dm +++ b/code/modules/client/preference_setup/loadout/loadout_accessories.dm @@ -24,6 +24,10 @@ display_name = "armband, medical" path = /obj/item/clothing/accessory/armband/med +/datum/gear/accessory/medical/cross + display_name = "armband, medic" + path = /obj/item/clothing/accessory/armband/med/cross + /datum/gear/accessory/science display_name = "armband, science" path = /obj/item/clothing/accessory/armband/science diff --git a/code/modules/clothing/under/accessories/armband.dm b/code/modules/clothing/under/accessories/armband.dm index 9a8bbacd46..6856b29466 100644 --- a/code/modules/clothing/under/accessories/armband.dm +++ b/code/modules/clothing/under/accessories/armband.dm @@ -29,6 +29,11 @@ desc = "An armband, worn by the crew to display which department they're assigned to. This one is white." icon_state = "med" +/obj/item/clothing/accessory/armband/med/cross + name = "medic armband" + desc = "A white armband with a red cross on it. Typically used by people in the Medical department." + icon_state = "medicband" + /obj/item/clothing/accessory/armband/med/color name = "armband" desc = "A fancy armband." diff --git a/html/changelogs/Redstryker-MedBand.yml.yml b/html/changelogs/Redstryker-MedBand.yml.yml new file mode 100644 index 0000000000..95e672496f --- /dev/null +++ b/html/changelogs/Redstryker-MedBand.yml.yml @@ -0,0 +1,36 @@ +################################ +# 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: Redstryker + +# 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: + - rscadd: "Added a child of the Medical armband with a red cross on it. It is available on the loadout." diff --git a/icons/mob/ties.dmi b/icons/mob/ties.dmi index 6a6c30524c..bd3eb93079 100644 Binary files a/icons/mob/ties.dmi and b/icons/mob/ties.dmi differ diff --git a/icons/obj/clothing/ties.dmi b/icons/obj/clothing/ties.dmi index 78a2cf4e28..4294e28796 100644 Binary files a/icons/obj/clothing/ties.dmi and b/icons/obj/clothing/ties.dmi differ