New Outfits

This PR contains three outfits: a shortsleeve hoodie variant, a greyscaled version of the Flame Dress, and a greyscaled version of the Yellow Dress. All three can be recolored in the loadout or by the recolor machines on all maps.
This commit is contained in:
AmatsuDF
2023-08-22 02:57:56 -04:00
parent 71744f7bf8
commit d0bdc4cb0a
8 changed files with 43 additions and 3 deletions
@@ -319,7 +319,8 @@ Talon winter coat
var/list/choodies = list(
"normal hoodie"=/obj/item/clothing/suit/storage/hooded/toggle/colorable,
"sleeveless hoodie"=/obj/item/clothing/suit/storage/hooded/toggle/colorable/sleeveless,
"cropped hoodie"=/obj/item/clothing/suit/storage/hooded/toggle/colorable/cropped
"cropped hoodie"=/obj/item/clothing/suit/storage/hooded/toggle/colorable/cropped,
"shortsleeve hoodie"=/obj/item/clothing/suit/storage/hooded/toggle/colorable/shortsleeve
)
gear_tweaks += gear_tweak_free_color_choice
gear_tweaks += new/datum/gear_tweak/path(choodies)
@@ -211,4 +211,24 @@ Talon jumpsuit
/datum/gear/uniform/stripeddungarees
display_name = "striped dungarees"
path = /obj/item/clothing/under/stripeddungarees
path = /obj/item/clothing/under/stripeddungarees
// recolorable flame dress
/datum/gear/uniform/cdress_fire
display_name = "flame dress, colorable"
path = /obj/item/clothing/under/dress/cdress_fire
/datum/gear/uniform/cdress_fire/New()
..()
gear_tweaks += gear_tweak_free_color_choice
// recolorable yellow dress
/datum/gear/uniform/cbridesmaid
display_name = "fancy dress, colorable"
path = /obj/item/clothing/under/dress/cbridesmaid
/datum/gear/uniform/cbridesmaid/New()
..()
gear_tweaks += gear_tweak_free_color_choice