Skip to content

Commit

Permalink
add: t3 donor night dresses (ss220-space#4713)
Browse files Browse the repository at this point in the history
* add: t3 donor night dresses

* 😐

* 🌌
  • Loading branch information
ArtemDerp authored Apr 3, 2024
1 parent 26454a3 commit 1cc6675
Show file tree
Hide file tree
Showing 10 changed files with 45 additions and 0 deletions.
16 changes: 16 additions & 0 deletions code/modules/client/preference/loadout/loadout_donor.dm
Original file line number Diff line number Diff line change
Expand Up @@ -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)
1 change: 1 addition & 0 deletions code/modules/client/preference/loadout/loadout_uniform.dm
Original file line number Diff line number Diff line change
Expand Up @@ -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

28 changes: 28 additions & 0 deletions code/modules/clothing/under/miscellaneous.dm
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Binary file modified icons/mob/clothing/species/drask/uniform.dmi
Binary file not shown.
Binary file modified icons/mob/clothing/species/grey/uniform.dmi
Binary file not shown.
Binary file modified icons/mob/clothing/species/monkey/uniform.dmi
Binary file not shown.
Binary file modified icons/mob/clothing/species/vox/suit.dmi
Binary file not shown.
Binary file modified icons/mob/clothing/species/vox/uniform.dmi
Binary file not shown.
Binary file modified icons/mob/clothing/uniform.dmi
Binary file not shown.
Binary file modified icons/obj/clothing/uniforms.dmi
Binary file not shown.

0 comments on commit 1cc6675

Please sign in to comment.