Overview
This generator creates clothing descriptions in bulk, suitable for AI image generation tools like Illustrious-XL. It supports professional uniforms, sexy bonus sets, elegant gowns, and random mix-and-match outfits, outputting natural English sentences.
Quick Start
1. Requirements: Python 3.6+
2. Run
```bash
python 20260428cloth.py
python 20260428cloth.py 1000
python 20260428cloth.py 500 output.txt
```
3. Output: Default file outfits_new.txt. Trailing commas can be toggled in the configuration area.
Configuration (top of script)
Variable Description Default
OUTPUT_PATH Default output filename "outfits_new.txt"
OUTFIT_SET_PROB Probability of generating a full set 0.35
SUIT_SET_WEIGHT Probability of elegant gowns within bonus sets 0.25
Content Breakdown
· Professional Sets (20): JK uniform, maid, nurse, police, teacher, stewardess, office lady, nun, idol, bunny girl, gothic victorian, cheongsam, kimono/yukata, wedding dress, evening gown, race queen, cheerleader, school swimsuit, waitress, lingerie. Each has exclusive accessory pools.
· Bonus Sets (3): Micro bikini, sling bikini, fishnet bodysuit. Only the color is replaced; curly-brace options remain literal.
· Elegant Gowns: Randomly drawn from 130+ elaborate gown descriptions with a color prefix added.
· Random Pieces: Separate top/bottom or one-piece, attributes randomly combined, underwear fallback, and full-nude safeguard. Output uses natural grammatical structures.
How to Modify
· Set/piece ratio: Change OUTFIT_SET_PROB.
· Add a new uniform: Add a template to SET_TEMPLATES with {color} and {pool_name} placeholders. Define the exclusive pool variable, then register it in resolve_template_pool's exclusive_map.
· Expand random item pools: Append lowercase underscore-separated entries to the relevant _POOL lists.
· Adjust phrasing: Modify OPENERS, BOTTOM_CONNECTORS, or FOOTWEAR_CONNECTORS for random-piece sentences. Bonus set templates are in ADDITIONAL_SET_TEMPLATES.
Description
Overview
This generator creates clothing descriptions in bulk, suitable for AI image generation tools like Illustrious-XL. It supports professional uniforms, sexy bonus sets, elegant gowns, and random mix-and-match outfits, outputting natural English sentences.
Quick Start
1. Requirements: Python 3.6+
2. Run
```bash
python 20260428cloth.py
python 20260428cloth.py 1000
python 20260428cloth.py 500 output.txt
```
3. Output: Default file outfits_new.txt. Trailing commas can be toggled in the configuration area.
Configuration (top of script)
Variable Description Default
OUTPUT_PATH Default output filename "outfits_new.txt"
OUTFIT_SET_PROB Probability of generating a full set 0.35
SUIT_SET_WEIGHT Probability of elegant gowns within bonus sets 0.25
Content Breakdown
· Professional Sets (20): JK uniform, maid, nurse, police, teacher, stewardess, office lady, nun, idol, bunny girl, gothic victorian, cheongsam, kimono/yukata, wedding dress, evening gown, race queen, cheerleader, school swimsuit, waitress, lingerie. Each has exclusive accessory pools.
· Bonus Sets (3): Micro bikini, sling bikini, fishnet bodysuit. Only the color is replaced; curly-brace options remain literal.
· Elegant Gowns: Randomly drawn from 130+ elaborate gown descriptions with a color prefix added.
· Random Pieces: Separate top/bottom or one-piece, attributes randomly combined, underwear fallback, and full-nude safeguard. Output uses natural grammatical structures.
How to Modify
· Set/piece ratio: Change OUTFIT_SET_PROB.
· Add a new uniform: Add a template to SET_TEMPLATES with {color} and {pool_name} placeholders. Define the exclusive pool variable, then register it in resolve_template_pool's exclusive_map.
· Expand random item pools: Append lowercase underscore-separated entries to the relevant _POOL lists.
· Adjust phrasing: Modify OPENERS, BOTTOM_CONNECTORS, or FOOTWEAR_CONNECTORS for random-piece sentences. Bonus set templates are in ADDITIONAL_SET_TEMPLATES.


