Merge pull request #13054 from comma/swag
Breaks up some suits into parts
@@ -1081,6 +1081,7 @@
|
||||
#include "code\modules\clothing\under\accessories\accessory.dm"
|
||||
#include "code\modules\clothing\under\accessories\armband.dm"
|
||||
#include "code\modules\clothing\under\accessories\badges.dm"
|
||||
#include "code\modules\clothing\under\accessories\clothing.dm"
|
||||
#include "code\modules\clothing\under\accessories\holster.dm"
|
||||
#include "code\modules\clothing\under\accessories\lockets.dm"
|
||||
#include "code\modules\clothing\under\accessories\storage.dm"
|
||||
|
||||
@@ -99,6 +99,14 @@
|
||||
name = "black tie"
|
||||
icon_state = "blacktie"
|
||||
|
||||
/obj/item/clothing/accessory/yellow
|
||||
name = "yellow tie"
|
||||
icon_state = "yellowtie"
|
||||
|
||||
/obj/item/clothing/accessory/navy
|
||||
name = "navy tie"
|
||||
icon_state = "navytie"
|
||||
|
||||
/obj/item/clothing/accessory/horrible
|
||||
name = "horrible tie"
|
||||
desc = "A neosilk clip-on tie. This one is disgusting."
|
||||
|
||||
@@ -0,0 +1,29 @@
|
||||
/obj/item/clothing/accessory/vest
|
||||
name = "black vest"
|
||||
desc = "Slick black suit vest."
|
||||
icon_state = "det_vest"
|
||||
|
||||
/obj/item/clothing/accessory/tan_jacket
|
||||
name = "tan suit jacket"
|
||||
desc = "Cozy suit jacket."
|
||||
icon_state = "tan_jacket"
|
||||
|
||||
/obj/item/clothing/accessory/charcoal_jacket
|
||||
name = "charcoal suit jacket"
|
||||
desc = "Strict suit jacket."
|
||||
icon_state = "charcoal_jacket"
|
||||
|
||||
/obj/item/clothing/accessory/navy_jacket
|
||||
name = "navy suit jacket"
|
||||
desc = "Official suit jacket."
|
||||
icon_state = "navy_jacket"
|
||||
|
||||
/obj/item/clothing/accessory/burgundy_jacket
|
||||
name = "burgundy suit jacket"
|
||||
desc = "Expensive suit jacket."
|
||||
icon_state = "burgundy_jacket"
|
||||
|
||||
/obj/item/clothing/accessory/checkered_jacket
|
||||
name = "checkered suit jacket"
|
||||
desc = "Lucky suit jacket."
|
||||
icon_state = "checkered_jacket"
|
||||
@@ -104,7 +104,7 @@
|
||||
worn_state = "detective3"
|
||||
item_state = "sl_suit"
|
||||
desc = "An immaculate white dress shirt, paired with a pair of dark grey dress pants, a red tie, and a charcoal vest."
|
||||
starting_accessories = null
|
||||
starting_accessories = list(/obj/item/clothing/accessory/red_long, /obj/item/clothing/accessory/vest)
|
||||
|
||||
/obj/item/clothing/head/det
|
||||
name = "fedora"
|
||||
|
||||
@@ -465,6 +465,7 @@
|
||||
icon_state = "charcoal_suit"
|
||||
item_state = "bl_suit"
|
||||
worn_state = "charcoal_suit"
|
||||
starting_accessories = list(/obj/item/clothing/accessory/navy, /obj/item/clothing/accessory/charcoal_jacket)
|
||||
|
||||
/obj/item/clothing/under/suit_jacket/navy
|
||||
name = "navy suit"
|
||||
@@ -472,6 +473,7 @@
|
||||
icon_state = "navy_suit"
|
||||
item_state = "bl_suit"
|
||||
worn_state = "navy_suit"
|
||||
starting_accessories = list(/obj/item/clothing/accessory/red, /obj/item/clothing/accessory/navy_jacket)
|
||||
|
||||
/obj/item/clothing/under/suit_jacket/burgundy
|
||||
name = "burgundy suit"
|
||||
@@ -479,6 +481,7 @@
|
||||
icon_state = "burgundy_suit"
|
||||
item_state = "r_suit"
|
||||
worn_state = "burgundy_suit"
|
||||
starting_accessories = list(/obj/item/clothing/accessory/black, /obj/item/clothing/accessory/burgundy_jacket)
|
||||
|
||||
/obj/item/clothing/under/suit_jacket/checkered
|
||||
name = "checkered suit"
|
||||
@@ -486,13 +489,15 @@
|
||||
icon_state = "checkered_suit"
|
||||
item_state = "gy_suit"
|
||||
worn_state = "checkered_suit"
|
||||
starting_accessories = list(/obj/item/clothing/accessory/black, /obj/item/clothing/accessory/checkered_jacket)
|
||||
|
||||
/obj/item/clothing/under/suit_jacket/tan
|
||||
name = "tan suit"
|
||||
desc = "A tan suit with a yellow tie. Smart, but casual."
|
||||
desc = "A tan suit. Smart, but casual."
|
||||
icon_state = "tan_suit"
|
||||
item_state = "lb_suit"
|
||||
worn_state = "tan_suit"
|
||||
starting_accessories = list(/obj/item/clothing/accessory/yellow, /obj/item/clothing/accessory/tan_jacket)
|
||||
|
||||
/obj/item/clothing/under/serviceoveralls
|
||||
name = "workman outfit"
|
||||
|
||||
|
Before Width: | Height: | Size: 10 KiB After Width: | Height: | Size: 14 KiB |
|
Before Width: | Height: | Size: 257 KiB After Width: | Height: | Size: 257 KiB |
|
Before Width: | Height: | Size: 11 KiB After Width: | Height: | Size: 13 KiB |
|
Before Width: | Height: | Size: 60 KiB After Width: | Height: | Size: 59 KiB |