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
+6 -1
View File
@@ -178,4 +178,9 @@
/obj/item/clothing/suit/storage/hooded/toggle/colorable/cropped
name = "cropped hoodie"
desc = "It's not that this is a size too small, you just like showing off your tum. I guess."
icon_state = "choodie_crop"
icon_state = "choodie_crop"
/obj/item/clothing/suit/storage/hooded/toggle/colorable/shortsleeve
name = "shortsleeve hoodie"
desc = "For the times you can't decide between having sleeves and not having them."
icon_state = "choodie_shortsleeve"
@@ -596,3 +596,17 @@
icon = 'icons/inventory/uniform/item_vr.dmi'
default_worn_icon = 'icons/inventory/uniform/mob_vr.dmi'
icon_state = "striped_clown_uniform"
/obj/item/clothing/under/dress/cdress_fire
name = "flame dress"
desc = "A small black dress with a flames print on it. Perfect for recoloring!"
icon = 'icons/inventory/uniform/item_vr.dmi'
default_worn_icon = 'icons/inventory/uniform/mob_vr.dmi'
icon_state = "cdress_fire"
/obj/item/clothing/under/dress/cbridesmaid
name = "fancy dress"
desc = "A cute, flirty dress. Good for weddings and fancy parties, or if you just want to look fashionable. Perfect for recoloring!"
icon = 'icons/inventory/uniform/item_vr.dmi'
default_worn_icon = 'icons/inventory/uniform/mob_vr.dmi'
icon_state = "cbridesmaid"