mirror of
https://github.com/ParadiseSS13/Paradise.git
synced 2026-08-29 06:57:42 +01:00
* Washing Machine Updates * Dye Registry Improvement + Bug Fixes * a couple bug fixes + beanie dyeing * oopsie * removes washing blacklist, it is unused * Apply suggestions from Lewcc's code review Co-authored-by: Burzah <116982774+Burzah@users.noreply.github.com> Signed-off-by: Ryan <80364400+Sirryan2002@users.noreply.github.com> * Apply suggestions from code review Co-authored-by: Contrabang <91113370+Contrabang@users.noreply.github.com> Signed-off-by: Ryan <80364400+Sirryan2002@users.noreply.github.com> * why is all my code fucking * Update code/modules/clothing/gloves/colored_gloves.dm Co-authored-by: Contrabang <91113370+Contrabang@users.noreply.github.com> Signed-off-by: Ryan <80364400+Sirryan2002@users.noreply.github.com> * cleanup * Update code/modules/clothing/gloves/colored_gloves.dm Co-authored-by: Contrabang <91113370+Contrabang@users.noreply.github.com> Signed-off-by: Ryan <80364400+Sirryan2002@users.noreply.github.com> * machine wash updates for simple animals * Update code/modules/clothing/clothing.dm Co-authored-by: Burzah <116982774+Burzah@users.noreply.github.com> Signed-off-by: Ryan <80364400+Sirryan2002@users.noreply.github.com> * Apply suggestions from code review Co-authored-by: Luc <89928798+lewcc@users.noreply.github.com> Signed-off-by: Ryan <80364400+Sirryan2002@users.noreply.github.com> * adds dyeing.dm documentation * optimizations & visible_messages * adds SIGNAL_HANDLER * Update code/game/machinery/washing_machine.dm Co-authored-by: Luc <89928798+lewcc@users.noreply.github.com> Signed-off-by: Ryan <80364400+Sirryan2002@users.noreply.github.com> * update comment * cleans up cleaning_act() --------- Signed-off-by: Ryan <80364400+Sirryan2002@users.noreply.github.com> Co-authored-by: Burzah <116982774+Burzah@users.noreply.github.com> Co-authored-by: Contrabang <91113370+Contrabang@users.noreply.github.com> Co-authored-by: Luc <89928798+lewcc@users.noreply.github.com>
31 lines
1.1 KiB
Plaintext
31 lines
1.1 KiB
Plaintext
/obj/item/clothing/under/rank/captain
|
|
name = "captain's jumpsuit"
|
|
desc = "It's a blue jumpsuit with some gold markings denoting the rank of \"Captain\"."
|
|
icon = 'icons/obj/clothing/under/captain.dmi'
|
|
icon_state = "captain"
|
|
item_state = "caparmor"
|
|
item_color = "captain"
|
|
|
|
sprite_sheets = list(
|
|
"Human" = 'icons/mob/clothing/under/captain.dmi',
|
|
"Vox" = 'icons/mob/clothing/species/vox/under/captain.dmi',
|
|
"Drask" = 'icons/mob/clothing/species/drask/under/captain.dmi',
|
|
"Grey" = 'icons/mob/clothing/species/grey/under/captain.dmi',
|
|
"Kidan" = 'icons/mob/clothing/species/kidan/under/captain.dmi',
|
|
)
|
|
|
|
/obj/item/clothing/under/rank/captain/dress
|
|
name = "captain's dress"
|
|
desc = "Feminine fashion for the style conscious captain."
|
|
icon_state = "captain_dress"
|
|
item_color = "captain_dress"
|
|
dyeable = TRUE
|
|
dyeing_key = DYE_REGISTRY_JUMPSKIRT
|
|
|
|
/obj/item/clothing/under/rank/captain/parade
|
|
name = "captain's parade uniform"
|
|
desc = "A captain's luxury-wear, for special occasions."
|
|
icon_state = "captain_parade"
|
|
item_state = "by_suit"
|
|
item_color = "captain_parade"
|