diff --git a/code/modules/client/preference_setup/loadout/loadout_accessories.dm b/code/modules/client/preference_setup/loadout/loadout_accessories.dm index c84dd081b83..e390521338d 100644 --- a/code/modules/client/preference_setup/loadout/loadout_accessories.dm +++ b/code/modules/client/preference_setup/loadout/loadout_accessories.dm @@ -233,6 +233,22 @@ shirts["random colored silversun shirt"] = /obj/item/clothing/accessory/silversun/random gear_tweaks += new /datum/gear_tweak/path(shirts) +/datum/gear/accessory/university + display_name = "university sweatshirt selection" + path = /obj/item/clothing/accessory/university + description = "A selection of university sweatshirts." + flags = GEAR_HAS_NAME_SELECTION | GEAR_HAS_DESC_SELECTION + +/datum/gear/accessory/university/New() + ..() + var/list/university = list() + university["grey university sweatshirt"] = /obj/item/clothing/accessory/university + university["crimson university sweatshirt"] = /obj/item/clothing/accessory/university/red + university["mustard university sweatshirt"] = /obj/item/clothing/accessory/university/yellow + university["navy university sweatshirt"] = /obj/item/clothing/accessory/university/blue + university["black university sweatshirt"] = /obj/item/clothing/accessory/university/black + gear_tweaks += new /datum/gear_tweak/path(university) + /datum/gear/accessory/scarf display_name = "scarf selection" path = /obj/item/clothing/accessory/scarf diff --git a/code/modules/clothing/under/accessories/shirts.dm b/code/modules/clothing/under/accessories/shirts.dm index 5e11c6433ff..74a2ebbc04c 100644 --- a/code/modules/clothing/under/accessories/shirts.dm +++ b/code/modules/clothing/under/accessories/shirts.dm @@ -269,3 +269,29 @@ if(prob(50)) icon_state = "hawaii_red" color = color_rotation(rand(-11,12)*15) + +/obj/item/clothing/accessory/university + name = "university sweatshirt" + desc = "A comfy university sweatshirt. This one is grey." + icon_state = "usweatshirt_grey" + item_state = "usweatshirt_grey" + +/obj/item/clothing/accessory/university/red + desc = "A comfy university sweatshirt. This one is crimson." + icon_state = "usweatshirt_red" + item_state = "usweatshirt_red" + +/obj/item/clothing/accessory/university/yellow + desc = "A comfy university sweatshirt. This one is mustard." + icon_state = "usweatshirt_yellow" + item_state = "usweatshirt_yellow" + +/obj/item/clothing/accessory/university/blue + desc = "A comfy university sweatshirt. This one is navy." + icon_state = "usweatshirt_blue" + item_state = "usweatshirt_blue" + +/obj/item/clothing/accessory/university/black + desc = "A comfy university sweatshirt. This one is black." + icon_state = "usweatshirt_black" + item_state = "usweatshirt_black" \ No newline at end of file diff --git a/html/changelogs/desven-sweatshirts.yml b/html/changelogs/desven-sweatshirts.yml new file mode 100644 index 00000000000..de44591dac2 --- /dev/null +++ b/html/changelogs/desven-sweatshirts.yml @@ -0,0 +1,4 @@ +author: Desven +delete-after: True +changes: + - rscadd: "Added university sweatshirts to the loadout. You can rename them to be from any school." \ No newline at end of file diff --git a/icons/mob/ties.dmi b/icons/mob/ties.dmi index 86a390c7522..d8430870f67 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 ffd9127f6ed..f6e5df29c39 100644 Binary files a/icons/obj/clothing/ties.dmi and b/icons/obj/clothing/ties.dmi differ