mirror of
https://github.com/Aurorastation/Aurora.3.git
synced 2026-01-05 15:02:56 +00:00
New Dominian dresses and red cape update. (#11137)
This commit is contained in:
@@ -199,7 +199,7 @@
|
||||
|
||||
/datum/gear/uniform/colorpants/New()
|
||||
..()
|
||||
var/colorpants = list()
|
||||
var/list/colorpants = list()
|
||||
colorpants["dress pants"] = /obj/item/clothing/under/pants/dress
|
||||
colorpants["striped pants"] = /obj/item/clothing/under/pants/striped
|
||||
gear_tweaks += new/datum/gear_tweak/path(colorpants)
|
||||
@@ -209,14 +209,14 @@
|
||||
path = /obj/item/clothing/under/syndicate/tacticool
|
||||
|
||||
/datum/gear/uniform/dominia
|
||||
display_name = "dominia clothing selection"
|
||||
description = "A selection of dominian clothing."
|
||||
display_name = "dominian clothing selection"
|
||||
description = "A selection of Dominian clothing."
|
||||
path = /obj/item/clothing/under/dominia
|
||||
flags = GEAR_HAS_DESC_SELECTION
|
||||
|
||||
/datum/gear/uniform/dominia/New()
|
||||
..()
|
||||
var/suit = list()
|
||||
var/list/suit = list()
|
||||
suit["dominia suit, red"] = /obj/item/clothing/under/dominia
|
||||
suit["dominia suit, black"] = /obj/item/clothing/under/dominia/black
|
||||
suit["dominia sweater"] = /obj/item/clothing/under/dominia/sweater
|
||||
@@ -226,6 +226,19 @@
|
||||
suit["dominia summer dress"] = /obj/item/clothing/under/dominia/dress/summer
|
||||
gear_tweaks += new/datum/gear_tweak/path(suit)
|
||||
|
||||
/datum/gear/uniform/dominia_dress
|
||||
display_name = "dominian dress selection"
|
||||
description = "A selection of fancy Dominian dresses."
|
||||
path = /obj/item/clothing/under/dominia/dress
|
||||
|
||||
/datum/gear/uniform/dominia_dress/New()
|
||||
..()
|
||||
var/list/suit = list()
|
||||
for(var/dress in subtypesof(/obj/item/clothing/under/dominia/dress/fancy))
|
||||
var/obj/item/clothing/under/dominia/dress/D = new dress //I'm not typing all this shit manually. Jesus christ.
|
||||
suit["[D.name]"] = D.type
|
||||
gear_tweaks += new/datum/gear_tweak/path(suit)
|
||||
|
||||
/datum/gear/uniform/elyra_holo
|
||||
display_name = "elyran holographic suit selection"
|
||||
description = "A marvel of Elyran technology, uses hardlight fabric and masks to transform a skin-tight, cozy suit into cultural apparel of your choosing. Has a dial for Midenean, Aemaqii and Perispolisean clothes respectively."
|
||||
@@ -234,7 +247,7 @@
|
||||
|
||||
/datum/gear/uniform/elyra_holo/New()
|
||||
..()
|
||||
var/suit = list()
|
||||
var/list/suit = list()
|
||||
suit["elyran holographic suit, feminine"] = /obj/item/clothing/under/elyra_holo
|
||||
suit["elyran holographic suit, masculine"] = /obj/item/clothing/under/elyra_holo/masc
|
||||
gear_tweaks += new/datum/gear_tweak/path(suit)
|
||||
@@ -252,7 +265,7 @@
|
||||
|
||||
/datum/gear/uniform/officer/New()
|
||||
..()
|
||||
var/uniform = list()
|
||||
var/list/uniform = list()
|
||||
uniform["officer uniform, standard"] = /obj/item/clothing/under/rank/security
|
||||
uniform["officer uniform, corporate"] = /obj/item/clothing/under/rank/security/corp
|
||||
uniform["officer uniform, blue"] = /obj/item/clothing/under/rank/security/blue
|
||||
|
||||
Reference in New Issue
Block a user