mirror of
https://github.com/Aurorastation/Aurora.3.git
synced 2026-08-30 16:38:22 +01:00
Adds university sweatshirts (#12454)
This commit is contained in:
@@ -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
|
||||
|
||||
@@ -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"
|
||||
@@ -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."
|
||||
Binary file not shown.
|
Before Width: | Height: | Size: 84 KiB After Width: | Height: | Size: 87 KiB |
Binary file not shown.
|
Before Width: | Height: | Size: 66 KiB After Width: | Height: | Size: 67 KiB |
Reference in New Issue
Block a user