Compare commits
11 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
0b8802deb5 | ||
| 0d7d4d404f | |||
|
|
615c400024 | ||
| bb65486995 | |||
|
|
8487b177b4 | ||
| 116941673e | |||
|
|
467c90594c | ||
| a4a21051a5 | |||
|
|
c0e6cff7b7 | ||
| 369c92e3ea | |||
|
|
5aede18ad5 |
51
DEVELOPMENT_GUIDE.md
Normal file
51
DEVELOPMENT_GUIDE.md
Normal 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
|
||||
47
README.md
47
README.md
@@ -5,16 +5,25 @@ 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.
|
||||
- **Styles Gallery**: Manage art style / artist LoRA presets with AI-assisted bulk creation from your styles LoRA folder.
|
||||
- **Scenes Gallery**: Background and environment LoRA presets, previewable with any character.
|
||||
- **Detailers Gallery**: Detail enhancement LoRA presets for fine-tuning face, hands, and other features.
|
||||
- **Checkpoints Gallery**: Browse all your installed SDXL checkpoints (Illustrious & Noob families). Stores per-checkpoint generation settings (steps, CFG, sampler, VAE, base prompts) via JSON files in `data/checkpoints/`. Supports AI-assisted metadata generation from accompanying HTML files.
|
||||
- **AI-Powered Creation**: Create and populate gallery entries using AI to generate profiles from descriptions or LoRA HTML files, or manually create blank templates.
|
||||
- **Character-Integrated Previews**: Standalone items (Outfits/Actions/Styles/Scenes/Detailers/Checkpoints) can be previewed directly on a specific character's model.
|
||||
- **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.
|
||||
- **Quad LoRA Chaining**: Chains up to four distinct LoRAs (Character + Outfit + Action + Style/Detailer/Scene) sequentially in the generation workflow.
|
||||
- **Per-Checkpoint Settings**: Steps, CFG, sampler name, VAE, and base prompts are applied automatically from each checkpoint's JSON profile.
|
||||
- **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.
|
||||
- **Fill Missing**: Generate covers for every item missing one with a single click, across all galleries.
|
||||
- **Bulk Create from LoRAs/Checkpoints**: Auto-generate JSON metadata for entire directories using an LLM.
|
||||
- **Advanced Generator**: A dedicated mix-and-match page combining any character, outfit, action, style, scene, and detailer in a single generation.
|
||||
- **Smart URLs**: Sanitized, human-readable URLs (slugs) that handle special characters and slashes gracefully.
|
||||
|
||||
## Prerequisites
|
||||
@@ -45,13 +54,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 +73,16 @@ 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.
|
||||
- `/data/styles`: Art style / artist LoRA JSON files.
|
||||
- `/data/scenes`: Scene/background LoRA JSON files.
|
||||
- `/data/detailers`: Detailer LoRA JSON files.
|
||||
- `/data/checkpoints`: Per-checkpoint metadata JSON files (steps, CFG, sampler, VAE, base prompts).
|
||||
- `/data/prompts`: LLM system prompts used by the AI-assisted bulk creation features.
|
||||
- `/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`: Architectural patterns for extending the browser.
|
||||
|
||||
208
TAG_MCP_README.md
Normal file
208
TAG_MCP_README.md
Normal file
@@ -0,0 +1,208 @@
|
||||
# danbooru-mcp
|
||||
|
||||
An MCP (Model Context Protocol) server that lets an LLM search, validate, and get suggestions for valid **Danbooru tags** — the prompt vocabulary used by Illustrious and other Danbooru-trained Stable Diffusion models.
|
||||
|
||||
Tags are scraped directly from the **Danbooru public API** and stored in a local SQLite database with an **FTS5 full-text search index** for fast prefix/substring queries. Each tag includes its post count, category, and deprecation status so the LLM can prioritise well-used, canonical tags.
|
||||
|
||||
---
|
||||
|
||||
## Tools
|
||||
|
||||
| Tool | Description |
|
||||
|------|-------------|
|
||||
| `search_tags(query, limit=20, category=None)` | Prefix/full-text search — returns rich tag objects ordered by relevance |
|
||||
| `validate_tags(tags)` | Exact-match validation — splits into `valid`, `deprecated`, `invalid` |
|
||||
| `suggest_tags(partial, limit=10, category=None)` | Autocomplete for partial tag strings, sorted by post count |
|
||||
|
||||
### Return object shape
|
||||
|
||||
All tools return tag objects with:
|
||||
|
||||
```json
|
||||
{
|
||||
"name": "blue_hair",
|
||||
"post_count": 1079908,
|
||||
"category": "general",
|
||||
"is_deprecated": false
|
||||
}
|
||||
```
|
||||
|
||||
### Category filter values
|
||||
|
||||
`"general"` · `"artist"` · `"copyright"` · `"character"` · `"meta"`
|
||||
|
||||
---
|
||||
|
||||
## Setup
|
||||
|
||||
### 1. Install dependencies
|
||||
|
||||
```bash
|
||||
pip install -e .
|
||||
```
|
||||
|
||||
### 2. Build the SQLite database (scrapes the Danbooru API)
|
||||
|
||||
```bash
|
||||
python scripts/scrape_tags.py
|
||||
```
|
||||
|
||||
This scrapes ~1–2 million tags from the Danbooru public API (no account required)
|
||||
and stores them in `db/tags.db` with a FTS5 index.
|
||||
Estimated time: **5–15 minutes** depending on network speed.
|
||||
|
||||
```
|
||||
Options:
|
||||
--db PATH Output database path (default: db/tags.db)
|
||||
--workers N Parallel HTTP workers (default: 4)
|
||||
--max-page N Safety cap on pages (default: 2500)
|
||||
--no-resume Re-scrape all pages from scratch
|
||||
--no-fts Skip FTS5 rebuild (for incremental runs)
|
||||
```
|
||||
|
||||
The scraper is **resumable** — if interrupted, re-run it and it will
|
||||
continue from where it left off.
|
||||
|
||||
### 3. (Optional) Test API access first
|
||||
|
||||
```bash
|
||||
python scripts/test_danbooru_api.py
|
||||
```
|
||||
|
||||
### 4. Run the MCP server
|
||||
|
||||
```bash
|
||||
python src/server.py
|
||||
```
|
||||
|
||||
---
|
||||
|
||||
## Docker
|
||||
|
||||
### Quick start (pre-built DB — recommended)
|
||||
|
||||
Use this when you've already run `python scripts/scrape_tags.py` and have `db/tags.db`:
|
||||
|
||||
```bash
|
||||
# Build image with the pre-built DB baked in (~30 seconds)
|
||||
docker build -f Dockerfile.prebuilt -t danbooru-mcp .
|
||||
|
||||
# Verify
|
||||
docker run --rm --entrypoint python danbooru-mcp \
|
||||
-c "import sqlite3,sys; c=sqlite3.connect('/app/db/tags.db'); sys.stderr.write(str(c.execute('SELECT COUNT(*) FROM tags').fetchone()[0]) + ' tags\n')"
|
||||
```
|
||||
|
||||
### Build from scratch (runs the scraper during Docker build)
|
||||
|
||||
```bash
|
||||
# Scrapes the Danbooru API during build — takes ~15 minutes
|
||||
docker build \
|
||||
--build-arg DANBOORU_USER=your_username \
|
||||
--build-arg DANBOORU_API_KEY=your_api_key \
|
||||
-t danbooru-mcp .
|
||||
```
|
||||
|
||||
### MCP client config (Docker)
|
||||
|
||||
```json
|
||||
{
|
||||
"mcpServers": {
|
||||
"danbooru-tags": {
|
||||
"command": "docker",
|
||||
"args": ["run", "--rm", "-i", "danbooru-mcp:latest"]
|
||||
}
|
||||
}
|
||||
}
|
||||
```
|
||||
|
||||
---
|
||||
|
||||
## MCP Client Configuration
|
||||
|
||||
### Claude Desktop (`claude_desktop_config.json`)
|
||||
|
||||
```json
|
||||
{
|
||||
"mcpServers": {
|
||||
"danbooru-tags": {
|
||||
"command": "python",
|
||||
"args": ["/absolute/path/to/danbooru-mcp/src/server.py"]
|
||||
}
|
||||
}
|
||||
}
|
||||
```
|
||||
|
||||
### Custom DB path via environment variable
|
||||
|
||||
```json
|
||||
{
|
||||
"mcpServers": {
|
||||
"danbooru-tags": {
|
||||
"command": "python",
|
||||
"args": ["/path/to/src/server.py"],
|
||||
"env": {
|
||||
"DANBOORU_TAGS_DB": "/custom/path/to/tags.db"
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
```
|
||||
|
||||
---
|
||||
|
||||
## Example LLM Prompt Workflow
|
||||
|
||||
```
|
||||
User: Generate a prompt for a girl with blue hair and a sword.
|
||||
|
||||
LLM calls validate_tags(["1girl", "blue_hairs", "sword", "looking_at_vewer"])
|
||||
→ {
|
||||
"valid": ["1girl", "sword"],
|
||||
"deprecated": [],
|
||||
"invalid": ["blue_hairs", "looking_at_vewer"]
|
||||
}
|
||||
|
||||
LLM calls suggest_tags("blue_hair", limit=3)
|
||||
→ [
|
||||
{"name": "blue_hair", "post_count": 1079908, "category": "general"},
|
||||
{"name": "blue_hairband", "post_count": 26905, "category": "general"},
|
||||
...
|
||||
]
|
||||
|
||||
LLM calls suggest_tags("looking_at_viewer", limit=1)
|
||||
→ [{"name": "looking_at_viewer", "post_count": 4567890, "category": "general"}]
|
||||
|
||||
Final validated prompt: 1girl, blue_hair, sword, looking_at_viewer
|
||||
```
|
||||
|
||||
---
|
||||
|
||||
## Project Structure
|
||||
|
||||
```
|
||||
danbooru-mcp/
|
||||
├── data/
|
||||
│ └── all_tags.csv # original CSV export (legacy, replaced by API scrape)
|
||||
├── db/
|
||||
│ └── tags.db # SQLite DB (generated, gitignored)
|
||||
├── plans/
|
||||
│ └── danbooru-mcp-plan.md # Architecture plan
|
||||
├── scripts/
|
||||
│ ├── scrape_tags.py # API scraper → SQLite (primary)
|
||||
│ ├── import_tags.py # Legacy CSV importer
|
||||
│ └── test_danbooru_api.py # API connectivity tests
|
||||
├── src/
|
||||
│ └── server.py # MCP server
|
||||
├── pyproject.toml
|
||||
├── .gitignore
|
||||
└── README.md
|
||||
```
|
||||
|
||||
---
|
||||
|
||||
## Requirements
|
||||
|
||||
- Python 3.10+
|
||||
- `mcp[cli]` — official Python MCP SDK
|
||||
- `requests` — HTTP client for API scraping
|
||||
- `sqlite3` — Python stdlib (no install needed)
|
||||
@@ -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"
|
||||
]
|
||||
}
|
||||
@@ -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"
|
||||
]
|
||||
}
|
||||
@@ -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"
|
||||
]
|
||||
}
|
||||
@@ -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"
|
||||
]
|
||||
}
|
||||
@@ -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"
|
||||
]
|
||||
}
|
||||
@@ -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"
|
||||
]
|
||||
}
|
||||
@@ -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"
|
||||
]
|
||||
}
|
||||
@@ -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"
|
||||
]
|
||||
}
|
||||
@@ -169,5 +169,45 @@
|
||||
"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"
|
||||
},
|
||||
"20": {
|
||||
"inputs": {
|
||||
"lora_name": "",
|
||||
"strength_model": 1.0,
|
||||
"strength_clip": 1.0,
|
||||
"model": ["19", 0],
|
||||
"clip": ["19", 1]
|
||||
},
|
||||
"class_type": "LoraLoader"
|
||||
}
|
||||
}
|
||||
|
||||
30
data/actions/3p_sex_000037.json
Normal file
30
data/actions/3p_sex_000037.json
Normal file
@@ -0,0 +1,30 @@
|
||||
{
|
||||
"action_id": "3p_sex_000037",
|
||||
"action_name": "3P Sex 000037",
|
||||
"action": {
|
||||
"full_body": "threesome",
|
||||
"head": "blush",
|
||||
"eyes": "half-closed_eyes",
|
||||
"arms": "reaching",
|
||||
"hands": "groping",
|
||||
"torso": "nude",
|
||||
"pelvis": "sex",
|
||||
"legs": "spread_legs",
|
||||
"feet": "toes_curled",
|
||||
"additional": "sweat"
|
||||
},
|
||||
"lora": {
|
||||
"lora_name": "Illustrious/Poses/3P_SEX-000037.safetensors",
|
||||
"lora_weight": 0.8,
|
||||
"lora_triggers": "threesome, group_sex"
|
||||
},
|
||||
"tags": [
|
||||
"threesome",
|
||||
"group_sex",
|
||||
"nude",
|
||||
"sex",
|
||||
"blush",
|
||||
"groping",
|
||||
"sweat"
|
||||
]
|
||||
}
|
||||
33
data/actions/4p_sex.json
Normal file
33
data/actions/4p_sex.json
Normal file
@@ -0,0 +1,33 @@
|
||||
{
|
||||
"action_id": "4p_sex",
|
||||
"action_name": "4P Sex",
|
||||
"action": {
|
||||
"full_body": "Choreographed foursome group sex scene involving four participants (e.g., 1 girl and 3 boys or 3 girls and 1 boy) engaged in simultaneous sexual acts like double penetration or cooperative fellatio.",
|
||||
"head": "Moaning expression, open mouth, potentially heavily breathing or performing fellatio.",
|
||||
"eyes": "Heart-shaped pupils, ahegao, or rolling back in pleasure.",
|
||||
"arms": "Bracing on the surface (all fours), holding onto partners, or grabbing sheets.",
|
||||
"hands": "Grabbing breasts, holding legs, fingering, or resting on knees/shoulders.",
|
||||
"torso": "Nude, arching back, breasts exposed and pressed or being touched.",
|
||||
"pelvis": "Engaged in intercourse, involving vaginal or anal penetration, potentially double penetration.",
|
||||
"legs": "Spread wide, positioned in all fours, missionary, or reverse cowgirl depending on specific interaction.",
|
||||
"feet": "Toes curled, dynamic positioning based on stance (kneeling or lying).",
|
||||
"additional": "Sexual fluids, messy after-sex atmosphere, sweat, steaming body."
|
||||
},
|
||||
"lora": {
|
||||
"lora_name": "Illustrious/Poses/4P_sex.safetensors",
|
||||
"lora_weight": 0.6,
|
||||
"lora_triggers": "4P_sexV1"
|
||||
},
|
||||
"tags": [
|
||||
"4P_sexV1",
|
||||
"group sex",
|
||||
"foursome",
|
||||
"4P",
|
||||
"double penetration",
|
||||
"fellatio",
|
||||
"all fours",
|
||||
"uncensored",
|
||||
"hetero",
|
||||
"sex"
|
||||
]
|
||||
}
|
||||
@@ -0,0 +1,32 @@
|
||||
{
|
||||
"action_id": "_malebolgia__oral_sex_tounge_afterimage_concept_2_0_illustrious",
|
||||
"action_name": " Malebolgia Oral Sex Tounge Afterimage Concept 2 0 Illustrious",
|
||||
"action": {
|
||||
"full_body": "kneeling, leaning forward, engaged in oral activity",
|
||||
"head": "facing target, mouth wide open, intense expression",
|
||||
"eyes": "looking up, half-closed",
|
||||
"arms": "reaching forward",
|
||||
"hands": "grasping partner's thighs or hips",
|
||||
"torso": "angled towards partner",
|
||||
"pelvis": "stationary",
|
||||
"legs": "kneeling on the floor",
|
||||
"feet": "tucked behind",
|
||||
"additional": "afterimage, motion blur, multiple tongues, rapid tongue movement, speed lines, saliva trails"
|
||||
},
|
||||
"participants": {
|
||||
"solo_focus": "true",
|
||||
"orientation": "MF"
|
||||
},
|
||||
"lora": {
|
||||
"lora_name": "Illustrious/Poses/[Malebolgia] Oral Sex Tounge Afterimage Concept 2.0 Illustrious.safetensors",
|
||||
"lora_weight": 1.0,
|
||||
"lora_triggers": "[Malebolgia] Oral Sex Tounge Afterimage Concept 2.0 Illustrious"
|
||||
},
|
||||
"tags": [
|
||||
"oral",
|
||||
"rapid motion",
|
||||
"tongue play",
|
||||
"motion blur",
|
||||
"surreal"
|
||||
]
|
||||
}
|
||||
@@ -0,0 +1,34 @@
|
||||
{
|
||||
"action_id": "actually_reliable_penis_kissing_3_variants_illustrious",
|
||||
"action_name": "Actually Reliable Penis Kissing 3 Variants Illustrious",
|
||||
"action": {
|
||||
"full_body": "kneeling in front of standing or sitting partner, leaning forward towards crotch",
|
||||
"head": "face aligned with groin, lips pressing against glans or shaft, tongue slightly out, kissing connection",
|
||||
"eyes": "looking up at partner or closed in enjoyment, half-closed",
|
||||
"arms": "reaching forward or resting on partner's legs",
|
||||
"hands": "gently holding the shaft, cupping testicles, or resting on partner's thighs",
|
||||
"torso": "leaning forward, arched back",
|
||||
"pelvis": "kneeling pose, hips pushed back",
|
||||
"legs": "kneeling on the ground",
|
||||
"feet": "toes curled or flat",
|
||||
"additional": "saliva connection, affectionate oral interaction, unsucked penis"
|
||||
},
|
||||
"participants": {
|
||||
"solo_focus": "true",
|
||||
"orientation": "MF"
|
||||
},
|
||||
"lora": {
|
||||
"lora_name": "Illustrious/Poses/Actually_Reliable_Penis_Kissing_3_Variants_Illustrious.safetensors",
|
||||
"lora_weight": 1.0,
|
||||
"lora_triggers": "Actually_Reliable_Penis_Kissing_3_Variants_Illustrious"
|
||||
},
|
||||
"tags": [
|
||||
"penis kissing",
|
||||
"fellatio",
|
||||
"oral sex",
|
||||
"kneeling",
|
||||
"saliva",
|
||||
"tongue",
|
||||
"close-up"
|
||||
]
|
||||
}
|
||||
@@ -0,0 +1,37 @@
|
||||
{
|
||||
"action_id": "after_sex_fellatio_illustriousxl_lora_nochekaiser_r1",
|
||||
"action_name": "After Sex Fellatio Illustriousxl Lora Nochekaiser R1",
|
||||
"action": {
|
||||
"full_body": "completely_nude, lying, on_back, m_legs, spread_legs",
|
||||
"head": "looking_at_viewer, tongue, open_mouth, blush, messing_hair",
|
||||
"eyes": "half-closed_eyes, blue_eyes",
|
||||
"arms": "arms_at_sides, on_bed",
|
||||
"hands": "on_bed, pressing_bed",
|
||||
"torso": "large_breasts, nipples, sweat",
|
||||
"pelvis": "pussy, cum_in_pussy, leaking_cum",
|
||||
"legs": "m_legs, spread_legs, legs_up",
|
||||
"feet": "barefoot, toes",
|
||||
"additional": "after_sex, after_vaginal, fellatio, penis, cum, cumdrip, messy_body, bed_sheet"
|
||||
},
|
||||
"lora": {
|
||||
"lora_name": "Illustrious/Poses/after-sex-fellatio-illustriousxl-lora-nochekaiser_r1.safetensors",
|
||||
"lora_weight": 1.0,
|
||||
"lora_triggers": "after sex fellatio"
|
||||
},
|
||||
"tags": [
|
||||
"after_sex",
|
||||
"after_vaginal",
|
||||
"fellatio",
|
||||
"cum_in_pussy",
|
||||
"m_legs",
|
||||
"lying",
|
||||
"on_back",
|
||||
"on_bed",
|
||||
"cumdrip",
|
||||
"completely_nude",
|
||||
"nipples",
|
||||
"tongue",
|
||||
"penis",
|
||||
"cum"
|
||||
]
|
||||
}
|
||||
33
data/actions/afterfellatio_ill.json
Normal file
33
data/actions/afterfellatio_ill.json
Normal file
@@ -0,0 +1,33 @@
|
||||
{
|
||||
"action_id": "afterfellatio_ill",
|
||||
"action_name": "Afterfellatio Ill",
|
||||
"action": {
|
||||
"full_body": "kneeling, leaning_forward, pov",
|
||||
"head": "looking_at_viewer, blush, tilted_head, cum_on_face",
|
||||
"eyes": "half-closed_eyes, tears",
|
||||
"arms": "arms_down, reaching_towards_viewer",
|
||||
"hands": "handjob, touching_penis",
|
||||
"torso": "leaning_forward",
|
||||
"pelvis": "kneeling",
|
||||
"legs": "kneeling",
|
||||
"feet": "barefoot",
|
||||
"additional": "cum_string, cum_in_mouth, closed_mouth"
|
||||
},
|
||||
"lora": {
|
||||
"lora_name": "Illustrious/Poses/afterfellatio_ill.safetensors",
|
||||
"lora_weight": 0.8,
|
||||
"lora_triggers": "after fellatio, cum in mouth, closed mouth, cum string"
|
||||
},
|
||||
"tags": [
|
||||
"after_fellatio",
|
||||
"cum_in_mouth",
|
||||
"cum_string",
|
||||
"closed_mouth",
|
||||
"blush",
|
||||
"half-closed_eyes",
|
||||
"looking_at_viewer",
|
||||
"kneeling",
|
||||
"pov",
|
||||
"handjob"
|
||||
]
|
||||
}
|
||||
33
data/actions/afteroral.json
Normal file
33
data/actions/afteroral.json
Normal file
@@ -0,0 +1,33 @@
|
||||
{
|
||||
"action_id": "afteroral",
|
||||
"action_name": "Afteroral",
|
||||
"action": {
|
||||
"full_body": "Character depicted immediately after performing oral sex, often focusing on the upper body and face.",
|
||||
"head": "Messy hair, flushed cheeks, mouth slightly open or panting.",
|
||||
"eyes": "Half-closed or dazed expression, potentially with runny mascara or makeup.",
|
||||
"arms": "Relaxed or wiping mouth.",
|
||||
"hands": "Resting or near face.",
|
||||
"torso": "Heaving chest indicative of heavy breathing.",
|
||||
"pelvis": "N/A (typically upper body focus)",
|
||||
"legs": "N/A",
|
||||
"feet": "N/A",
|
||||
"additional": "Presence of bodily fluids like saliva trails or excessive cum on face and messy makeup."
|
||||
},
|
||||
"lora": {
|
||||
"lora_name": "Illustrious/Poses/afteroral.safetensors",
|
||||
"lora_weight": 1.0,
|
||||
"lora_triggers": "after oral, after deepthroat"
|
||||
},
|
||||
"tags": [
|
||||
"after_fellatio",
|
||||
"runny_makeup",
|
||||
"smeared_lipstick",
|
||||
"saliva_trail",
|
||||
"excessive_cum",
|
||||
"messy_hair",
|
||||
"heavy_breathing",
|
||||
"cum_bubble",
|
||||
"penis_on_face",
|
||||
"sweat"
|
||||
]
|
||||
}
|
||||
35
data/actions/afterpaizuri.json
Normal file
35
data/actions/afterpaizuri.json
Normal file
@@ -0,0 +1,35 @@
|
||||
{
|
||||
"action_id": "afterpaizuri",
|
||||
"action_name": "Afterpaizuri",
|
||||
"action": {
|
||||
"full_body": "kneeling or sitting, displaying upper body aftermath, exhausted posture",
|
||||
"head": "flushed face, messy hair, panting, mouth slightly open, tongue out",
|
||||
"eyes": "half-closed eyes, dazed expression, looking at viewer",
|
||||
"arms": "resting on thighs or gesturing towards chest",
|
||||
"hands": "presenting breasts or cleaning face",
|
||||
"torso": "exposed cleavage, chest covered in white liquid, disheveled clothes",
|
||||
"pelvis": "hips settling back, kneeling posture",
|
||||
"legs": "kneeling, thighs together or slightly spread",
|
||||
"feet": "tucked under buttocks or relaxed",
|
||||
"additional": "semen on breasts, semen on face, heavy breathing, sweat, sticky fluids"
|
||||
},
|
||||
"participants": {
|
||||
"solo_focus": "true",
|
||||
"orientation": "F"
|
||||
},
|
||||
"lora": {
|
||||
"lora_name": "Illustrious/Poses/afterpaizuri.safetensors",
|
||||
"lora_weight": 1.0,
|
||||
"lora_triggers": "afterpaizuri"
|
||||
},
|
||||
"tags": [
|
||||
"after paizuri",
|
||||
"semen on breasts",
|
||||
"semen on face",
|
||||
"messy",
|
||||
"blush",
|
||||
"dazed",
|
||||
"sweat",
|
||||
"disheveled"
|
||||
]
|
||||
}
|
||||
41
data/actions/aftersexbreakv2.json
Normal file
41
data/actions/aftersexbreakv2.json
Normal file
@@ -0,0 +1,41 @@
|
||||
{
|
||||
"action_id": "aftersexbreakv2",
|
||||
"action_name": "Aftersexbreakv2",
|
||||
"action": {
|
||||
"full_body": "lying, on_back, on_bed, bowlegged_pose, spread_legs, twisted_torso",
|
||||
"head": "messy_hair, head_back, sweaty_face",
|
||||
"eyes": "rolling_eyes, half-closed_eyes, ahegao",
|
||||
"arms": "arms_spread, arms_above_head",
|
||||
"hands": "relaxed_hands",
|
||||
"torso": "sweat, nipples, collarbone, heavy_breathing",
|
||||
"pelvis": "hips, navel, female_pubic_hair",
|
||||
"legs": "spread_legs, legs_up, bent_legs",
|
||||
"feet": "barefoot",
|
||||
"additional": "condom_wrapper, used_tissue, stained_sheets, cum_pool, bead_of_sweat"
|
||||
},
|
||||
"lora": {
|
||||
"lora_name": "Illustrious/Poses/AfterSexBreakV2.safetensors",
|
||||
"lora_weight": 1.0,
|
||||
"lora_triggers": "aftersexbreak, after sex, male sitting"
|
||||
},
|
||||
"tags": [
|
||||
"after_sex",
|
||||
"lying",
|
||||
"on_back",
|
||||
"on_bed",
|
||||
"fucked_silly",
|
||||
"spread_legs",
|
||||
"bowlegged_pose",
|
||||
"sweat",
|
||||
"blush",
|
||||
"messy_hair",
|
||||
"heavy_breathing",
|
||||
"rolling_eyes",
|
||||
"ahegao",
|
||||
"cum_pool",
|
||||
"condom_wrapper",
|
||||
"used_tissue",
|
||||
"bed_sheet",
|
||||
"stained_sheets"
|
||||
]
|
||||
}
|
||||
33
data/actions/against_glass_bs.json
Normal file
33
data/actions/against_glass_bs.json
Normal file
@@ -0,0 +1,33 @@
|
||||
{
|
||||
"action_id": "against_glass_bs",
|
||||
"action_name": "Against Glass Bs",
|
||||
"action": {
|
||||
"full_body": "leaning forward, body pressed directly against the viewing plane/glass surface",
|
||||
"head": "face close to camera, breath fog on glass, cheek slightly pressed",
|
||||
"eyes": "looking directly at viewer, intimate gaze",
|
||||
"arms": "reaching forward towards the viewer",
|
||||
"hands": "palms pressed flat against glass, fingers spread, palm prints",
|
||||
"torso": "chest squished against glass, leaning into the surface",
|
||||
"pelvis": "hips pushed forward or slightly angled back depending on angle",
|
||||
"legs": "standing straight or knees slightly bent for leverage",
|
||||
"feet": "planted firmly on the ground",
|
||||
"additional": "transparent surface, condensation, distortion from glass, surface interaction"
|
||||
},
|
||||
"participants": {
|
||||
"solo_focus": "true",
|
||||
"orientation": "MF"
|
||||
},
|
||||
"lora": {
|
||||
"lora_name": "Illustrious/Poses/Against_glass_bs.safetensors",
|
||||
"lora_weight": 1.0,
|
||||
"lora_triggers": "Against_glass_bs"
|
||||
},
|
||||
"tags": [
|
||||
"against glass",
|
||||
"pressed against glass",
|
||||
"palms on glass",
|
||||
"view through glass",
|
||||
"cheek press",
|
||||
"distorted view"
|
||||
]
|
||||
}
|
||||
32
data/actions/agressivechoking_000010.json
Normal file
32
data/actions/agressivechoking_000010.json
Normal file
@@ -0,0 +1,32 @@
|
||||
{
|
||||
"action_id": "agressivechoking_000010",
|
||||
"action_name": "Agressivechoking 000010",
|
||||
"action": {
|
||||
"full_body": "dynamic perspective, leaning forward, dominant violent stance, POV",
|
||||
"head": "face close to camera, angry expression, gritting teeth or shouting, heavy breathing",
|
||||
"eyes": "intense stare, dilated pupils, furious gaze, sanpaku",
|
||||
"arms": "extended towards viewer or subject, muscles tensed, shoulders shrugged forward",
|
||||
"hands": "fingers curled tightly, hand around neck, strangling motion, squeezing",
|
||||
"torso": "hunched forward, tense upper body",
|
||||
"pelvis": "weight shifted forward",
|
||||
"legs": "wide stance for leverage, braced",
|
||||
"feet": "planted firmly",
|
||||
"additional": "sweat, speed lines, depth of field, high contrast lighting, shadow over eyes"
|
||||
},
|
||||
"participants": {
|
||||
"solo_focus": "true",
|
||||
"orientation": "MF"
|
||||
},
|
||||
"lora": {
|
||||
"lora_name": "Illustrious/Poses/AgressiveChoking-000010.safetensors",
|
||||
"lora_weight": 1.0,
|
||||
"lora_triggers": "AgressiveChoking-000010"
|
||||
},
|
||||
"tags": [
|
||||
"violence",
|
||||
"dominance",
|
||||
"pov",
|
||||
"combat",
|
||||
"anger"
|
||||
]
|
||||
}
|
||||
37
data/actions/ahegao_xl_v3_1278075.json
Normal file
37
data/actions/ahegao_xl_v3_1278075.json
Normal file
@@ -0,0 +1,37 @@
|
||||
{
|
||||
"action_id": "ahegao_xl_v3_1278075",
|
||||
"action_name": "Ahegao Xl V3 1278075",
|
||||
"action": {
|
||||
"full_body": "portrait or upper body focus, emphasizing facial distortion",
|
||||
"head": "tilted back slightly, mouth wide open, tongue hanging out, face heavily flushed",
|
||||
"eyes": "rolled back upwards, cross-eyed, look of exhaustion or ecstasy",
|
||||
"arms": "raised up near the head",
|
||||
"hands": "making double peace signs (v-sign) framing the face",
|
||||
"torso": "facing forward",
|
||||
"pelvis": "neutral",
|
||||
"legs": "neutral",
|
||||
"feet": "not visible",
|
||||
"additional": "saliva trail, drooling, sweat, heavy blush stickers, heart-shaped pupils"
|
||||
},
|
||||
"participants": {
|
||||
"solo_focus": "true",
|
||||
"orientation": "F"
|
||||
},
|
||||
"lora": {
|
||||
"lora_name": "Illustrious/Poses/Ahegao_XL_v3_1278075.safetensors",
|
||||
"lora_weight": 1.0,
|
||||
"lora_triggers": "Ahegao_XL_v3_1278075"
|
||||
},
|
||||
"tags": [
|
||||
"ahegao",
|
||||
"rolling eyes",
|
||||
"tongue out",
|
||||
"open mouth",
|
||||
"blush",
|
||||
"drooling",
|
||||
"saliva",
|
||||
"cross-eyed",
|
||||
"double peace sign",
|
||||
"v-sign"
|
||||
]
|
||||
}
|
||||
33
data/actions/amateur_pov_filming.json
Normal file
33
data/actions/amateur_pov_filming.json
Normal file
@@ -0,0 +1,33 @@
|
||||
{
|
||||
"action_id": "amateur_pov_filming",
|
||||
"action_name": "Amateur Pov Filming",
|
||||
"action": {
|
||||
"full_body": "selfie pose, standing or sitting, facing viewer or mirror",
|
||||
"head": "looking_at_viewer, blush, maybe open mouth or shy expression",
|
||||
"eyes": "looking_at_viewer, contact with camera",
|
||||
"arms": "raised to hold phone or camera",
|
||||
"hands": "holding_phone, holding_id_card, or adjusting clothes",
|
||||
"torso": "upper body in frame, breasts, nipples",
|
||||
"pelvis": "hips visible if full body mirror selfie",
|
||||
"legs": "standing or sitting",
|
||||
"feet": "barefoot if visible",
|
||||
"additional": "phone recording interface, smartphone, mirror, amateur aesthetic"
|
||||
},
|
||||
"lora": {
|
||||
"lora_name": "Illustrious/Poses/Amateur_POV_Filming.safetensors",
|
||||
"lora_weight": 1.0,
|
||||
"lora_triggers": "Homemade_PornV1, recording, pov, prostitution"
|
||||
},
|
||||
"tags": [
|
||||
"recording",
|
||||
"pov",
|
||||
"selfie",
|
||||
"holding_phone",
|
||||
"smartphone",
|
||||
"mirror_selfie",
|
||||
"holding_id_card",
|
||||
"looking_at_viewer",
|
||||
"prostitution",
|
||||
"indoors"
|
||||
]
|
||||
}
|
||||
29
data/actions/arch_back_sex_v1_1_illustriousxl.json
Normal file
29
data/actions/arch_back_sex_v1_1_illustriousxl.json
Normal file
@@ -0,0 +1,29 @@
|
||||
{
|
||||
"action_id": "arch_back_sex_v1_1_illustriousxl",
|
||||
"action_name": "Arch Back Sex V1 1 Illustriousxl",
|
||||
"action": {
|
||||
"full_body": "doggystyle, sex_from_behind, all_fours",
|
||||
"head": "head_back, looking_back",
|
||||
"eyes": "closed_eyes, blush",
|
||||
"arms": "arms_support",
|
||||
"hands": "grabbing_another's_ass",
|
||||
"torso": "arched_back",
|
||||
"pelvis": "lifted_hip",
|
||||
"legs": "kneeling, spread_legs",
|
||||
"feet": "toes",
|
||||
"additional": "kiss, sweat, saliva, intense_pleasure"
|
||||
},
|
||||
"lora": {
|
||||
"lora_name": "Illustrious/Poses/arch-back-sex-v1.1-illustriousxl.safetensors",
|
||||
"lora_weight": 1.0,
|
||||
"lora_triggers": "kiss, arched_back, sex_from_behind"
|
||||
},
|
||||
"tags": [
|
||||
"hetero",
|
||||
"sex",
|
||||
"vaginal",
|
||||
"penis",
|
||||
"nude",
|
||||
"indoors"
|
||||
]
|
||||
}
|
||||
38
data/actions/arm_grab_missionary_ill_10.json
Normal file
38
data/actions/arm_grab_missionary_ill_10.json
Normal file
@@ -0,0 +1,38 @@
|
||||
{
|
||||
"action_id": "arm_grab_missionary_ill_10",
|
||||
"action_name": "Arm Grab Missionary Ill 10",
|
||||
"action": {
|
||||
"full_body": "missionary, lying, on_back, sex, vaginal",
|
||||
"head": "expressive face, open mouth, one_eye_closed, blushing",
|
||||
"eyes": "looking_at_viewer (optional), dilated_pupils",
|
||||
"arms": "arms_up, pinned, restrained, grabbed_wrists",
|
||||
"hands": "interlocked_fingers, holding_hands",
|
||||
"torso": "breasts, nipples, medium_breasts",
|
||||
"pelvis": "legs_spread, lifted_pelvis",
|
||||
"legs": "spread_legs, legs_up, knees_up, straddling (if applicable)",
|
||||
"feet": "barefoot (implied)",
|
||||
"additional": "faceless_male, male_focus, motion_lines, sweat"
|
||||
},
|
||||
"lora": {
|
||||
"lora_name": "Illustrious/Poses/arm_grab_missionary_ill-10.safetensors",
|
||||
"lora_weight": 1.0,
|
||||
"lora_triggers": "arm_grab_missionary"
|
||||
},
|
||||
"tags": [
|
||||
"missionary",
|
||||
"spread_legs",
|
||||
"interlocked_fingers",
|
||||
"holding_hands",
|
||||
"arms_up",
|
||||
"pinned",
|
||||
"lying",
|
||||
"on_back",
|
||||
"sex",
|
||||
"vaginal",
|
||||
"faceless_male",
|
||||
"one_eye_closed",
|
||||
"open_mouth",
|
||||
"breasts",
|
||||
"nipples"
|
||||
]
|
||||
}
|
||||
30
data/actions/ballsdeep_il_v2_2_s.json
Normal file
30
data/actions/ballsdeep_il_v2_2_s.json
Normal file
@@ -0,0 +1,30 @@
|
||||
{
|
||||
"action_id": "ballsdeep_il_v2_2_s",
|
||||
"action_name": "Ballsdeep Il V2 2 S",
|
||||
"action": {
|
||||
"full_body": "sexual intercourse, variable position (prone, girl on top, or from behind)",
|
||||
"head": "expression of intensity or pleasure, often looking back or face down",
|
||||
"eyes": "rolled back or squeezed shut",
|
||||
"arms": "grasping sheets or holding partner",
|
||||
"hands": "clenched or grabbing",
|
||||
"torso": "arched or pressed against contrasting surface",
|
||||
"pelvis": "hips pushed firmly against partner's hips, joined genitals",
|
||||
"legs": "spread wide or wrapped around partner",
|
||||
"feet": "toes curled",
|
||||
"additional": "deep penetration, testicles pressed flat against skin, stomach bulge visible"
|
||||
},
|
||||
"lora": {
|
||||
"lora_name": "Illustrious/Poses/BallsDeep-IL-V2.2-S.safetensors",
|
||||
"lora_weight": 1.0,
|
||||
"lora_triggers": "deep penetration"
|
||||
},
|
||||
"tags": [
|
||||
"deep_penetration",
|
||||
"testicles",
|
||||
"stomach_bulge",
|
||||
"sex",
|
||||
"anal",
|
||||
"vaginal",
|
||||
"gaping"
|
||||
]
|
||||
}
|
||||
31
data/actions/bathingtogether.json
Normal file
31
data/actions/bathingtogether.json
Normal file
@@ -0,0 +1,31 @@
|
||||
{
|
||||
"action_id": "bathingtogether",
|
||||
"action_name": "Bathingtogether",
|
||||
"action": {
|
||||
"full_body": "bathing, sitting, partially_submerged",
|
||||
"head": "looking_at_viewer, facing_viewer",
|
||||
"eyes": "eye_contact",
|
||||
"arms": "arms_resting",
|
||||
"hands": "resting",
|
||||
"torso": "bare_shoulders",
|
||||
"pelvis": "submerged",
|
||||
"legs": "knees_up, submerged",
|
||||
"feet": "no_shoes",
|
||||
"additional": "bathtub, steam, water, bubbles, wet"
|
||||
},
|
||||
"lora": {
|
||||
"lora_name": "Illustrious/Poses/bathingtogether.safetensors",
|
||||
"lora_weight": 1.0,
|
||||
"lora_triggers": "bathing together"
|
||||
},
|
||||
"tags": [
|
||||
"bathing",
|
||||
"bathtub",
|
||||
"partially_submerged",
|
||||
"pov",
|
||||
"looking_at_viewer",
|
||||
"wet",
|
||||
"steam",
|
||||
"bare_shoulders"
|
||||
]
|
||||
}
|
||||
33
data/actions/before_after_1230829.json
Normal file
33
data/actions/before_after_1230829.json
Normal file
@@ -0,0 +1,33 @@
|
||||
{
|
||||
"action_id": "before_after_1230829",
|
||||
"action_name": "Before After 1230829",
|
||||
"action": {
|
||||
"full_body": "2koma, before_and_after",
|
||||
"head": "heavy_breathing, orgasm, sticky_face",
|
||||
"eyes": "eyes_closed",
|
||||
"arms": "variation",
|
||||
"hands": "variation",
|
||||
"torso": "upper_body",
|
||||
"pelvis": "variation",
|
||||
"legs": "variation",
|
||||
"feet": "variation",
|
||||
"additional": "facial, bukkake, cum, cum_on_face"
|
||||
},
|
||||
"lora": {
|
||||
"lora_name": "Illustrious/Poses/before_after_1230829.safetensors",
|
||||
"lora_weight": 0.9,
|
||||
"lora_triggers": "before_after"
|
||||
},
|
||||
"tags": [
|
||||
"before_and_after",
|
||||
"2koma",
|
||||
"facial",
|
||||
"bukkake",
|
||||
"cum",
|
||||
"cum_on_face",
|
||||
"orgasm",
|
||||
"heavy_breathing",
|
||||
"upper_body",
|
||||
"split_theme"
|
||||
]
|
||||
}
|
||||
29
data/actions/belly_dancing.json
Normal file
29
data/actions/belly_dancing.json
Normal file
@@ -0,0 +1,29 @@
|
||||
{
|
||||
"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": ""
|
||||
},
|
||||
"participants": {
|
||||
"solo_focus": "false",
|
||||
"orientation": "F"
|
||||
},
|
||||
"lora": {
|
||||
"lora_name": "",
|
||||
"lora_weight": 1.0,
|
||||
"lora_triggers": ""
|
||||
},
|
||||
"tags": [
|
||||
"belly dancing",
|
||||
"dance"
|
||||
]
|
||||
}
|
||||
29
data/actions/bentback.json
Normal file
29
data/actions/bentback.json
Normal file
@@ -0,0 +1,29 @@
|
||||
{
|
||||
"action_id": "bentback",
|
||||
"action_name": "Bentback",
|
||||
"action": {
|
||||
"full_body": "bent_over, leaning_forward, from_behind",
|
||||
"head": "looking_at_viewer, looking_back",
|
||||
"eyes": "open_eyes",
|
||||
"arms": "arms_at_sides",
|
||||
"hands": "hands_on_legs",
|
||||
"torso": "twisted_torso, arched_back",
|
||||
"pelvis": "ass_focus",
|
||||
"legs": "kneepits",
|
||||
"feet": "barefoot",
|
||||
"additional": "unnatural_body"
|
||||
},
|
||||
"lora": {
|
||||
"lora_name": "Illustrious/Poses/BentBack.safetensors",
|
||||
"lora_weight": 1.0,
|
||||
"lora_triggers": "bentback, kneepits"
|
||||
},
|
||||
"tags": [
|
||||
"bent_over",
|
||||
"from_behind",
|
||||
"looking_back",
|
||||
"kneepits",
|
||||
"twisted_torso",
|
||||
"ass_focus"
|
||||
]
|
||||
}
|
||||
32
data/actions/blowjobcomicpart2.json
Normal file
32
data/actions/blowjobcomicpart2.json
Normal file
@@ -0,0 +1,32 @@
|
||||
{
|
||||
"action_id": "blowjobcomicpart2",
|
||||
"action_name": "Blowjobcomicpart2",
|
||||
"action": {
|
||||
"full_body": "3koma, comic layout, vertical panel sequence",
|
||||
"head": "tongue_out, open mouth, saliva",
|
||||
"eyes": "empty_eyes, rolled eyes",
|
||||
"arms": "arms_down or holding_head",
|
||||
"hands": "fingers_on_penis",
|
||||
"torso": "visible torso",
|
||||
"pelvis": "sexual_activity",
|
||||
"legs": "kneeling or sitting",
|
||||
"feet": "out_of_frame",
|
||||
"additional": "fellatio, irrumatio, licking_penis, ejaculation, excessive_cum"
|
||||
},
|
||||
"lora": {
|
||||
"lora_name": "Illustrious/Poses/BlowjobComicPart2.safetensors",
|
||||
"lora_weight": 1.0,
|
||||
"lora_triggers": "bjmcut"
|
||||
},
|
||||
"tags": [
|
||||
"3koma",
|
||||
"comic",
|
||||
"fellatio",
|
||||
"irrumatio",
|
||||
"licking_penis",
|
||||
"ejaculation",
|
||||
"excessive_cum",
|
||||
"empty_eyes",
|
||||
"tongue_out"
|
||||
]
|
||||
}
|
||||
30
data/actions/bodybengirl.json
Normal file
30
data/actions/bodybengirl.json
Normal file
@@ -0,0 +1,30 @@
|
||||
{
|
||||
"action_id": "bodybengirl",
|
||||
"action_name": "Bodybengirl",
|
||||
"action": {
|
||||
"full_body": "suspended_congress, lifting_person, standing",
|
||||
"head": "",
|
||||
"eyes": "",
|
||||
"arms": "reaching",
|
||||
"hands": "",
|
||||
"torso": "torso_grab, bent_over",
|
||||
"pelvis": "",
|
||||
"legs": "legs_hanging",
|
||||
"feet": "",
|
||||
"additional": "1boy, 1girl, suspended"
|
||||
},
|
||||
"lora": {
|
||||
"lora_name": "Illustrious/Poses/BodyBenGirl.safetensors",
|
||||
"lora_weight": 1.0,
|
||||
"lora_triggers": "bentstand-front, bentstand-behind"
|
||||
},
|
||||
"tags": [
|
||||
"suspended_congress",
|
||||
"torso_grab",
|
||||
"bent_over",
|
||||
"reaching",
|
||||
"standing",
|
||||
"1boy",
|
||||
"1girl"
|
||||
]
|
||||
}
|
||||
31
data/actions/bodybengirlpart2.json
Normal file
31
data/actions/bodybengirlpart2.json
Normal file
@@ -0,0 +1,31 @@
|
||||
{
|
||||
"action_id": "bodybengirlpart2",
|
||||
"action_name": "Bodybengirlpart2",
|
||||
"action": {
|
||||
"full_body": "body suspended in mid-air, held by torso, bent over forward",
|
||||
"head": "embarrassed, sweating, scared",
|
||||
"eyes": "open, looking away or down",
|
||||
"arms": "arms hanging down, limp arms, arms at sides",
|
||||
"hands": "hands open, limp",
|
||||
"torso": "torso grab, bent forward",
|
||||
"pelvis": "hips raised if bent over",
|
||||
"legs": "legs dangling, knees together, feet apart",
|
||||
"feet": "feet off ground, dangling",
|
||||
"additional": "motion lines, sweat drops"
|
||||
},
|
||||
"lora": {
|
||||
"lora_name": "Illustrious/Poses/BodyBenGirlPart2.safetensors",
|
||||
"lora_weight": 0.9,
|
||||
"lora_triggers": "bentstand-behind, dangling legs, dangling arms, from_side, arms hanging down, torso_grab, suspended"
|
||||
},
|
||||
"tags": [
|
||||
"torso_grab",
|
||||
"suspension",
|
||||
"bent_over",
|
||||
"knees_together_feet_apart",
|
||||
"arms_at_sides",
|
||||
"motion_lines",
|
||||
"embarrassed",
|
||||
"sweat"
|
||||
]
|
||||
}
|
||||
33
data/actions/bored_retrain_000115_1336316.json
Normal file
33
data/actions/bored_retrain_000115_1336316.json
Normal file
@@ -0,0 +1,33 @@
|
||||
{
|
||||
"action_id": "bored_retrain_000115_1336316",
|
||||
"action_name": "Bored Retrain 000115 1336316",
|
||||
"action": {
|
||||
"full_body": "slouching sitting posture, low energy, visually disinterested, exhibiting ennui",
|
||||
"head": "tilted to the side, resting heavily on hand, cheek squished against palm, blank or annoyed expression",
|
||||
"eyes": "half-lidded, dull gaze, looking away or staring into space, heavy eyelids",
|
||||
"arms": "elbow proped on surface, arm supporting the head, other arm dangling loosely or lying flat",
|
||||
"hands": "palm supporting chin or cheek, fingers lazily curled",
|
||||
"torso": "slumped shoulders, curved spine, leaning forward",
|
||||
"pelvis": "sitting back, relaxed weight",
|
||||
"legs": "stretched out under a table or loosely crossed",
|
||||
"feet": "resting idly",
|
||||
"additional": "sighing context, waiting, lethargic atmosphere"
|
||||
},
|
||||
"participants": {
|
||||
"solo_focus": "true",
|
||||
"orientation": "MF"
|
||||
},
|
||||
"lora": {
|
||||
"lora_name": "Illustrious/Poses/Bored_Retrain-000115_1336316.safetensors",
|
||||
"lora_weight": 1.0,
|
||||
"lora_triggers": "Bored_Retrain-000115_1336316"
|
||||
},
|
||||
"tags": [
|
||||
"boredom",
|
||||
"uninterested",
|
||||
"slouching",
|
||||
"ennui",
|
||||
"tired",
|
||||
"cheek resting on hand"
|
||||
]
|
||||
}
|
||||
33
data/actions/breast_pressh.json
Normal file
33
data/actions/breast_pressh.json
Normal file
@@ -0,0 +1,33 @@
|
||||
{
|
||||
"action_id": "breast_pressh",
|
||||
"action_name": "Breast Pressh",
|
||||
"action": {
|
||||
"full_body": "sandwiched, girl_sandwich, standing, height_difference, size_difference",
|
||||
"head": "head_between_breasts, face_between_breasts, cheek_squash",
|
||||
"eyes": "eyes_closed, squints",
|
||||
"arms": "hugging, arms_around_waist",
|
||||
"hands": "hands_on_back",
|
||||
"torso": "breast_press, chest_to_chest",
|
||||
"pelvis": "hips_touching",
|
||||
"legs": "standing, legs_apart",
|
||||
"feet": "barefoot",
|
||||
"additional": "1boy, 2girls, multiple_girls, hetero"
|
||||
},
|
||||
"lora": {
|
||||
"lora_name": "Illustrious/Poses/breast_pressH.safetensors",
|
||||
"lora_weight": 0.6,
|
||||
"lora_triggers": "breast_pressH"
|
||||
},
|
||||
"tags": [
|
||||
"height_difference",
|
||||
"girl_sandwich",
|
||||
"breast_press",
|
||||
"sandwiched",
|
||||
"size_difference",
|
||||
"head_between_breasts",
|
||||
"cheek_squash",
|
||||
"face_between_breasts",
|
||||
"1boy",
|
||||
"2girls"
|
||||
]
|
||||
}
|
||||
@@ -0,0 +1,36 @@
|
||||
{
|
||||
"action_id": "breast_smother_illustriousxl_lora_nochekaiser",
|
||||
"action_name": "Breast Smother Illustriousxl Lora Nochekaiser",
|
||||
"action": {
|
||||
"full_body": "intimate upper body POV or side view, character pressing another's face into their chest",
|
||||
"head": "tilted downwards, chin tucked, affectionate or dominant expression",
|
||||
"eyes": "looking down, half-closed, affectionate gaze",
|
||||
"arms": "wrapping around the partner's head or neck",
|
||||
"hands": "cradling the back of the head, fingers interlocked in hair, pressing face deeper",
|
||||
"torso": "leaning slightly backward, chest prominent, squished breasts, cleavage",
|
||||
"pelvis": "close contact",
|
||||
"legs": "standing or sitting, posture relaxed",
|
||||
"feet": "planted on ground",
|
||||
"additional": "face buried in breasts, chest covering face, soft lighting, skin compression"
|
||||
},
|
||||
"participants": {
|
||||
"solo_focus": "true",
|
||||
"orientation": "MF"
|
||||
},
|
||||
"lora": {
|
||||
"lora_name": "Illustrious/Poses/breast-smother-illustriousxl-lora-nochekaiser.safetensors",
|
||||
"lora_weight": 1.0,
|
||||
"lora_triggers": "breast-smother-illustriousxl-lora-nochekaiser"
|
||||
},
|
||||
"tags": [
|
||||
"breast smother",
|
||||
"buried in breasts",
|
||||
"face in cleavage",
|
||||
"motorboating",
|
||||
"breast press",
|
||||
"hugging",
|
||||
"embrace",
|
||||
"pov",
|
||||
"large breasts"
|
||||
]
|
||||
}
|
||||
@@ -0,0 +1,37 @@
|
||||
{
|
||||
"action_id": "breast_sucking_fingering_illustriousxl_lora_nochekaiser",
|
||||
"action_name": "Breast Sucking Fingering Illustriousxl Lora Nochekaiser",
|
||||
"action": {
|
||||
"full_body": "duo, sexual interaction, close-up, breast sucking, fingering, intimate embrace",
|
||||
"head": "face buried in breasts, sucking nipple, kissing breast, saliva",
|
||||
"eyes": "eyes closed, heavy breathing, blush, expression of bliss",
|
||||
"arms": "reaching down, holding partner close, arm around waist",
|
||||
"hands": "fingering, fingers inside, rubbing clitoris, squeezing breast, groping",
|
||||
"torso": "large breasts, exposed nipples, nude torso, pressing bodies",
|
||||
"pelvis": "legs spread, pussy exposed, vaginal manipulation",
|
||||
"legs": "open legs, m-legs, intertwined legs",
|
||||
"feet": "toes curled, relaxed feet",
|
||||
"additional": "saliva trail, sweat, motion lines, uncensored"
|
||||
},
|
||||
"participants": {
|
||||
"solo_focus": "true",
|
||||
"orientation": "MF"
|
||||
},
|
||||
"lora": {
|
||||
"lora_name": "Illustrious/Poses/breast-sucking-fingering-illustriousxl-lora-nochekaiser.safetensors",
|
||||
"lora_weight": 1.0,
|
||||
"lora_triggers": "breast-sucking-fingering-illustriousxl-lora-nochekaiser"
|
||||
},
|
||||
"tags": [
|
||||
"breast sucking",
|
||||
"fingering",
|
||||
"nipple suck",
|
||||
"fingers in pussy",
|
||||
"duo",
|
||||
"sexual act",
|
||||
"exposed breasts",
|
||||
"pussy juice",
|
||||
"saliva",
|
||||
"stimulation"
|
||||
]
|
||||
}
|
||||
35
data/actions/brokenglass_illusxl_incrs_v1.json
Normal file
35
data/actions/brokenglass_illusxl_incrs_v1.json
Normal file
@@ -0,0 +1,35 @@
|
||||
{
|
||||
"action_id": "brokenglass_illusxl_incrs_v1",
|
||||
"action_name": "Brokenglass Illusxl Incrs V1",
|
||||
"action": {
|
||||
"full_body": "dynamic shot of character seemingly breaking through a barrier",
|
||||
"head": "intense expression, face visible through cracks",
|
||||
"eyes": "sharp focus, wide open",
|
||||
"arms": "outstretched towards the viewer or shielding face",
|
||||
"hands": "touching the surface of the invisible wall, interacting with fragments",
|
||||
"torso": "twisted slightly to suggest impact force",
|
||||
"pelvis": "anchored or mid-air depending on angle",
|
||||
"legs": "posed dynamically to support the movement",
|
||||
"feet": "grounded or trailing",
|
||||
"additional": "foreground filled with sharp broken glass shards, spiderweb cracks glowing with light, refractive surfaces, cinematic debris"
|
||||
},
|
||||
"participants": {
|
||||
"solo_focus": "true",
|
||||
"orientation": "F"
|
||||
},
|
||||
"lora": {
|
||||
"lora_name": "Illustrious/Poses/BrokenGlass_illusXL_Incrs_v1.safetensors",
|
||||
"lora_weight": 1.0,
|
||||
"lora_triggers": "BrokenGlass_illusXL_Incrs_v1"
|
||||
},
|
||||
"tags": [
|
||||
"broken glass",
|
||||
"shattered",
|
||||
"cracked screen",
|
||||
"fragmentation",
|
||||
"glass shards",
|
||||
"impact",
|
||||
"cinematic",
|
||||
"destruction"
|
||||
]
|
||||
}
|
||||
35
data/actions/butt_smother_ag_000043.json
Normal file
35
data/actions/butt_smother_ag_000043.json
Normal file
@@ -0,0 +1,35 @@
|
||||
{
|
||||
"action_id": "butt_smother_ag_000043",
|
||||
"action_name": "Butt Smother Ag 000043",
|
||||
"action": {
|
||||
"full_body": "facesitting, character sitting on face, pov from below, dominant pose",
|
||||
"head": "looking down at viewer, looking back over shoulder",
|
||||
"eyes": "looking at viewer, half-closed eyes, seductive gaze",
|
||||
"arms": "arms reaching back, supporting weight",
|
||||
"hands": "hands spreading buttocks, hands on thighs, hands grasping victim's head",
|
||||
"torso": "back arched, leaning forward",
|
||||
"pelvis": "buttocks pressing down slightly, buttocks covering screen, heavy weight",
|
||||
"legs": "thighs straddling viewer, knees bent, spread legs",
|
||||
"feet": "feet planted on ground, toes curled",
|
||||
"additional": "extreme close-up, squished face, muffling, soft lighting on skin"
|
||||
},
|
||||
"participants": {
|
||||
"solo_focus": "true",
|
||||
"orientation": "MF"
|
||||
},
|
||||
"lora": {
|
||||
"lora_name": "Illustrious/Poses/Butt_smother_ag-000043.safetensors",
|
||||
"lora_weight": 1.0,
|
||||
"lora_triggers": "Butt_smother_ag-000043"
|
||||
},
|
||||
"tags": [
|
||||
"facesitting",
|
||||
"butt smother",
|
||||
"femdom",
|
||||
"pov",
|
||||
"big ass",
|
||||
"ass focus",
|
||||
"suffocation",
|
||||
"submissive view"
|
||||
]
|
||||
}
|
||||
35
data/actions/buttjob.json
Normal file
35
data/actions/buttjob.json
Normal file
@@ -0,0 +1,35 @@
|
||||
{
|
||||
"action_id": "buttjob",
|
||||
"action_name": "Buttjob",
|
||||
"action": {
|
||||
"full_body": "bent over, back turned to viewer, kneeling or standing",
|
||||
"head": "looking back over shoulder",
|
||||
"eyes": "looking at viewer, half-closed",
|
||||
"arms": "supporting upper body weight on cool surface or knees",
|
||||
"hands": "resting on bed, knees or holding buttocks apart",
|
||||
"torso": "arched back, leaning forward",
|
||||
"pelvis": "pushed backward, hips elevated high",
|
||||
"legs": "kneeling with thighs spread or standing bent",
|
||||
"feet": "arched or plantar flexion",
|
||||
"additional": "glutes pressed together, friction focus, skin indentation"
|
||||
},
|
||||
"participants": {
|
||||
"solo_focus": "true",
|
||||
"orientation": "MF"
|
||||
},
|
||||
"lora": {
|
||||
"lora_name": "Illustrious/Poses/buttjob.safetensors",
|
||||
"lora_weight": 1.0,
|
||||
"lora_triggers": "buttjob"
|
||||
},
|
||||
"tags": [
|
||||
"buttjob",
|
||||
"back to viewer",
|
||||
"bent over",
|
||||
"arched back",
|
||||
"kneeling",
|
||||
"ass focus",
|
||||
"glutes",
|
||||
"between buttocks"
|
||||
]
|
||||
}
|
||||
36
data/actions/carwashv2.json
Normal file
36
data/actions/carwashv2.json
Normal file
@@ -0,0 +1,36 @@
|
||||
{
|
||||
"action_id": "carwashv2",
|
||||
"action_name": "Carwashv2",
|
||||
"action": {
|
||||
"full_body": "washing_vehicle, standing, bending_over",
|
||||
"head": "wet_hair",
|
||||
"eyes": "looking_at_viewer",
|
||||
"arms": "reaching, arms_up",
|
||||
"hands": "holding_sponge, holding_hose",
|
||||
"torso": "wet_clothes, breast_press, breasts_on_glass",
|
||||
"pelvis": "shorts, denim_shorts",
|
||||
"legs": "standing, legs_apart",
|
||||
"feet": "barefoot",
|
||||
"additional": "car, motor_vehicle, soap_bubbles, outdoors, car_interior"
|
||||
},
|
||||
"lora": {
|
||||
"lora_name": "Illustrious/Poses/CarWashV2.safetensors",
|
||||
"lora_weight": 0.8,
|
||||
"lora_triggers": "w4sh1n, w4sh0ut"
|
||||
},
|
||||
"tags": [
|
||||
"car",
|
||||
"motor_vehicle",
|
||||
"washing_vehicle",
|
||||
"soap_bubbles",
|
||||
"wet",
|
||||
"wet_hair",
|
||||
"wet_clothes",
|
||||
"holding_sponge",
|
||||
"holding_hose",
|
||||
"breasts_on_glass",
|
||||
"breast_press",
|
||||
"outdoors",
|
||||
"car_interior"
|
||||
]
|
||||
}
|
||||
34
data/actions/cat_stretchill.json
Normal file
34
data/actions/cat_stretchill.json
Normal file
@@ -0,0 +1,34 @@
|
||||
{
|
||||
"action_id": "cat_stretchill",
|
||||
"action_name": "Cat Stretchill",
|
||||
"action": {
|
||||
"full_body": "kneeling, all_fours, cat_stretch, pose",
|
||||
"head": "looking_ahead, head_down",
|
||||
"eyes": "closed_eyes, trembling",
|
||||
"arms": "outstretched_arms, reaching_forward, hands_on_ground",
|
||||
"hands": "palms_down",
|
||||
"torso": "arched_back, chest_down",
|
||||
"pelvis": "hips_up, buttocks_up",
|
||||
"legs": "kneeling, knees_on_ground",
|
||||
"feet": "feet_up",
|
||||
"additional": "cat_ears, cat_tail, trembling"
|
||||
},
|
||||
"lora": {
|
||||
"lora_name": "Illustrious/Poses/cat_stretchILL.safetensors",
|
||||
"lora_weight": 0.7,
|
||||
"lora_triggers": "stretching, cat stretch, downward dog, trembling"
|
||||
},
|
||||
"tags": [
|
||||
"cat_stretch",
|
||||
"kneeling",
|
||||
"all_fours",
|
||||
"stretching",
|
||||
"arched_back",
|
||||
"outstretched_arms",
|
||||
"hands_on_ground",
|
||||
"downward_dog",
|
||||
"trembling",
|
||||
"cat_ears",
|
||||
"cat_tail"
|
||||
]
|
||||
}
|
||||
38
data/actions/caught_masturbating_illustrious.json
Normal file
38
data/actions/caught_masturbating_illustrious.json
Normal file
@@ -0,0 +1,38 @@
|
||||
{
|
||||
"action_id": "caught_masturbating_illustrious",
|
||||
"action_name": "Caught Masturbating Illustrious",
|
||||
"action": {
|
||||
"full_body": "standing in doorway, confronting viewer",
|
||||
"head": "looking down or at viewer, surprised expression, blushing",
|
||||
"eyes": "wide open, looking away or at penis",
|
||||
"arms": "arms at sides or covering mouth",
|
||||
"hands": "relaxed or raised in shock",
|
||||
"torso": "facing viewer",
|
||||
"pelvis": "standing straight",
|
||||
"legs": "standing, legs together",
|
||||
"feet": "standing on floor",
|
||||
"additional": "male pov, male masturbation in foreground, open door background"
|
||||
},
|
||||
"lora": {
|
||||
"lora_name": "Illustrious/Poses/Caught_Masturbating_ILLUSTRIOUS.safetensors",
|
||||
"lora_weight": 0.75,
|
||||
"lora_triggers": "caught, male pov, male masturbation, girl walking in door, standing in doorway"
|
||||
},
|
||||
"tags": [
|
||||
"pov",
|
||||
"male_masturbation",
|
||||
"penis",
|
||||
"erection",
|
||||
"walk-in",
|
||||
"caught",
|
||||
"doorway",
|
||||
"open_door",
|
||||
"standing",
|
||||
"surprised",
|
||||
"blush",
|
||||
"looking_at_penis",
|
||||
"looking_at_viewer",
|
||||
"wide_shot",
|
||||
"indoors"
|
||||
]
|
||||
}
|
||||
33
data/actions/charm_person_magic.json
Normal file
33
data/actions/charm_person_magic.json
Normal file
@@ -0,0 +1,33 @@
|
||||
{
|
||||
"action_id": "charm_person_magic",
|
||||
"action_name": "Charm Person Magic",
|
||||
"action": {
|
||||
"full_body": "casting_spell, standing, magical_presence",
|
||||
"head": "smile, confident_expression, glowing_eyes",
|
||||
"eyes": "looking_at_viewer, glowing_eyes",
|
||||
"arms": "outstretched_hand, reaching_towards_viewer, arms_up",
|
||||
"hands": "open_hand, hand_gesture",
|
||||
"torso": "upper_body, facing_viewer",
|
||||
"pelvis": "n/a",
|
||||
"legs": "n/a",
|
||||
"feet": "n/a",
|
||||
"additional": "aura, soft_light, magic_effects, sparkling"
|
||||
},
|
||||
"lora": {
|
||||
"lora_name": "Illustrious/Poses/charm_person_magic.safetensors",
|
||||
"lora_weight": 0.7,
|
||||
"lora_triggers": "charm_person_(magic), cham_aura"
|
||||
},
|
||||
"tags": [
|
||||
"casting_spell",
|
||||
"magic",
|
||||
"aura",
|
||||
"outstretched_hand",
|
||||
"reaching_towards_viewer",
|
||||
"glowing_eyes",
|
||||
"looking_at_viewer",
|
||||
"smile",
|
||||
"cowboy_shot",
|
||||
"solo"
|
||||
]
|
||||
}
|
||||
30
data/actions/cheekbulge.json
Normal file
30
data/actions/cheekbulge.json
Normal file
@@ -0,0 +1,30 @@
|
||||
{
|
||||
"action_id": "cheekbulge",
|
||||
"action_name": "Cheekbulge",
|
||||
"action": {
|
||||
"full_body": "fellatio",
|
||||
"head": "cheek_bulge, head_tilt, saliva",
|
||||
"eyes": "looking_up",
|
||||
"arms": "arms_behind_back",
|
||||
"hands": "hands_on_head",
|
||||
"torso": "upper_body",
|
||||
"pelvis": "kneeling",
|
||||
"legs": "kneeling",
|
||||
"feet": "plantar_flexion",
|
||||
"additional": "deepthroat, pov, penis"
|
||||
},
|
||||
"lora": {
|
||||
"lora_name": "Illustrious/Poses/cheekbulge.safetensors",
|
||||
"lora_weight": 1.0,
|
||||
"lora_triggers": "cheek bulge"
|
||||
},
|
||||
"tags": [
|
||||
"cheek_bulge",
|
||||
"deepthroat",
|
||||
"fellatio",
|
||||
"saliva",
|
||||
"head_tilt",
|
||||
"penis",
|
||||
"pov"
|
||||
]
|
||||
}
|
||||
35
data/actions/chokehold.json
Normal file
35
data/actions/chokehold.json
Normal file
@@ -0,0 +1,35 @@
|
||||
{
|
||||
"action_id": "chokehold",
|
||||
"action_name": "Chokehold",
|
||||
"action": {
|
||||
"full_body": "rear_naked_choke, from_behind, struggling, kneeling",
|
||||
"head": "head_back, expressionless, open_mouth",
|
||||
"eyes": "rolling_eyes, tearing_up, empty_eyes",
|
||||
"arms": "arm_around_neck, struggling, grabbing_arm",
|
||||
"hands": "clenched_hands, struggling",
|
||||
"torso": "leaning_forward, arched_back",
|
||||
"pelvis": "kneeling, bent_over",
|
||||
"legs": "kneeling, spread_legs",
|
||||
"feet": "barefoot, toes_curled",
|
||||
"additional": "distress, blushing, saliva, veins"
|
||||
},
|
||||
"lora": {
|
||||
"lora_name": "Illustrious/Poses/chokehold.safetensors",
|
||||
"lora_weight": 1.0,
|
||||
"lora_triggers": "choke hold"
|
||||
},
|
||||
"tags": [
|
||||
"choke_hold",
|
||||
"rear_naked_choke",
|
||||
"strangling",
|
||||
"arm_around_neck",
|
||||
"from_behind",
|
||||
"struggling",
|
||||
"head_back",
|
||||
"clenched_teeth",
|
||||
"rolling_eyes",
|
||||
"drooling",
|
||||
"saliva",
|
||||
"ohogao"
|
||||
]
|
||||
}
|
||||
37
data/actions/cleavageteasedwnsty_000008.json
Normal file
37
data/actions/cleavageteasedwnsty_000008.json
Normal file
@@ -0,0 +1,37 @@
|
||||
{
|
||||
"action_id": "cleavageteasedwnsty_000008",
|
||||
"action_name": "Cleavageteasedwnsty 000008",
|
||||
"action": {
|
||||
"full_body": "leaning_forward, sexually_suggestive",
|
||||
"head": "looking_at_viewer, smile, blush, one_eye_closed",
|
||||
"eyes": "blue_eyes, looking_at_viewer",
|
||||
"arms": "arms_bent_at_elbows",
|
||||
"hands": "hands_on_own_chest, clothes_pull, adjusting_clothes",
|
||||
"torso": "cleavage, breasts_squeezed_together, areola_slip, bare_shoulders, collarbone",
|
||||
"pelvis": "n/a",
|
||||
"legs": "n/a",
|
||||
"feet": "n/a",
|
||||
"additional": "teasing, undressing"
|
||||
},
|
||||
"lora": {
|
||||
"lora_name": "Illustrious/Poses/CleavageTeaseDwnsty-000008.safetensors",
|
||||
"lora_weight": 1.0,
|
||||
"lora_triggers": "pulling down own clothes, teasing"
|
||||
},
|
||||
"tags": [
|
||||
"clothes_pull",
|
||||
"shirt_pull",
|
||||
"teasing",
|
||||
"breasts_squeezed_together",
|
||||
"areola_slip",
|
||||
"undressing",
|
||||
"leaning_forward",
|
||||
"cleavage",
|
||||
"hands_on_own_chest",
|
||||
"collarbone",
|
||||
"bare_shoulders",
|
||||
"sexually_suggestive",
|
||||
"blush",
|
||||
"one_eye_closed"
|
||||
]
|
||||
}
|
||||
31
data/actions/closeup_facial_illus.json
Normal file
31
data/actions/closeup_facial_illus.json
Normal file
@@ -0,0 +1,31 @@
|
||||
{
|
||||
"action_id": "closeup_facial_illus",
|
||||
"action_name": "Closeup Facial Illus",
|
||||
"action": {
|
||||
"full_body": "close-up, portrait",
|
||||
"head": "facial, open_mouth, tongue, saliva, blush",
|
||||
"eyes": "looking_at_viewer, eyes_open",
|
||||
"arms": "out_of_frame",
|
||||
"hands": "out_of_frame",
|
||||
"torso": "out_of_frame",
|
||||
"pelvis": "out_of_frame",
|
||||
"legs": "out_of_frame",
|
||||
"feet": "out_of_frame",
|
||||
"additional": "nsfw, semen, cum"
|
||||
},
|
||||
"lora": {
|
||||
"lora_name": "Illustrious/Poses/Closeup_Facial_iLLus.safetensors",
|
||||
"lora_weight": 1.0,
|
||||
"lora_triggers": "Closeup Facial"
|
||||
},
|
||||
"tags": [
|
||||
"facial",
|
||||
"close-up",
|
||||
"portrait",
|
||||
"open_mouth",
|
||||
"tongue",
|
||||
"looking_at_viewer",
|
||||
"saliva",
|
||||
"blush"
|
||||
]
|
||||
}
|
||||
33
data/actions/cof.json
Normal file
33
data/actions/cof.json
Normal file
@@ -0,0 +1,33 @@
|
||||
{
|
||||
"action_id": "cof",
|
||||
"action_name": "Cum on Figure",
|
||||
"action": {
|
||||
"full_body": "figurine, mini-girl",
|
||||
"head": "",
|
||||
"eyes": "",
|
||||
"arms": "",
|
||||
"hands": "",
|
||||
"torso": "",
|
||||
"pelvis": "",
|
||||
"legs": "",
|
||||
"feet": "",
|
||||
"additional": "cum, cum on body, excessive cum, cum on face, cum on breasts, cum on chest"
|
||||
},
|
||||
"participants": {
|
||||
"solo_focus": "true",
|
||||
"orientation": "F"
|
||||
},
|
||||
"lora": {
|
||||
"lora_name": "Illustrious/Poses/cof.safetensors",
|
||||
"lora_weight": 1.0,
|
||||
"lora_triggers": "cof"
|
||||
},
|
||||
"tags": [
|
||||
"standing force",
|
||||
"carry on front",
|
||||
"carry",
|
||||
"lifting",
|
||||
"legs wrapped",
|
||||
"straddling"
|
||||
]
|
||||
}
|
||||
33
data/actions/cooperative_grinding.json
Normal file
33
data/actions/cooperative_grinding.json
Normal file
@@ -0,0 +1,33 @@
|
||||
{
|
||||
"action_id": "cooperative_grinding",
|
||||
"action_name": "Cooperative Grinding",
|
||||
"action": {
|
||||
"full_body": "duo, standing, carrying, straddling, lift and carry, legs wrapped around waist, body to body",
|
||||
"head": "head thrown back, blushing, heavy breathing, intense pleasure",
|
||||
"eyes": "eyes closed, half-closed eyes, rolled back eyes",
|
||||
"arms": "arms around neck, holding buttocks, supporting thighs, strong grip",
|
||||
"hands": "grabbing, squeezing, gripping back",
|
||||
"torso": "chest to chest, pressed together, close physical contact",
|
||||
"pelvis": "hips touching, grinding, mating press, pelvic curtain",
|
||||
"legs": "legs wrapped around, thighs spread, lifted legs",
|
||||
"feet": "dangling feet, arched toes",
|
||||
"additional": "sweat, motion lines, intimate, erotic atmosphere"
|
||||
},
|
||||
"participants": {
|
||||
"solo_focus": "false",
|
||||
"orientation": "MFF"
|
||||
},
|
||||
"lora": {
|
||||
"lora_name": "Illustrious/Poses/cooperative_grinding.safetensors",
|
||||
"lora_weight": 1.0,
|
||||
"lora_triggers": "cooperative_grinding"
|
||||
},
|
||||
"tags": [
|
||||
"standing sex",
|
||||
"carry",
|
||||
"legs wrapped around",
|
||||
"straddle",
|
||||
"grinding",
|
||||
"lift and carry"
|
||||
]
|
||||
}
|
||||
33
data/actions/cooperativepaizuri.json
Normal file
33
data/actions/cooperativepaizuri.json
Normal file
@@ -0,0 +1,33 @@
|
||||
{
|
||||
"action_id": "cooperativepaizuri",
|
||||
"action_name": "Cooperativepaizuri",
|
||||
"action": {
|
||||
"full_body": "cooperative_paizuri, 2girls, 1boy, sexual_activity",
|
||||
"head": "smile, open_mouth, facial",
|
||||
"eyes": "looking_at_partner, half_closed_eyes",
|
||||
"arms": "arms_around_neck, grabbing_penis",
|
||||
"hands": "on_penis, guiding_penis",
|
||||
"torso": "large_breasts, breasts_touching, nipples",
|
||||
"pelvis": "penis, glans, erection",
|
||||
"legs": "kneeling, straddling",
|
||||
"feet": "barefoot",
|
||||
"additional": "pov, cum_on_body, fluids"
|
||||
},
|
||||
"lora": {
|
||||
"lora_name": "Illustrious/Poses/cooperativepaizuri.safetensors",
|
||||
"lora_weight": 1.0,
|
||||
"lora_triggers": "cooperative paizuri"
|
||||
},
|
||||
"tags": [
|
||||
"cooperative_paizuri",
|
||||
"2girls",
|
||||
"1boy",
|
||||
"paizuri",
|
||||
"breasts",
|
||||
"penis",
|
||||
"facial",
|
||||
"pov",
|
||||
"from_side",
|
||||
"large_breasts"
|
||||
]
|
||||
}
|
||||
30
data/actions/covering_privates_illustrious_v1_0.json
Normal file
30
data/actions/covering_privates_illustrious_v1_0.json
Normal file
@@ -0,0 +1,30 @@
|
||||
{
|
||||
"action_id": "covering_privates_illustrious_v1_0",
|
||||
"action_name": "Covering Privates Illustrious V1 0",
|
||||
"action": {
|
||||
"full_body": "covering_privates",
|
||||
"head": "embarrassed, blush",
|
||||
"eyes": "looking_at_viewer",
|
||||
"arms": "arm_across_chest",
|
||||
"hands": "covering_breasts, covering_crotch",
|
||||
"torso": "upper_body",
|
||||
"pelvis": "hips",
|
||||
"legs": "legs_together",
|
||||
"feet": "standing",
|
||||
"additional": "modesty"
|
||||
},
|
||||
"lora": {
|
||||
"lora_name": "Illustrious/Poses/covering privates_illustrious_V1.0.safetensors",
|
||||
"lora_weight": 1.0,
|
||||
"lora_triggers": "covering privates, covering crotch, covering breasts"
|
||||
},
|
||||
"tags": [
|
||||
"covering_privates",
|
||||
"covering_breasts",
|
||||
"covering_crotch",
|
||||
"embarrassed",
|
||||
"blush",
|
||||
"arm_across_chest",
|
||||
"legs_together"
|
||||
]
|
||||
}
|
||||
24
data/actions/coveringownmouth_ill_v1.json
Normal file
24
data/actions/coveringownmouth_ill_v1.json
Normal file
@@ -0,0 +1,24 @@
|
||||
{
|
||||
"action_id": "coveringownmouth_ill_v1",
|
||||
"action_name": "Coveringownmouth Ill V1",
|
||||
"action": {
|
||||
"full_body": "character covering their mouth with their hand",
|
||||
"head": "lower face obscured by hand",
|
||||
"eyes": "neutral or expressive (depending on context)",
|
||||
"arms": "arm raised towards face",
|
||||
"hands": "hand placed over mouth, palm inward",
|
||||
"torso": "upper body visible",
|
||||
"pelvis": "variable",
|
||||
"legs": "variable",
|
||||
"feet": "variable",
|
||||
"additional": "often indicates surprise, embarrassment, or silence"
|
||||
},
|
||||
"lora": {
|
||||
"lora_name": "Illustrious/Poses/CoveringOwnMouth_Ill_V1.safetensors",
|
||||
"lora_weight": 1.0,
|
||||
"lora_triggers": "covering_own_mouth"
|
||||
},
|
||||
"tags": [
|
||||
"covering_own_mouth"
|
||||
]
|
||||
}
|
||||
@@ -0,0 +1,35 @@
|
||||
{
|
||||
"action_id": "cowgirl_position_breast_press_illustriousxl_lora_nochekaiser",
|
||||
"action_name": "Cowgirl Position Breast Press Illustriousxl Lora Nochekaiser",
|
||||
"action": {
|
||||
"full_body": "straddling pose, body leaning forward directly into the camera view",
|
||||
"head": "face close to the viewer, looking down or directly ahead",
|
||||
"eyes": "looking at viewer, intense or half-closed gaze",
|
||||
"arms": "arms extending forward or bent to support weight",
|
||||
"hands": "placed on an invisible surface or partner's chest",
|
||||
"torso": "upper body leaning forward, breasts heavily pressed and flattened against the screen/viewer",
|
||||
"pelvis": "hips wide, seated in a straddling motion",
|
||||
"legs": "knees bent, thighs spread wide apart",
|
||||
"feet": "tucked behind or out of frame",
|
||||
"additional": "pov, squish, breast deformation, intimate distance"
|
||||
},
|
||||
"participants": {
|
||||
"solo_focus": "false",
|
||||
"orientation": "MFF"
|
||||
},
|
||||
"lora": {
|
||||
"lora_name": "Illustrious/Poses/cowgirl-position-breast-press-illustriousxl-lora-nochekaiser.safetensors",
|
||||
"lora_weight": 1.0,
|
||||
"lora_triggers": "cowgirl-position-breast-press-illustriousxl-lora-nochekaiser"
|
||||
},
|
||||
"tags": [
|
||||
"cowgirl position",
|
||||
"breast press",
|
||||
"straddling",
|
||||
"pov",
|
||||
"leaning forward",
|
||||
"close-up",
|
||||
"breast deformation",
|
||||
"squish"
|
||||
]
|
||||
}
|
||||
33
data/actions/cuckold_ntr_il_nai_py.json
Normal file
33
data/actions/cuckold_ntr_il_nai_py.json
Normal file
@@ -0,0 +1,33 @@
|
||||
{
|
||||
"action_id": "cuckold_ntr_il_nai_py",
|
||||
"action_name": "Cuckold Ntr Il Nai Py",
|
||||
"action": {
|
||||
"full_body": "from behind, bent over, doggy style, looking back, pov",
|
||||
"head": "turned to look back over shoulder, face flushed, heavy breathing, expression of pleasure or distress",
|
||||
"eyes": "looking at viewer, tears, heart-shaped pupils or rolled back",
|
||||
"arms": "supporting body weight on surface",
|
||||
"hands": "gripping sheets or surface tightly",
|
||||
"torso": "arched back, leaning forward",
|
||||
"pelvis": "hips raised high, exposed",
|
||||
"legs": "kneeling, spread wide",
|
||||
"feet": "toes curled",
|
||||
"additional": "sweat, rude, messy hair, partner silhouette implied behind"
|
||||
},
|
||||
"participants": {
|
||||
"solo_focus": "true",
|
||||
"orientation": "MF"
|
||||
},
|
||||
"lora": {
|
||||
"lora_name": "Illustrious/Poses/Cuckold NTR-IL_NAI_PY.safetensors",
|
||||
"lora_weight": 1.0,
|
||||
"lora_triggers": "Cuckold NTR-IL_NAI_PY"
|
||||
},
|
||||
"tags": [
|
||||
"ntr",
|
||||
"cuckold",
|
||||
"pov",
|
||||
"from behind",
|
||||
"doggy style",
|
||||
"looking back"
|
||||
]
|
||||
}
|
||||
34
data/actions/cum_bathillustrious.json
Normal file
34
data/actions/cum_bathillustrious.json
Normal file
@@ -0,0 +1,34 @@
|
||||
{
|
||||
"action_id": "cum_bathillustrious",
|
||||
"action_name": "Cum Bathillustrious",
|
||||
"action": {
|
||||
"full_body": "reclining or sitting inside a bathtub filled with viscous white liquid, cum pool, partially submerged",
|
||||
"head": "wet hair sticking to face, flushed cheeks, steam rising",
|
||||
"eyes": "half-closed, glossy, looking at viewer",
|
||||
"arms": "resting on the rim of the bathtub or submerged",
|
||||
"hands": "coated in white fluid, dripping",
|
||||
"torso": "naked, wet skin, heavy coverage of white liquid on chest and stomach",
|
||||
"pelvis": "submerged in pool of white liquid",
|
||||
"legs": "knees bent and poking out of the liquid or spread slighty",
|
||||
"feet": "submerged",
|
||||
"additional": "tiled bathroom background, steam, excessive cum, sticky texture, overflowing tub"
|
||||
},
|
||||
"participants": {
|
||||
"solo_focus": "true",
|
||||
"orientation": "F"
|
||||
},
|
||||
"lora": {
|
||||
"lora_name": "Illustrious/Poses/cum_bathIllustrious.safetensors",
|
||||
"lora_weight": 1.0,
|
||||
"lora_triggers": "cum_bathIllustrious"
|
||||
},
|
||||
"tags": [
|
||||
"cum_bath",
|
||||
"covered_in_cum",
|
||||
"bathtub",
|
||||
"wet",
|
||||
"naked",
|
||||
"bukkake",
|
||||
"messy"
|
||||
]
|
||||
}
|
||||
33
data/actions/cum_in_cleavage_illustrious.json
Normal file
33
data/actions/cum_in_cleavage_illustrious.json
Normal file
@@ -0,0 +1,33 @@
|
||||
{
|
||||
"action_id": "cum_in_cleavage_illustrious",
|
||||
"action_name": "Cum In Cleavage Illustrious",
|
||||
"action": {
|
||||
"full_body": "passionate upper body focus, intimacy",
|
||||
"head": "blush, mouth slightly open, expression of pleasure or service",
|
||||
"eyes": "looking at viewer, potentially heavy lidded or heart-shaped pupils",
|
||||
"arms": "arms bent, hands bringing breasts together",
|
||||
"hands": "holding own breasts, squeezing or pressing breasts together",
|
||||
"torso": "bare chest, medium to large breasts, pronounced cleavage, cum pooling in cleavage",
|
||||
"pelvis": "not visible or seated",
|
||||
"legs": "not visible",
|
||||
"feet": "not visible",
|
||||
"additional": "pool of liquid in cleavage, messy, erotic context"
|
||||
},
|
||||
"lora": {
|
||||
"lora_name": "Illustrious/Poses/cum_in_cleavage_illustrious.safetensors",
|
||||
"lora_weight": 1.0,
|
||||
"lora_triggers": "cum_in_cleavage, holding own breasts"
|
||||
},
|
||||
"tags": [
|
||||
"cum_on_breasts",
|
||||
"paizuri",
|
||||
"cleavage",
|
||||
"breasts",
|
||||
"breast_lift",
|
||||
"plump",
|
||||
"mature_female",
|
||||
"short_hair",
|
||||
"black_hair",
|
||||
"indoors"
|
||||
]
|
||||
}
|
||||
35
data/actions/cum_inside_slime_v0_2.json
Normal file
35
data/actions/cum_inside_slime_v0_2.json
Normal file
@@ -0,0 +1,35 @@
|
||||
{
|
||||
"action_id": "cum_inside_slime_v0_2",
|
||||
"action_name": "Cum Inside Slime V0 2",
|
||||
"action": {
|
||||
"full_body": "front view, focus on midsection, semi-transparent body structure",
|
||||
"head": "flustered expression, open mouth, heavy blush, tongue out",
|
||||
"eyes": "rolled back, heart-shaped pupils",
|
||||
"arms": "bent at elbows, hands touching abdomen",
|
||||
"hands": "cupping lower belly, emphasizing fullness",
|
||||
"torso": "translucent skin, visible white liquid filling the stomach and womb area, slightly distended belly",
|
||||
"pelvis": "glowing with internal white fluid, see-through outer layer",
|
||||
"legs": "thighs touching, slime texture dripping",
|
||||
"feet": "standing firmly or slightly melting into floor",
|
||||
"additional": "internal cum, x-ray, cross-section, viscous liquid, glowing interior"
|
||||
},
|
||||
"participants": {
|
||||
"solo_focus": "true",
|
||||
"orientation": "MF"
|
||||
},
|
||||
"lora": {
|
||||
"lora_name": "Illustrious/Poses/Cum_inside_slime_v0.2.safetensors",
|
||||
"lora_weight": 1.0,
|
||||
"lora_triggers": "Cum_inside_slime_v0.2"
|
||||
},
|
||||
"tags": [
|
||||
"slime girl",
|
||||
"monster girl",
|
||||
"transparent skin",
|
||||
"internal cum",
|
||||
"cum filled",
|
||||
"x-ray",
|
||||
"stomach fill",
|
||||
"viscous"
|
||||
]
|
||||
}
|
||||
43
data/actions/cum_shot.json
Normal file
43
data/actions/cum_shot.json
Normal file
@@ -0,0 +1,43 @@
|
||||
{
|
||||
"action_id": "cum_shot",
|
||||
"action_name": "Cum Shot",
|
||||
"action": {
|
||||
"full_body": "portrait or upper body focus, capturing the moment of ejaculation or aftermath",
|
||||
"head": "tilted back or facing forward, expression of pleasure or shock",
|
||||
"eyes": "closed or rolling back, eyelashes detailed",
|
||||
"arms": "out of frame or hands touching face",
|
||||
"hands": "optional, touching face or wiping",
|
||||
"torso": "chest visible, potentially with cum_on_body",
|
||||
"pelvis": "usually out of frame in this context",
|
||||
"legs": "out of frame",
|
||||
"feet": "out of frame",
|
||||
"additional": "white fluids, messy, dripping, shiny skin"
|
||||
},
|
||||
"lora": {
|
||||
"lora_name": "Illustrious/Poses/cum_shot.safetensors",
|
||||
"lora_weight": 0.8,
|
||||
"lora_triggers": "cum, facial, ejaculation"
|
||||
},
|
||||
"tags": [
|
||||
"cum",
|
||||
"facial",
|
||||
"ejaculation",
|
||||
"cum_on_body",
|
||||
"cum_on_breasts",
|
||||
"cum_in_eye",
|
||||
"cum_in_mouth",
|
||||
"bukkake",
|
||||
"after_sex",
|
||||
"messy_body",
|
||||
"sticky",
|
||||
"white_fluid",
|
||||
"open_mouth",
|
||||
"tongue",
|
||||
"bukkake",
|
||||
"tongue_out",
|
||||
"saliva",
|
||||
"sweat",
|
||||
"blush",
|
||||
"ahegao"
|
||||
]
|
||||
}
|
||||
37
data/actions/cum_swap.json
Normal file
37
data/actions/cum_swap.json
Normal file
@@ -0,0 +1,37 @@
|
||||
{
|
||||
"action_id": "cum_swap",
|
||||
"action_name": "Cum Swap",
|
||||
"action": {
|
||||
"full_body": "two characters in close intimate proximity, upper bodies pressed together",
|
||||
"head": "faces close, mouths open and connected, engaging in a deep kiss",
|
||||
"eyes": "half-closed, heavy lidded, blushing cheeks",
|
||||
"arms": "embracing partner, wrapped around neck or waist",
|
||||
"hands": "cupping partner's face, holding back of head, fingers entagled in hair",
|
||||
"torso": "chests touching, leaning inward",
|
||||
"pelvis": "aligned with torso",
|
||||
"legs": "standing or sitting positions",
|
||||
"feet": "grounded or out of frame",
|
||||
"additional": "visible liquid bridge between mouths, thick white fluid transfer, saliva trail, messy chin"
|
||||
},
|
||||
"participants": {
|
||||
"solo_focus": "false",
|
||||
"orientation": "FF"
|
||||
},
|
||||
"lora": {
|
||||
"lora_name": "Illustrious/Poses/Cum_Swap.safetensors",
|
||||
"lora_weight": 1.0,
|
||||
"lora_triggers": "Cum_Swap"
|
||||
},
|
||||
"tags": [
|
||||
"cum swap",
|
||||
"mouth to mouth",
|
||||
"kissing",
|
||||
"open mouth",
|
||||
"liquid bridge",
|
||||
"saliva",
|
||||
"semen",
|
||||
"duo",
|
||||
"sharing fluids",
|
||||
"intimacy"
|
||||
]
|
||||
}
|
||||
32
data/actions/cumblastfacial.json
Normal file
32
data/actions/cumblastfacial.json
Normal file
@@ -0,0 +1,32 @@
|
||||
{
|
||||
"action_id": "cumblastfacial",
|
||||
"action_name": "Cumblastfacial",
|
||||
"action": {
|
||||
"full_body": "solo, bukkake",
|
||||
"head": "facial, head_tilt, looking_up",
|
||||
"eyes": "cum_in_eye",
|
||||
"arms": "arms_down",
|
||||
"hands": "hands_down",
|
||||
"torso": "cum_on_upper_body",
|
||||
"pelvis": "standing",
|
||||
"legs": "standing",
|
||||
"feet": "standing",
|
||||
"additional": "projectile_cum, excessive_cum, ejaculation"
|
||||
},
|
||||
"lora": {
|
||||
"lora_name": "Illustrious/Poses/cumblastfacial.safetensors",
|
||||
"lora_weight": 1.0,
|
||||
"lora_triggers": "xcbfacialx"
|
||||
},
|
||||
"tags": [
|
||||
"facial",
|
||||
"projectile_cum",
|
||||
"bukkake",
|
||||
"excessive_cum",
|
||||
"ejaculation",
|
||||
"head_tilt",
|
||||
"looking_up",
|
||||
"cum_in_eye",
|
||||
"cum_on_hair"
|
||||
]
|
||||
}
|
||||
31
data/actions/cuminhands.json
Normal file
31
data/actions/cuminhands.json
Normal file
@@ -0,0 +1,31 @@
|
||||
{
|
||||
"action_id": "cuminhands",
|
||||
"action_name": "Cuminhands",
|
||||
"action": {
|
||||
"full_body": "after_fellatio",
|
||||
"head": "facial, cum_string, cum_in_mouth",
|
||||
"eyes": "looking_at_hands",
|
||||
"arms": "arms_bent",
|
||||
"hands": "cupping_hands, cum_on_hands",
|
||||
"torso": "upper_body",
|
||||
"pelvis": "n/a",
|
||||
"legs": "n/a",
|
||||
"feet": "n/a",
|
||||
"additional": "excessive_cum"
|
||||
},
|
||||
"lora": {
|
||||
"lora_name": "Illustrious/Poses/cuminhands.safetensors",
|
||||
"lora_weight": 1.0,
|
||||
"lora_triggers": "cum on hands, cupping hands, excessive cum, cum on face, cum in mouth, cum string"
|
||||
},
|
||||
"tags": [
|
||||
"cum_on_hands",
|
||||
"cupping_hands",
|
||||
"excessive_cum",
|
||||
"facial",
|
||||
"cum_in_mouth",
|
||||
"cum_string",
|
||||
"after_fellatio",
|
||||
"looking_at_hands"
|
||||
]
|
||||
}
|
||||
34
data/actions/cumshot.json
Normal file
34
data/actions/cumshot.json
Normal file
@@ -0,0 +1,34 @@
|
||||
{
|
||||
"action_id": "cumshot",
|
||||
"action_name": "Cumshot",
|
||||
"action": {
|
||||
"full_body": "close-up portrait shot, high angle view",
|
||||
"head": "head tilted back, mouth slightly open, tongue out, face covered in white fluid",
|
||||
"eyes": "eyes closed or rolling back, expression of pleasure, wet eyelashes",
|
||||
"arms": "out of frame",
|
||||
"hands": "out of frame",
|
||||
"torso": "upper chest and collarbone visible",
|
||||
"pelvis": "kout of frame",
|
||||
"legs": "out of frame",
|
||||
"feet": "out of frame",
|
||||
"additional": "seminal fluid dripping from face, splashing liquid, thick texture, messy"
|
||||
},
|
||||
"participants": {
|
||||
"solo_focus": "true",
|
||||
"orientation": "MF"
|
||||
},
|
||||
"lora": {
|
||||
"lora_name": "Illustrious/Poses/cumshot.safetensors",
|
||||
"lora_weight": 1.0,
|
||||
"lora_triggers": "cumshot"
|
||||
},
|
||||
"tags": [
|
||||
"cum",
|
||||
"cum on face",
|
||||
"facial",
|
||||
"messy",
|
||||
"tongue out",
|
||||
"seminal fluid",
|
||||
"detailed liquid"
|
||||
]
|
||||
}
|
||||
36
data/actions/cumtube_000035.json
Normal file
36
data/actions/cumtube_000035.json
Normal file
@@ -0,0 +1,36 @@
|
||||
{
|
||||
"action_id": "cumtube_000035",
|
||||
"action_name": "Cumtube 000035",
|
||||
"action": {
|
||||
"full_body": "kneeling or sitting, leaning back slightly to receive contents of tube",
|
||||
"head": "force feeeding, feeding tube,tilted back, face directed upwards, mouth wide open, tongue extended, chaotic facial mess",
|
||||
"eyes": "looking up, anticipating expression, half-closed or rolled back",
|
||||
"arms": "raised, holding a large clear cylinder",
|
||||
"hands": "firmly grasping the sides of the tube",
|
||||
"torso": "chest pushed forward, liquid dripping down neck and chest",
|
||||
"pelvis": "kneeling, hips resting on heels",
|
||||
"legs": "legs folded underneath, knees apart",
|
||||
"feet": "toes pointed backward",
|
||||
"additional": "clear tube filled with white viscous liquid, heavy splatter, overflowing liquid, messy environment, bubbles inside tube"
|
||||
},
|
||||
"participants": {
|
||||
"solo_focus": "true",
|
||||
"orientation": "MF"
|
||||
},
|
||||
"lora": {
|
||||
"lora_name": "Illustrious/Poses/cumtube-000035.safetensors",
|
||||
"lora_weight": 1.0,
|
||||
"lora_triggers": "cumtube-000035"
|
||||
},
|
||||
"tags": [
|
||||
"cumtube",
|
||||
"viscous liquid",
|
||||
"excessive liquid",
|
||||
"facial mess",
|
||||
"pouring",
|
||||
"drinking",
|
||||
"holding object",
|
||||
"open mouth",
|
||||
"wet skin"
|
||||
]
|
||||
}
|
||||
@@ -0,0 +1,37 @@
|
||||
{
|
||||
"action_id": "cunnilingus_on_back_illustriousxl_lora_nochekaiser",
|
||||
"action_name": "Cunnilingus On Back Illustriousxl Lora Nochekaiser",
|
||||
"action": {
|
||||
"full_body": "lying, on_back, spread_legs, nude",
|
||||
"head": "torogao, blush, sweat",
|
||||
"eyes": "half-closed_eyes",
|
||||
"arms": "bent_arms",
|
||||
"hands": "hands_on_own_chest",
|
||||
"torso": "navel, nipples, sweat",
|
||||
"pelvis": "cunnilingus, pussy",
|
||||
"legs": "spread_legs, thighs",
|
||||
"feet": "",
|
||||
"additional": "on_bed, pillow, from_side"
|
||||
},
|
||||
"lora": {
|
||||
"lora_name": "Illustrious/Poses/cunnilingus-on-back-illustriousxl-lora-nochekaiser.safetensors",
|
||||
"lora_weight": 1.0,
|
||||
"lora_triggers": "cunnilingus on back"
|
||||
},
|
||||
"tags": [
|
||||
"cunnilingus",
|
||||
"lying",
|
||||
"on_back",
|
||||
"spread_legs",
|
||||
"hands_on_own_chest",
|
||||
"torogao",
|
||||
"half-closed_eyes",
|
||||
"sweat",
|
||||
"blush",
|
||||
"navel",
|
||||
"nipples",
|
||||
"hetero",
|
||||
"on_bed",
|
||||
"from_side"
|
||||
]
|
||||
}
|
||||
31
data/actions/danglinglegs.json
Normal file
31
data/actions/danglinglegs.json
Normal file
@@ -0,0 +1,31 @@
|
||||
{
|
||||
"action_id": "danglinglegs",
|
||||
"action_name": "Danglinglegs",
|
||||
"action": {
|
||||
"full_body": "suspended_congress, lifting_person, standing_sex",
|
||||
"head": "clenched_teeth, head_back",
|
||||
"eyes": "eyes_closed",
|
||||
"arms": "arms_around_neck",
|
||||
"hands": "hands_on_shoulders",
|
||||
"torso": "body_lifted",
|
||||
"pelvis": "hips_held",
|
||||
"legs": "legs_apart, feet_off_ground",
|
||||
"feet": "toes_up, barefoot",
|
||||
"additional": "size_difference, larger_male, sex_from_behind"
|
||||
},
|
||||
"lora": {
|
||||
"lora_name": "Illustrious/Poses/danglinglegs.safetensors",
|
||||
"lora_weight": 1.0,
|
||||
"lora_triggers": "dangling legs, lifted by penis, suspended on penis"
|
||||
},
|
||||
"tags": [
|
||||
"suspended_congress",
|
||||
"lifting_person",
|
||||
"standing_sex",
|
||||
"sex_from_behind",
|
||||
"size_difference",
|
||||
"toes_up",
|
||||
"barefoot",
|
||||
"clenched_teeth"
|
||||
]
|
||||
}
|
||||
41
data/actions/deep_kiss_000007.json
Normal file
41
data/actions/deep_kiss_000007.json
Normal file
@@ -0,0 +1,41 @@
|
||||
{
|
||||
"action_id": "deep_kiss_000007",
|
||||
"action_name": "Deep Kiss 000007",
|
||||
"action": {
|
||||
"full_body": "intimate couple pose, two characters kissing passionately, bodies pressed tightly together in an embrace",
|
||||
"head": "heads tilted, lips locked, mouths open, french kiss, tongue touching, cheeks flushed",
|
||||
"eyes": "eyes tightly closed, passionate expression",
|
||||
"arms": "arms wrapped around neck, arms holding waist, engulfing embrace",
|
||||
"hands": "cupping face, fingers running through hair, gripping shoulders or back",
|
||||
"torso": "chest to chest contact, breasts pressed against chest",
|
||||
"pelvis": "hips pressed together, zero distance",
|
||||
"legs": "standing close, interlocked or one leg lifted behind",
|
||||
"feet": "standing, on tiptoes",
|
||||
"additional": "saliva trail, saliva string, connecting tongue, romantic atmosphere"
|
||||
},
|
||||
"participants": {
|
||||
"solo_focus": "true",
|
||||
"orientation": "MF"
|
||||
},
|
||||
"lora": {
|
||||
"lora_name": "Illustrious/Poses/Deep_Kiss-000007.safetensors",
|
||||
"lora_weight": 1.0,
|
||||
"lora_triggers": "Deep_Kiss-000007"
|
||||
},
|
||||
"tags": [
|
||||
"deep kiss",
|
||||
"french kiss",
|
||||
"kissing",
|
||||
"tongue",
|
||||
"saliva",
|
||||
"saliva trail",
|
||||
"open mouth",
|
||||
"couple",
|
||||
"intimate",
|
||||
"romance",
|
||||
"love",
|
||||
"passionate",
|
||||
"eyes closed",
|
||||
"duo"
|
||||
]
|
||||
}
|
||||
33
data/actions/deepthroat_ponytailhandle_anime_il_v1.json
Normal file
33
data/actions/deepthroat_ponytailhandle_anime_il_v1.json
Normal file
@@ -0,0 +1,33 @@
|
||||
{
|
||||
"action_id": "deepthroat_ponytailhandle_anime_il_v1",
|
||||
"action_name": "Deepthroat Ponytailhandle Anime Il V1",
|
||||
"action": {
|
||||
"full_body": "irrumatio, fellatio, 1boy, 1girl, duo",
|
||||
"head": "forced_oral, head_back, mouth_open, saliva, drooling",
|
||||
"eyes": "crying, tears, glare, wide_eyes",
|
||||
"arms": "arms_at_sides",
|
||||
"hands": "hands_down",
|
||||
"torso": "upper_body",
|
||||
"pelvis": "n/a",
|
||||
"legs": "n/a",
|
||||
"feet": "n/a",
|
||||
"additional": "grabbing_another's_hair, penis, deepthroat, ponytail"
|
||||
},
|
||||
"lora": {
|
||||
"lora_name": "Illustrious/Poses/Deepthroat_PonytailHandle_Anime_IL_V1.safetensors",
|
||||
"lora_weight": 1.0,
|
||||
"lora_triggers": "deepthroat_ponytailhandle, grabbing another's hair, ponytail"
|
||||
},
|
||||
"tags": [
|
||||
"irrumatio",
|
||||
"deepthroat",
|
||||
"fellatio",
|
||||
"grabbing_another's_hair",
|
||||
"ponytail",
|
||||
"drooling",
|
||||
"tears",
|
||||
"crying",
|
||||
"penis",
|
||||
"forced"
|
||||
]
|
||||
}
|
||||
37
data/actions/defeat_ntr_il_nai_py.json
Normal file
37
data/actions/defeat_ntr_il_nai_py.json
Normal file
@@ -0,0 +1,37 @@
|
||||
{
|
||||
"action_id": "defeat_ntr_il_nai_py",
|
||||
"action_name": "Defeat Ntr Il Nai Py",
|
||||
"action": {
|
||||
"full_body": "kneeling on the ground, slumped forward in defeat, on hands and knees, orz pose, sex from behind",
|
||||
"head": "bowed head, looking down, face shadowed or hiding face",
|
||||
"eyes": "crying, tears, empty eyes, or eyes squeezed shut in anguish",
|
||||
"arms": "arms straight down supporting weight against the floor",
|
||||
"hands": "hands flat on the ground, palms down, or clenched fists on ground",
|
||||
"torso": "hunched back, crushed posture, leaning forward",
|
||||
"pelvis": "hips raised slightly or sitting back on heels in submission",
|
||||
"legs": "knees on ground, kneeling",
|
||||
"feet": "tops of feet flat on floor",
|
||||
"additional": "gloom, depression, dramatic shadows, humiliation, emotional devastation"
|
||||
},
|
||||
"participants": {
|
||||
"solo_focus": "true",
|
||||
"orientation": "MF"
|
||||
},
|
||||
"lora": {
|
||||
"lora_name": "Illustrious/Poses/Defeat NTR-IL_NAI_PY.safetensors",
|
||||
"lora_weight": 1.0,
|
||||
"lora_triggers": "Defeat NTR-IL_NAI_PY"
|
||||
},
|
||||
"tags": [
|
||||
"defeat",
|
||||
"on hands and knees",
|
||||
"all fours",
|
||||
"despair",
|
||||
"crying",
|
||||
"orz",
|
||||
"humiliation",
|
||||
"kneeling",
|
||||
"looking down",
|
||||
"tears"
|
||||
]
|
||||
}
|
||||
36
data/actions/defeat_suspension_il_nai_py.json
Normal file
36
data/actions/defeat_suspension_il_nai_py.json
Normal file
@@ -0,0 +1,36 @@
|
||||
{
|
||||
"action_id": "defeat_suspension_il_nai_py",
|
||||
"action_name": "Defeat Suspension Il Nai Py",
|
||||
"action": {
|
||||
"full_body": "suspended sex, holding waist, dangling legs, full body suspended in air, hanging limp, defeated posture, complete lack of resistance",
|
||||
"head": "head hanging low, chin resting on chest, looking down, neck relaxed",
|
||||
"eyes": "eyes closed, unconscious, pained expression, or empty gaze",
|
||||
"arms": "arms stretched vertically upwards, arms above head, shoulders pulled up by weight",
|
||||
"hands": "wrists bound together, hands tied overhead, handcuffs, shackles",
|
||||
"torso": "torso elongated by gravity, ribcage visible, stomach stretched",
|
||||
"pelvis": "hips sagging downwards, dead weight",
|
||||
"legs": "legs dangling freely, limp legs, knees slightly bent or hanging straight",
|
||||
"feet": "feet pointing downwards, hovering off the ground, toes dragging",
|
||||
"additional": "ropes, chains, metal hooks, dungeon background, exhaustion"
|
||||
},
|
||||
"participants": {
|
||||
"solo_focus": "true",
|
||||
"orientation": "MF"
|
||||
},
|
||||
"lora": {
|
||||
"lora_name": "Illustrious/Poses/Defeat suspension-IL_NAI_PY.safetensors",
|
||||
"lora_weight": 1.0,
|
||||
"lora_triggers": "Defeat suspension-IL_NAI_PY"
|
||||
},
|
||||
"tags": [
|
||||
"suspension",
|
||||
"hanging",
|
||||
"bound",
|
||||
"arms_up",
|
||||
"limp",
|
||||
"unconscious",
|
||||
"dangling",
|
||||
"bdsm",
|
||||
"bondage"
|
||||
]
|
||||
}
|
||||
39
data/actions/defeatspitroast_illustrious.json
Normal file
39
data/actions/defeatspitroast_illustrious.json
Normal file
@@ -0,0 +1,39 @@
|
||||
{
|
||||
"action_id": "defeatspitroast_illustrious",
|
||||
"action_name": "Defeatspitroast Illustrious",
|
||||
"action": {
|
||||
"full_body": "oral sex, vaginal, threesome, double penetration, suspended sex, dangling legs",
|
||||
"head": "tilted back or looking aside, mouth wide open, tongue sticking out, exhausted expression",
|
||||
"eyes": "rolled back, half-closed, ahegao",
|
||||
"arms": "bent at elbows, supporting upper body weight",
|
||||
"hands": "gripping the ground or sheets, clenching",
|
||||
"torso": "sweaty, deeply arched spine",
|
||||
"pelvis": "ass up, presenting rear",
|
||||
"legs": "kneeling, thighs spread wide",
|
||||
"feet": "toes curled",
|
||||
"additional": "messy hair, trembling, heavy breathing, defeated posture"
|
||||
},
|
||||
"participants": {
|
||||
"solo_focus": "true",
|
||||
"orientation": "MMF"
|
||||
},
|
||||
"lora": {
|
||||
"lora_name": "Illustrious/Poses/Defeatspitroast_Illustrious.safetensors",
|
||||
"lora_weight": 1.0,
|
||||
"lora_triggers": "Defeatspitroast_Illustrious"
|
||||
},
|
||||
"tags": [
|
||||
"doggystyle",
|
||||
"spitroast",
|
||||
"double_penetration",
|
||||
"all_fours",
|
||||
"ass_up",
|
||||
"open_mouth",
|
||||
"tongue_out",
|
||||
"ahegao",
|
||||
"sweat",
|
||||
"looking_back",
|
||||
"",
|
||||
"1girl"
|
||||
]
|
||||
}
|
||||
36
data/actions/disinterested_sex___bored_female.json
Normal file
36
data/actions/disinterested_sex___bored_female.json
Normal file
@@ -0,0 +1,36 @@
|
||||
{
|
||||
"action_id": "disinterested_sex___bored_female",
|
||||
"action_name": "Disinterested Sex Bored Female",
|
||||
"action": {
|
||||
"full_body": "female lying on back, legs spread, passive body language, completely disengaged from implicit activity",
|
||||
"head": "turned slightly or facing forward but focused on phone, resting on pillow",
|
||||
"eyes": "looking at smartphone, dull gaze, half-closed, unenthusiastic",
|
||||
"arms": "holding smartphone above face with one or both hands, elbows resting on surface",
|
||||
"hands": "holding phone, scrolling on screen",
|
||||
"torso": "lying flat, relaxed, exposed",
|
||||
"pelvis": "hips passive, legs open",
|
||||
"legs": "spread wide, knees bent, relaxed",
|
||||
"feet": "loose, resting on bed",
|
||||
"additional": "holding smartphone, checking phone, indifference, ignoring, nonchalant attitude"
|
||||
},
|
||||
"participants": {
|
||||
"solo_focus": "true",
|
||||
"orientation": "MF"
|
||||
},
|
||||
"lora": {
|
||||
"lora_name": "Illustrious/Poses/Disinterested_Sex___Bored_Female.safetensors",
|
||||
"lora_weight": 1.0,
|
||||
"lora_triggers": "Disinterested_Sex___Bored_Female"
|
||||
},
|
||||
"tags": [
|
||||
"bored",
|
||||
"disinterested",
|
||||
"looking at phone",
|
||||
"smartphone",
|
||||
"lying",
|
||||
"spread legs",
|
||||
"passive",
|
||||
"indifferent",
|
||||
"expressionless"
|
||||
]
|
||||
}
|
||||
33
data/actions/display_case_bdsm_illus.json
Normal file
33
data/actions/display_case_bdsm_illus.json
Normal file
@@ -0,0 +1,33 @@
|
||||
{
|
||||
"action_id": "display_case_bdsm_illus",
|
||||
"action_name": "Display Case Bdsm Illus",
|
||||
"action": {
|
||||
"full_body": "trapped inside a rectangular glass display case, standing or kneeling limitation, whole body confined",
|
||||
"head": "looking out through the glass, potentially gagged or expressionless",
|
||||
"eyes": "open, staring at the viewer through reflections",
|
||||
"arms": "restricted movement, potentially bound behind back or pressed against glass",
|
||||
"hands": "palms pressed against the transparent wall or tied",
|
||||
"torso": "upright relative to the container, visible behind glass",
|
||||
"pelvis": "hips aligned with the standing or kneeling posture",
|
||||
"legs": "straight or folded to fit inside the box",
|
||||
"feet": "resting on the bottom platform of the case",
|
||||
"additional": "glass reflections, airtight container aesthetic, museum or auction setting, objectification"
|
||||
},
|
||||
"participants": {
|
||||
"solo_focus": "true",
|
||||
"orientation": "F"
|
||||
},
|
||||
"lora": {
|
||||
"lora_name": "Illustrious/Poses/display_case_bdsm_illus.safetensors",
|
||||
"lora_weight": 1.0,
|
||||
"lora_triggers": "display_case_bdsm_illus"
|
||||
},
|
||||
"tags": [
|
||||
"glass box",
|
||||
"confinement",
|
||||
"exhibitionism",
|
||||
"trapped",
|
||||
"through glass",
|
||||
"human exhibit"
|
||||
]
|
||||
}
|
||||
36
data/actions/display_case_illustr.json
Normal file
36
data/actions/display_case_illustr.json
Normal file
@@ -0,0 +1,36 @@
|
||||
{
|
||||
"action_id": "display_case_illustr",
|
||||
"action_name": "Display Case Illustr",
|
||||
"action": {
|
||||
"full_body": "standing stiffly like an action figure, encased inside a rectangular transparent box",
|
||||
"head": "neutral expression, facing forward, slightly doll-like",
|
||||
"eyes": "fixed gaze, looking at viewer",
|
||||
"arms": "resting at sides or slightly bent in a static pose",
|
||||
"hands": "open palms or loosely curled, possibly pressing against the front glass",
|
||||
"torso": "facing front, rigid posture",
|
||||
"pelvis": "aligned with torso",
|
||||
"legs": "standing straight, feet positioned securely on the box base",
|
||||
"feet": "flat on the floor of the case",
|
||||
"additional": "transparent plastic packaging, cardboard backing with product design, barcode, reflections on glass, sealed box"
|
||||
},
|
||||
"participants": {
|
||||
"solo_focus": "true",
|
||||
"orientation": "F"
|
||||
},
|
||||
"lora": {
|
||||
"lora_name": "Illustrious/Poses/display_case_illustr.safetensors",
|
||||
"lora_weight": 1.0,
|
||||
"lora_triggers": "display_case_illustr"
|
||||
},
|
||||
"tags": [
|
||||
"display case",
|
||||
"action figure",
|
||||
"packaging",
|
||||
"in box",
|
||||
"plastic box",
|
||||
"collectible",
|
||||
"sealed",
|
||||
"toy",
|
||||
"transparent"
|
||||
]
|
||||
}
|
||||
33
data/actions/doggydoublefingering.json
Normal file
33
data/actions/doggydoublefingering.json
Normal file
@@ -0,0 +1,33 @@
|
||||
{
|
||||
"action_id": "doggydoublefingering",
|
||||
"action_name": "Doggydoublefingering",
|
||||
"action": {
|
||||
"full_body": "Three females arranged side-by-side in a row, all facing away from viewer or towards viewer depending on angle, engaged in group sexual activity",
|
||||
"head": "various expressions, blushing, sweating, looking back or down",
|
||||
"eyes": "open or closed in pleasure",
|
||||
"arms": "varied, gripping sheets or supporting body",
|
||||
"hands": "resting on surface or gripping",
|
||||
"torso": "leaning forward, breasts visible if from front",
|
||||
"pelvis": "hips raised, bent over",
|
||||
"legs": "kneeling on all fours",
|
||||
"feet": "resting on bed or ground",
|
||||
"additional": "center female receiving vaginal penetration from behind (doggystyle), two distinct side females being fingered simultaneously, male figure or disembodied hands performing the fingering"
|
||||
},
|
||||
"lora": {
|
||||
"lora_name": "Illustrious/Poses/DoggyDoubleFingering.safetensors",
|
||||
"lora_weight": 1.0,
|
||||
"lora_triggers": "doggydoublefingerfront, from front, 3girls, multiple girls, fingering, sex from behind, doggystyle"
|
||||
},
|
||||
"tags": [
|
||||
"3girls",
|
||||
"group_sex",
|
||||
"doggystyle",
|
||||
"fingering",
|
||||
"all_fours",
|
||||
"sex_from_behind",
|
||||
"vaginal",
|
||||
"hetero",
|
||||
"harem",
|
||||
"male_fingering"
|
||||
]
|
||||
}
|
||||
36
data/actions/dunking_face_in_a_bowl_of_cum_r1.json
Normal file
36
data/actions/dunking_face_in_a_bowl_of_cum_r1.json
Normal file
@@ -0,0 +1,36 @@
|
||||
{
|
||||
"action_id": "dunking_face_in_a_bowl_of_cum_r1",
|
||||
"action_name": "Dunking Face In A Bowl Of Cum R1",
|
||||
"action": {
|
||||
"full_body": "leaning_forward, head_down, drowning",
|
||||
"head": "face_down, air_bubble, crying, tears, embarrassed, disgust",
|
||||
"eyes": "closed_eyes, tears",
|
||||
"arms": "clutching_head, arms_up",
|
||||
"hands": "clutching_head",
|
||||
"torso": "leaning_forward",
|
||||
"pelvis": "leaning_forward",
|
||||
"legs": "standing",
|
||||
"feet": "standing",
|
||||
"additional": "bowl, cum"
|
||||
},
|
||||
"lora": {
|
||||
"lora_name": "Illustrious/Poses/Dunking_face_in_a_bowl_of_cum_r1.safetensors",
|
||||
"lora_weight": 1.0,
|
||||
"lora_triggers": "face in cum bowl, cum in bowl, cum bubble, excessive cum"
|
||||
},
|
||||
"tags": [
|
||||
"1girl",
|
||||
"solo",
|
||||
"leaning_forward",
|
||||
"head_down",
|
||||
"clutching_head",
|
||||
"drowning",
|
||||
"air_bubble",
|
||||
"crying",
|
||||
"tears",
|
||||
"embarrassed",
|
||||
"disgust",
|
||||
"bowl",
|
||||
"cum"
|
||||
]
|
||||
}
|
||||
35
data/actions/ekiben_ill_10.json
Normal file
35
data/actions/ekiben_ill_10.json
Normal file
@@ -0,0 +1,35 @@
|
||||
{
|
||||
"action_id": "ekiben_ill_10",
|
||||
"action_name": "Ekiben Ill 10",
|
||||
"action": {
|
||||
"full_body": "duo, 1boy, 1girl, standing, male lifting female, carrying, sexual position",
|
||||
"head": "looking at another, head back or looking down",
|
||||
"eyes": "eye contact or eyes closed",
|
||||
"arms": "arms supporting legs, arms around neck",
|
||||
"hands": "holding legs, grabbing thighs, gripping",
|
||||
"torso": "chest to chest, upright",
|
||||
"pelvis": "connected, groins touching",
|
||||
"legs": "spread legs, legs up, legs around waist, m-legs, bent knees",
|
||||
"feet": "dangling feet, plantar flexion",
|
||||
"additional": "strength, suspension, height difference"
|
||||
},
|
||||
"participants": {
|
||||
"solo_focus": "true",
|
||||
"orientation": "MF"
|
||||
},
|
||||
"lora": {
|
||||
"lora_name": "Illustrious/Poses/ekiben_ill-10.safetensors",
|
||||
"lora_weight": 1.0,
|
||||
"lora_triggers": "ekiben_ill-10"
|
||||
},
|
||||
"tags": [
|
||||
"ekiben",
|
||||
"lifting",
|
||||
"carrying",
|
||||
"standing",
|
||||
"spread legs",
|
||||
"holding legs",
|
||||
"duo",
|
||||
"sex"
|
||||
]
|
||||
}
|
||||
32
data/actions/elbow_squeeze__concept_lora_000008.json
Normal file
32
data/actions/elbow_squeeze__concept_lora_000008.json
Normal file
@@ -0,0 +1,32 @@
|
||||
{
|
||||
"action_id": "elbow_squeeze__concept_lora_000008",
|
||||
"action_name": "Elbow Squeeze Concept Lora 000008",
|
||||
"action": {
|
||||
"full_body": "Character standing with upper arms pressed tightly against the torso, emphasizing the chest area through the pressure of the elbows.",
|
||||
"head": "Facing forward, slightly tucked chin or tilted, expression often shy or teasing.",
|
||||
"eyes": "Looking directly at viewer.",
|
||||
"arms": "Upper arms squeezing inward against the sides of the ribs/chest, elbows tucked tight to the body.",
|
||||
"hands": "Forearms angled out or hands clasped near the navel/chest area.",
|
||||
"torso": "Chest pushed upward or compressed slightly by the lateral pressure of the arms.",
|
||||
"pelvis": "Neutral stance.",
|
||||
"legs": "Standing straight or slightly knock-kneed for a shy effect.",
|
||||
"feet": "Planted firmly.",
|
||||
"additional": "Clothing often pulled tight across the chest due to the arm position."
|
||||
},
|
||||
"participants": {
|
||||
"solo_focus": "true",
|
||||
"orientation": "MF"
|
||||
},
|
||||
"lora": {
|
||||
"lora_name": "Illustrious/Poses/Elbow_Squeeze__Concept_Lora-000008.safetensors",
|
||||
"lora_weight": 1.0,
|
||||
"lora_triggers": "Elbow_Squeeze__Concept_Lora-000008"
|
||||
},
|
||||
"tags": [
|
||||
"elbow squeeze",
|
||||
"arms at sides",
|
||||
"upper body",
|
||||
"squeezing",
|
||||
"tight clothes"
|
||||
]
|
||||
}
|
||||
34
data/actions/extreme_sex_v1_0_illustriousxl.json
Normal file
34
data/actions/extreme_sex_v1_0_illustriousxl.json
Normal file
@@ -0,0 +1,34 @@
|
||||
{
|
||||
"action_id": "extreme_sex_v1_0_illustriousxl",
|
||||
"action_name": "Extreme Sex V1 0 Illustriousxl",
|
||||
"action": {
|
||||
"full_body": "sitting, engaging in sexual activity, intense body language",
|
||||
"head": "tilted back, expression of ecstasy",
|
||||
"eyes": "rolling_eyes, loss of focus, cross-eyed (ahegao)",
|
||||
"arms": "clinging or holding partner",
|
||||
"hands": "grasping details",
|
||||
"torso": "heaving, covered in sweat",
|
||||
"pelvis": "engaged in action",
|
||||
"legs": "wrapped around or spread",
|
||||
"feet": "toes curled",
|
||||
"additional": "drooling, saliva_trail, flushing, messy_hair"
|
||||
},
|
||||
"lora": {
|
||||
"lora_name": "Illustrious/Poses/extreme-sex-v1.0-illustriousxl.safetensors",
|
||||
"lora_weight": 1.0,
|
||||
"lora_triggers": "extreme sex"
|
||||
},
|
||||
"tags": [
|
||||
"rolling_eyes",
|
||||
"ahegao",
|
||||
"drooling",
|
||||
"sweat",
|
||||
"open_mouth",
|
||||
"tongue_out",
|
||||
"messy_hair",
|
||||
"heavy_breathing",
|
||||
"blush",
|
||||
"mind_break",
|
||||
"sex"
|
||||
]
|
||||
}
|
||||
33
data/actions/face_grab_illustrious.json
Normal file
33
data/actions/face_grab_illustrious.json
Normal file
@@ -0,0 +1,33 @@
|
||||
{
|
||||
"action_id": "face_grab_illustrious",
|
||||
"action_name": "Face Grab Illustrious",
|
||||
"action": {
|
||||
"full_body": "POV close-up of a character having their face grabbed by the viewer",
|
||||
"head": "forced expression, open mouth, tongue out, pout, grabbing cheeks or chin",
|
||||
"eyes": "looking at viewer, crying, streaming tears",
|
||||
"arms": "often not visible or passive",
|
||||
"hands": "pov hands, hand grabbing face",
|
||||
"torso": "upper body, often nude or partially visible",
|
||||
"pelvis": "usually out of frame",
|
||||
"legs": "out of frame",
|
||||
"feet": "out of frame",
|
||||
"additional": "context often after fellatio with fluids on face or tongue"
|
||||
},
|
||||
"lora": {
|
||||
"lora_name": "Illustrious/Poses/face_grab_illustrious.safetensors",
|
||||
"lora_weight": 0.5,
|
||||
"lora_triggers": "fcgrb, face grab, grabbing another's face, pov, pov hand, open mouth, tongue out"
|
||||
},
|
||||
"tags": [
|
||||
"grabbing_another's_face",
|
||||
"pov",
|
||||
"pov_hands",
|
||||
"after_fellatio",
|
||||
"cum_on_tongue",
|
||||
"open_mouth",
|
||||
"tongue_out",
|
||||
"pout",
|
||||
"streaming_tears",
|
||||
"cheek_pinching"
|
||||
]
|
||||
}
|
||||
37
data/actions/facesit_08.json
Normal file
37
data/actions/facesit_08.json
Normal file
@@ -0,0 +1,37 @@
|
||||
{
|
||||
"action_id": "facesit_08",
|
||||
"action_name": "Facesit 08",
|
||||
"action": {
|
||||
"full_body": "sitting_on_face, cunnilingus, oral",
|
||||
"head": "looking_at_viewer, looking_down",
|
||||
"eyes": "looking_at_viewer",
|
||||
"arms": "head_grab",
|
||||
"hands": "on_head",
|
||||
"torso": "nude, close-up",
|
||||
"pelvis": "panties_aside, clitoris, pussy_juice",
|
||||
"legs": "spread_legs",
|
||||
"feet": "out_of_frame",
|
||||
"additional": "yuri, female_pov, 2girls"
|
||||
},
|
||||
"lora": {
|
||||
"lora_name": "Illustrious/Poses/facesit-08.safetensors",
|
||||
"lora_weight": 0.8,
|
||||
"lora_triggers": "2girls, female pov, close-up, looking at viewer, sitting on face, oral, cunnilingus, spread legs, pussy juice, clitoris"
|
||||
},
|
||||
"tags": [
|
||||
"2girls",
|
||||
"female_pov",
|
||||
"close-up",
|
||||
"looking_at_viewer",
|
||||
"sitting_on_face",
|
||||
"oral",
|
||||
"cunnilingus",
|
||||
"spread_legs",
|
||||
"pussy_juice",
|
||||
"clitoris",
|
||||
"yuri",
|
||||
"panties_aside",
|
||||
"head_grab",
|
||||
"looking_down"
|
||||
]
|
||||
}
|
||||
37
data/actions/facial_bukkake.json
Normal file
37
data/actions/facial_bukkake.json
Normal file
@@ -0,0 +1,37 @@
|
||||
{
|
||||
"action_id": "facial_bukkake",
|
||||
"action_name": "Facial Bukkake",
|
||||
"action": {
|
||||
"full_body": "close-up portrait shot, focus primarily on the face and neck area",
|
||||
"head": "tilted slightly backward, mouth open or tongue out, face heavily covered in white liquid",
|
||||
"eyes": "closed or looking upward, eyelashes wet/clumped",
|
||||
"arms": "out of frame or hands interacting with face/hair",
|
||||
"hands": "holding hair back or wiping cheek",
|
||||
"torso": "upper chest or shoulders visible, possibly stained",
|
||||
"pelvis": "not visible",
|
||||
"legs": "not visible",
|
||||
"feet": "not visible",
|
||||
"additional": "streaming white liquid, dripping, messy, wet skin texture, high viscosity"
|
||||
},
|
||||
"participants": {
|
||||
"solo_focus": "true",
|
||||
"orientation": "F"
|
||||
},
|
||||
"lora": {
|
||||
"lora_name": "Illustrious/Poses/facial_bukkake.safetensors",
|
||||
"lora_weight": 1.0,
|
||||
"lora_triggers": "facial_bukkake"
|
||||
},
|
||||
"tags": [
|
||||
"bukkake",
|
||||
"facial",
|
||||
"cum on face",
|
||||
"semen",
|
||||
"messy",
|
||||
"white liquid",
|
||||
"cum in eyes",
|
||||
"cum in mouth",
|
||||
"splatter",
|
||||
"after sex"
|
||||
]
|
||||
}
|
||||
@@ -0,0 +1,35 @@
|
||||
{
|
||||
"action_id": "fellatio_from_below_illustriousxl_lora_nochekaiser",
|
||||
"action_name": "Fellatio From Below Illustriousxl Lora Nochekaiser",
|
||||
"action": {
|
||||
"full_body": "squatting, fellatio, from_below",
|
||||
"head": "facing_viewer, open_mouth",
|
||||
"eyes": "looking_down",
|
||||
"arms": "arms_visible",
|
||||
"hands": "hands_visible",
|
||||
"torso": "nude, navel, nipples",
|
||||
"pelvis": "nude, pussy, spread_legs",
|
||||
"legs": "squatting, bent_legs",
|
||||
"feet": "feet_visible",
|
||||
"additional": "penis, testicles, oral, sweat, cum"
|
||||
},
|
||||
"lora": {
|
||||
"lora_name": "Illustrious/Poses/fellatio-from-below-illustriousxl-lora-nochekaiser.safetensors",
|
||||
"lora_weight": 1.0,
|
||||
"lora_triggers": "fellatio from below, fellatio, from below, squatting, hetero, penis, testicles, completely nude, oral"
|
||||
},
|
||||
"tags": [
|
||||
"fellatio",
|
||||
"from_below",
|
||||
"squatting",
|
||||
"penis",
|
||||
"testicles",
|
||||
"completely_nude",
|
||||
"hetero",
|
||||
"oral",
|
||||
"navel",
|
||||
"nipples",
|
||||
"sweat",
|
||||
"pussy"
|
||||
]
|
||||
}
|
||||
@@ -0,0 +1,37 @@
|
||||
{
|
||||
"action_id": "fellatio_on_couch_illustriousxl_lora_nochekaiser",
|
||||
"action_name": "Fellatio On Couch Illustriousxl Lora Nochekaiser",
|
||||
"action": {
|
||||
"full_body": "fellatio, sitting, on_couch, hetero, oral",
|
||||
"head": "blush, sweat, head_down",
|
||||
"eyes": "looking_down, eyes_closed",
|
||||
"arms": "arms_at_side",
|
||||
"hands": "hands_on_legs",
|
||||
"torso": "breast_press, nipples, nude, leaning_forward",
|
||||
"pelvis": "sitting, nude",
|
||||
"legs": "sitting, legs_apart",
|
||||
"feet": "feet_on_floor",
|
||||
"additional": "couch, penis, testicles, uncensored"
|
||||
},
|
||||
"lora": {
|
||||
"lora_name": "Illustrious/Poses/fellatio-on-couch-illustriousxl-lora-nochekaiser.safetensors",
|
||||
"lora_weight": 1.0,
|
||||
"lora_triggers": "fellatio on couch, hetero, penis, oral, sitting, fellatio, testicles, blush, couch, sweat, breast press, nipples, completely nude, uncensored"
|
||||
},
|
||||
"tags": [
|
||||
"fellatio",
|
||||
"on_couch",
|
||||
"hetero",
|
||||
"penis",
|
||||
"oral",
|
||||
"sitting",
|
||||
"testicles",
|
||||
"blush",
|
||||
"sweat",
|
||||
"breast_press",
|
||||
"nipples",
|
||||
"nude",
|
||||
"uncensored",
|
||||
"couch"
|
||||
]
|
||||
}
|
||||
34
data/actions/femdom_face_between_breasts.json
Normal file
34
data/actions/femdom_face_between_breasts.json
Normal file
@@ -0,0 +1,34 @@
|
||||
{
|
||||
"action_id": "femdom_face_between_breasts",
|
||||
"action_name": "Femdom Face Between Breasts",
|
||||
"action": {
|
||||
"full_body": "upper body view, female character pressing a person's face into her chest",
|
||||
"head": "looking down, chin tucked, dominant expression",
|
||||
"eyes": "narrowed, looking down at the person",
|
||||
"arms": "wrapping around the person's head, holding head firmly",
|
||||
"hands": "fingers tangled in hair, or pressing the back of the head",
|
||||
"torso": "chest pushed forward, breasts pressed tightly together around a face",
|
||||
"pelvis": "neutral alignment",
|
||||
"legs": "standing or sitting",
|
||||
"feet": "not visible",
|
||||
"additional": "male face buried in breasts, squished face, soft lighting, close-up"
|
||||
},
|
||||
"participants": {
|
||||
"solo_focus": "true",
|
||||
"orientation": "MF"
|
||||
},
|
||||
"lora": {
|
||||
"lora_name": "Illustrious/Poses/femdom_face_between_breasts.safetensors",
|
||||
"lora_weight": 1.0,
|
||||
"lora_triggers": "femdom_face_between_breasts"
|
||||
},
|
||||
"tags": [
|
||||
"breast smother",
|
||||
"buried in breasts",
|
||||
"face between breasts",
|
||||
"facesitting",
|
||||
"femdom",
|
||||
"big breasts",
|
||||
"cleavage"
|
||||
]
|
||||
}
|
||||
32
data/actions/femdom_held_down_illust.json
Normal file
32
data/actions/femdom_held_down_illust.json
Normal file
@@ -0,0 +1,32 @@
|
||||
{
|
||||
"action_id": "femdom_held_down_illust",
|
||||
"action_name": "Femdom Held Down Illust",
|
||||
"action": {
|
||||
"full_body": "girl_on_top, straddling, lying_on_back",
|
||||
"head": "looking_down, looking_at_another",
|
||||
"eyes": "forced_eye_contact",
|
||||
"arms": "holding_another's_wrists, arms_above_head",
|
||||
"hands": "grab, clenched_hands",
|
||||
"torso": "on_back",
|
||||
"pelvis": "straddled",
|
||||
"legs": "spread_legs",
|
||||
"feet": "barefoot",
|
||||
"additional": "femdom, struggling, pinned, assertive_female"
|
||||
},
|
||||
"lora": {
|
||||
"lora_name": "Illustrious/Poses/Femdom_Held_Down_Illust.safetensors",
|
||||
"lora_weight": 0.8,
|
||||
"lora_triggers": "fdom_held"
|
||||
},
|
||||
"tags": [
|
||||
"femdom",
|
||||
"assertive_female",
|
||||
"rough_sex",
|
||||
"girl_on_top",
|
||||
"straddling",
|
||||
"holding_another's_wrists",
|
||||
"lying_on_back",
|
||||
"pinned",
|
||||
"struggling"
|
||||
]
|
||||
}
|
||||
@@ -0,0 +1,35 @@
|
||||
{
|
||||
"action_id": "fertilization_illustriousxl_lora_nochekaiser",
|
||||
"action_name": "Fertilization Illustriousxl Lora Nochekaiser",
|
||||
"action": {
|
||||
"full_body": "sex, vaginal, on_bed, nude, cowboy_shot",
|
||||
"head": "ahegao, blush, open_mouth, head_back",
|
||||
"eyes": "rolled_eyes, half_closed_eyes",
|
||||
"arms": "arms_at_sides",
|
||||
"hands": "clenched_hands",
|
||||
"torso": "nude, nipples, navel",
|
||||
"pelvis": "pussy, cum_in_pussy, internal_cumshot, penis, hetero",
|
||||
"legs": "spread_legs, legs_up",
|
||||
"feet": "bare_feet",
|
||||
"additional": "cross-section, fertilization, impregnation, uterus, ovum, sperm_cell, ovaries, ejaculation"
|
||||
},
|
||||
"lora": {
|
||||
"lora_name": "Illustrious/Poses/fertilization-illustriousxl-lora-nochekaiser.safetensors",
|
||||
"lora_weight": 1.0,
|
||||
"lora_triggers": "fertilization, ovum, impregnation, sperm cell, cross-section, cum in pussy, internal cumshot, uterus, cum, sex, vaginal, ovaries, penis, hetero, ejaculation"
|
||||
},
|
||||
"tags": [
|
||||
"fertilization",
|
||||
"cross-section",
|
||||
"ovum",
|
||||
"sperm_cell",
|
||||
"impregnation",
|
||||
"uterus",
|
||||
"internal_cumshot",
|
||||
"cum_in_pussy",
|
||||
"vaginal",
|
||||
"ovaries",
|
||||
"ahegao",
|
||||
"on_bed"
|
||||
]
|
||||
}
|
||||
33
data/actions/fff_imminent_masturbation.json
Normal file
33
data/actions/fff_imminent_masturbation.json
Normal file
@@ -0,0 +1,33 @@
|
||||
{
|
||||
"action_id": "fff_imminent_masturbation",
|
||||
"action_name": "Fff Imminent Masturbation",
|
||||
"action": {
|
||||
"full_body": "hand_on_own_crotch, trembling, legs_together, knock-kneed",
|
||||
"head": "heavy_breathing, sweating, looking_down",
|
||||
"eyes": "narrowed_eyes, half-closed_eyes, dilated_pupils",
|
||||
"arms": "arms_down, hand_between_legs",
|
||||
"hands": "hand_on_own_crotch, squeezing, rubbing_crotch",
|
||||
"torso": "arched_back, squirming",
|
||||
"pelvis": "hips_forward",
|
||||
"legs": "legs_together, knock-kneed",
|
||||
"feet": "standing",
|
||||
"additional": "clothed_masturbation, urgency, arousal, through_clothes"
|
||||
},
|
||||
"lora": {
|
||||
"lora_name": "Illustrious/Poses/FFF_imminent_masturbation.safetensors",
|
||||
"lora_weight": 1.0,
|
||||
"lora_triggers": "FFF_grabbing_own_crotch, trembling, sweat, breath, imminent_masturbation"
|
||||
},
|
||||
"tags": [
|
||||
"hand_on_own_crotch",
|
||||
"heavy_breathing",
|
||||
"trembling",
|
||||
"sweat",
|
||||
"blush",
|
||||
"legs_together",
|
||||
"clothed_masturbation",
|
||||
"hand_between_legs",
|
||||
"aroused",
|
||||
"rubbing_crotch"
|
||||
]
|
||||
}
|
||||
37
data/actions/ffm3some_footjob_efeme3ftfe_il_1475115.json
Normal file
37
data/actions/ffm3some_footjob_efeme3ftfe_il_1475115.json
Normal file
@@ -0,0 +1,37 @@
|
||||
{
|
||||
"action_id": "ffm3some_footjob_efeme3ftfe_il_1475115",
|
||||
"action_name": "Ffm3Some Footjob Efeme3Ftfe Il 1475115",
|
||||
"action": {
|
||||
"full_body": "FFM threesome scenario, one male lying on back receiving stimulation, two females sitting or reclining near his, performing a double footjob",
|
||||
"head": "females looking down at their feet, male head bathed in pleasure, expressions of focus and arousal",
|
||||
"eyes": "looking at penis, eyes closed, eye contact with male",
|
||||
"arms": "females arms resting behind them for support or on their own legs",
|
||||
"hands": "hands resting on bed sheets, gripping sheets, or touching own legs",
|
||||
"torso": "male torso exposed supine, females upper bodies leaning back or sitting upright",
|
||||
"pelvis": "hips positioned to extend legs towards the male",
|
||||
"legs": "females legs extended towards center, male legs spread or straight",
|
||||
"feet": "barefoot, soles rubbing against penis, toes curling, sandwiching penis between feet, four feet visible",
|
||||
"additional": "indoors, bed, crumpled sheets, sexual activity, multiple partners"
|
||||
},
|
||||
"participants": {
|
||||
"solo_focus": "false",
|
||||
"orientation": "FFM"
|
||||
},
|
||||
"lora": {
|
||||
"lora_name": "Illustrious/Poses/FFM3SOME-footjob-EFEME3ftfe-IL_1475115.safetensors",
|
||||
"lora_weight": 1.0,
|
||||
"lora_triggers": "FFM3SOME-footjob-EFEME3ftfe-IL_1475115"
|
||||
},
|
||||
"tags": [
|
||||
"footjob",
|
||||
"ffm",
|
||||
"threesome",
|
||||
"2girls",
|
||||
"1boy",
|
||||
"soles",
|
||||
"barefoot",
|
||||
"legs",
|
||||
"penis",
|
||||
"sexual"
|
||||
]
|
||||
}
|
||||
@@ -0,0 +1,38 @@
|
||||
{
|
||||
"action_id": "ffm_threesome___kiss_and_fellatio_illustrious",
|
||||
"action_name": "Ffm Threesome Kiss And Fellatio Illustrious",
|
||||
"action": {
|
||||
"full_body": "ffm_threesome, 2girls, 1boy, group_sex, sandwich_position",
|
||||
"head": "kissing, sucking, head_grab",
|
||||
"eyes": "closed_eyes, looking_at_partner",
|
||||
"arms": "arms_around_neck, holding_penis, hand_on_head",
|
||||
"hands": "stroking",
|
||||
"torso": "leaning_forward, physical_contact",
|
||||
"pelvis": "sitting, straddling",
|
||||
"legs": "kneeling, spread_legs",
|
||||
"feet": "barefoot",
|
||||
"additional": "indoor, couch, faceless_male, saliva, blush"
|
||||
},
|
||||
"lora": {
|
||||
"lora_name": "Illustrious/Poses/FFM_threesome_-_Kiss_and_Fellatio_Illustrious.safetensors",
|
||||
"lora_weight": 1.0,
|
||||
"lora_triggers": "ffm_threesome_kiss_and_fellatio"
|
||||
},
|
||||
"tags": [
|
||||
"2girls",
|
||||
"1boy",
|
||||
"ffm_threesome",
|
||||
"group_sex",
|
||||
"hetero",
|
||||
"kissing",
|
||||
"fellatio",
|
||||
"faceless_male",
|
||||
"sitting",
|
||||
"couch",
|
||||
"indoor",
|
||||
"nude",
|
||||
"blush",
|
||||
"saliva",
|
||||
"sandwich_position"
|
||||
]
|
||||
}
|
||||
@@ -0,0 +1,37 @@
|
||||
{
|
||||
"action_id": "ffm_threesome_doggy_style_front_view_illustrious",
|
||||
"action_name": "Ffm Threesome Doggy Style Front View Illustrious",
|
||||
"action": {
|
||||
"full_body": "threesome, 2girls, 1boy, doggy style, all fours, kneeling, from front, bodies overlapping",
|
||||
"head": "looking at viewer, head raised, blushing, sweating, tongues out",
|
||||
"eyes": "open eyes, heart-shaped pupils, eye contact",
|
||||
"arms": "arms straight, supporting weight, hands on ground",
|
||||
"hands": "palms flat, fingers spread, on bed sheet",
|
||||
"torso": "leaning forward, arched back, breasts hanging",
|
||||
"pelvis": "hips raised high, buttocks touching",
|
||||
"legs": "knees bent, kneeling, legs spread",
|
||||
"feet": "toes curled, feet relaxed",
|
||||
"additional": "sex, penetration, vaginal, motion lines, saliva trail, indoors, bed"
|
||||
},
|
||||
"participants": {
|
||||
"solo_focus": "false",
|
||||
"orientation": "FFM"
|
||||
},
|
||||
"lora": {
|
||||
"lora_name": "Illustrious/Poses/FFM_Threesome_doggy_style_front_view_Illustrious.safetensors",
|
||||
"lora_weight": 1.0,
|
||||
"lora_triggers": "FFM_Threesome_doggy_style_front_view_Illustrious"
|
||||
},
|
||||
"tags": [
|
||||
"threesome",
|
||||
"2girls",
|
||||
"1boy",
|
||||
"doggy style",
|
||||
"from front",
|
||||
"all fours",
|
||||
"sex",
|
||||
"penetration",
|
||||
"blush",
|
||||
"sweat"
|
||||
]
|
||||
}
|
||||
@@ -0,0 +1,40 @@
|
||||
{
|
||||
"action_id": "ffm_threesome_girl_sandwichdouble_dip_illustrious",
|
||||
"action_name": "Ffm Threesome Girl Sandwichdouble Dip Illustrious",
|
||||
"action": {
|
||||
"full_body": "Three-person stack on a bed: one girl lying flat on her back, the male (often faceless/obscured) positioned in the middle, and the second girl straddling on top of the pile.",
|
||||
"head": "Girls' faces visible, often with flushed cheeks or ahegao expressions; male face usually out of frame or obscured.",
|
||||
"eyes": "rolled_back, closed_eyes, or looking_at_viewer",
|
||||
"arms": "Arms embracing the partner in the middle or holding bed sheets.",
|
||||
"hands": "grabbing_sheet or touching_partner",
|
||||
"torso": "Sandwiched torsos, breasts pressed against the middle partner.",
|
||||
"pelvis": "Interconnected pelvises, implied penetration.",
|
||||
"legs": "Bottom girl with legs_spread, top girl straddling.",
|
||||
"feet": "barefoot",
|
||||
"additional": "Scene typically set on a bed with messy sheets."
|
||||
},
|
||||
"lora": {
|
||||
"lora_name": "Illustrious/Poses/FFM_threesome_girl_sandwichdouble_dip_Illustrious.safetensors",
|
||||
"lora_weight": 1.0,
|
||||
"lora_triggers": "ffm_threesome_double_dip"
|
||||
},
|
||||
"tags": [
|
||||
"ffm_threesome",
|
||||
"group_sex",
|
||||
"sandwiched",
|
||||
"2girls",
|
||||
"1boy",
|
||||
"girl_on_top",
|
||||
"on_back",
|
||||
"lying",
|
||||
"straddling",
|
||||
"faceless_male",
|
||||
"male_on_top",
|
||||
"stack",
|
||||
"sex",
|
||||
"implied_penetration",
|
||||
"ahegao",
|
||||
"bed_sheet",
|
||||
"messy_bed"
|
||||
]
|
||||
}
|
||||
38
data/actions/ffm_threesome_one_girl_on_top_and_bj.json
Normal file
38
data/actions/ffm_threesome_one_girl_on_top_and_bj.json
Normal file
@@ -0,0 +1,38 @@
|
||||
{
|
||||
"action_id": "ffm_threesome_one_girl_on_top_and_bj",
|
||||
"action_name": "Ffm Threesome One Girl On Top And Bj",
|
||||
"action": {
|
||||
"full_body": "ffm_threesome, cowgirl_position, straddling, lying, on_back",
|
||||
"head": "blush, half-closed_eyes",
|
||||
"eyes": "half-closed_eyes",
|
||||
"arms": "arms_at_sides",
|
||||
"hands": "hands_on_chest",
|
||||
"torso": "nude, breasts",
|
||||
"pelvis": "legs_apart, straddling",
|
||||
"legs": "kneeling, bent_legs",
|
||||
"feet": "barefoot",
|
||||
"additional": "fellatio, licking, penis, testicles, size_difference, 2girls, 1boy"
|
||||
},
|
||||
"lora": {
|
||||
"lora_name": "Illustrious/Poses/FFM_threesome_one_girl_on_top_and_BJ.safetensors",
|
||||
"lora_weight": 1.0,
|
||||
"lora_triggers": "ffm_threesome_straddling_fellatio"
|
||||
},
|
||||
"tags": [
|
||||
"ffm_threesome",
|
||||
"cowgirl_position",
|
||||
"fellatio",
|
||||
"straddling",
|
||||
"2girls",
|
||||
"1boy",
|
||||
"reaction",
|
||||
"lying",
|
||||
"on_back",
|
||||
"nude",
|
||||
"sex",
|
||||
"penis",
|
||||
"testicles",
|
||||
"erotic",
|
||||
"cum"
|
||||
]
|
||||
}
|
||||
39
data/actions/ffmnursinghandjob_ill_v3.json
Normal file
39
data/actions/ffmnursinghandjob_ill_v3.json
Normal file
@@ -0,0 +1,39 @@
|
||||
{
|
||||
"action_id": "ffmnursinghandjob_ill_v3",
|
||||
"action_name": "Ffmnursinghandjob Ill V3",
|
||||
"action": {
|
||||
"full_body": "threesome, 2girls, 1boy, ffm, male lying on back, two females kneeling or straddling",
|
||||
"head": "blushing faces, looking down, ecstatic expressions, tongue out",
|
||||
"eyes": "half-closed eyes, heart-shaped pupils, looking at penis",
|
||||
"arms": "holding breasts, offering breast, reaching for penis",
|
||||
"hands": "double handjob, stroking penis, squeezing breasts",
|
||||
"torso": "exposed breasts, leaning forward, nipples visible",
|
||||
"pelvis": "hips positioned near male's face or chest",
|
||||
"legs": "kneeling, spread legs",
|
||||
"feet": "barefoot",
|
||||
"additional": "lactation, breast milk, saliva string, messy"
|
||||
},
|
||||
"participants": {
|
||||
"solo_focus": "false",
|
||||
"orientation": "FFM"
|
||||
},
|
||||
"lora": {
|
||||
"lora_name": "Illustrious/Poses/ffmNursingHandjob_ill_v3.safetensors",
|
||||
"lora_weight": 1.0,
|
||||
"lora_triggers": "ffmNursingHandjob_ill_v3"
|
||||
},
|
||||
"tags": [
|
||||
"threesome",
|
||||
"2girls",
|
||||
"1boy",
|
||||
"ffm",
|
||||
"handjob",
|
||||
"double_handjob",
|
||||
"nursing",
|
||||
"breast_feeding",
|
||||
"lactation",
|
||||
"breast_milk",
|
||||
"big_breasts",
|
||||
"kneeling"
|
||||
]
|
||||
}
|
||||
33
data/actions/finish_blow_ill_v0_90_000004.json
Normal file
33
data/actions/finish_blow_ill_v0_90_000004.json
Normal file
@@ -0,0 +1,33 @@
|
||||
{
|
||||
"action_id": "finish_blow_ill_v0_90_000004",
|
||||
"action_name": "Finish Blow Ill V0 90 000004",
|
||||
"action": {
|
||||
"full_body": "highly dynamic combat pose, delivering a final powerful strike, lunging forward or mid-air jump",
|
||||
"head": "intense battle expression, shouting or gritted teeth, hair flowing with motion",
|
||||
"eyes": "fierce gaze, focused on target, angry eyes",
|
||||
"arms": "swinging wildy, outstretched with weapon, motion blur on limbs",
|
||||
"hands": "tightly gripping weapon, two-handed grip, or clenched fist",
|
||||
"torso": "twisted torso for momentum, leaning into the attack",
|
||||
"pelvis": "hips rotated to generate power, low center of gravity",
|
||||
"legs": "wide stance, knees bent, dynamic foreshortening",
|
||||
"feet": "planted firmly on ground or pointed in air, debris kicks up",
|
||||
"additional": "light trails, speed lines, impact effects, shockwaves, cinematic lighting, dutch angle, weapon smear"
|
||||
},
|
||||
"participants": {
|
||||
"solo_focus": "true",
|
||||
"orientation": "MF"
|
||||
},
|
||||
"lora": {
|
||||
"lora_name": "Illustrious/Poses/finish_blow_ill_v0.90-000004.safetensors",
|
||||
"lora_weight": 1.0,
|
||||
"lora_triggers": "finish_blow_ill_v0.90-000004"
|
||||
},
|
||||
"tags": [
|
||||
"action shot",
|
||||
"fighting",
|
||||
"masterpiece",
|
||||
"motion blur",
|
||||
"intense",
|
||||
"cinematic composition"
|
||||
]
|
||||
}
|
||||
34
data/actions/fixed_perspective_v3_1558768.json
Normal file
34
data/actions/fixed_perspective_v3_1558768.json
Normal file
@@ -0,0 +1,34 @@
|
||||
{
|
||||
"action_id": "fixed_perspective_v3_1558768",
|
||||
"action_name": "Fixed Perspective V3 1558768",
|
||||
"action": {
|
||||
"full_body": "Character positioned with exaggerated depth, utilizing strong foreshortening to create a 3D effect aimed at the viewer",
|
||||
"head": "Face centered and close to the camera, looking directly at the viewer",
|
||||
"eyes": "Intense eye contact, detailed eyes",
|
||||
"arms": "One or both arms reaching towards the lens, appearing larger due to perspective",
|
||||
"hands": "Enlarged hands/fingers reaching out (foreshortened)",
|
||||
"torso": "Angled to recede into the background",
|
||||
"pelvis": "Visually smaller, further back",
|
||||
"legs": "Trailing off into the distance, significantly smaller than the upper body",
|
||||
"feet": "Small or out of frame due to depth",
|
||||
"additional": "Fisheye lens effect, dramatic camera angle, depth of field, high distortion, 3D composition"
|
||||
},
|
||||
"participants": {
|
||||
"solo_focus": "true",
|
||||
"orientation": "MF"
|
||||
},
|
||||
"lora": {
|
||||
"lora_name": "Illustrious/Poses/fixed_perspective_v3_1558768.safetensors",
|
||||
"lora_weight": 1.0,
|
||||
"lora_triggers": "fixed_perspective_v3_1558768"
|
||||
},
|
||||
"tags": [
|
||||
"foreshortening",
|
||||
"perspective",
|
||||
"fisheye",
|
||||
"reaching",
|
||||
"dynamic angle",
|
||||
"portrait",
|
||||
"depth of field"
|
||||
]
|
||||
}
|
||||
31
data/actions/fixed_point_v2.json
Normal file
31
data/actions/fixed_point_v2.json
Normal file
@@ -0,0 +1,31 @@
|
||||
{
|
||||
"action_id": "fixed_point_v2",
|
||||
"action_name": "Fixed Point V2",
|
||||
"action": {
|
||||
"full_body": "kneeling on floor in bedroom",
|
||||
"head": "looking at viewer",
|
||||
"eyes": "open eyes",
|
||||
"arms": "resting on bed",
|
||||
"hands": "resting",
|
||||
"torso": "facing viewer",
|
||||
"pelvis": "kneeling",
|
||||
"legs": "kneeling",
|
||||
"feet": "barefoot",
|
||||
"additional": "full room view, fxdpt"
|
||||
},
|
||||
"lora": {
|
||||
"lora_name": "Illustrious/Poses/fixed_point_v2.safetensors",
|
||||
"lora_weight": 0.8,
|
||||
"lora_triggers": "fxdpt, full room view"
|
||||
},
|
||||
"tags": [
|
||||
"kneeling",
|
||||
"on_floor",
|
||||
"indoors",
|
||||
"bedroom",
|
||||
"bed",
|
||||
"wide_shot",
|
||||
"from_above",
|
||||
"perspective"
|
||||
]
|
||||
}
|
||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user