A bunch of new clothes

Added 6 variants of feminine T-shirts, including midriffs, text and shoulder colours.

Added 2 new very short skirts, one with a split exposing one leg.

Added 4 recolourable belt accessories. Thin, thick, strap (no buckle) and studded.
This commit is contained in:
SatinIsle
2024-09-17 14:26:03 +01:00
parent 55ac1c54f0
commit 5b557c7257
11 changed files with 104 additions and 1 deletions
@@ -554,3 +554,18 @@ Talon pin
"Service - Echelons" = /obj/item/clothing/accessory/solgov/department/service/army
)
gear_tweaks += new/datum/gear_tweak/path(insignia)
/datum/gear/accessory/belt_selection
display_name = "belts (selection, colorable)"
path = /obj/item/clothing/accessory/belt
/datum/gear/accessory/belt_selection/New()
..()
var/list/wristband_lists = list(
"Thin Belt" = /obj/item/clothing/accessory/belt,
"Thick Belt" = /obj/item/clothing/accessory/belt/thick,
"Strap Belt" = /obj/item/clothing/accessory/belt/strap,
"Studded Belt" = /obj/item/clothing/accessory/belt/studded
)
gear_tweaks += new/datum/gear_tweak/path(wristband_lists)
gear_tweaks += gear_tweak_free_color_choice
@@ -185,7 +185,9 @@ Talon jumpsuit
"high skirt"=/obj/item/clothing/under/skirt/colorable/high,
"swept skirt"=/obj/item/clothing/under/skirt/colorable/swept,
"jumper skirt"=/obj/item/clothing/under/skirt/colorable/jumper,
"jumper dress"=/obj/item/clothing/under/skirt/colorable/jumperdress
"jumper dress"=/obj/item/clothing/under/skirt/colorable/jumperdress,
"short skirt"=/obj/item/clothing/under/skirt/colorable/short,
"short skirt (split)"=/obj/item/clothing/under/skirt/colorable/short_split
)
gear_tweaks += list(new/datum/gear_tweak/path(skirts), gear_tweak_free_color_choice)