8 Commits

Author SHA1 Message Date
bb65486995 Merge pull request 'Added style browser.' (#4) from style-browser into master
Reviewed-on: #4
2026-02-20 21:23:38 +00:00
Aodhan Collins
8487b177b4 Added style browser. 2026-02-20 21:22:53 +00:00
116941673e Merge pull request 'feat: implement Actions Gallery with character integration and triple LoRA chaining' (#3) from action-browser into master
Reviewed-on: #3
2026-02-19 20:07:17 +00:00
Aodhan Collins
467c90594c feat: implement Actions Gallery with character integration and triple LoRA chaining
- Added Actions gallery with CRUD and JSON sync
- Implemented Triple LoRA workflow (Character -> Outfit -> Action)
- Added character-integrated previews for Actions with style matching
- Implemented granular prompt selection and default persistence for Actions
- Added detailed development guide for extending gallery features
2026-02-19 20:06:57 +00:00
a4a21051a5 Merge pull request 'Add outfit gallery and AI-powered creation for characters and outfits' (#2) from clothing-gallery into master
Reviewed-on: #2
2026-02-19 18:36:02 +00:00
Aodhan Collins
c0e6cff7b7 Add outfit gallery and AI-powered creation for characters and outfits
- Add outfit gallery with CRUD operations (create, read, update, delete)
- Add AI-powered profile generation for both characters and outfits
- Add toggle to switch between AI generation and manual creation
- Auto-generate filenames from names with incrementing for duplicates
- Add 'full_body' and 'bottom' fields to wardrobe structure
- Update all character and outfit JSON files with new wardrobe fields
- Reorganize data into data/characters and data/clothing directories
- Update README with new features and JSON structure documentation
2026-02-19 18:34:46 +00:00
369c92e3ea Merge pull request 'Expanded generation options. Multiple outfits support.' (#1) from expanded-generation into master
Reviewed-on: #1
2026-02-19 00:41:30 +00:00
Aodhan Collins
5aede18ad5 Expanded generation options. Multiple outfits support. 2026-02-19 00:40:29 +00:00
391 changed files with 10784 additions and 767 deletions

51
DEVELOPMENT_GUIDE.md Normal file
View File

@@ -0,0 +1,51 @@
# Feature Development Guide: Gallery Pages & Character Integration
This guide outlines the architectural patterns and best practices developed during the implementation of the **Actions**, **Outfits**, and **Styles** galleries. Use this as a blueprint for adding similar features (e.g., "Scenes", "Props", "Effects").
## 1. Data Model & Persistence
- **Database Model:** Add a new class in `models.py`. Include `default_fields` (JSON) to support persistent prompt selections.
- **JSON Sync:** Implement a `sync_[feature]()` function in `app.py` to keep the SQLite database in sync with the `data/[feature]/*.json` files.
- **Slugs:** Use URL-safe slugs generated from the ID for clean routing.
## 2. Quadruple LoRA Chaining
Our workflow supports chaining up to four distinct LoRAs from specific directories:
1. **Character:** `Illustrious/Looks/` (Node 16)
2. **Outfit:** `Illustrious/Clothing/` (Node 17)
3. **Action:** `Illustrious/Poses/` (Node 18)
4. **Style:** `Illustrious/Styles/` (Node 19)
**Implementation Detail:**
In `_prepare_workflow`, LoRAs must be chained sequentially. If a previous LoRA is missing, the next one must "reach back" to the Checkpoint (Node 4) or the last valid node in the chain to maintain the model/CLIP connection. Node 19 is the terminal LoRA loader before terminal consumers (KSampler, Detailers).
## 3. Style Prompt Construction
Artistic styles follow specific formatting rules in the `build_prompt` engine:
- **Artist Attribution:** Artist names are prefixed with "by " (e.g., "by Sabu").
- **Artistic Styles:** Raw descriptive style tags (e.g., "watercolor painting") are appended to the prompt.
- **Priority:** Style tags are applied after identity and wardrobe tags but before trigger words.
## 4. Adetailer Routing
To improve generation quality, route specific JSON sub-fields to targeted Adetailers:
- **Face Detailer (Node 14):** Receives `character_name`, `expression`, and action-specific `head`/`eyes` tags.
- **Hand Detailer (Node 15):** Receives priority hand tags (Wardrobe Gloves > Wardrobe Hands > Identity Hands) and action-specific `arms`/`hands` tags.
## 5. Character-Integrated Previews
The "Killer Feature" is previewing a standalone item (like an Action, Outfit, or Style) on a specific character.
**Logic Flow:**
1. **Merge Data:** Copy `character.data`.
2. **Override/Merge:** Replace character `defaults` with feature-specific tags (e.g., Action pose overrides Character pose).
3. **Context Injection:** Append character-specific styles (e.g., `[primary_color] simple background`) to the main prompt.
4. **Auto-Selection:** When a character is selected, ensure their essential identity and active wardrobe fields are automatically included in the prompt.
## 6. UI/UX Patterns
- **Selection Boxes:** Use checkboxes next to field labels to allow users to toggle specific tags.
- **Default Selection:** Implement a "Save as Default Selection" button that persists the current checkbox state to the database.
- **Session State:** Store the last selected character and field preferences in the Flask `session` to provide a seamless experience.
- **AJAX Generation:** Use the WebSocket + Polling hybrid pattern in the frontend to show real-time progress bars without page reloads.
## 7. Directory Isolation
Always isolate LoRAs by purpose to prevent dropdown clutter:
- `get_available_loras()` -> Characters
- `get_available_clothing_loras()` -> Outfits
- `get_available_action_loras()` -> Actions/Poses
- `get_available_style_loras()` -> Styles

View File

@@ -5,15 +5,18 @@ A local web-based GUI for managing character profiles (JSON) and generating cons
## Features
- **Character Gallery**: Automatically scans your `characters/` folder and builds a searchable, sortable database.
- **Granular Prompt Control**: Every field in your character JSON (Identity, Wardrobe, Styles) has a checkbox. You decide exactly what is sent to the AI.
- **Outfit Gallery**: Manage reusable outfit presets that can be applied to any character.
- **Actions Gallery**: A library of reusable poses and actions (e.g., "Belly Dancing", "Sword Fighting") that can be previewed on any character model.
- **AI-Powered Creation**: Create new characters, outfits, and actions using AI to generate profiles from descriptions, or manually create blank templates.
- **character-Integrated Previews**: Standalone items (Outfits/Actions) can be previewed directly on a specific character's model with automatic style injection (e.g., background color matching).
- **Granular Prompt Control**: Every field in your JSON models (Identity, Wardrobe, Styles, Action details) has a checkbox. You decide exactly what is sent to the AI.
- **ComfyUI Integration**:
- **SDXL Optimized**: Designed for high-quality SDXL workflows.
- **SDXL Optimized**: Designed for high-quality SDXL/Illustrious workflows.
- **Localized ADetailer**: Automated Face and Hand detailing with focused prompts (e.g., only eye color and expression are sent to the face detailer).
- **LoRA Support**: Automatically detects and applies LoRAs specified in your character sheets.
- **Triple LoRA Chaining**: Chains up to three distinct LoRAs (Character + Outfit + Action) sequentially in the generation workflow.
- **Real-time Progress**: Live progress bars and queue status via WebSockets (with a reliable polling fallback).
- **Batch Processing**:
- **Fill Missing**: Generate covers for every character missing one with a single click.
- **Refresh All**: Unassign all current covers and generate a fresh set for the whole collection.
- **Advanced Generator**: A dedicated page to mix-and-match characters with different checkpoints (Illustrious/Noob support) and custom prompt additions.
- **Smart URLs**: Sanitized, human-readable URLs (slugs) that handle special characters and slashes gracefully.
@@ -45,13 +48,18 @@ A local web-based GUI for managing character profiles (JSON) and generating cons
## Usage
### Creating Content
- **AI Generation**: Toggle "Use AI to generate profile from description" on, then describe your character, outfit, or action. The AI will generate a complete profile with appropriate tags.
- **Manual Creation**: Toggle AI generation off to create a blank template you can edit yourself.
- **Auto-naming**: Leave the filename field empty to auto-generate one from the name. If a file already exists, a number will be appended automatically.
### Gallery Management
- **Rescan**: Use the "Rescan Character Files" button if you've added new JSON files or manually edited them.
- **Save Defaults**: On a character page, select your favorite prompt combination and click "Save as Default Selection" to remember it for future quick generations.
- **Rescan**: Use the "Rescan" buttons if you've added new JSON files or manually edited them.
- **Save Defaults**: On any detail page, select your favorite prompt combination and click "Save as Default Selection" to remember it for future generations.
### Generation
- **Preview**: Generates an image and shows it to you without replacing your current cover.
- **Replace**: Generates an image and sets it as the character's official gallery cover.
- **Replace**: Generates an image and sets it as the item's official gallery cover.
- **Clean Start**: If you want to wipe the database and all generated images to start fresh:
```bash
./launch.sh --clean
@@ -59,9 +67,11 @@ A local web-based GUI for managing character profiles (JSON) and generating cons
## File Structure
- `/characters`: Your character JSON files.
- `/static/uploads`: Generated images (organized by character subfolders).
- `/templates`: HTML UI using Bootstrap 5.
- `/data/characters`: Character JSON files.
- `/data/clothing`: Outfit preset JSON files.
- `/data/actions`: Action/Pose preset JSON files.
- `/static/uploads`: Generated images (organized by subfolders).
- `app.py`: Flask backend and prompt-building logic.
- `comfy_workflow.json`: The API-format workflow used for generations.
- `models.py`: SQLite database schema.
- `models.py`: SQLAlchemy database models.
- `DEVELOPMENT_GUIDE.md`: Architectual patterns for extending the browser.

2413
app.py

File diff suppressed because it is too large Load Diff

View File

@@ -1,38 +0,0 @@
{
"character_id": "aerith_gainsborough",
"identity": {
"base_specs": "1girl, slender build, fair skin",
"hair": "long brown hair, braided, pink ribbon",
"eyes": "green eyes",
"expression": "cheerful expression",
"hands": "pink nails",
"arms": "",
"torso": "small breasts",
"pelvis": "",
"legs": "",
"feet": "",
"distinguishing_marks": ""
},
"wardrobe": {
"inner_layer": "",
"outer_layer": "pink dress, red bolero jacket",
"lower_body": "long skirt",
"footwear": "brown boots",
"gloves": "",
"accessories": "gold bracelets, flower basket"
},
"styles": {
"aesthetic": "floral, gentle, final fantasy style",
"primary_color": "pink",
"secondary_color": "red",
"tertiary_color": "brown"
},
"lora": {
"lora_name": "",
"lora_weight": 1.0,
"lora_triggers": ""
},
"tags": [
"Final Fantasy VII"
]
}

View File

@@ -1,39 +0,0 @@
{
"character_id": "camilla_(fire_emblem)",
"character_name": "Camilla Nohr",
"identity": {
"base_specs": "1girl, curvaceous build, fair skin",
"hair": "long wavy lavender hair, hair covering one eye",
"eyes": "purple eyes",
"expression": "seductive smile",
"hands": "purple nails",
"arms": "",
"torso": "large breasts",
"pelvis": "",
"legs": "",
"feet": "",
"distinguishing_marks": "black headband with horns"
},
"wardrobe": {
"inner_layer": "",
"outer_layer": "black armor, cleavage",
"lower_body": "black leggings, armored plates",
"footwear": "black armored boots",
"gloves": "",
"accessories": "purple cape, large axe"
},
"styles": {
"aesthetic": "dark fantasy, gothic, fire emblem style",
"primary_color": "black",
"secondary_color": "gold",
"tertiary_color": "purple"
},
"lora": {
"lora_name": "",
"lora_weight": 1.0,
"lora_triggers": ""
},
"tags": [
"Fire Emblem"
]
}

View File

@@ -1,39 +0,0 @@
{
"character_id": "delinquent_mother_flim13",
"character_name": "Delinquent Mother",
"identity": {
"base_specs": "1girl, milf, gyaru, tall",
"hair": "blonde hair, long hair",
"eyes": "sharp eyes",
"expression": "smirk, sharp teeth",
"hands": "painted nails",
"arms": "",
"torso": "very large breasts",
"pelvis": "wide hips",
"legs": "",
"feet": "",
"distinguishing_marks": ""
},
"wardrobe": {
"inner_layer": "biege sweater, cleavage",
"outer_layer": "",
"lower_body": "pencil skirt",
"footwear": "high heels",
"gloves": "",
"accessories": "necklace, rings"
},
"styles": {
"aesthetic": "gyaru, milf, pink leopard print",
"primary_color": "pink",
"secondary_color": "black",
"tertiary_color": "gold"
},
"lora": {
"lora_name": "Illustrious/Looks/Gyaru_mom_Flim13_IL_V1.safetensors",
"lora_weight": 1.0,
"lora_triggers": ""
},
"tags": [
"Original","flim13"
]
}

View File

@@ -1,39 +0,0 @@
{
"character_id": "jessica_rabbit",
"character_name": "Jessica Rabbit",
"identity": {
"base_specs": "1girl, voluptuous build, tall,",
"hair": "long red hair, side part, hair over one eye",
"eyes": "green eyes, heavy makeup, purple eyeshadow",
"expression": "seductive smile",
"hands": "purple elbow gloves",
"arms": "",
"torso": "large breasts",
"pelvis": "narrow waist",
"legs": "",
"feet": "",
"distinguishing_marks": "red lips"
},
"wardrobe": {
"inner_layer": "",
"outer_layer": "red sequin dress, strapless, high slit, backless",
"lower_body": "side_slit,",
"footwear": "red high heels",
"gloves": "purple opera gloves",
"accessories": "gold earrings, glitter"
},
"styles": {
"aesthetic": "noir, cartoon, glamorous",
"primary_color": "red",
"secondary_color": "purple",
"tertiary_color": "gold"
},
"lora": {
"lora_name": "",
"lora_weight": 0.8,
"lora_triggers": ""
},
"tags": [
"Who Framed Roger Rabbit"
]
}

View File

@@ -1,39 +0,0 @@
{
"character_id": "majin_android_21",
"character_name": "Majin Android 21",
"identity": {
"base_specs": "1girl, curvaceous build, pink skin",
"hair": "long voluminous white hair",
"eyes": "red eyes, black sclera",
"expression": "evil smile",
"hands": "black claws, pink nails",
"arms": "",
"torso": "large breasts",
"pelvis": "",
"legs": "",
"feet": "",
"distinguishing_marks": "pink skin, long tail, pointy ears"
},
"wardrobe": {
"inner_layer": "black tube top",
"outer_layer": "",
"lower_body": "white harem pants",
"footwear": "black and yellow boots",
"gloves": "black sleeves",
"accessories": "gold bracelets, gold neck ring, hoop earrings"
},
"styles": {
"aesthetic": "supernatural, anime, dragon ball style",
"primary_color": "pink",
"secondary_color": "white",
"tertiary_color": "gold"
},
"lora": {
"lora_name": "",
"lora_weight": 1.0,
"lora_triggers": ""
},
"tags": [
"Dragon Ball FighterZ"
]
}

View File

@@ -1,39 +0,0 @@
{
"character_id": "marin_kitagawa",
"character_name": "Marin Kitagawa",
"identity": {
"base_specs": "1girl, slender build, fair skin, asian",
"hair": "long blonde hair, pink tips",
"eyes": "pink eyes (contacts)",
"expression": "excited smile",
"hands": "long pink nails",
"arms": "",
"torso": "medium breasts",
"pelvis": "",
"legs": "",
"feet": "",
"distinguishing_marks": "piercings"
},
"wardrobe": {
"inner_layer": "",
"outer_layer": "white school shirt, loosely tied blue tie",
"lower_body": "blue plaid miniskirt",
"footwear": "black loafers, black socks",
"gloves": "",
"accessories": "choker, various bracelets"
},
"styles": {
"aesthetic": "gyaru, modern, anime style",
"primary_color": "white",
"secondary_color": "blue",
"tertiary_color": "pink"
},
"lora": {
"lora_name": "",
"lora_weight": 1.0,
"lora_triggers": ""
},
"tags": [
"My Dress-Up Darling"
]
}

View File

@@ -1,39 +0,0 @@
{
"character_id": "nessa",
"character_name": "Nessa",
"identity": {
"base_specs": "1girl, athletic build, dark skin",
"hair": "long hair, light blue highlights",
"eyes": "blue eyes",
"expression": "confident smile",
"hands": "blue nails",
"arms": "",
"torso": "small breasts",
"pelvis": "",
"legs": "",
"feet": "",
"distinguishing_marks": "blue earrings"
},
"wardrobe": {
"inner_layer": "white and blue bikini top",
"outer_layer": "gym uniform, number 049",
"lower_body": "white and blue shorts",
"footwear": "blue and white sandals",
"gloves": "",
"accessories": "wristband, life buoy, pokeball"
},
"styles": {
"aesthetic": "sporty, aquatic, pokemon style",
"primary_color": "blue",
"secondary_color": "white",
"tertiary_color": "orange"
},
"lora": {
"lora_name": "",
"lora_weight": 1.0,
"lora_triggers": ""
},
"tags": [
"Pokemon"
]
}

View File

@@ -1,39 +0,0 @@
{
"character_id": "urbosa",
"character_name": "Urbosa",
"identity": {
"base_specs": "1girl, tall, muscular, dark skin, gerudo",
"hair": "long red hair, wild hair",
"eyes": "green eyes",
"expression": "confident",
"hands": "gold nails",
"arms": "muscular arms",
"torso": "abs, mediumS breasts",
"pelvis": "wide hips",
"legs": "muscular legs",
"feet": "",
"distinguishing_marks": "dark blue lipstick, gerudo markings"
},
"wardrobe": {
"inner_layer": "",
"outer_layer": "blue top, blue champion's skirt, green sash, green shoulder guards,",
"lower_body": "blue skirt",
"footwear": "gold heels",
"gloves": "",
"accessories": "gold jewelry, scimitar"
},
"styles": {
"aesthetic": "fantasy, warrior, gerudo style",
"primary_color": "gold",
"secondary_color": "blue",
"tertiary_color": "red"
},
"lora": {
"lora_name": "",
"lora_weight": 0.8,
"lora_triggers": ""
},
"tags": [
"The Legend of Zelda"
]
}

View File

@@ -169,5 +169,35 @@
"clip": ["4", 1]
},
"class_type": "LoraLoader"
},
"17": {
"inputs": {
"lora_name": "",
"strength_model": 0.8,
"strength_clip": 0.8,
"model": ["16", 0],
"clip": ["16", 1]
},
"class_type": "LoraLoader"
},
"18": {
"inputs": {
"lora_name": "",
"strength_model": 1.0,
"strength_clip": 1.0,
"model": ["17", 0],
"clip": ["17", 1]
},
"class_type": "LoraLoader"
},
"19": {
"inputs": {
"lora_name": "",
"strength_model": 1.0,
"strength_clip": 1.0,
"model": ["18", 0],
"clip": ["18", 1]
},
"class_type": "LoraLoader"
}
}

View File

@@ -0,0 +1,25 @@
{
"action_id": "belly_dancing",
"action_name": "Belly Dancing",
"action": {
"full_body": "belly dancing, standing",
"head": "",
"eyes": "",
"arms": "hands above head",
"hands": "palms together",
"torso": "",
"pelvis": "swaying hips",
"legs": "",
"feet": "",
"additional": ""
},
"lora": {
"lora_name": "",
"lora_weight": 1.0,
"lora_triggers": ""
},
"tags": [
"belly dancing",
"dance"
]
}

View File

@@ -0,0 +1,57 @@
{
"character_id": "aerith_gainsborough",
"identity": {
"base_specs": "1girl, slender build, fair skin",
"hair": "long brown hair, braided, ",
"eyes": "green eyes",
"hands": "pink nails",
"arms": "",
"torso": "small breasts",
"pelvis": "",
"legs": "",
"feet": "",
"extra": "pink hair ribbon"
},
"defaults": {
"expression": "gentle smile, looking at viewer",
"pose": "handing flower to viewer",
"scene": "city street, night"
},
"wardrobe": {
"default": {
"full_body": "long pink dress",
"headwear": "",
"top": "red bolero jacket",
"bottom": "",
"legwear": "",
"footwear": "brown boots",
"hands": "",
"accessories": "gold bracelets, flower basket"
},
"red_dress": {
"full_body": "long dress, frilled dress, red dress",
"headwear": "red hair ribbons",
"top": "",
"bottom": "",
"legwear": "",
"footwear": "white high heels",
"hands": "red nails",
"accessories": "gold bracelets"
}
},
"styles": {
"aesthetic": "floral, final fantasy vii style",
"primary_color": "pink",
"secondary_color": "red",
"tertiary_color": "brown"
},
"lora": {
"lora_name": "",
"lora_weight": 1.0,
"lora_triggers": ""
},
"tags": [
"Final Fantasy VII"
],
"character_name": "Aerith Gainsborough"
}

View File

@@ -5,25 +5,33 @@
"base_specs": "1girl, slender build, fair skin",
"hair": "shoulder-length blonde hair, tucked behind one ear",
"eyes": "blue eyes",
"expression": "cool, indifferent expression",
"hands": "blue nails",
"arms": "",
"torso": "medium breasts",
"pelvis": "",
"legs": "",
"feet": "",
"distinguishing_marks": "gold hoop earrings"
"extra": ""
},
"defaults": {
"expression": "neutral",
"pose": "tucking hair behind ear",
"scene": "wasteland, mountains, "
},
"wardrobe": {
"inner_layer": "black short-sleeved shirt",
"outer_layer": "blue denim vest, 'RR' text on back",
"lower_body": "blue denim skirt, black leggings",
"footwear": "brown boots",
"gloves": "",
"accessories": ""
"default": {
"full_body": "",
"headwear": "",
"top": "blue denim vest,black long sleeved shirt, striped sleeves",
"bottom": "blue denim skirt",
"legwear": "black stockings",
"footwear": "brown boots",
"hands": "",
"accessories": "gold hoop earrings"
}
},
"styles": {
"aesthetic": "90s casual, anime, dragon ball style",
"aesthetic": "anime, dragon ball style",
"primary_color": "blue",
"secondary_color": "black",
"tertiary_color": "white"

View File

@@ -5,22 +5,30 @@
"base_specs": "1girl, small build, loli, fair skin",
"hair": "short pink hair, two small horns (hair ornaments)",
"eyes": "green eyes",
"expression": "smirk",
"hands": "pink nails",
"arms": "",
"torso": "flat chest",
"pelvis": "",
"legs": "",
"feet": "",
"distinguishing_marks": ""
"extra": ""
},
"defaults": {
"expression": "",
"pose": "",
"scene": ""
},
"wardrobe": {
"inner_layer": "",
"outer_layer": "black Eden Academy uniform, gold trim",
"lower_body": "uniform skirt",
"footwear": "black shoes, white socks",
"gloves": "",
"accessories": "black and gold hair cones"
"default": {
"full_body": "black Eden Academy uniform, gold trim",
"headwear": "",
"top": "",
"bottom": "",
"legwear": "",
"footwear": "black shoes, white socks",
"hands": "",
"accessories": "black and gold hair cones"
}
},
"styles": {
"aesthetic": "cute, academic, spy x family style",

View File

@@ -5,25 +5,33 @@
"base_specs": "1girl, horse ears, horse tail, tall",
"hair": "long grey hair, wild hair",
"eyes": "purple eyes, red framed glasses",
"expression": "thinking",
"hands": "",
"arms": "",
"torso": "large breasts",
"pelvis": "",
"legs": "",
"feet": "",
"distinguishing_marks": ""
"extra": ""
},
"defaults": {
"expression": "thinking",
"pose": "reading",
"scene": "library, sun beam"
},
"wardrobe": {
"inner_layer": "white shirt",
"outer_layer": "tracen school uniform",
"lower_body": "pleated skirt",
"footwear": "heeled shoes",
"gloves": "",
"accessories": ""
"default": {
"full_body": "tracen school uniform",
"headwear": "",
"top": "",
"bottom": "",
"legwear": "",
"footwear": "heeled shoes",
"hands": "",
"accessories": ""
}
},
"styles": {
"aesthetic": "intellectual, cool",
"aesthetic": "anime,umasumame",
"primary_color": "maroon",
"secondary_color": "white",
"tertiary_color": "grey"

View File

@@ -5,25 +5,33 @@
"base_specs": "1girl, slender build, fair skin",
"hair": "turquoise hair, ponytail",
"eyes": "blue eyes",
"expression": "energetic smile",
"hands": "turquoise nails",
"arms": "",
"torso": "medium breasts",
"pelvis": "",
"legs": "",
"feet": "",
"distinguishing_marks": ""
"extra": ""
},
"defaults": {
"expression": "",
"pose": "",
"scene": ""
},
"wardrobe": {
"inner_layer": "",
"outer_layer": "black playboy bunny",
"lower_body": "pantyhose",
"footwear": "red high heels",
"gloves": "detatched cuffs",
"accessories": "red hair ribbon, dragon radar"
"default": {
"full_body": "black playboy bunny",
"headwear": "",
"top": "",
"bottom": "",
"legwear": "pantyhose",
"footwear": "red high heels",
"hands": "detatched cuffs",
"accessories": "red hair ribbon"
}
},
"styles": {
"aesthetic": "retro-futuristic, anime, dragon ball style",
"aesthetic": "wasteland, anime, dragon ball style",
"primary_color": "pink",
"secondary_color": "turquoise",
"tertiary_color": "purple"

View File

@@ -0,0 +1,47 @@
{
"character_id": "camilla_(fire_emblem)",
"character_name": "Camilla Nohr",
"identity": {
"base_specs": "1girl, curvaceous build, fair skin",
"hair": "long wavy lavender hair, hair covering one eye",
"eyes": "purple eyes",
"hands": "purple nails",
"arms": "",
"torso": "large breasts",
"pelvis": "",
"legs": "",
"feet": "",
"extra": "black tiara"
},
"defaults": {
"expression": "",
"pose": "",
"scene": ""
},
"wardrobe": {
"default": {
"full_body": "black armor, gold trim",
"headwear": "",
"top": "belt between breasts, cleavage",
"bottom": "purple sash, pelvic curtain, black panties",
"legwear": "black armored thigh boots",
"footwear": "gold heels",
"hands": "purple velvet gloves",
"accessories": "purple cape, large axe"
}
},
"styles": {
"aesthetic": "battlefield,night,gothic, fire emblem style",
"primary_color": "black",
"secondary_color": "gold",
"tertiary_color": "purple"
},
"lora": {
"lora_name": "Illustrious/Looks/fecamilla-illu-nvwls-v2.safetensors",
"lora_weight": 0.8,
"lora_triggers": ""
},
"tags": [
"Fire Emblem"
]
}

View File

@@ -5,25 +5,33 @@
"base_specs": "1girl, muscular build, fair skin",
"hair": "long blonde hair, twin braids",
"eyes": "blue eyes",
"expression": "serious look",
"hands": "green nails",
"arms": "",
"torso": "medium breasts",
"pelvis": "",
"legs": "",
"feet": "",
"distinguishing_marks": "scar on left cheek, green camouflage paint on legs"
"extra": "scar on left cheek, green camouflage paint on legs"
},
"defaults": {
"expression": "",
"pose": "",
"scene": ""
},
"wardrobe": {
"inner_layer": "",
"outer_layer": "green high-leg leotard",
"lower_body": "bare legs",
"footwear": "black combat boots, green socks",
"gloves": "red gauntlets",
"accessories": "red beret"
"default": {
"full_body": "green high-leg leotard",
"headwear": "",
"top": "",
"bottom": "",
"legwear": "bare legs",
"footwear": "black combat boots, green socks",
"hands": "red gauntlets",
"accessories": "red beret"
}
},
"styles": {
"aesthetic": "military, athletic, street fighter style",
"aesthetic": "aurora,above valley,stone bridge, street fighter style",
"primary_color": "green",
"secondary_color": "red",
"tertiary_color": "black"

View File

@@ -5,25 +5,33 @@
"base_specs": "1girl, muscular build, fair skin, asian",
"hair": "black hair, hair buns",
"eyes": "brown eyes",
"expression": "determined smile",
"hands": "blue nails",
"arms": "",
"torso": "medium breasts",
"pelvis": "",
"legs": "thick thighs",
"feet": "",
"distinguishing_marks": ""
"extra": ""
},
"defaults": {
"expression": "confident",
"pose": "fighting stance",
"scene": "market, daytime"
},
"wardrobe": {
"inner_layer": "",
"outer_layer": "blue qipao, gold embroidery, white accents",
"lower_body": "brown tights",
"footwear": "white combat boots",
"gloves": "",
"accessories": "white hair ribbons, spiked bracelets"
"default": {
"full_body": "blue qipao, gold embroidery, white accents",
"headwear": "",
"top": " puffy shoulders",
"bottom": "brown tights",
"legwear": "",
"footwear": "white lace-up boots",
"hands": "",
"accessories": "white hair ribbons, spiked bracelets"
}
},
"styles": {
"aesthetic": "chinese style",
"aesthetic": "chinese style, ",
"primary_color": "blue",
"secondary_color": "white",
"tertiary_color": "gold"

View File

@@ -5,25 +5,33 @@
"base_specs": "1girl, athletic build",
"hair": "ashen grey hair, messy bun",
"eyes": "emerald green eyes, mascara",
"expression": "determined look",
"hands": "green nails",
"arms": "",
"torso": "medium breasts",
"pelvis": "",
"legs": "",
"feet": "",
"distinguishing_marks": "scar over eye"
"extra": "scar over eye"
},
"defaults": {
"expression": "serious",
"pose": "fighting stance, holding sword",
"scene": ""
},
"wardrobe": {
"inner_layer": "white blouse",
"outer_layer": "",
"lower_body": "brown leather trousers",
"footwear": "brown leather boots",
"gloves": "brown leather gloves",
"accessories": "silver sword on back, witcher medallion"
"default": {
"full_body": "",
"headwear": "",
"top": "white blouse",
"bottom": "brown leather trousers",
"legwear": "",
"footwear": "brown leather boots",
"hands": "brown leather gloves",
"accessories": "silver sword on back, witcher medallion"
}
},
"styles": {
"aesthetic": "gritty, fantasy, witcher style",
"aesthetic": "fantasy, witcher style",
"primary_color": "white",
"secondary_color": "brown",
"tertiary_color": "silver"

View File

@@ -0,0 +1,48 @@
{
"character_id": "delinquent_mother_flim13",
"character_name": "Delinquent Mother",
"identity": {
"base_specs": "1girl, milf, gyaru, tall",
"hair": "blonde hair, long hair",
"eyes": "sharp eyes, black eyes, white pupil,",
"hands": "red nails",
"arms": "",
"torso": "very large breasts",
"pelvis": "wide hips",
"legs": "",
"feet": "painted nails",
"extra": ""
},
"defaults": {
"expression": "naughty face",
"pose": "spread legs, leopard print panties",
"scene": "sitting on couch, from below"
},
"wardrobe": {
"default": {
"full_body": "",
"headwear": "",
"top": "light brown sweater, cleavage",
"bottom": "leopard print skirt",
"legwear": "",
"footwear": "red high heels",
"hands": "",
"accessories": "necklace, rings,"
}
},
"styles": {
"aesthetic": "living room",
"primary_color": "pink",
"secondary_color": "black",
"tertiary_color": "gold"
},
"lora": {
"lora_name": "Illustrious/Looks/Gyaru_mom_Flim13_IL_V1.safetensors",
"lora_weight": 0.8,
"lora_triggers": ""
},
"tags": [
"Original",
"flim13"
]
}

View File

@@ -5,25 +5,33 @@
"base_specs": "1girl, horse ears, horse tail, tall",
"hair": "blonde hair, wavy hair",
"eyes": "blue eyes",
"expression": "confident expression",
"hands": "",
"arms": "",
"torso": "medium breasts",
"pelvis": "",
"legs": "",
"feet": "",
"distinguishing_marks": ""
"extra": ""
},
"defaults": {
"expression": "bored",
"pose": "looking at phone",
"scene": "sitting on bench"
},
"wardrobe": {
"inner_layer": "white shirt",
"outer_layer": "tracen school uniform",
"lower_body": "pleated skirt",
"footwear": "heeled shoes",
"gloves": "",
"accessories": "choker, earrings"
"default": {
"full_body": "tracen school uniform",
"headwear": "",
"top": "",
"bottom": "",
"legwear": "",
"footwear": "heeled shoes",
"hands": "",
"accessories": "choker, earrings"
}
},
"styles": {
"aesthetic": "fashionable, model",
"aesthetic": "modeling,school yard",
"primary_color": "gold",
"secondary_color": "white",
"tertiary_color": "black"

View File

@@ -5,25 +5,33 @@
"base_specs": "1girl, horse ears, horse tail, tall",
"hair": "grey hair, short hair",
"eyes": "red eyes",
"expression": "crazy expression, grin",
"hands": "",
"arms": "",
"torso": "medium breasts",
"pelvis": "",
"legs": "",
"feet": "",
"distinguishing_marks": ""
"extra": ""
},
"defaults": {
"expression": "smile",
"pose": "running toward viewer",
"scene": "horse race track, sunshine"
},
"wardrobe": {
"inner_layer": "white shirt",
"outer_layer": "tracen school uniform",
"lower_body": "pleated skirt",
"footwear": "heeled shoes",
"gloves": "",
"accessories": "ear covers, hat"
"default": {
"full_body": "tracen school uniform",
"headwear": "",
"top": "",
"bottom": "",
"legwear": "",
"footwear": "heeled shoes",
"hands": "",
"accessories": "ear covers, hat"
}
},
"styles": {
"aesthetic": "energetic, sporty",
"aesthetic": "horse race track,energetic, sporty",
"primary_color": "red",
"secondary_color": "white",
"tertiary_color": "gold"

View File

@@ -5,25 +5,33 @@
"base_specs": "1girl, slender build, fair skin",
"hair": "long turquoise hair, twin tails, floor-length",
"eyes": "turquoise eyes",
"expression": "cheerful smile",
"hands": "turquoise nails",
"arms": "01 tattoo on left shoulder",
"torso": "small breasts",
"pelvis": "",
"legs": "",
"feet": "",
"distinguishing_marks": ""
"extra": ""
},
"defaults": {
"expression": "",
"pose": "",
"scene": ""
},
"wardrobe": {
"inner_layer": "",
"outer_layer": "grey sleeveless shirt, turquoise tie",
"lower_body": "grey miniskirt, turquoise trim",
"footwear": "black thigh-high boots, turquoise trim",
"gloves": "black arm warmers, turquoise trim",
"accessories": "hair ornament, headset"
"default": {
"full_body": "",
"headwear": "",
"top": "grey sleeveless shirt, turquoise tie",
"bottom": "",
"legwear": "grey miniskirt, turquoise trim",
"footwear": "black thigh-high boots, turquoise trim",
"hands": "black arm warmers, turquoise trim",
"accessories": "hair ornament, headset"
}
},
"styles": {
"aesthetic": "vocaloid, futuristic, anime style",
"aesthetic": "concert, stage, vocaloid, futuristic, anime style",
"primary_color": "teal",
"secondary_color": "grey",
"tertiary_color": "black"

View File

@@ -0,0 +1,49 @@
{
"character_id": "jasmine_disney",
"character_name": "Jasmine",
"identity": {
"base_specs": "1girl, dark skin, ",
"hair": "black hair, long hair, voluminous hair, banded hair, sectioned hair",
"eyes": "brown eyes, ",
"hands": "teal nails",
"arms": "",
"torso": "medium breasts",
"pelvis": "narrow waist",
"legs": "",
"feet": "",
"extra": "heavy eyeliner, winged eyeliner"
},
"defaults": {
"expression": "gentle smile",
"pose": "hand in water",
"scene": "sitting beside fountain, sunshine"
},
"wardrobe": {
"default": {
"full_body": "",
"headwear": "",
"top": "teal crop top, tube top, off-shoulder, cleavage",
"bottom": "teal harem pants",
"legwear": " baggy pants, sheer fabric",
"footwear": "gold shoes, curling toes, pointed shoes",
"hands": "",
"accessories": "gold hoop earrings, large gold necklace, blue headband, jewel on headband"
}
},
"styles": {
"aesthetic": "desert arabian, disney, cartoon, ",
"primary_color": "teal",
"secondary_color": "gold",
"tertiary_color": "black"
},
"lora": {
"lora_name": "Illustrious/Looks/Jasmine-IL_V2.safetensors",
"lora_weight": 0.8,
"lora_triggers": ""
},
"tags": [
"Aladdin",
"princess",
"disney"
]
}

View File

@@ -0,0 +1,47 @@
{
"character_id": "jessica_rabbit",
"character_name": "Jessica Rabbit",
"identity": {
"base_specs": "1girl, tall,",
"hair": "long red hair, side part, hair over one eye",
"eyes": "green eyes, heavy makeup, purple eyeshadow",
"hands": "purple elbow gloves",
"arms": "",
"torso": "large breasts",
"pelvis": "very narrow waist",
"legs": "",
"feet": "",
"extra": "red lips"
},
"defaults": {
"expression": "",
"pose": "",
"scene": ""
},
"wardrobe": {
"default": {
"full_body": "red sequin evening gown",
"headwear": "",
"top": "strapless, backless",
"bottom": "high slit",
"legwear": "side slit",
"footwear": "red high heels",
"hands": "purple opera gloves",
"accessories": "gold earrings, glitter"
}
},
"styles": {
"aesthetic": "jazz club,noir,",
"primary_color": "red",
"secondary_color": "purple",
"tertiary_color": "gold"
},
"lora": {
"lora_name": "Illustrious/Looks/JessicaRabbitXL_character-12-IL.safetensors",
"lora_weight": 0.8,
"lora_triggers": ""
},
"tags": [
"Who Framed Roger Rabbit"
]
}

View File

@@ -5,22 +5,30 @@
"base_specs": "1girl, slender build, fair skin",
"hair": "long magenta hair, curved back",
"eyes": "blue eyes",
"expression": "arrogant smirk",
"hands": "white nails",
"arms": "",
"torso": "medium breasts",
"pelvis": "",
"legs": "",
"feet": "",
"distinguishing_marks": "green earrings"
"extra": "green earrings"
},
"defaults": {
"expression": "",
"pose": "",
"scene": ""
},
"wardrobe": {
"inner_layer": "black crop top",
"outer_layer": "white Team Rocket uniform jacket, bare stomach, red R logo",
"lower_body": "white miniskirt",
"footwear": "black thigh-high boots",
"gloves": "black elbow gloves",
"accessories": "green earrings"
"default": {
"full_body": "",
"headwear": "",
"top": "black crop top,white Team Rocket uniform jacket, red R logo",
"bottom": "midriff, white miniskirt",
"legwear": "",
"footwear": "black thigh-high boots",
"hands": "black elbow gloves",
"accessories": "green earrings"
}
},
"styles": {
"aesthetic": "villainous, anime, pokemon style",

View File

@@ -5,22 +5,30 @@
"base_specs": "1girl, slender build, pale skin,",
"hair": "long aqua hair, twin braids, very long hair, bangs",
"eyes": "pink eyes, ",
"expression": "crazy eyes, crazy smile",
"hands": "black and pink nails",
"arms": "",
"torso": "flat chest,",
"pelvis": "",
"legs": "",
"feet": "",
"distinguishing_marks": "cloud tattoo,"
"extra": "cloud tattoo,"
},
"defaults": {
"expression": "",
"pose": "",
"scene": ""
},
"wardrobe": {
"inner_layer": "",
"outer_layer": "pink and black bikini, asymmetrical_bikini ",
"lower_body": "pink shorts, single pink stocking",
"footwear": "combat boots",
"gloves": "black fingerless gloves, fishnet elbow gloves,",
"accessories": "ammo belts, choker, bullet necklace,"
"default": {
"full_body": "",
"headwear": "",
"top": "pink and black bikini, asymmetrical_bikini ",
"bottom": "pink shorts",
"legwear": "single pink stocking",
"footwear": "combat boots",
"hands": "black fingerless gloves, fishnet elbow gloves,",
"accessories": "ammo belts, choker, bullet necklace,"
}
},
"styles": {
"aesthetic": "punk, chaotic,",

View File

@@ -5,25 +5,33 @@
"base_specs": "1girl, petite",
"hair": "blonde hair, short hair, hair bow",
"eyes": "blue eyes",
"expression": "smile, energetic",
"hands": "",
"arms": "detached sleeves",
"torso": "flat chest",
"pelvis": "",
"legs": "leg warmers",
"feet": "",
"distinguishing_marks": ""
"extra": ""
},
"defaults": {
"expression": "",
"pose": "",
"scene": ""
},
"wardrobe": {
"inner_layer": "white shirt, sailor collar",
"outer_layer": "",
"lower_body": "black shorts, yellow belt",
"footwear": "white shoes",
"gloves": "",
"accessories": "headset, hair bow"
"default": {
"full_body": "",
"headwear": "",
"top": "white shirt, sailor collar",
"bottom": "black shorts, yellow belt",
"legwear": "knee-high socks",
"footwear": "white shoes",
"hands": "",
"accessories": "headset, hair bow"
}
},
"styles": {
"aesthetic": "vocaloid, cyber",
"aesthetic": "concert, stage, vocaloid, cyber",
"primary_color": "yellow",
"secondary_color": "white",
"tertiary_color": "black"

View File

@@ -5,22 +5,30 @@
"base_specs": "1girl, slender build, fair skin",
"hair": "long brown hair, half-ponytail, bangs",
"eyes": "red eyes",
"expression": "determined smile",
"hands": "",
"arms": "",
"torso": "small breasts",
"pelvis": "",
"legs": "",
"feet": "",
"distinguishing_marks": ""
"extra": ""
},
"defaults": {
"expression": "",
"pose": "",
"scene": ""
},
"wardrobe": {
"inner_layer": "white shirt",
"outer_layer": "dark blue witch robes",
"lower_body": "dark blue skirt",
"footwear": "brown boots, white socks",
"gloves": "",
"accessories": "pointed witch hat, brown belt, magic wand"
"default": {
"full_body": "luna nova school uniform",
"headwear": "",
"top": "white shirt,dark blue witch robes",
"bottom": "dark blue skirt",
"legwear": "white socks",
"footwear": "brown boots",
"hands": "",
"accessories": "pointed witch hat, brown belt, magic wand"
}
},
"styles": {
"aesthetic": "fantasy, magical girl, little witch academia style",

View File

@@ -5,22 +5,30 @@
"base_specs": "1girl, slender build, fair skin, fox ears",
"hair": "long blonde hair, flowing",
"eyes": "yellow eyes",
"expression": "charming smile",
"hands": "silver nails",
"arms": "",
"torso": "medium breasts",
"pelvis": "",
"legs": "",
"feet": "",
"distinguishing_marks": "whisker markings on cheeks, crystal tails"
"extra": "whisker markings on cheeks, crystal tails"
},
"defaults": {
"expression": "",
"pose": "",
"scene": ""
},
"wardrobe": {
"inner_layer": "silver crop top",
"outer_layer": "white and silver jacket",
"lower_body": "black leather shorts",
"footwear": "black thigh-high boots",
"gloves": "",
"accessories": "crystal heart, silver jewelry"
"default": {
"full_body": "",
"headwear": "",
"top": "silver crop top, white and silver jacket",
"bottom": "black leather shorts",
"legwear": "",
"footwear": "black thigh-high boots",
"hands": "",
"accessories": "crystal heart, silver jewelry"
}
},
"styles": {
"aesthetic": "pop star, mystical, k/da style",
@@ -34,6 +42,9 @@
"lora_triggers": ""
},
"tags": [
"League of Legends", "K/DA", "KDA", "K-Pop"
"League of Legends",
"K/DA",
"KDA",
"K-Pop"
]
}

View File

@@ -5,22 +5,30 @@
"base_specs": "1girl, athletic build, fair skin",
"hair": "long dark blue hair, blonde streaks, high ponytail",
"eyes": "blue eyes",
"expression": "cool, rebellious look",
"hands": "blue nails",
"arms": "tattoos on arms",
"torso": "small breasts",
"pelvis": "",
"legs": "",
"feet": "",
"distinguishing_marks": ""
"extra": ""
},
"defaults": {
"expression": "",
"pose": "",
"scene": ""
},
"wardrobe": {
"inner_layer": "black crop top",
"outer_layer": "blue and silver motorcycle jacket",
"lower_body": "black leather pants",
"footwear": "blue sneakers",
"gloves": "black fingerless gloves",
"accessories": "kama and kunai"
"default": {
"full_body": "",
"headwear": "",
"top": "black crop top, blue and silver motorcycle jacket",
"bottom": "black leather pants",
"legwear": "",
"footwear": "blue sneakers",
"hands": "black fingerless gloves",
"accessories": "kama and kunai"
}
},
"styles": {
"aesthetic": "pop star, street, k/da style",
@@ -34,6 +42,9 @@
"lora_triggers": ""
},
"tags": [
"League of Legends", "K/DA", "KDA", "K-Pop"
"League of Legends",
"K/DA",
"KDA",
"K-Pop"
]
}

View File

@@ -5,22 +5,30 @@
"base_specs": "1girl, curvaceous build, fair skin",
"hair": "light blue hair,",
"eyes": "yellow glowing eyes, slit pupils",
"expression": "seductive, confident look",
"hands": "metal claws",
"arms": "",
"torso": "medium breasts",
"pelvis": "",
"legs": "",
"feet": "",
"distinguishing_marks": "two long lashers (shadow tendrils)"
"extra": "two long lashers (shadow tendrils)"
},
"defaults": {
"expression": "",
"pose": "",
"scene": ""
},
"wardrobe": {
"inner_layer": "black leather bra",
"outer_layer": "iridescent blue jacket, fur collar",
"lower_body": "black leather skirt",
"footwear": "black high-heeled boots",
"gloves": "",
"accessories": "diamond earrings"
"default": {
"full_body": "",
"headwear": "",
"top": "black leather bra, iridescent blue jacket, fur collar",
"bottom": "black leather skirt",
"legwear": "",
"footwear": "black high-heeled boots",
"hands": "",
"accessories": "diamond earrings"
}
},
"styles": {
"aesthetic": "pop star, glamorous, k/da style",
@@ -34,6 +42,9 @@
"lora_triggers": ""
},
"tags": [
"League of Legends", "K/DA", "KDA", "K-Pop"
"League of Legends",
"K/DA",
"KDA",
"K-Pop"
]
}

View File

@@ -5,22 +5,30 @@
"base_specs": "1girl, athletic build, fair skin",
"hair": "long hair, purple hair, hair ornament, ponytail, green highlights",
"eyes": "purple eyes",
"expression": "focused expression",
"hands": "silver nails",
"arms": "",
"torso": "medium breasts",
"pelvis": "",
"legs": "",
"feet": "",
"distinguishing_marks": ""
"extra": ""
},
"defaults": {
"expression": "",
"pose": "",
"scene": ""
},
"wardrobe": {
"inner_layer": "silver bodysuit",
"outer_layer": "white and silver jacket",
"lower_body": "silver leggings",
"footwear": "silver high-heeled boots",
"gloves": "",
"accessories": "crystal shoulder pods"
"default": {
"full_body": "silver bodysuit",
"headwear": "",
"top": "white and silver jacket",
"bottom": "",
"legwear": "silver leggings",
"footwear": "silver high-heeled boots",
"hands": "",
"accessories": "crystal shoulder pods"
}
},
"styles": {
"aesthetic": "pop star, futuristic, k/da style",
@@ -34,6 +42,9 @@
"lora_triggers": ""
},
"tags": [
"League of Legends", "K/DA", "KDA", "K-Pop"
"League of Legends",
"K/DA",
"KDA",
"K-Pop"
]
}

View File

@@ -5,25 +5,33 @@
"base_specs": "1girl, slender build, pale skin, asian",
"hair": "long dark purple hair, hime cut,",
"eyes": "dark purple eyes,",
"expression": "neutral expression, stoic, cat ears",
"hands": "",
"arms": "",
"torso": "medium breasts",
"pelvis": "",
"legs": "black pantyhose",
"feet": "",
"distinguishing_marks": ""
"extra": ""
},
"defaults": {
"expression": "shy,",
"pose": "holding notebook",
"scene": "classroom"
},
"wardrobe": {
"inner_layer": "white shirt",
"outer_layer": "itan private high school uniform, blazer, striped bow tie",
"lower_body": "plaid skirt",
"footwear": "loafers",
"gloves": "",
"accessories": ""
"default": {
"full_body": "itan private high school uniform",
"headwear": "",
"top": "blazer, striped bow tie, white shirt",
"bottom": "plaid skirt",
"legwear": "black pantyhose",
"footwear": "loafers",
"hands": "",
"accessories": ""
}
},
"styles": {
"aesthetic": "anime, manga, clean lines",
"aesthetic": "blackboard,anime, manga, clean lines",
"primary_color": "purple",
"secondary_color": "magenta",
"tertiary_color": "white"

View File

@@ -5,25 +5,33 @@
"base_specs": "1girl, athletic build,",
"hair": "long brown hair, single braid",
"eyes": "brown eyes",
"expression": "light smile, raised eyebrow",
"hands": "",
"arms": "",
"torso": "large breasts",
"pelvis": "",
"legs": "",
"feet": "",
"distinguishing_marks": ""
"extra": ""
},
"defaults": {
"expression": "",
"pose": "",
"scene": ""
},
"wardrobe": {
"inner_layer": "",
"outer_layer": "teal tank top,",
"lower_body": "brown shorts",
"footwear": "brown combat boots, red laces",
"gloves": "black fingerless gloves",
"accessories": "dual thigh pistol holsters, brown leatherbackpack, red circular sunglasses"
"default": {
"full_body": "",
"headwear": "",
"top": "teal tank top,",
"bottom": "brown shorts",
"legwear": "thigh holsters",
"footwear": "brown combat boots, red laces",
"hands": "black fingerless gloves",
"accessories": "dual thigh pistol holsters, brown leatherbackpack, red round sunglasses"
}
},
"styles": {
"aesthetic": "adventure, retro, 90s style",
"aesthetic": "adventurer, ruins, retro, 90s style",
"primary_color": "teal",
"secondary_color": "brown",
"tertiary_color": "black"

View File

@@ -5,25 +5,33 @@
"base_specs": "1girl, tall, mature female",
"hair": "brown hair, wavy hair, side ponytail",
"eyes": "green eyes",
"expression": "seductive smile",
"hands": "",
"arms": "detached sleeves",
"torso": "large breasts",
"pelvis": "wide hips",
"legs": "black pantyhose",
"feet": "",
"distinguishing_marks": "beauty mark"
"extra": "beauty mark"
},
"defaults": {
"expression": "",
"pose": "",
"scene": ""
},
"wardrobe": {
"inner_layer": "purple dress, corset",
"outer_layer": "purple shawl",
"lower_body": "slit skirt",
"footwear": "black heels",
"gloves": "purple gloves",
"accessories": "witch hat, rose, necklace"
"default": {
"full_body": "",
"headwear": "purple dress, corset",
"top": "purple shawl",
"bottom": "slit skirt",
"legwear": "",
"footwear": "black heels",
"hands": "purple gloves",
"accessories": "witch hat, rose, necklace"
}
},
"styles": {
"aesthetic": "genshin impact, witch, librarian",
"aesthetic": "library, genshin impact, witch",
"primary_color": "purple",
"secondary_color": "white",
"tertiary_color": "gold"

View File

@@ -5,32 +5,40 @@
"base_specs": "1girl, curvaceous build, fair skin",
"hair": "long black hair, complex braids, hairpins",
"eyes": "red eyes",
"expression": "thinking, raised eyebrow",
"hands": "black nails",
"arms": "",
"torso": "large breasts",
"pelvis": "",
"legs": "",
"feet": "",
"distinguishing_marks": "dark purple lipstick"
"extra": "dark purple lipstick"
},
"defaults": {
"expression": "",
"pose": "",
"scene": ""
},
"wardrobe": {
"inner_layer": "black corset",
"outer_layer": "black fur-trimmed dress, many belts on front",
"lower_body": "long skirt made of belts",
"footwear": "black boots",
"gloves": "",
"accessories": "moogle doll, silver jewelry"
"default": {
"full_body": "",
"headwear": "",
"top": "black fur-trimmed dress, many belts on front, black corset",
"bottom": "long skirt made of belts",
"legwear": "",
"footwear": "black boots",
"hands": "",
"accessories": "moogle doll, silver jewelry"
}
},
"styles": {
"aesthetic": "gothic, ornate, final fantasy x style",
"aesthetic": "exotic flowers, gothic, ornate, final fantasy x style",
"primary_color": "black",
"secondary_color": "white",
"tertiary_color": "purple"
},
"lora": {
"lora_name": "Illustrious/Looks/Lulu DG illuLoRA_1337272.safetensors",
"lora_weight": 1.0,
"lora_weight": 0.9,
"lora_triggers": ""
},
"tags": [

View File

@@ -0,0 +1,47 @@
{
"character_id": "majin_android_21",
"character_name": "Majin Android 21",
"identity": {
"base_specs": "1girl, curvaceous build, pink skin",
"hair": "long voluminous white hair",
"eyes": "red eyes, black sclera",
"hands": "black claws, pink nails",
"arms": "",
"torso": "large breasts",
"pelvis": "",
"legs": "",
"feet": "",
"extra": "pink skin, long tail, pointy ears"
},
"defaults": {
"expression": "",
"pose": "",
"scene": ""
},
"wardrobe": {
"default": {
"full_body": "",
"headwear": "",
"top": "black tube top",
"bottom": "white harem pants",
"legwear": "baggy pants",
"footwear": "black and yellow boots",
"hands": "black sleeves",
"accessories": "gold bracelets, gold neck ring, hoop earrings,pink donut"
}
},
"styles": {
"aesthetic": "wasteland,pink ,anime, dragon ball style",
"primary_color": "pink",
"secondary_color": "white",
"tertiary_color": "gold"
},
"lora": {
"lora_name": "Illustrious/Looks/Android_21v2.1.safetensors",
"lora_weight": 0.8,
"lora_triggers": ""
},
"tags": [
"Dragon Ball FighterZ"
]
}

View File

@@ -0,0 +1,57 @@
{
"character_id": "marin_kitagawa",
"character_name": "Marin Kitagawa",
"identity": {
"base_specs": "1girl, slender build, fair skin, asian",
"hair": "long blonde hair, pink tips",
"eyes": "pink eyes (contacts)",
"hands": "long pink nails",
"arms": "",
"torso": "medium breasts",
"pelvis": "",
"legs": "",
"feet": "",
"extra": "piercings"
},
"defaults": {
"expression": "happy",
"pose": "v",
"scene": "sewing room"
},
"wardrobe": {
"default": {
"full_body": "",
"headwear": "",
"top": "white school shirt, loosely tied blue tie",
"bottom": "",
"legwear": "blue plaid miniskirt",
"footwear": "black loafers, black socks",
"hands": "",
"accessories": "choker, colored bracelets"
},
"bikini": {
"full_body": "",
"headwear": "",
"top": "black bikini with yellow flower print",
"bottom": "",
"legwear": "",
"footwear": "barefoot",
"hands": "",
"accessories": "choker, colored bracelets"
}
},
"styles": {
"aesthetic": "gyaru, modern, anime style,",
"primary_color": "white",
"secondary_color": "blue",
"tertiary_color": "pink"
},
"lora": {
"lora_name": "",
"lora_weight": 1.0,
"lora_triggers": ""
},
"tags": [
"My Dress-Up Darling"
]
}

View File

@@ -5,25 +5,33 @@
"base_specs": "1girl, tall, mature female",
"hair": "pink hair, long hair",
"eyes": "blue eyes",
"expression": "light smile",
"hands": "",
"arms": "",
"torso": "medium breasts",
"pelvis": "",
"legs": "",
"feet": "",
"distinguishing_marks": ""
"extra": ""
},
"defaults": {
"expression": "",
"pose": "",
"scene": ""
},
"wardrobe": {
"inner_layer": "",
"outer_layer": "crop top, detached sleeves, gold trim",
"lower_body": "side slit, lace-up skirt",
"footwear": "thinghighs, lace-up boots, gold boots, gold armlet",
"gloves": "",
"accessories": "headset"
"default": {
"full_body": "",
"headwear": "",
"top": "crop top, detached sleeves, gold trim",
"bottom": "lace-up skirt",
"legwear": "side slit",
"footwear": "thinghighs, lace-up boots, gold boots, gold armlet",
"hands": "",
"accessories": "headset"
}
},
"styles": {
"aesthetic": "vocaloid, elegant",
"aesthetic": "concert, stage,vocaloid, elegant",
"primary_color": "black",
"secondary_color": "gold",
"tertiary_color": "pink"

View File

@@ -5,25 +5,33 @@
"base_specs": "1girl, mature female",
"hair": "brown hair, short hair",
"eyes": "brown eyes",
"expression": "smile, confident",
"hands": "",
"arms": "",
"torso": "medium breasts",
"pelvis": "",
"legs": "",
"feet": "",
"distinguishing_marks": ""
"extra": ""
},
"defaults": {
"expression": "",
"pose": "",
"scene": ""
},
"wardrobe": {
"inner_layer": "red crop top, sleeveless",
"outer_layer": "",
"lower_body": "red skirt, mini skirt",
"footwear": "brown boots",
"gloves": "",
"accessories": "choker"
"default": {
"full_body": "",
"headwear": "red crop top, sleeveless",
"top": "",
"bottom": "red skirt, mini skirt",
"legwear": "",
"footwear": "brown boots",
"hands": "",
"accessories": "choker"
}
},
"styles": {
"aesthetic": "vocaloid, casual",
"aesthetic": "concert, stage, vocaloid, casual",
"primary_color": "red",
"secondary_color": "brown",
"tertiary_color": "black"

View File

@@ -0,0 +1,47 @@
{
"character_id": "nessa",
"character_name": "Nessa",
"identity": {
"base_specs": "1girl, athletic build, dark skin",
"hair": "long hair, light blue highlights",
"eyes": "blue eyes",
"hands": "blue nails",
"arms": "",
"torso": "small breasts",
"pelvis": "",
"legs": "",
"feet": "",
"extra": ""
},
"defaults": {
"expression": "",
"pose": "",
"scene": ""
},
"wardrobe": {
"default": {
"full_body": "blue trim",
"headwear": "",
"top": "white crop top, gym uniform, number '049'",
"bottom": "midriff,white and blue shorts, black trim",
"legwear": "",
"footwear": "white and blue sandals, orange trim",
"hands": "fingerless gloves",
"accessories": "wristband, small life buoy, pokeball, gold hoop earrings"
}
},
"styles": {
"aesthetic": "arena,water,aquatic, pokemon style",
"primary_color": "blue",
"secondary_color": "white",
"tertiary_color": "orange"
},
"lora": {
"lora_name": "Illustrious/Looks/NessaBeaIXL_v2.safetensors",
"lora_weight": 0.8,
"lora_triggers": ""
},
"tags": [
"Pokemon"
]
}

View File

@@ -5,22 +5,30 @@
"base_specs": "1girl, tall, mature female",
"hair": "blonde hair, long hair, hair over one eye",
"eyes": "blue eyes, sharp eyes",
"expression": "serious",
"hands": "",
"arms": "",
"torso": "medium breasts",
"pelvis": "",
"legs": "",
"feet": "",
"distinguishing_marks": "thick lips"
"extra": "thick lips"
},
"defaults": {
"expression": "",
"pose": "",
"scene": ""
},
"wardrobe": {
"inner_layer": "black shirt",
"outer_layer": "blue military coat, fur collar",
"lower_body": "black pants",
"footwear": "black boots",
"gloves": "black gloves",
"accessories": "sword"
"default": {
"full_body": "",
"headwear": "",
"top": "blue military coat, fur collar, black shirt",
"bottom": "black pants",
"legwear": "",
"footwear": "black boots",
"hands": "black gloves",
"accessories": "sword"
}
},
"styles": {
"aesthetic": "military, amestris uniform",

View File

@@ -5,22 +5,30 @@
"base_specs": "1girl, slender build, fair skin",
"hair": "long blonde hair, voluminous, crown",
"eyes": "blue eyes, long eyelashes",
"expression": "gentle smile",
"hands": "",
"arms": "",
"torso": "medium breasts",
"pelvis": "",
"legs": "",
"feet": "",
"distinguishing_marks": "pink lips, blue earrings"
"extra": "pink lips, blue earrings"
},
"defaults": {
"expression": "smile",
"pose": "hands together",
"scene": "throne room"
},
"wardrobe": {
"inner_layer": "white petticoat",
"outer_layer": "pink floor-length ball gown, puffy sleeves, dark pink panniers",
"lower_body": "long skirt",
"footwear": "red high heels",
"gloves": "white opera gloves",
"accessories": "gold crown with red and blue jewels, blue brooch"
"default": {
"full_body": "pink ball gown",
"headwear": "gold crown",
"top": "white petticoat, puffy sleeves, dark pink panniers",
"bottom": "",
"legwear": "floor length skirt",
"footwear": "red high heels",
"hands": "white opera gloves",
"accessories": "gold crown with red and blue jewels, blue brooch"
}
},
"styles": {
"aesthetic": "royal, whimsical, nintendo style",

View File

@@ -5,22 +5,30 @@
"base_specs": "1girl, slender build, fair skin, pointed ears",
"hair": "long blonde hair, braided, gold hair clips",
"eyes": "green eyes",
"expression": "curious",
"hands": "gold nails",
"arms": "",
"torso": "small breasts",
"pelvis": "",
"legs": "",
"feet": "",
"distinguishing_marks": "tri-force symbol, elf ears"
"extra": "tri-force symbol, elf ears"
},
"defaults": {
"expression": "",
"pose": "",
"scene": ""
},
"wardrobe": {
"inner_layer": "blue tunic",
"outer_layer": "blue champion's tunic, brown leather belts",
"lower_body": "tan trousers",
"footwear": "brown leather boots",
"gloves": "brown fingerless gloves",
"accessories": "sheikah slate, gold jewelry"
"default": {
"full_body": "",
"headwear": "",
"top": "blue champion's tunic, ",
"bottom": "brown leather belts, tan trousers",
"legwear": "",
"footwear": "brown leather boots",
"hands": "brown fingerless gloves",
"accessories": "sheikah slate, gold jewelry"
}
},
"styles": {
"aesthetic": "fantasy, adventurous, zelda style",
@@ -29,8 +37,8 @@
"tertiary_color": "brown"
},
"lora": {
"lora_name": "",
"lora_weight": 1.0,
"lora_name": "Illustrious/Looks/Zelda.safetensors",
"lora_weight": 0.8,
"lora_triggers": ""
},
"tags": [

View File

@@ -5,25 +5,33 @@
"base_specs": "1girl, petite, horse ears, horse tail",
"hair": "long dark brown hair, bangs, hair over one eye",
"eyes": "purple eyes",
"expression": "shy expression",
"hands": "",
"arms": "",
"torso": "small breasts",
"pelvis": "",
"legs": "",
"feet": "",
"distinguishing_marks": ""
"extra": ""
},
"defaults": {
"expression": "",
"pose": "",
"scene": ""
},
"wardrobe": {
"inner_layer": "white shirt",
"outer_layer": "tracen school uniform",
"lower_body": "pleated skirt",
"footwear": "heeled shoes",
"gloves": "",
"accessories": "blue rose, hair flower, small hat, dagger"
"default": {
"full_body": "tracen school uniform",
"headwear": "hair flower, small hat",
"top": "white shirt",
"bottom": "pleated skirt",
"legwear": "",
"footwear": "heeled shoes",
"hands": "",
"accessories": "blue rose"
}
},
"styles": {
"aesthetic": "gothic lolita, elegant",
"aesthetic": "outdoors,umbrella,rain,gothic lolita, elegant",
"primary_color": "purple",
"secondary_color": "blue",
"tertiary_color": "black"

View File

@@ -5,31 +5,39 @@
"base_specs": "1girl, young, dark skin, gerudo",
"hair": "short red hair, braided ponytail, gold hair ornament",
"eyes": "green eyes",
"expression": "serious",
"hands": "",
"arms": "",
"torso": "small breasts",
"pelvis": "",
"legs": "",
"feet": "",
"distinguishing_marks": "darkblue lipstick,"
"extra": "dark blue lipstick,"
},
"defaults": {
"expression": "",
"pose": "",
"scene": ""
},
"wardrobe": {
"inner_layer": "",
"outer_layer": "black top, blue sash",
"lower_body": "black skirt, pelvic curtain,",
"footwear": "gold high heels",
"gloves": "",
"accessories": "gold jewelry, earrings"
"default": {
"full_body": "",
"headwear": "",
"top": "black top, gold trim",
"bottom": "black sarong, pelvic curtain",
"legwear": "",
"footwear": "black high heels, gold trim",
"hands": "",
"accessories": "gold jewelry, earrings,"
}
},
"styles": {
"aesthetic": "fantasy, desert, gerudo style",
"aesthetic": "lightning,fantasy, desert, gerudo, zelda style",
"primary_color": "gold",
"secondary_color": "black",
"tertiary_color": "red"
},
"lora": {
"lora_name": "",
"lora_name": "Illustrious/Looks/RijuTotK_IXL_v3.safetensors",
"lora_weight": 0.8,
"lora_triggers": ""
},

View File

@@ -5,25 +5,33 @@
"base_specs": "1girl, tall, slender build, fair skin",
"hair": "long platinum blonde hair, side-swept bangs covering one eye",
"eyes": "light blue eyes",
"expression": "serene expression",
"hands": "turquoise nails",
"arms": "",
"torso": "medium breasts",
"pelvis": "",
"legs": "",
"feet": "",
"distinguishing_marks": "star-shaped earrings"
"extra": "star-shaped earrings"
},
"defaults": {
"expression": "",
"pose": "",
"scene": ""
},
"wardrobe": {
"inner_layer": "",
"outer_layer": "turquoise off-the-shoulder gown, silver trim",
"lower_body": "long skirt",
"footwear": "silver high heels",
"gloves": "",
"accessories": "silver crown with blue jewels, star wand, luma"
"default": {
"full_body": "turquoise gown, silver trim",
"headwear": "silver crown",
"top": "bare shoulders",
"bottom": "",
"legwear": "long skirt",
"footwear": "silver high heels",
"hands": "",
"accessories": "silver crown with blue jewels, star wand, luma"
}
},
"styles": {
"aesthetic": "celestial, elegant, nintendo style",
"aesthetic": "celestial, elegant, mario style, stars, night,",
"primary_color": "turquoise",
"secondary_color": "silver",
"tertiary_color": "yellow"

View File

@@ -4,26 +4,34 @@
"identity": {
"base_specs": "1girl, anthro, bat girl, white fur",
"hair": "short white hair",
"eyes": "teal eyes",
"expression": "sly smirk",
"eyes": "teal eyes, blue eyeshadow",
"hands": "white gloves",
"arms": "",
"torso": "large breasts",
"pelvis": "",
"legs": "",
"feet": "",
"distinguishing_marks": "bat wings, eyeshadow"
"extra": "bat wings, eyeshadow"
},
"defaults": {
"expression": "",
"pose": "",
"scene": ""
},
"wardrobe": {
"inner_layer": "",
"outer_layer": "black skin-tight jumpsuit, pink heart-shaped chest plate, bare shoulders, cleavage",
"lower_body": "jumpsuit",
"footwear": "white boots, pink heart motifs",
"gloves": "white gloves, pink cuffs",
"accessories": "blue eyeshadow"
"default": {
"full_body": "black skin-tight jumpsuit",
"headwear": "",
"top": "pink heart-shaped chest plate, bare shoulders, cleavage",
"bottom": "",
"legwear": "",
"footwear": "white boots, pink heart motifs",
"hands": "white gloves, pink cuffs",
"accessories": ""
}
},
"styles": {
"aesthetic": "jewels, museum,sleek, spy, sonic style",
"aesthetic": "gems,jewels, sleek, spy, sonic style",
"primary_color": "white",
"secondary_color": "pink",
"tertiary_color": "black"

View File

@@ -5,22 +5,30 @@
"base_specs": "1girl, slim build,",
"hair": "long teal hair, spiky, voluminous",
"eyes": "golden eyes, cat-like pupils",
"expression": "confident smirk",
"hands": "",
"arms": "",
"torso": "medium breasts",
"pelvis": "",
"legs": "",
"feet": "",
"distinguishing_marks": "red gem on forehead,"
"extra": "red gem on forehead,"
},
"defaults": {
"expression": "",
"pose": "",
"scene": ""
},
"wardrobe": {
"inner_layer": "long white dress, plunging neckline, black belt",
"outer_layer": "black and orange long sleeve jacket with purple trim,",
"lower_body": "side_slit,, red trousers",
"footwear": "",
"gloves": "red gloves",
"accessories": "red gems, wristbands"
"default": {
"full_body": "long white dress",
"headwear": "",
"top": "black and orange long sleeve jacket with purple trim, plunging neckline",
"bottom": "black belt, red trousers",
"legwear": "side slit",
"footwear": "",
"hands": "red gloves, red gem on back of hand",
"accessories": "wristbands"
}
},
"styles": {
"aesthetic": "90s anime, sci-fi",
@@ -34,6 +42,7 @@
"lora_triggers": "ryouko hakubi, space pirate"
},
"tags": [
"Tenchi Muyou!", "Tenchi Muyo!"
"Tenchi Muyou!",
"Tenchi Muyo!"
]
}

View File

@@ -0,0 +1,51 @@
{
"character_id": "sam_totally_spies",
"character_name": "Sam",
"identity": {
"base_specs": "1girl, slim body, fair skin",
"hair": "long hair, orange hair, wavy hair, loose hair",
"eyes": "green eyes",
"hands": "green nails",
"arms": "",
"torso": "small breasts",
"pelvis": "narrow hips",
"legs": "",
"feet": "",
"extra": ""
},
"defaults": {
"expression": "",
"pose": "",
"scene": ""
},
"wardrobe": {
"default": {
"full_body": "green bodysuit, catsuit, skin tight",
"headwear": "",
"top": "",
"bottom": "",
"legwear": "",
"footwear": "heels ",
"hands": "green bodysuit",
"accessories": "silver belt, heart buckle"
}
},
"styles": {
"aesthetic": "western cartoon, 2000s style, cel shaded, girly, hearts, pastel",
"primary_color": "green",
"secondary_color": "orange",
"tertiary_color": "silver"
},
"lora": {
"lora_name": "",
"lora_weight": 0.8,
"lora_triggers": "sam (totally spies!), green bodysuit, orange hair"
},
"tags": [
"sam (totally spies!)",
"totally spies!",
"solo",
"western cartoon",
"spy"
]
}

View File

@@ -5,22 +5,30 @@
"base_specs": "1girl, athletic build, fair skin",
"hair": "long blonde hair, ponytail",
"eyes": "blue eyes",
"expression": "serious expression",
"hands": "blue nails",
"arms": "",
"torso": "medium breasts",
"pelvis": "",
"legs": "",
"feet": "",
"distinguishing_marks": "beauty mark on chin"
"extra": "beauty mark on chin"
},
"defaults": {
"expression": "",
"pose": "",
"scene": ""
},
"wardrobe": {
"inner_layer": "",
"outer_layer": "blue skin-tight bodysuit, pink symbols",
"lower_body": "bodysuit",
"footwear": "blue high-heeled boots",
"gloves": "zero suit",
"accessories": "paralyzer pistol"
"default": {
"full_body": "blue skin-tight bodysuit, zero suit, pink lines",
"headwear": "",
"top": "",
"bottom": "",
"legwear": "",
"footwear": "metal high-heeled boots, yellow glow",
"hands": "zero suit",
"accessories": "paralyzer pistol"
}
},
"styles": {
"aesthetic": "sci-fi, sleek, metroid style",

View File

@@ -5,32 +5,40 @@
"base_specs": "1girl, loli, small build",
"hair": "blonde hair, short hair",
"eyes": "blue eyes",
"expression": "smile",
"hands": "",
"arms": "",
"torso": "flat chest",
"pelvis": "",
"legs": "",
"feet": "",
"distinguishing_marks": ""
"extra": ""
},
"defaults": {
"expression": "smile",
"pose": "leaning back",
"scene": "living room, couch, low lighting"
},
"wardrobe": {
"inner_layer": "grey t-shirt, white shirt",
"outer_layer": "",
"lower_body": "blue jeans",
"footwear": "sneakers",
"gloves": "",
"accessories": "wristwatch"
"default": {
"full_body": "",
"headwear": "grey t-shirt,",
"top": "",
"bottom": "",
"legwear": "pajama pants",
"footwear": "barefoot",
"hands": "",
"accessories": "wristwatch"
}
},
"styles": {
"aesthetic": "casual, 2013 fashion",
"aesthetic": "casual, 2013 fashion,",
"primary_color": "grey",
"secondary_color": "blue",
"tertiary_color": "white"
},
"lora": {
"lora_name": "",
"lora_weight": 1.0,
"lora_name": "Illustrious/Looks/SarahMillerOGILf_1328931.safetensors",
"lora_weight": 0.6,
"lora_triggers": ""
},
"tags": [

View File

@@ -0,0 +1,53 @@
{
"character_id": "scarlet_ff7",
"character_name": "Scarlet",
"identity": {
"base_specs": "1girl, mature female, voluptuous, ",
"hair": "blonde hair, wavy hair, short hair, swept back",
"eyes": "blue eyes, narrow eyes, eyeshadow",
"hands": "manicured nails, red nails",
"arms": "",
"torso": "large breasts, cleavage",
"pelvis": "curvy, wide hips",
"legs": "",
"feet": "",
"extra": "red lipstick, heavy makeup"
},
"defaults": {
"expression": "smirk",
"pose": "stepping on viewer, from below",
"scene": "penthouse office, night"
},
"wardrobe": {
"default": {
"full_body": "red dress, formal dress, pencil dress",
"headwear": "",
"top": "sleeveless, chest cutout",
"bottom": "high slit",
"legwear": "side slit, black stockings",
"footwear": "high heels, red heels, stiletto heels",
"hands": "",
"accessories": "jewelry, gold earrings, necklace"
}
},
"styles": {
"aesthetic": "corporate, sci-fi, low lighting",
"primary_color": "red",
"secondary_color": "gold",
"tertiary_color": "black"
},
"lora": {
"lora_name": "Illustrious/Looks/ffscarlet-illu-nvwls-v2.safetensors",
"lora_weight": 0.8,
"lora_triggers": ""
},
"tags": [
"final fantasy vii",
"shinra",
"antagonist",
"milf",
"red dress",
"blonde hair",
"smirk"
]
}

View File

@@ -5,22 +5,30 @@
"base_specs": "1girl, dark skin, pointy ears",
"hair": "purple hair, very long hair, ponytail",
"eyes": "blue eyes",
"expression": "smile, energetic",
"hands": "",
"arms": "gold bracelets",
"torso": "small breasts, perky breasts",
"pelvis": "wide hips",
"legs": "",
"feet": "",
"distinguishing_marks": ""
"extra": ""
},
"defaults": {
"expression": "smile",
"pose": "belly dancing, hands above head",
"scene": "desert town, oasis"
},
"wardrobe": {
"inner_layer": "",
"outer_layer": "red bikini top, red harem pants, gold trim",
"lower_body": "",
"footwear": "gold shoes",
"gloves": "",
"accessories": "gold tiara, hoop earrings"
"default": {
"full_body": "gold trim",
"headwear": "",
"top": "red bikini top",
"bottom": "red harem pants",
"legwear": "",
"footwear": "gold shoes",
"hands": "",
"accessories": "gold tiara, hoop earrings"
}
},
"styles": {
"aesthetic": "genie, dancer, arabian",

View File

@@ -0,0 +1,48 @@
{
"character_id": "sorceress_dragons_crown",
"character_name": "Sorceress",
"identity": {
"base_specs": "1girl, mature female,",
"hair": "long hair, red hair, wavy hair",
"eyes": "green eyes, ",
"hands": "painted nails",
"arms": "bare shoulders, sleeveless",
"torso": "huge breasts, cleavage, ",
"pelvis": "wide hips, ",
"legs": "thick thighs, ",
"feet": "",
"extra": ""
},
"defaults": {
"expression": "",
"pose": "",
"scene": ""
},
"wardrobe": {
"default": {
"full_body": "",
"headwear": "witch hat",
"top": "black corset, white top, clothing cutout, low cut",
"bottom": "skirt, high slit, black skirt",
"legwear": "side slit",
"footwear": "boots",
"hands": "",
"accessories": "staff, necklace, bracelets, jewelry, wooden staff"
}
},
"styles": {
"aesthetic": "fantasy, vanillaware, oil painting (style), exaggerated proportions",
"primary_color": "black",
"secondary_color": "purple",
"tertiary_color": "gold"
},
"lora": {
"lora_name": "Illustrious/Looks/Sorceress iIlluLoRA DG.safetensors",
"lora_weight": 0.8,
"lora_triggers": ""
},
"tags": [
"dragon's crown",
"witch"
]
}

View File

@@ -5,25 +5,33 @@
"base_specs": "1girl, lanky build, pale skin",
"hair": "light purple hair, hair covering one eye",
"eyes": "red eyes",
"expression": "deadpan expression",
"hands": "black nails",
"arms": "",
"torso": "small breasts",
"pelvis": "narrow waist",
"legs": "",
"feet": "",
"distinguishing_marks": "dark circles under eyes"
"extra": "dark circles under eyes"
},
"defaults": {
"expression": "neutral expression",
"pose": "looking at mushroom",
"scene": "dark forest"
},
"wardrobe": {
"inner_layer": "",
"outer_layer": "dark purple witch robes",
"lower_body": "long skirt with frayed edges",
"footwear": "brown boots",
"gloves": "",
"accessories": "pointed witch hat, potion bottle"
"default": {
"full_body": "luna nova school uniform, dark purple witch robes",
"headwear": "pointed witch hat",
"top": "oversized sleeves",
"bottom": "",
"legwear": "long skirt with frayed edges",
"footwear": "brown boots",
"hands": "",
"accessories": "potion bottle, mushroom"
}
},
"styles": {
"aesthetic": "gothic, whimsical, little witch academia style",
"aesthetic": "gothic, magic, little witch academia style",
"primary_color": "purple",
"secondary_color": "mauve",
"tertiary_color": "green"

View File

@@ -5,25 +5,33 @@
"base_specs": "1girl, athletic build, fair skin",
"hair": "long black hair, tied end",
"eyes": "red eyes",
"expression": "kind smile",
"hands": "dark red nails",
"arms": "",
"torso": "large breasts",
"pelvis": "",
"legs": "",
"feet": "",
"distinguishing_marks": ""
"extra": ""
},
"defaults": {
"expression": "smile",
"pose": "leaning on counter, looking at viewer",
"scene": "tavern, bartending"
},
"wardrobe": {
"inner_layer": "black sports bra",
"outer_layer": "white tank top, black suspenders",
"lower_body": "black miniskirt",
"footwear": "red boots, black socks",
"gloves": "red fingerless gloves",
"accessories": "silver earrings"
"default": {
"full_body": "",
"headwear": "",
"top": "white tank top, black sports bra,black suspenders",
"bottom": "black miniskirt",
"legwear": "thigh high black socks",
"footwear": "red boots",
"hands": "red fingerless gloves",
"accessories": "silver earrings"
}
},
"styles": {
"aesthetic": "urban, martial arts, final fantasy style",
"aesthetic": "martial arts, final fantasy style",
"primary_color": "white",
"secondary_color": "black",
"tertiary_color": "red"

View File

@@ -5,22 +5,30 @@
"base_specs": "1girl, slender build, fair skin",
"hair": "short spiky brown hair",
"eyes": "brown eyes",
"expression": "energetic smile",
"hands": "",
"arms": "",
"torso": "small breasts",
"pelvis": "",
"legs": "",
"feet": "",
"distinguishing_marks": "freckles"
"extra": "freckles"
},
"defaults": {
"expression": "smile",
"pose": "dashing, blue afterimage",
"scene": "futuristic city"
},
"wardrobe": {
"inner_layer": "orange leggings",
"outer_layer": "brown flight jacket, yellow vest",
"lower_body": "orange leggings",
"footwear": "white and orange sneakers",
"gloves": "",
"accessories": "chronal accelerator, yellow goggles"
"default": {
"full_body": "",
"headwear": "",
"top": "brown flight jacket, yellow vest",
"bottom": "orange leggings",
"legwear": "",
"footwear": "white and orange sneakers",
"hands": "fingerless gloves",
"accessories": "chronal accelerator, yellow goggles"
}
},
"styles": {
"aesthetic": "sci-fi, pilot, overwatch style",

View File

@@ -0,0 +1,47 @@
{
"character_id": "urbosa",
"character_name": "Urbosa",
"identity": {
"base_specs": "1girl, tall, muscular, dark skin, gerudo",
"hair": "long red hair, wild hair",
"eyes": "green eyes",
"hands": "gold nails",
"arms": "muscular arms",
"torso": "abs, medium breasts",
"pelvis": "wide hips",
"legs": "muscular legs",
"feet": "",
"extra": "dark blue lipstick, gerudo markings"
},
"defaults": {
"expression": "",
"pose": "",
"scene": ""
},
"wardrobe": {
"default": {
"full_body": "",
"headwear": "",
"top": "blue top, green sash, green shoulder guards,",
"bottom": "",
"legwear": "blue sarong",
"footwear": "anklet, gold heels",
"hands": "",
"accessories": "gold jewelry, scimitar"
}
},
"styles": {
"aesthetic": "oasis,desert ruins,fantasy, warrior, gerudo style",
"primary_color": "gold",
"secondary_color": "blue",
"tertiary_color": "red"
},
"lora": {
"lora_name": "Illustrious/Looks/Urbosa_-_The_Legend_of_Zelda_Illustrious.safetensors",
"lora_weight": 0.8,
"lora_triggers": ""
},
"tags": [
"The Legend of Zelda"
]
}

View File

@@ -5,22 +5,30 @@
"base_specs": "1girl, slender build, blue skin",
"hair": "long purple hair, ponytail",
"eyes": "yellow eyes",
"expression": "cold expression",
"hands": "",
"arms": "spider tattoo on arm",
"torso": "large breasts",
"pelvis": "",
"legs": "",
"feet": "",
"distinguishing_marks": "blue skin"
"extra": ""
},
"defaults": {
"expression": "light smile",
"pose": "sniping, prone",
"scene": "rooftop, night"
},
"wardrobe": {
"inner_layer": "",
"outer_layer": "purple tactical bodysuit, plunging neckline",
"lower_body": "bodysuit",
"footwear": "purple high-heeled boots",
"gloves": "purple gauntlets",
"accessories": "sniper visor, grappling hook"
"default": {
"full_body": "purple bodysuit, skintight",
"headwear": "",
"top": " plunging neckline",
"bottom": "",
"legwear": "",
"footwear": "purple high-heeled boots",
"hands": "purple gauntlets",
"accessories": "sniper rifle, visor"
}
},
"styles": {
"aesthetic": "sci-fi, assassin, overwatch style",

View File

@@ -5,25 +5,33 @@
"base_specs": "1girl, slender build, fair skin",
"hair": "long black hair, styled with gold headband",
"eyes": "red eyes",
"expression": "gentle yet mysterious smile",
"hands": "black nails",
"arms": "",
"torso": "medium breasts",
"pelvis": "",
"legs": "",
"feet": "",
"distinguishing_marks": ""
"extra": ""
},
"defaults": {
"expression": "serious",
"pose": "leaping",
"scene": "rooftop, night, red sky, blood splatter"
},
"wardrobe": {
"inner_layer": "",
"outer_layer": "black backless halter dress, red rose pattern inside",
"lower_body": "black thigh-high boots",
"footwear": "black boots",
"gloves": "black fingerless gloves",
"accessories": "gold rose-themed headband, gold needle weapons"
"default": {
"full_body": "black halter dress",
"headwear": "",
"top": "backless, pattern inside",
"bottom": "",
"legwear": "black thigh-high boots",
"footwear": "black boots",
"hands": "black fingerless gloves",
"accessories": "gold rose-themed headband, gold needle weapons"
}
},
"styles": {
"aesthetic": "elegant, assassin, spy x family style",
"aesthetic": "elegant, assassin,red rose, spy x family style",
"primary_color": "black",
"secondary_color": "red",
"tertiary_color": "gold"

View File

@@ -5,25 +5,33 @@
"base_specs": "1girl, miqo'te, slender build, fair skin, cat ears",
"hair": "short white hair, bangs",
"eyes": "blind, white eyes",
"expression": "stoic expression",
"hands": "black nails",
"arms": "",
"torso": "small breasts",
"pelvis": "",
"legs": "",
"feet": "",
"distinguishing_marks": "facial markings, cat tail"
"extra": "facial markings, cat tail"
},
"defaults": {
"expression": "",
"pose": "",
"scene": ""
},
"wardrobe": {
"inner_layer": "",
"outer_layer": "black sorceress robes, fur trim",
"lower_body": "long skirt",
"footwear": "black boots",
"gloves": "",
"accessories": "wooden staff"
"default": {
"full_body": "black sorceress robes, ",
"headwear": "",
"top": "bare shoulders, fur trim",
"bottom": "",
"legwear": "",
"footwear": "black boots",
"hands": "",
"accessories": "wooden staff"
}
},
"styles": {
"aesthetic": "magical, scholarly, final fantasy xiv style",
"aesthetic": "library, magical, scholarly, final fantasy xiv style",
"primary_color": "black",
"secondary_color": "white",
"tertiary_color": "purple"
@@ -34,6 +42,7 @@
"lora_triggers": ""
},
"tags": [
"Final Fantasy XIV"
"Final Fantasy XIV",
"mi'qote"
]
}

View File

@@ -5,25 +5,33 @@
"base_specs": "1girl, slender build, fair skin",
"hair": "short black hair, bob cut",
"eyes": "brown eyes",
"expression": "playful grin",
"hands": "",
"arms": "black sleeve on one arm",
"torso": "small breasts",
"pelvis": "",
"legs": "",
"feet": "",
"distinguishing_marks": "headband"
"extra": "headband"
},
"defaults": {
"expression": "cheeky smile",
"pose": "holding glass orb, materia",
"scene": "forest, sunlight"
},
"wardrobe": {
"inner_layer": "",
"outer_layer": "green turtleneck sweater vest, midriff",
"lower_body": "beige shorts",
"footwear": "boots, socks",
"gloves": "fingerless glove on one hand, large gauntlet on one arm",
"accessories": "shuriken"
"default": {
"full_body": "",
"headwear": "",
"top": "green turtleneck sweater vest, midriff",
"bottom": "beige shorts",
"legwear": "single kneehigh sock",
"footwear": "boots, ",
"hands": "fingerless glove on one hand, large gauntlet on one arm",
"accessories": "shuriken"
}
},
"styles": {
"aesthetic": "ninja, adventurer, final fantasy style",
"aesthetic": "ninja, japanese, final fantasy style",
"primary_color": "green",
"secondary_color": "beige",
"tertiary_color": "black"

View File

@@ -5,25 +5,33 @@
"base_specs": "1girl, slender, fair skin",
"hair": "short brown hair, bob cut",
"eyes": "heterochromia, blue eye, green eye",
"expression": "gentle",
"hands": "",
"arms": "",
"torso": "small breasts",
"pelvis": "",
"legs": "",
"feet": "",
"distinguishing_marks": ""
"extra": ""
},
"defaults": {
"expression": "serene",
"pose": "dancing",
"scene": "standing on water, sunset, pink sky, "
},
"wardrobe": {
"inner_layer": "white kimono top, yellow obi",
"outer_layer": "",
"lower_body": "long blue skirt, floral pattern",
"footwear": "boots",
"gloves": "detached sleeves",
"accessories": "summoner staff, necklace"
"default": {
"full_body": "",
"headwear": "",
"top": "white kimono top, yellow obi, detached sleeves",
"bottom": "long blue skirt, floral pattern",
"legwear": "",
"footwear": "black boots",
"hands": "",
"accessories": "summoner staff, necklace"
}
},
"styles": {
"aesthetic": "fantasy, final fantasy x style",
"aesthetic": "shrine maiden,fantasy, final fantasy x style",
"primary_color": "white",
"secondary_color": "blue",
"tertiary_color": "yellow"

View File

@@ -0,0 +1,26 @@
{
"outfit_id": "bikini_01",
"outfit_name": "Bikini",
"wardrobe": {
"full_body": "",
"headwear": "",
"top": "bikini top",
"bottom": "bikini bottom",
"legwear": "",
"footwear": "barefoot",
"hands": "",
"accessories": ""
},
"lora": {
"lora_name": "",
"lora_weight": 0.8,
"lora_triggers": ""
},
"tags": [
"bikini",
"swimsuit",
"navel",
"cleavage",
"summer"
]
}

View File

@@ -0,0 +1,26 @@
{
"outfit_id": "bikini_02",
"outfit_name": "Bikini (Slingshot)",
"wardrobe": {
"full_body": "",
"headwear": "",
"top": "slingshot swimsuit",
"bottom": "",
"legwear": "",
"footwear": "",
"hands": "",
"accessories": ""
},
"lora": {
"lora_name": "",
"lora_weight": 0.8,
"lora_triggers": ""
},
"tags": [
"slingshot swimsuit",
"swimsuit",
"highleg",
"navel",
"revealing clothes"
]
}

View File

@@ -0,0 +1,27 @@
{
"outfit_id": "cat_cosplay",
"outfit_name": "Cat Cosplay",
"wardrobe": {
"full_body": "",
"headwear": "cat ears, nekomimi, hairband",
"top": "bikini top, string bikini",
"bottom": "bikini bottom, panties",
"legwear": "thighhighs",
"footwear": "high heels",
"hands": "paw gloves, animal hands",
"accessories": "collar, bell choker, cat tail"
},
"lora": {
"lora_name": "",
"lora_weight": 0.8,
"lora_triggers": ""
},
"tags": [
"cat girl",
"nekomimi",
"bikini",
"cosplay",
"animal ears",
"tail"
]
}

View File

@@ -0,0 +1,25 @@
{
"outfit_id": "evening_gown",
"outfit_name": "Evening Gown",
"wardrobe": {
"full_body": "",
"headwear": "",
"top": "evening gown",
"bottom": "",
"legwear": "",
"footwear": "high heels",
"hands": "",
"accessories": ""
},
"lora": {
"lora_name": "",
"lora_weight": 0.8,
"lora_triggers": ""
},
"tags": [
"formal",
"elegant",
"long dress",
"flowing"
]
}

View File

@@ -0,0 +1,22 @@
{
"outfit_id": "french_maid_01",
"outfit_name": "French Maid",
"wardrobe": {
"full_body": "",
"headwear": "hairband",
"top": "corset, low cut top",
"bottom": "frilled skirt",
"legwear": "lace stockings",
"footwear": "heels",
"hands": "frilled sleeves",
"accessories": "apron"
},
"lora": {
"lora_name": "Illustrious/Clothing/V2_Latex_Maid_Illustrious.safetensors",
"lora_weight": 0.8,
"lora_triggers": ""
},
"tags": [
"French Maid"
]
}

View File

@@ -0,0 +1,23 @@
{
"outfit_id": "french_maid_02",
"outfit_name": "French Maid (Latex)",
"wardrobe": {
"full_body": "",
"headwear": "hairband",
"top": "corset, low cut top",
"bottom": "frilled skirt",
"legwear": "lace stockings",
"footwear": "heels",
"hands": "frilled sleeves",
"accessories": "apron"
},
"lora": {
"lora_name": "Illustrious/Clothing/V2_Latex_Maid_Illustrious.safetensors",
"lora_weight": 0.8,
"lora_triggers": ""
},
"tags": [
"French Maid",
"latex"
]
}

View File

@@ -0,0 +1,26 @@
{
"outfit_id": "latex_outfit",
"outfit_name": "Latex Outfit",
"wardrobe": {
"full_body": "",
"headwear": "latex cat ears",
"top": "latex bodysuit, breast cutout, zipper, sleeveless, highleg",
"bottom": "",
"legwear": "latex thighhighs, garter belt",
"footwear": "thigh boots, high heels, latex boots",
"hands": "elbow gloves, latex gloves",
"accessories": "choker, collar"
},
"lora": {
"lora_name": "Illustrious/Clothing/latex_clothing.safetensors",
"lora_weight": 0.8,
"lora_triggers": ""
},
"tags": [
"black latex",
"shiny",
"fetish",
"tight clothing",
"erotic"
]
}

View File

@@ -0,0 +1,26 @@
{
"outfit_id": "lingerie",
"outfit_name": "Lingerie",
"wardrobe": {
"full_body": "",
"headwear": "",
"top": "lace bra",
"bottom": "lace panties",
"legwear": "lace stockings",
"footwear": "",
"hands": "",
"accessories": ""
},
"lora": {
"lora_name": "",
"lora_weight": 0.8,
"lora_triggers": ""
},
"tags": [
"lingerie",
"lace",
"lace trim",
"underwear",
"matching set"
]
}

View File

@@ -0,0 +1,26 @@
{
"outfit_id": "lingerie_02",
"outfit_name": "Lingerie (Latex)",
"wardrobe": {
"full_body": "",
"headwear": "",
"top": "latex bra, latex choker",
"bottom": "latex panties",
"legwear": "latex stockings",
"footwear": "",
"hands": "latex elbow gloves",
"accessories": ""
},
"lora": {
"lora_name": "",
"lora_weight": 0.8,
"lora_triggers": ""
},
"tags": [
"lingerie",
"lace",
"lace trim",
"underwear",
"matching set"
]
}

27
data/clothing/mother.json Normal file
View File

@@ -0,0 +1,27 @@
{
"outfit_id": "mother",
"outfit_name": "Mother",
"wardrobe": {
"full_body": "",
"headwear": "",
"top": "knit sweater, turtleneck, sweater, long sleeves",
"bottom": "long skirt, maxi skirt",
"legwear": "pantyhose",
"footwear": "flat shoes, slippers",
"hands": "wedding ring",
"accessories": "apron, necklace"
},
"lora": {
"lora_name": "",
"lora_weight": 0.8,
"lora_triggers": ""
},
"tags": [
"milf",
"mother",
"mature female",
"casual",
"domestic",
"knitwear"
]
}

View File

@@ -0,0 +1,22 @@
{
"outfit_id": "nurse_01",
"outfit_name": "Nurse",
"wardrobe": {
"full_body": "",
"headwear": "nurse cap",
"top": "nurse outfit",
"bottom": "short skirt",
"legwear": "stockings",
"footwear": "high heels",
"hands": "",
"accessories": ""
},
"lora": {
"lora_name": "",
"lora_weight": 0.8,
"lora_triggers": ""
},
"tags": [
"nurse"
]
}

View File

@@ -0,0 +1,23 @@
{
"outfit_id": "nurse_02",
"outfit_name": "Nurse (Latex)",
"wardrobe": {
"full_body": "",
"headwear": "nurse cap",
"top": "latex nurse outfit",
"bottom": "short skirt",
"legwear": "stockings",
"footwear": "high heels",
"hands": "",
"accessories": ""
},
"lora": {
"lora_name": "",
"lora_weight": 0.8,
"lora_triggers": ""
},
"tags": [
"nurse",
"latex"
]
}

View File

@@ -0,0 +1,20 @@
{
"outfit_id": "pasties_01",
"outfit_name": "Pasties",
"wardrobe": {
"full_body": "",
"headwear": "",
"top": "nipple pasties",
"bottom": "crotch pasties",
"legwear": "",
"footwear": "",
"hands": "",
"accessories": ""
},
"lora": {
"lora_name": "",
"lora_weight": 0.8,
"lora_triggers": ""
},
"tags": []
}

View File

@@ -0,0 +1,32 @@
{
"outfit_id": "playboy_bunny",
"outfit_name": "Playboy Bunny",
"wardrobe": {
"full_body": "playboy bunny, leotard, strapless leotard",
"headwear": "bunny ears, animal ears, headband",
"top": "",
"bottom": "",
"legwear": "pantyhose, fishnets, black pantyhose",
"footwear": "high heels",
"hands": "cuffs, wrist cuffs, white cuffs",
"accessories": "collar, bowtie, bunny tail"
},
"lora": {
"lora_name": "",
"lora_weight": 0.8,
"lora_triggers": ""
},
"tags": [
"playboy bunny",
"bunny ears",
"leotard",
"fishnets",
"collar",
"bowtie",
"cuffs",
"bunny tail",
"pantyhose",
"high heels",
"animal ears"
]
}

View File

@@ -0,0 +1,20 @@
{
"outfit_id": "school_uniform_01",
"outfit_name": "School Uniform (Western)",
"wardrobe": {
"full_body": "",
"headwear": "hairband",
"top": "white shirt, tie, blazer",
"bottom": "skirt",
"legwear": "thigh high socks",
"footwear": "black shoes",
"hands": "",
"accessories": ""
},
"lora": {
"lora_name": "",
"lora_weight": 0.8,
"lora_triggers": ""
},
"tags": []
}

View File

@@ -0,0 +1,23 @@
{
"outfit_id": "school_uniform_02",
"outfit_name": "School Uniform (Sailor)",
"wardrobe": {
"full_body": "",
"headwear": "hairband",
"top": "white shirt, sailor scarf",
"bottom": "pleated skirt",
"legwear": "knee high socks",
"footwear": "black shoes",
"hands": "",
"accessories": ""
},
"lora": {
"lora_name": "",
"lora_weight": 0.8,
"lora_triggers": ""
},
"tags": [
"school uniform",
"sailor"
]
}

View File

@@ -0,0 +1,27 @@
{
"outfit_id": "school_uniform_03",
"outfit_name": "School Uniform (Latex Sailor)",
"wardrobe": {
"full_body": "",
"headwear": "",
"top": "latex serafuku, sailor collar, cropped shirt, midriff, short sleeves",
"bottom": "pleated skirt, miniskirt, latex skirt",
"legwear": "latex thighhighs",
"footwear": "high heels",
"hands": "",
"accessories": "neckerchief"
},
"lora": {
"lora_name": "",
"lora_weight": 0.8,
"lora_triggers": ""
},
"tags": [
"latex",
"school uniform",
"serafuku",
"shiny",
"midriff",
"navel"
]
}

View File

@@ -0,0 +1,20 @@
{
"outfit_id": "school_uniform_04",
"outfit_name": "School Uniform (Erotic)",
"wardrobe": {
"full_body": "",
"headwear": "",
"top": "topless",
"bottom": "latex skirt, micro-skirt",
"legwear": "latex thigh highs",
"footwear": "high heels",
"hands": "latex elbow gloves",
"accessories": ""
},
"lora": {
"lora_name": "",
"lora_weight": 0.8,
"lora_triggers": ""
},
"tags": []
}

View File

@@ -0,0 +1,13 @@
{
"style_id": "1233916_shdmn_belle",
"style_name": "Shadman Belle",
"style": {
"artist_name": "shadman",
"artistic_style": ""
},
"lora": {
"lora_name": "Illustrious/Styles/1233916_shdmn-belle.safetensors",
"lora_weight": 1.0,
"lora_triggers": "1233916_shdmn-belle"
}
}

View File

@@ -0,0 +1,13 @@
{
"style_id": "3dstyle_v5_lyco_naieps075_came_cosine_1224b_0_06_6432conv3216_three_tags_final",
"style_name": "3D Style",
"style": {
"artist_name": "",
"artistic_style": ""
},
"lora": {
"lora_name": "Illustrious/Styles/3DStyle V5 Lyco NAIEps075 Came Cosine 1224b 0.06 6432conv3216 three tags final.safetensors",
"lora_weight": 1.0,
"lora_triggers": "3DStyle V5 Lyco NAIEps075 Came Cosine 1224b 0.06 6432conv3216 three tags final"
}
}

View File

@@ -0,0 +1,13 @@
{
"style_id": "3dvisualart1llust",
"style_name": "3D Visual Art",
"style": {
"artist_name": "",
"artistic_style": ""
},
"lora": {
"lora_name": "Illustrious/Styles/3DVisualArt1llust.safetensors",
"lora_weight": 1.0,
"lora_triggers": "3DVisualArt1llust"
}
}

View File

@@ -0,0 +1,13 @@
{
"style_id": "748cmsdxl",
"style_name": "748cm",
"style": {
"artist_name": "748cm",
"artistic_style": ""
},
"lora": {
"lora_name": "Illustrious/Styles/748cmSDXL.safetensors",
"lora_weight": 1.0,
"lora_triggers": "748cm"
}
}

View File

@@ -0,0 +1,13 @@
{
"style_id": "748cmxl_il_lokr_v6311p_1321893",
"style_name": "748cm",
"style": {
"artist_name": "748cm",
"artistic_style": ""
},
"lora": {
"lora_name": "Illustrious/Styles/748cmXL_il_lokr_V6311P_1321893.safetensors",
"lora_weight": 0.8,
"lora_triggers": "748cmXL_il_lokr_V6311P_1321893"
}
}

13
data/styles/7b_style.json Normal file
View File

@@ -0,0 +1,13 @@
{
"style_id": "7b_style",
"style_name": "7B Dream",
"style": {
"artist_name": "7b_Dream",
"artistic_style": ""
},
"lora": {
"lora_name": "Illustrious/Styles/7b-style.safetensors",
"lora_weight": 1.0,
"lora_triggers": "7b-style"
}
}

13
data/styles/__.json Normal file
View File

@@ -0,0 +1,13 @@
{
"style_id": "__",
"style_name": "Ichika",
"style": {
"artist_name": "",
"artistic_style": ""
},
"lora": {
"lora_name": "Illustrious/Styles/\u58f1\u73c2.safetensors",
"lora_weight": 1.0,
"lora_triggers": "\u58f1\u73c2"
}
}

13
data/styles/____18.json Normal file
View File

@@ -0,0 +1,13 @@
{
"style_id": "____18",
"style_name": "Yuanfuji Okito 18",
"style": {
"artist_name": "",
"artistic_style": ""
},
"lora": {
"lora_name": "Illustrious/Styles/\u8881\u85e4\u6c96\u4eba18.safetensors",
"lora_weight": 1.0,
"lora_triggers": "\u8881\u85e4\u6c96\u4eba18"
}
}

View File

@@ -0,0 +1,13 @@
{
"style_id": "_jukusei_kakuzatou__sugarbt___assorted_doujin_style_blend_illustrious",
"style_name": "Assorted Doujin Style Blend",
"style": {
"artist_name": "",
"artistic_style": ""
},
"lora": {
"lora_name": "Illustrious/Styles/[Jukusei Kakuzatou (sugarBt)] Assorted Doujin Style Blend Illustrious.safetensors",
"lora_weight": 1.0,
"lora_triggers": "[Jukusei Kakuzatou (sugarBt)] Assorted Doujin Style Blend Illustrious"
}
}

View File

@@ -0,0 +1,13 @@
{
"style_id": "_pastime774__unique_job_tanetsuke_oji_san_o_kakutoku_shimashita_manga_style_illustrious",
"style_name": "Unique Job Tanetsuke Oji San O Kakutoku Shimashita Manga Style",
"style": {
"artist_name": "pastime774",
"artistic_style": ""
},
"lora": {
"lora_name": "Illustrious/Styles/[pastime774] Unique Job Tanetsuke Oji-san o Kakutoku shimashita Manga Style Illustrious.safetensors",
"lora_weight": 1.0,
"lora_triggers": "[pastime774] Unique Job Tanetsuke Oji-san o Kakutoku shimashita Manga Style Illustrious"
}
}

View File

@@ -0,0 +1,13 @@
{
"style_id": "_reinaldo_quintero__reiq___artist_style_illustrious",
"style_name": " Reinaldo Quintero Reiq Artist Style Illustrious",
"style": {
"artist_name": "reiq",
"artistic_style": ""
},
"lora": {
"lora_name": "Illustrious/Styles/[Reinaldo Quintero (REIQ)] Artist Style Illustrious.safetensors",
"lora_weight": 1.0,
"lora_triggers": "[Reinaldo Quintero (REIQ)] Artist Style Illustrious"
}
}

View File

@@ -0,0 +1,13 @@
{
"style_id": "_style__destijl__illustrious_xl_",
"style_name": "Destijl",
"style": {
"artist_name": "",
"artistic_style": ""
},
"lora": {
"lora_name": "Illustrious/Styles/[Style] Destijl [Illustrious-XL].safetensors",
"lora_weight": 1.0,
"lora_triggers": "[Style] Destijl [Illustrious-XL]"
}
}

View File

@@ -0,0 +1,13 @@
{
"style_id": "_style__mosouko__illustrious_xl_",
"style_name": "Mosouko",
"style": {
"artist_name": "",
"artistic_style": ""
},
"lora": {
"lora_name": "Illustrious/Styles/[Style] Mosouko [Illustrious-XL].safetensors",
"lora_weight": 1.0,
"lora_triggers": "[Style] Mosouko [Illustrious-XL]"
}
}

View File

@@ -0,0 +1,13 @@
{
"style_id": "_style__supeku__illustrious_xl_2_0_",
"style_name": "Supeku",
"style": {
"artist_name": "supeku",
"artistic_style": ""
},
"lora": {
"lora_name": "Illustrious/Styles/[Style] Supeku [Illustrious-XL 2.0].safetensors",
"lora_weight": 1.0,
"lora_triggers": "[Style] Supeku [Illustrious-XL 2.0]"
}
}

Some files were not shown because too many files have changed in this diff Show More