Another fashion update: dress, medical gown and fannypack edition (#5296)

-adds some new dresses ported from polaris and tg to the custom loadout, at some players request
-adds the medical gown, replacing the white jumpsuit in patient's closet, suggested here: https://forums.aurorastation.org/viewtopic.php?f=18&t=11622&
-adds fannypacks to the loadout
-adds some xeno hardsuit sprites, ported from polaris
This commit is contained in:
Alberyk
2018-09-30 22:15:02 +03:00
committed by Erki
parent 9f8cfc7e87
commit 69f92be449
12 changed files with 136 additions and 6 deletions
@@ -114,6 +114,13 @@
dress["dress, orange"] = /obj/item/clothing/under/dress/dress_orange
dress["dress, pink"] = /obj/item/clothing/under/dress/dress_pink
dress["dress, yellow"] = /obj/item/clothing/under/dress/dress_yellow
dress["dress, white"] = /obj/item/clothing/under/dress/white
dress["dress, stripped"] = /obj/item/clothing/under/dress/stripeddress
dress["dress, sailor"] = /obj/item/clothing/under/dress/sailordress
dress["dress, red swept"] = /obj/item/clothing/under/dress/red_swept_dress
dress["dress, western bustle"] = /obj/item/clothing/under/dress/westernbustle
dress["dress, black tango"] = /obj/item/clothing/under/dress/blacktango
dress["dress, black tango alternative"] = /obj/item/clothing/under/dress/blacktango/alt
dress["cheongsam, white"] = /obj/item/clothing/under/cheongsam
dress["cheongsam, red"] = /obj/item/clothing/under/cheongsam/red
dress["cheongsam, blue"] = /obj/item/clothing/under/cheongsam/blue
@@ -2,7 +2,7 @@
display_name = "briefcase"
path = /obj/item/weapon/storage/briefcase
sort_category = "Utility"
/datum/gear/utility/secure
display_name = "secure briefcase"
path = /obj/item/weapon/storage/secure/briefcase
@@ -53,3 +53,16 @@
/datum/gear/utility/camera
display_name = "camera"
path = /obj/item/device/camera
/datum/gear/utility/fannypack
display_name = "fannypack selection"
cost = 2
path = /obj/item/weapon/storage/belt/fannypack
/datum/gear/utility/fannypack/New()
..()
var/list/fannys = list()
for(var/fanny in typesof(/obj/item/weapon/storage/belt/fannypack))
var/obj/item/weapon/storage/belt/fannypack/fanny_type = fanny
fannys[initial(fanny_type.name)] = fanny_type
gear_tweaks += new/datum/gear_tweak/path(sortAssoc(fannys))