diff --git a/code/modules/client/preference/loadout/loadout_donor.dm b/code/modules/client/preference/loadout/loadout_donor.dm index 879c34349f3..80c6a549811 100644 --- a/code/modules/client/preference/loadout/loadout_donor.dm +++ b/code/modules/client/preference/loadout/loadout_donor.dm @@ -179,3 +179,19 @@ /datum/gear/donor/heartglasses/New() gear_tweaks += new /datum/gear_tweak/color(parent = src) + +/datum/gear/donor/night_dress + display_name = "night dress, select" + description = "A classic night dress." + cost = 1 + donator_tier = 3 + path = /obj/item/clothing/under/night_dress + +/datum/gear/donor/night_dress/New() + ..() + var/list/skirts = list("black" = /obj/item/clothing/under/night_dress, + "darkred" = /obj/item/clothing/under/night_dress/darkred, + "red" = /obj/item/clothing/under/night_dress/red, + "silver" = /obj/item/clothing/under/night_dress/silver, + "white" = /obj/item/clothing/under/night_dress/white,) + gear_tweaks += new /datum/gear_tweak/path(skirts, src) diff --git a/code/modules/client/preference/loadout/loadout_uniform.dm b/code/modules/client/preference/loadout/loadout_uniform.dm index b5014aee152..d4120d64350 100644 --- a/code/modules/client/preference/loadout/loadout_uniform.dm +++ b/code/modules/client/preference/loadout/loadout_uniform.dm @@ -358,3 +358,4 @@ display_name = "track suit (blue)" description = "A classic track suit. There is a small tag on the clothes that says \"Made in the USSP\"." path = /obj/item/clothing/under/ussptracksuit_blue + diff --git a/code/modules/clothing/under/miscellaneous.dm b/code/modules/clothing/under/miscellaneous.dm index a85afb13660..1e8ec857cc7 100644 --- a/code/modules/clothing/under/miscellaneous.dm +++ b/code/modules/clothing/under/miscellaneous.dm @@ -1110,3 +1110,31 @@ item_state = "ussptracksuit_white" item_color = "ussptracksuit_white" +/obj/item/clothing/under/night_dress + name = "night dress" + desc = "A classic night dress." + displays_id = FALSE + over_shoes = TRUE + icon_state = "night_dress" + item_state = "night_dress" + item_color = "night_dress" + +/obj/item/clothing/under/night_dress/darkred + icon_state = "night_dress_darkred" + item_state = "night_dress_darkred" + item_color = "night_dress_darkred" + +/obj/item/clothing/under/night_dress/red + icon_state = "night_dress_red" + item_state = "night_dress_red" + item_color = "night_dress_red" + +/obj/item/clothing/under/night_dress/silver + icon_state = "night_dress_silver" + item_state = "night_dress_silver" + item_color = "night_dress_silver" + +/obj/item/clothing/under/night_dress/white + icon_state = "night_dress_white" + item_state = "night_dress_white" + item_color = "night_dress_white" diff --git a/icons/mob/clothing/species/drask/uniform.dmi b/icons/mob/clothing/species/drask/uniform.dmi index 123d948dd41..fc7e5584db9 100644 Binary files a/icons/mob/clothing/species/drask/uniform.dmi and b/icons/mob/clothing/species/drask/uniform.dmi differ diff --git a/icons/mob/clothing/species/grey/uniform.dmi b/icons/mob/clothing/species/grey/uniform.dmi index 41ebec1c8a1..5e7206ef2cb 100644 Binary files a/icons/mob/clothing/species/grey/uniform.dmi and b/icons/mob/clothing/species/grey/uniform.dmi differ diff --git a/icons/mob/clothing/species/monkey/uniform.dmi b/icons/mob/clothing/species/monkey/uniform.dmi index cb8e3d0dd85..3c665fdbba1 100644 Binary files a/icons/mob/clothing/species/monkey/uniform.dmi and b/icons/mob/clothing/species/monkey/uniform.dmi differ diff --git a/icons/mob/clothing/species/vox/suit.dmi b/icons/mob/clothing/species/vox/suit.dmi index 76a40146137..8b66d3d7588 100644 Binary files a/icons/mob/clothing/species/vox/suit.dmi and b/icons/mob/clothing/species/vox/suit.dmi differ diff --git a/icons/mob/clothing/species/vox/uniform.dmi b/icons/mob/clothing/species/vox/uniform.dmi index 911a291a18b..049c12272ec 100644 Binary files a/icons/mob/clothing/species/vox/uniform.dmi and b/icons/mob/clothing/species/vox/uniform.dmi differ diff --git a/icons/mob/clothing/uniform.dmi b/icons/mob/clothing/uniform.dmi index f748c37e23f..ca5d743fe38 100644 Binary files a/icons/mob/clothing/uniform.dmi and b/icons/mob/clothing/uniform.dmi differ diff --git a/icons/obj/clothing/uniforms.dmi b/icons/obj/clothing/uniforms.dmi index 6675b289799..cf7f95f9e0d 100644 Binary files a/icons/obj/clothing/uniforms.dmi and b/icons/obj/clothing/uniforms.dmi differ