Enhance apparel definitions: Introduce 'UpperUnderwear' layer and related items (Bra, SportsBra, SoftBra) to support gender-specific clothing. Update inventory and dress generation logic to accommodate new layers and ensure proper coverage. Adjust localization for new apparel terms and refine tests for underwear functionality.
This commit is contained in:
@@ -175,7 +175,14 @@ public static class DressGenerator
|
||||
}
|
||||
|
||||
private static readonly string[] RequiredLayers =
|
||||
[ApparelLayers.Underwear, ApparelLayers.Socks, ApparelLayers.Bottom, ApparelLayers.Top, ApparelLayers.Shoes];
|
||||
[
|
||||
ApparelLayers.Underwear,
|
||||
ApparelLayers.UpperUnderwear,
|
||||
ApparelLayers.Socks,
|
||||
ApparelLayers.Bottom,
|
||||
ApparelLayers.Top,
|
||||
ApparelLayers.Shoes,
|
||||
];
|
||||
|
||||
private static readonly string[] OptionalLayers =
|
||||
[ApparelLayers.OverTop, ApparelLayers.Outer, ApparelLayers.Head, ApparelLayers.Accessory];
|
||||
|
||||
Reference in New Issue
Block a user