Add Checkpoints Gallery with per-checkpoint generation settings
- New Checkpoint model (slug, name, checkpoint_path, data JSON, image_path) - sync_checkpoints() loads metadata from data/checkpoints/*.json and falls back to template defaults for models without a JSON file - _apply_checkpoint_settings() applies per-checkpoint steps, CFG, sampler, base positive/negative prompts, and VAE (with dynamic VAELoader node injection for non-integrated VAEs) to the ComfyUI workflow - Bulk Create from Checkpoints: scans Illustrious/Noob model directories, reads matching HTML files, uses LLM to populate metadata, falls back to template defaults when no HTML is present - Gallery index with batch cover generation and WebSocket progress bar - Detail page showing Generation Settings and Base Prompts cards - Checkpoints nav link added to layout - New data/prompts/checkpoint_system.txt LLM system prompt - Updated README with all current galleries and file structure - Also includes accumulated action/scene JSON updates, new actions, and other template/generator improvements from prior sessions Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
23
README.md
23
README.md
@@ -7,17 +7,23 @@ A local web-based GUI for managing character profiles (JSON) and generating cons
|
||||
- **Character Gallery**: Automatically scans your `characters/` folder and builds a searchable, sortable database.
|
||||
- **Outfit Gallery**: Manage reusable outfit presets that can be applied to any character.
|
||||
- **Actions Gallery**: A library of reusable poses and actions (e.g., "Belly Dancing", "Sword Fighting") that can be previewed on any character model.
|
||||
- **AI-Powered Creation**: Create new characters, outfits, and actions using AI to generate profiles from descriptions, or manually create blank templates.
|
||||
- **character-Integrated Previews**: Standalone items (Outfits/Actions) can be previewed directly on a specific character's model with automatic style injection (e.g., background color matching).
|
||||
- **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/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).
|
||||
- **Triple LoRA Chaining**: Chains up to three distinct LoRAs (Character + Outfit + Action) sequentially in the generation workflow.
|
||||
- **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.
|
||||
- **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
|
||||
@@ -70,8 +76,13 @@ A local web-based GUI for managing character profiles (JSON) and generating cons
|
||||
- `/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`: SQLAlchemy database models.
|
||||
- `DEVELOPMENT_GUIDE.md`: Architectual patterns for extending the browser.
|
||||
- `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)
|
||||
@@ -2,32 +2,29 @@
|
||||
"action_id": "3p_sex_000037",
|
||||
"action_name": "3P Sex 000037",
|
||||
"action": {
|
||||
"full_body": "group sex, threesome, 3 subjects, intertwined bodies, on bed",
|
||||
"head": "pleasured expression, heavy breathing, blush, sweating, tongue out, saliva",
|
||||
"eyes": "half-closed eyes, rolling back, heart pupils, looking at partner",
|
||||
"arms": "wrapping around partners, arm locking, grabbing shoulders",
|
||||
"hands": "groping, fondling, gripping hair, fingers digging into skin",
|
||||
"torso": "arching back, bare skin, sweat drops, pressing chests together",
|
||||
"pelvis": "connected, hips grinding, penetration",
|
||||
"legs": "spread legs, legs in air, wrapped around waist, kneeling",
|
||||
"feet": "toes curled, arched feet",
|
||||
"additional": "sex act, bodily fluids, cum, motion blur, intimacy, nsfw"
|
||||
},
|
||||
"participants": {
|
||||
"solo_focus": "false",
|
||||
"orientation": "MfF"
|
||||
"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": 1.0,
|
||||
"lora_triggers": "3P_SEX-000037"
|
||||
"lora_weight": 0.8,
|
||||
"lora_triggers": "threesome, group_sex"
|
||||
},
|
||||
"tags": [
|
||||
"group sex",
|
||||
"threesome",
|
||||
"3p",
|
||||
"nsfw",
|
||||
"sexual intercourse",
|
||||
"pleasure"
|
||||
"group_sex",
|
||||
"nude",
|
||||
"sex",
|
||||
"blush",
|
||||
"groping",
|
||||
"sweat"
|
||||
]
|
||||
}
|
||||
@@ -2,34 +2,32 @@
|
||||
"action_id": "4p_sex",
|
||||
"action_name": "4P Sex",
|
||||
"action": {
|
||||
"full_body": "complex group composition involving four subjects in close physical contact, bodies intertwined or overlapping in a cluster",
|
||||
"head": "heads positioned close together, looking at each other or facing different directions, varied expressions",
|
||||
"eyes": "open or half-closed, gazing at other subjects",
|
||||
"arms": "arms reaching out, holding, or embracing other subjects in the group, creating a web of limbs",
|
||||
"hands": "hands placed on others' bodies, grasping or touching",
|
||||
"torso": "torsos leaning into each other, pressed together or arranged in a pile",
|
||||
"pelvis": "pelvises positioned in close proximity, aligned with group arrangement",
|
||||
"legs": "legs entangled, kneeling, lying down, or wrapped around others",
|
||||
"feet": "feet resting on the ground or tucked in",
|
||||
"additional": "high density composition, multiple angles of interaction, tangled arrangement of bodies"
|
||||
},
|
||||
"participants": {
|
||||
"solo_focus": "false",
|
||||
"orientation": "MFFF"
|
||||
"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": 1.0,
|
||||
"lora_triggers": "4P_sex"
|
||||
"lora_weight": 0.6,
|
||||
"lora_triggers": "4P_sexV1"
|
||||
},
|
||||
"tags": [
|
||||
"4girls",
|
||||
"group",
|
||||
"tangled",
|
||||
"multiple_viewers",
|
||||
"all_fours",
|
||||
"entangled_legs",
|
||||
"close_contact",
|
||||
"crowded"
|
||||
"4P_sexV1",
|
||||
"group sex",
|
||||
"foursome",
|
||||
"4P",
|
||||
"double penetration",
|
||||
"fellatio",
|
||||
"all fours",
|
||||
"uncensored",
|
||||
"hetero",
|
||||
"sex"
|
||||
]
|
||||
}
|
||||
@@ -2,36 +2,36 @@
|
||||
"action_id": "after_sex_fellatio_illustriousxl_lora_nochekaiser_r1",
|
||||
"action_name": "After Sex Fellatio Illustriousxl Lora Nochekaiser R1",
|
||||
"action": {
|
||||
"full_body": "kneeling on the floor in a submissive posture (seiza) or sitting back on heels",
|
||||
"head": "tilted upwards slightly, heavy blush on cheeks, messy hair, mouth held open",
|
||||
"eyes": "half-closed, looking up at viewer, glazed expression, maybe heart-shaped pupils",
|
||||
"arms": "resting slightly limp at sides or hands placed on thighs",
|
||||
"hands": "resting on thighs or one hand wiping corner of mouth",
|
||||
"torso": "leaning slightly forward, relaxed posture implying exhaustion",
|
||||
"pelvis": "hips resting on heels",
|
||||
"legs": "bent at knees, kneeling",
|
||||
"feet": "tucked under buttocks",
|
||||
"additional": "cum on face, cum on mouth, semen, saliva trail, drooling, tongue stuck out, heavy breathing, sweat, after sex atmosphere"
|
||||
},
|
||||
"participants": {
|
||||
"solo_focus": "true",
|
||||
"orientation": "F"
|
||||
"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-illustriousxl-lora-nochekaiser_r1"
|
||||
"lora_triggers": "after sex fellatio"
|
||||
},
|
||||
"tags": [
|
||||
"after fellatio",
|
||||
"cum on face",
|
||||
"messy face",
|
||||
"saliva",
|
||||
"tongue out",
|
||||
"kneeling",
|
||||
"looking up",
|
||||
"blush",
|
||||
"sweat",
|
||||
"open mouth"
|
||||
"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"
|
||||
]
|
||||
}
|
||||
@@ -2,33 +2,32 @@
|
||||
"action_id": "afteroral",
|
||||
"action_name": "Afteroral",
|
||||
"action": {
|
||||
"full_body": "",
|
||||
"head": "cum in mouth, facial, blush, open mouth, tongue out, messy hair, sweat, panting",
|
||||
"eyes": "half-closed eyes, glazed eyes, looking up, tears",
|
||||
"arms": "",
|
||||
"hands": "",
|
||||
"torso": "",
|
||||
"pelvis": "",
|
||||
"legs": "",
|
||||
"feet": "",
|
||||
"additional": "saliva, saliva string, heavy breathing, after fellatio, bodily fluids"
|
||||
},
|
||||
"participants": {
|
||||
"solo_focus": "true",
|
||||
"orientation": "F"
|
||||
"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": "afteroral"
|
||||
"lora_triggers": "after oral, after deepthroat"
|
||||
},
|
||||
"tags": [
|
||||
"after oral",
|
||||
"wiping mouth",
|
||||
"saliva",
|
||||
"kneeling",
|
||||
"blush",
|
||||
"messy",
|
||||
"panting"
|
||||
"after_fellatio",
|
||||
"runny_makeup",
|
||||
"smeared_lipstick",
|
||||
"saliva_trail",
|
||||
"excessive_cum",
|
||||
"messy_hair",
|
||||
"heavy_breathing",
|
||||
"cum_bubble",
|
||||
"penis_on_face",
|
||||
"sweat"
|
||||
]
|
||||
}
|
||||
@@ -2,36 +2,40 @@
|
||||
"action_id": "aftersexbreakv2",
|
||||
"action_name": "Aftersexbreakv2",
|
||||
"action": {
|
||||
"full_body": "lying in bed, exhausted",
|
||||
"head": "messy hair, flushed face, sweating, panting",
|
||||
"eyes": "half-closed eyes, ",
|
||||
"arms": "",
|
||||
"hands": "",
|
||||
"torso": "sweaty skin, glistening skin, heavy breathing,",
|
||||
"pelvis": "cum drip",
|
||||
"legs": "legs spread",
|
||||
"feet": "",
|
||||
"additional": "ripped clothing, panties aside, rumpled bed sheets, messy bed, dim lighting, intimate atmosphere, exhausted"
|
||||
},
|
||||
"participants": {
|
||||
"solo_focus": "true",
|
||||
"orientation": "F"
|
||||
"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": "AfterSexBreakV2"
|
||||
"lora_triggers": "aftersexbreak, after sex, male sitting"
|
||||
},
|
||||
"tags": [
|
||||
"after sex",
|
||||
"post-coital",
|
||||
"lying in bed",
|
||||
"messy hair",
|
||||
"sweaty skin",
|
||||
"covered by sheet",
|
||||
"bedroom eyes",
|
||||
"exhausted",
|
||||
"intimate",
|
||||
"rumpled sheets"
|
||||
"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"
|
||||
]
|
||||
}
|
||||
@@ -2,33 +2,32 @@
|
||||
"action_id": "amateur_pov_filming",
|
||||
"action_name": "Amateur Pov Filming",
|
||||
"action": {
|
||||
"full_body": "POV shot, subject positioned close to the lens, selfie composition or handheld camera style",
|
||||
"head": "facing the camera directly, slightly tilted or chin tucked, candid expression",
|
||||
"eyes": "looking directly at viewer, intense eye contact",
|
||||
"arms": "one or both arms raised towards the viewer holding the capturing device",
|
||||
"hands": "holding smartphone, clutching camera, fingers visible on device edges",
|
||||
"torso": "upper body visible, facing forward, close proximity",
|
||||
"pelvis": "obscured or out of frame",
|
||||
"legs": "out of frame",
|
||||
"feet": "out of frame",
|
||||
"additional": "phone screen, camera interface, amateur footage quality, blurry background, indoor lighting, candid atmosphere"
|
||||
},
|
||||
"participants": {
|
||||
"solo_focus": "true",
|
||||
"orientation": "MF"
|
||||
"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": "Amateur_POV_Filming"
|
||||
"lora_triggers": "Homemade_PornV1, recording, pov, prostitution"
|
||||
},
|
||||
"tags": [
|
||||
"recording",
|
||||
"pov",
|
||||
"selfie",
|
||||
"holding phone",
|
||||
"amateur",
|
||||
"candid",
|
||||
"recording",
|
||||
"close-up"
|
||||
"holding_phone",
|
||||
"smartphone",
|
||||
"mirror_selfie",
|
||||
"holding_id_card",
|
||||
"looking_at_viewer",
|
||||
"prostitution",
|
||||
"indoors"
|
||||
]
|
||||
}
|
||||
@@ -2,35 +2,28 @@
|
||||
"action_id": "arch_back_sex_v1_1_illustriousxl",
|
||||
"action_name": "Arch Back Sex V1 1 Illustriousxl",
|
||||
"action": {
|
||||
"full_body": "character positioned with an exaggerated spinal curve, emphasizing the posterior",
|
||||
"head": "thrown back in pleasure or looking back over the shoulder",
|
||||
"eyes": "half-closed, rolled back, or heavily blushing",
|
||||
"arms": "supporting body weight on elbows or hands, or reaching forward",
|
||||
"hands": "gripping bedsheets or pressing firmly against the surface",
|
||||
"torso": "extremely arched back, chest pressed down or lifted depending on angle",
|
||||
"pelvis": "tilted upwards, hips raised high",
|
||||
"legs": "kneeling or lying prone with knees bent",
|
||||
"feet": "toes curled or extending upwards",
|
||||
"additional": "sweat, blush, heavy breathing indication"
|
||||
},
|
||||
"participants": {
|
||||
"solo_focus": "true",
|
||||
"orientation": "MF"
|
||||
"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": "arch-back-sex-v1.1-illustriousxl"
|
||||
"lora_triggers": "kiss, arched_back, sex_from_behind"
|
||||
},
|
||||
"tags": [
|
||||
"arch back",
|
||||
"arched back",
|
||||
"hips up",
|
||||
"curved spine",
|
||||
"ass focus",
|
||||
"hyper-extension",
|
||||
"prone",
|
||||
"kneeling",
|
||||
"from behind"
|
||||
"hetero",
|
||||
"sex",
|
||||
"vaginal",
|
||||
"penis",
|
||||
"nude",
|
||||
"indoors"
|
||||
]
|
||||
}
|
||||
@@ -2,35 +2,37 @@
|
||||
"action_id": "arm_grab_missionary_ill_10",
|
||||
"action_name": "Arm Grab Missionary Ill 10",
|
||||
"action": {
|
||||
"full_body": "lying on back, missionary position, submissive posture",
|
||||
"head": "head tilted back, blushing, heavy breathing",
|
||||
"eyes": "looking at viewer, half-closed eyes, rolling eyes",
|
||||
"arms": "arms raised above head, arms grabbed, wrists held, armpits exposed",
|
||||
"hands": "hands pinned, helpless",
|
||||
"torso": "arched back, chest exposed",
|
||||
"pelvis": "exposed crotch",
|
||||
"legs": "spread legs, knees bent upwards, m-legs",
|
||||
"feet": "toes curled",
|
||||
"additional": "on bed, bed sheet, pov, submission, restraint"
|
||||
},
|
||||
"participants": {
|
||||
"solo_focus": "true",
|
||||
"orientation": "MF"
|
||||
"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_ill-10"
|
||||
"lora_triggers": "arm_grab_missionary"
|
||||
},
|
||||
"tags": [
|
||||
"arm grab",
|
||||
"missionary",
|
||||
"lying on back",
|
||||
"arms above head",
|
||||
"wrists held",
|
||||
"legs spread",
|
||||
"armpits",
|
||||
"submission",
|
||||
"pov"
|
||||
"spread_legs",
|
||||
"interlocked_fingers",
|
||||
"holding_hands",
|
||||
"arms_up",
|
||||
"pinned",
|
||||
"lying",
|
||||
"on_back",
|
||||
"sex",
|
||||
"vaginal",
|
||||
"faceless_male",
|
||||
"one_eye_closed",
|
||||
"open_mouth",
|
||||
"breasts",
|
||||
"nipples"
|
||||
]
|
||||
}
|
||||
@@ -2,33 +2,29 @@
|
||||
"action_id": "ballsdeep_il_v2_2_s",
|
||||
"action_name": "Ballsdeep Il V2 2 S",
|
||||
"action": {
|
||||
"full_body": "intense sexual intercourse, intimate close-up on genital connection, visceral physical interaction",
|
||||
"head": "flushed face, expression of intense pleasure, head thrown back, mouth slightly open, panting",
|
||||
"eyes": "eyes rolling back, ahegao or tightly closed eyes, heavy breathing",
|
||||
"arms": "muscular arms tensed, holding partner's hips firmly, veins visible",
|
||||
"hands": "hands gripping waist or buttocks, fingers digging into skin, pulling partner closer",
|
||||
"torso": "sweaty skin, arched back, abdominal muscles engaged",
|
||||
"pelvis": "hips slammed forward, testicles pressed firmly against partner's skin, complete insertion",
|
||||
"legs": "thighs interlocking, kneeling or legs wrapped around partner's waist",
|
||||
"feet": "toes curled tightly",
|
||||
"additional": "sex, vaginal, balls deep, motion blur on hips, bodily fluids, skin indentation, anatomical focus"
|
||||
},
|
||||
"participants": {
|
||||
"solo_focus": "true",
|
||||
"orientation": "MF"
|
||||
"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": "BallsDeep-IL-V2.2-S"
|
||||
"lora_triggers": "deep penetration"
|
||||
},
|
||||
"tags": [
|
||||
"nsfw",
|
||||
"deep_penetration",
|
||||
"testicles",
|
||||
"stomach_bulge",
|
||||
"sex",
|
||||
"anal",
|
||||
"vaginal",
|
||||
"internal view",
|
||||
"cross-section",
|
||||
"deep penetration",
|
||||
"mating press"
|
||||
"gaping"
|
||||
]
|
||||
}
|
||||
@@ -2,33 +2,30 @@
|
||||
"action_id": "bathingtogether",
|
||||
"action_name": "Bathingtogether",
|
||||
"action": {
|
||||
"full_body": "two characters sharing a bathtub, sitting close together in water",
|
||||
"head": "wet hair, flushed cheeks, relaxed expressions, looking at each other",
|
||||
"eyes": "gentle gaze, half-closed",
|
||||
"arms": "resting on the tub rim, washing each other, or embracing",
|
||||
"hands": "holding soap, sponge, or touching skin",
|
||||
"torso": "wet skin, water droplets, partially submerged, steam rising",
|
||||
"pelvis": "submerged in soapy water",
|
||||
"legs": "knees bent, submerged, intertwined",
|
||||
"feet": "underwater",
|
||||
"additional": "bathroom tiles, steam clouds, soap bubbles, rubber duck, faucet"
|
||||
},
|
||||
"participants": {
|
||||
"solo_focus": "true",
|
||||
"orientation": "MF"
|
||||
"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": "bathingtogether"
|
||||
"lora_triggers": "bathing together"
|
||||
},
|
||||
"tags": [
|
||||
"bathing",
|
||||
"couple",
|
||||
"bathtub",
|
||||
"partially_submerged",
|
||||
"pov",
|
||||
"looking_at_viewer",
|
||||
"wet",
|
||||
"steam",
|
||||
"bathtub",
|
||||
"shared bath",
|
||||
"soap bubbles"
|
||||
"bare_shoulders"
|
||||
]
|
||||
}
|
||||
@@ -2,32 +2,32 @@
|
||||
"action_id": "before_after_1230829",
|
||||
"action_name": "Before After 1230829",
|
||||
"action": {
|
||||
"full_body": "split view composition, side-by-side comparison, two panels showing the same character",
|
||||
"head": "varying expressions, sad vs happy, neutral vs excited",
|
||||
"eyes": "looking at viewer, varying intensity",
|
||||
"arms": "neutral pose vs confident pose",
|
||||
"hands": "hanging loosely vs gesturing",
|
||||
"torso": "visible change in clothing or physique",
|
||||
"pelvis": "standing or sitting",
|
||||
"legs": "standing or sitting",
|
||||
"feet": "neutral stance",
|
||||
"additional": "transformation, makeover, dividing line, progression, evolution"
|
||||
},
|
||||
"participants": {
|
||||
"solo_focus": "true",
|
||||
"orientation": "F"
|
||||
"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": 1.0,
|
||||
"lora_triggers": "before_after_1230829"
|
||||
"lora_weight": 0.9,
|
||||
"lora_triggers": "before_after"
|
||||
},
|
||||
"tags": [
|
||||
"split view",
|
||||
"comparison",
|
||||
"transformation",
|
||||
"before and after",
|
||||
"multiple views",
|
||||
"concept art"
|
||||
"before_and_after",
|
||||
"2koma",
|
||||
"facial",
|
||||
"bukkake",
|
||||
"cum",
|
||||
"cum_on_face",
|
||||
"orgasm",
|
||||
"heavy_breathing",
|
||||
"upper_body",
|
||||
"split_theme"
|
||||
]
|
||||
}
|
||||
@@ -2,33 +2,28 @@
|
||||
"action_id": "bentback",
|
||||
"action_name": "Bentback",
|
||||
"action": {
|
||||
"full_body": "standing, upper body bent forward at the waist, torso parallel to the ground",
|
||||
"head": "turned to look back, looking over shoulder, chin raised",
|
||||
"eyes": "looking at viewer, focused gaze",
|
||||
"arms": "arms extended downward or resting on legs",
|
||||
"hands": "hands on knees, hands on thighs",
|
||||
"torso": "back arched, spinal curve emphasized, bent forward",
|
||||
"pelvis": "hips pushed back, buttocks protruding",
|
||||
"legs": "straight legs, locked knees or slight bend",
|
||||
"feet": "feet shoulder-width apart, waiting",
|
||||
"additional": "view from behind, dorsal view, dynamic posture"
|
||||
},
|
||||
"participants": {
|
||||
"solo_focus": "true",
|
||||
"orientation": "MF"
|
||||
"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"
|
||||
"lora_triggers": "bentback, kneepits"
|
||||
},
|
||||
"tags": [
|
||||
"bent over",
|
||||
"standing",
|
||||
"hands on knees",
|
||||
"looking back",
|
||||
"from behind",
|
||||
"arched back",
|
||||
"torso bend"
|
||||
"bent_over",
|
||||
"from_behind",
|
||||
"looking_back",
|
||||
"kneepits",
|
||||
"twisted_torso",
|
||||
"ass_focus"
|
||||
]
|
||||
}
|
||||
@@ -2,34 +2,31 @@
|
||||
"action_id": "blowjobcomicpart2",
|
||||
"action_name": "Blowjobcomicpart2",
|
||||
"action": {
|
||||
"full_body": "kneeling in front of standing partner, intimate interaction, oral sex pose",
|
||||
"head": "tilted up, mouth open, cheek bulge, blushing, messy face",
|
||||
"eyes": "rolled back, heart-shaped pupils, crossed eyes, or looking up",
|
||||
"arms": "reaching forward, holding partner's legs or hips",
|
||||
"hands": "stroking, gripping thighs, holding shaft, guiding",
|
||||
"torso": "leaning forward, subordinate posture",
|
||||
"pelvis": "kneeling on ground",
|
||||
"legs": "bent at knees, shins on floor",
|
||||
"feet": "tucked under or toes curled",
|
||||
"additional": "saliva, slobber, motion lines, speech bubbles, sound effects, comic panel structure, greyscale or screentones"
|
||||
},
|
||||
"participants": {
|
||||
"solo_focus": "true",
|
||||
"orientation": "MF"
|
||||
"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": "BlowjobComicPart2"
|
||||
"lora_triggers": "bjmcut"
|
||||
},
|
||||
"tags": [
|
||||
"nsfw",
|
||||
"fellatio",
|
||||
"oral sex",
|
||||
"kneeling",
|
||||
"3koma",
|
||||
"comic",
|
||||
"monochrome",
|
||||
"saliva",
|
||||
"ahegao"
|
||||
"fellatio",
|
||||
"irrumatio",
|
||||
"licking_penis",
|
||||
"ejaculation",
|
||||
"excessive_cum",
|
||||
"empty_eyes",
|
||||
"tongue_out"
|
||||
]
|
||||
}
|
||||
@@ -2,32 +2,29 @@
|
||||
"action_id": "bodybengirl",
|
||||
"action_name": "Bodybengirl",
|
||||
"action": {
|
||||
"full_body": "character standing and bending forward at the waist, hips raised high",
|
||||
"head": "looking back at viewer or head inverted",
|
||||
"eyes": "looking at viewer",
|
||||
"arms": "extended downwards towards the ground",
|
||||
"hands": "touching toes, ankles, or palms flat on the floor",
|
||||
"torso": "upper body folded down parallel to or against the legs",
|
||||
"pelvis": "lifted upwards, prominent posterior view",
|
||||
"legs": "straight or knees slightly locked, shoulder-width apart",
|
||||
"feet": "planted firmly on the ground",
|
||||
"additional": "often viewed from behind or the side to emphasize flexibility and curve"
|
||||
},
|
||||
"participants": {
|
||||
"solo_focus": "true",
|
||||
"orientation": "MF"
|
||||
"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": "BodyBenGirl"
|
||||
"lora_triggers": "bentstand-front, bentstand-behind"
|
||||
},
|
||||
"tags": [
|
||||
"bending over",
|
||||
"touching toes",
|
||||
"from behind",
|
||||
"flexibility",
|
||||
"suspended_congress",
|
||||
"torso_grab",
|
||||
"bent_over",
|
||||
"reaching",
|
||||
"standing",
|
||||
"jack-o' pose"
|
||||
"1boy",
|
||||
"1girl"
|
||||
]
|
||||
}
|
||||
@@ -2,31 +2,30 @@
|
||||
"action_id": "bodybengirlpart2",
|
||||
"action_name": "Bodybengirlpart2",
|
||||
"action": {
|
||||
"full_body": "standing pose, bending forward at the waist while facing away from the camera",
|
||||
"head": "turned backward looking over the shoulder",
|
||||
"eyes": "looking directly at the viewer",
|
||||
"arms": "extended downwards or resting on upper thighs",
|
||||
"hands": "placed on knees or hanging freely",
|
||||
"torso": "bent forward at a 90-degree angle, lower back arched",
|
||||
"pelvis": "pushed back and tilted upwards",
|
||||
"legs": "straight or slightly unlocked at the knees",
|
||||
"feet": "standing firmly on the ground",
|
||||
"additional": "view from behind, emphasizing hip curvature and flexibility"
|
||||
},
|
||||
"participants": {
|
||||
"solo_focus": "true",
|
||||
"orientation": "MF"
|
||||
"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": 1.0,
|
||||
"lora_triggers": "BodyBenGirlPart2"
|
||||
"lora_weight": 0.9,
|
||||
"lora_triggers": "bentstand-behind, dangling legs, dangling arms, from_side, arms hanging down, torso_grab, suspended"
|
||||
},
|
||||
"tags": [
|
||||
"bent over",
|
||||
"looking back",
|
||||
"from behind",
|
||||
"standing",
|
||||
"flexible"
|
||||
"torso_grab",
|
||||
"suspension",
|
||||
"bent_over",
|
||||
"knees_together_feet_apart",
|
||||
"arms_at_sides",
|
||||
"motion_lines",
|
||||
"embarrassed",
|
||||
"sweat"
|
||||
]
|
||||
}
|
||||
@@ -2,33 +2,32 @@
|
||||
"action_id": "breast_pressh",
|
||||
"action_name": "Breast Pressh",
|
||||
"action": {
|
||||
"full_body": "character pressing breasts together with hands or arms to enhance cleavage",
|
||||
"head": "slightly tilted forward, often with a flushed or embarrassed expression",
|
||||
"eyes": "looking down at chest or shyly at viewer",
|
||||
"arms": "bent at elbows, brought in front of the chest",
|
||||
"hands": "placed on the sides or underneath breasts, actively squeezing or pushing them inward",
|
||||
"torso": "upper body leaned slightly forward or arched back to emphasize the chest area",
|
||||
"pelvis": "neutral standing or sitting position",
|
||||
"legs": "standing straight or sitting with knees together",
|
||||
"feet": "planted firmly on ground if standing",
|
||||
"additional": "emphasis on soft body physics, squish deformation, and skin indentation around the fingers"
|
||||
},
|
||||
"participants": {
|
||||
"solo_focus": "false",
|
||||
"orientation": "FF"
|
||||
"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": 1.0,
|
||||
"lora_weight": 0.6,
|
||||
"lora_triggers": "breast_pressH"
|
||||
},
|
||||
"tags": [
|
||||
"breast press",
|
||||
"squeezing breasts",
|
||||
"cleavage",
|
||||
"hands on breasts",
|
||||
"self groping",
|
||||
"squish",
|
||||
"upper body"
|
||||
"height_difference",
|
||||
"girl_sandwich",
|
||||
"breast_press",
|
||||
"sandwiched",
|
||||
"size_difference",
|
||||
"head_between_breasts",
|
||||
"cheek_squash",
|
||||
"face_between_breasts",
|
||||
"1boy",
|
||||
"2girls"
|
||||
]
|
||||
}
|
||||
@@ -2,36 +2,35 @@
|
||||
"action_id": "carwashv2",
|
||||
"action_name": "Carwashv2",
|
||||
"action": {
|
||||
"full_body": "leaning forward, bending over car hood, dynamic scrubbing pose, wet body",
|
||||
"head": "looking at viewer, smiling, wet hair sticking to face",
|
||||
"eyes": "open, energetic, happy",
|
||||
"arms": "stretched forward, one arm scrubbing, active motion",
|
||||
"hands": "holding large yellow sponge, covered in soap suds",
|
||||
"torso": "bent at waist, leaning forward, arched back, wet clothes clinging",
|
||||
"pelvis": "hips pushed back, tilted",
|
||||
"legs": "straddling or standing wide for stability",
|
||||
"feet": "planted on wet pavement",
|
||||
"additional": "soap bubbles, heavy foam on body and car, water splashing, car background"
|
||||
},
|
||||
"participants": {
|
||||
"solo_focus": "true",
|
||||
"orientation": "MF"
|
||||
"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": 1.0,
|
||||
"lora_triggers": "CarWashV2"
|
||||
"lora_weight": 0.8,
|
||||
"lora_triggers": "w4sh1n, w4sh0ut"
|
||||
},
|
||||
"tags": [
|
||||
"car wash",
|
||||
"holding sponge",
|
||||
"leaning forward",
|
||||
"bending over",
|
||||
"car",
|
||||
"motor_vehicle",
|
||||
"washing_vehicle",
|
||||
"soap_bubbles",
|
||||
"wet",
|
||||
"wet clothes",
|
||||
"foam",
|
||||
"bubbles",
|
||||
"soapy water",
|
||||
"scrubbing"
|
||||
"wet_hair",
|
||||
"wet_clothes",
|
||||
"holding_sponge",
|
||||
"holding_hose",
|
||||
"breasts_on_glass",
|
||||
"breast_press",
|
||||
"outdoors",
|
||||
"car_interior"
|
||||
]
|
||||
}
|
||||
@@ -2,34 +2,33 @@
|
||||
"action_id": "cat_stretchill",
|
||||
"action_name": "Cat Stretchill",
|
||||
"action": {
|
||||
"full_body": "character on all fours performing a deep cat stretch, kneeling with chest pressed to the floor and hips raised high",
|
||||
"head": "chin resting on the floor, looking forward or to the side",
|
||||
"eyes": "looking up or generally forward",
|
||||
"arms": "fully extended forward along the ground",
|
||||
"hands": "palms flat on the floor",
|
||||
"torso": "deeply arched back, chest touching the ground",
|
||||
"pelvis": "elevated high in the air, creating a steep angle with the spine",
|
||||
"legs": "kneeling, bent at the knees",
|
||||
"feet": "toes touching the ground",
|
||||
"additional": "emphasizes the curve of the spine and flexibility"
|
||||
},
|
||||
"participants": {
|
||||
"solo_focus": "true",
|
||||
"orientation": "F"
|
||||
"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": 1.0,
|
||||
"lora_triggers": "cat_stretchILL"
|
||||
"lora_weight": 0.7,
|
||||
"lora_triggers": "stretching, cat stretch, downward dog, trembling"
|
||||
},
|
||||
"tags": [
|
||||
"all fours",
|
||||
"ass up",
|
||||
"cat_stretch",
|
||||
"kneeling",
|
||||
"cat pose",
|
||||
"all_fours",
|
||||
"stretching",
|
||||
"arms extended",
|
||||
"on floor",
|
||||
"arched back"
|
||||
"arched_back",
|
||||
"outstretched_arms",
|
||||
"hands_on_ground",
|
||||
"downward_dog",
|
||||
"trembling",
|
||||
"cat_ears",
|
||||
"cat_tail"
|
||||
]
|
||||
}
|
||||
@@ -2,39 +2,37 @@
|
||||
"action_id": "caught_masturbating_illustrious",
|
||||
"action_name": "Caught Masturbating Illustrious",
|
||||
"action": {
|
||||
"full_body": "character receiving a sudden shock while in a private moment of self-pleasure, body freezing or jerking in surprise",
|
||||
"head": "face flushed red with deep blush, expression of pure panic and embarrassment, mouth gaped open in a gasp",
|
||||
"eyes": "wide-eyed stare, pupils dilated, locking eyes with the intruder (viewer)",
|
||||
"arms": "shoulders tensed, one arm frantically trying to cover the chest or face, the other halted mid-motion near the crotch",
|
||||
"hands": "one hand stopping mid-masturbation typically under skirt or inside panties, other hand gesturing to stop or hiding face",
|
||||
"torso": "leaning back onto elbows or pillows, clothing disheveled, shirt lifted",
|
||||
"pelvis": "hips exposed, underwear pulled down to thighs or ankles, vulva accessible",
|
||||
"legs": "legs spread wide in an M-shape or V-shape, knees bent, trembling",
|
||||
"feet": "toes curled tightly in tension",
|
||||
"additional": "context of an intruded private bedroom, messy bed sheets, atmosphere of sudden discovery and shame"
|
||||
},
|
||||
"participants": {
|
||||
"solo_focus": "true",
|
||||
"orientation": "F"
|
||||
"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": 1.0,
|
||||
"lora_triggers": "Caught_Masturbating_ILLUSTRIOUS"
|
||||
"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",
|
||||
"masturbation",
|
||||
"embarrassed",
|
||||
"blush",
|
||||
"doorway",
|
||||
"open_door",
|
||||
"standing",
|
||||
"surprised",
|
||||
"open mouth",
|
||||
"looking at viewer",
|
||||
"panties down",
|
||||
"hand in panties",
|
||||
"skirt lift",
|
||||
"sweat",
|
||||
"legs spread",
|
||||
"panic"
|
||||
"blush",
|
||||
"looking_at_penis",
|
||||
"looking_at_viewer",
|
||||
"wide_shot",
|
||||
"indoors"
|
||||
]
|
||||
}
|
||||
@@ -2,33 +2,32 @@
|
||||
"action_id": "charm_person_magic",
|
||||
"action_name": "Charm Person Magic",
|
||||
"action": {
|
||||
"full_body": "standing, casting pose, dynamic angle, upper body focused",
|
||||
"head": "facing viewer, head tilted, alluring expression, seductive smile",
|
||||
"eyes": "looking at viewer, glowing eyes, heart-shaped pupils, hypnotic gaze",
|
||||
"arms": "reaching towards viewer, one arm outstretched, hand near face",
|
||||
"hands": "open palm, casting gesture, finger snaps, beckoning motion",
|
||||
"torso": "facing forward, slight arch",
|
||||
"pelvis": "hips swayed, weight shifted",
|
||||
"legs": "standing, crossed legs",
|
||||
"feet": "out of frame",
|
||||
"additional": "pink magic, magical aura, sparkles, heart particles, glowing hands, casting spell, enchantment, visual effects"
|
||||
},
|
||||
"participants": {
|
||||
"solo_focus": "true",
|
||||
"orientation": "F"
|
||||
"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": 1.0,
|
||||
"lora_triggers": "charm_person_magic"
|
||||
"lora_weight": 0.7,
|
||||
"lora_triggers": "charm_person_(magic), cham_aura"
|
||||
},
|
||||
"tags": [
|
||||
"casting_spell",
|
||||
"magic",
|
||||
"fantasy",
|
||||
"enchantment",
|
||||
"hypnotic",
|
||||
"alluring",
|
||||
"spellcasting",
|
||||
"pink energy"
|
||||
"aura",
|
||||
"outstretched_hand",
|
||||
"reaching_towards_viewer",
|
||||
"glowing_eyes",
|
||||
"looking_at_viewer",
|
||||
"smile",
|
||||
"cowboy_shot",
|
||||
"solo"
|
||||
]
|
||||
}
|
||||
@@ -2,33 +2,29 @@
|
||||
"action_id": "cheekbulge",
|
||||
"action_name": "Cheekbulge",
|
||||
"action": {
|
||||
"full_body": "kneeling, leaning forward, close-up focus on face",
|
||||
"head": "visible cheek bulge, distorted cheek, stuffed mouth, mouth stretched",
|
||||
"eyes": "looking up, upturned eyes, teary eyes, eye contact",
|
||||
"arms": "reaching forward or resting on partner's legs",
|
||||
"hands": "holding object, guiding, or resting on thighs",
|
||||
"torso": "angled forward",
|
||||
"pelvis": "neutral kneeling posture",
|
||||
"legs": "kneeling, bent knees",
|
||||
"feet": "toes pointing back",
|
||||
"additional": "fellatio, oral sex, saliva, saliva trail, penis in mouth, face deformation"
|
||||
},
|
||||
"participants": {
|
||||
"solo_focus": "true",
|
||||
"orientation": "MF"
|
||||
"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": "cheekbulge"
|
||||
"lora_triggers": "cheek bulge"
|
||||
},
|
||||
"tags": [
|
||||
"cheek bulge",
|
||||
"stuffed mouth",
|
||||
"cheek_bulge",
|
||||
"deepthroat",
|
||||
"fellatio",
|
||||
"distorted face",
|
||||
"oral sex",
|
||||
"looking up",
|
||||
"face deformation"
|
||||
"saliva",
|
||||
"head_tilt",
|
||||
"penis",
|
||||
"pov"
|
||||
]
|
||||
}
|
||||
@@ -2,38 +2,34 @@
|
||||
"action_id": "chokehold",
|
||||
"action_name": "Chokehold",
|
||||
"action": {
|
||||
"full_body": "dynamic combat pose, character positioning behind an opponent, executing a rear chokehold, two people grappling",
|
||||
"head": "chin tucked tight, face pressed close to the opponent's head, intense or straining expression",
|
||||
"eyes": "focused, narrowed in concentration",
|
||||
"arms": "one arm wrapped tightly around the opponent's neck, the other arm locking the hold by gripping the bicep or clasping hands",
|
||||
"hands": "clenching tight, gripping own bicep or locking fingers behind opponent's neck",
|
||||
"torso": "chest pressed firmly against the opponent's back, leaning back slightly for leverage",
|
||||
"pelvis": "pressed close to opponent's lower back",
|
||||
"legs": "wrapped around the opponent's waist (body triangle or hooks in) or wide standing stance for stability",
|
||||
"feet": "hooked inside opponent's thighs or planted firmly on the ground",
|
||||
"additional": "struggle, tension, submission hold, restrictive motion, self-defense scenario"
|
||||
},
|
||||
"participants": {
|
||||
"solo_focus": "true",
|
||||
"orientation": "MF"
|
||||
"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": "chokehold"
|
||||
"lora_triggers": "choke hold"
|
||||
},
|
||||
"tags": [
|
||||
"chokehold",
|
||||
"grappling",
|
||||
"rear naked choke",
|
||||
"fighting",
|
||||
"wrestling",
|
||||
"martial arts",
|
||||
"restraining",
|
||||
"submission",
|
||||
"headlock",
|
||||
"strangle",
|
||||
"duo",
|
||||
"struggle"
|
||||
"choke_hold",
|
||||
"rear_naked_choke",
|
||||
"strangling",
|
||||
"arm_around_neck",
|
||||
"from_behind",
|
||||
"struggling",
|
||||
"head_back",
|
||||
"clenched_teeth",
|
||||
"rolling_eyes",
|
||||
"drooling",
|
||||
"saliva",
|
||||
"ohogao"
|
||||
]
|
||||
}
|
||||
@@ -2,35 +2,36 @@
|
||||
"action_id": "cleavageteasedwnsty_000008",
|
||||
"action_name": "Cleavageteasedwnsty 000008",
|
||||
"action": {
|
||||
"full_body": "Medium shot or close-up focus on the upper body, character facing forward",
|
||||
"head": "Looking directly at viewer, chin slightly tucked or tilted, expression varying from shy blush to seductive smile",
|
||||
"eyes": "Eye contact, focused on the viewer",
|
||||
"arms": "Elbows bent, forearms brought up towards the chest",
|
||||
"hands": "Fingers grasping the hem of the collar or neckline of the top, pulling it downwards",
|
||||
"torso": "Clothing fabric stretched taut, neckline pulled down low to reveal cleavage, emphasis on the chest area",
|
||||
"pelvis": "Neutral position, often obscured in close-up shots",
|
||||
"legs": "Neutral or out of frame",
|
||||
"feet": "Out of frame",
|
||||
"additional": "Fabric tension lines, revealing skin, seductive atmosphere"
|
||||
},
|
||||
"participants": {
|
||||
"solo_focus": "true",
|
||||
"orientation": "MF"
|
||||
"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": "CleavageTeaseDwnsty-000008"
|
||||
"lora_triggers": "pulling down own clothes, teasing"
|
||||
},
|
||||
"tags": [
|
||||
"cleavage",
|
||||
"clothes pull",
|
||||
"collar pull",
|
||||
"shirt pull",
|
||||
"looking at viewer",
|
||||
"breasts",
|
||||
"clothes_pull",
|
||||
"shirt_pull",
|
||||
"teasing",
|
||||
"breasts_squeezed_together",
|
||||
"areola_slip",
|
||||
"undressing",
|
||||
"leaning_forward",
|
||||
"cleavage",
|
||||
"hands_on_own_chest",
|
||||
"collarbone",
|
||||
"bare_shoulders",
|
||||
"sexually_suggestive",
|
||||
"blush",
|
||||
"holding clothes"
|
||||
"one_eye_closed"
|
||||
]
|
||||
}
|
||||
@@ -2,32 +2,30 @@
|
||||
"action_id": "closeup_facial_illus",
|
||||
"action_name": "Closeup Facial Illus",
|
||||
"action": {
|
||||
"full_body": "extreme close-up portrait shot framing the face and upper neck, macro focus",
|
||||
"head": "facing directly forward, highly detailed facial micro-expressions, blush",
|
||||
"eyes": "intense gaze, intricate iris details, looking at viewer, eyelashes focus",
|
||||
"arms": "not visible",
|
||||
"hands": "not visible",
|
||||
"torso": "upper collarbone area only",
|
||||
"pelvis": "not visible",
|
||||
"legs": "not visible",
|
||||
"feet": "not visible",
|
||||
"additional": "illustrative style, shallow depth of field, soft lighting, detailed skin texture, vibrant colors"
|
||||
},
|
||||
"participants": {
|
||||
"solo_focus": "true",
|
||||
"orientation": "MF"
|
||||
"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_iLLus"
|
||||
"lora_triggers": "Closeup Facial"
|
||||
},
|
||||
"tags": [
|
||||
"facial",
|
||||
"close-up",
|
||||
"portrait",
|
||||
"face focus",
|
||||
"illustration",
|
||||
"detailed eyes",
|
||||
"macro"
|
||||
"open_mouth",
|
||||
"tongue",
|
||||
"looking_at_viewer",
|
||||
"saliva",
|
||||
"blush"
|
||||
]
|
||||
}
|
||||
@@ -2,35 +2,32 @@
|
||||
"action_id": "cooperativepaizuri",
|
||||
"action_name": "Cooperativepaizuri",
|
||||
"action": {
|
||||
"full_body": "intimate sexual pose, two people interacting closely",
|
||||
"head": "flushed face, drooling, tongue out, expression of pleasure or submission",
|
||||
"eyes": "half-closed eyes, looking down, ahegao or heart-shaped pupils",
|
||||
"arms": "arms supporting body weight or holding partner",
|
||||
"hands": "recipient's hands grasping subject's breasts, squeezing breasts together towards center",
|
||||
"torso": "exposed breasts, heavy cleavage, chest compressed by external hands",
|
||||
"pelvis": "leaning forward, hips raised or straddling",
|
||||
"legs": "kneeling, spread legs, or wrapping around partner",
|
||||
"feet": "arched feet, toes curled",
|
||||
"additional": "penis sliding between breasts, friction, lubrication, skin indentation"
|
||||
},
|
||||
"participants": {
|
||||
"solo_focus": "false",
|
||||
"orientation": "MFF"
|
||||
"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": "cooperativepaizuri"
|
||||
"lora_triggers": "cooperative paizuri"
|
||||
},
|
||||
"tags": [
|
||||
"cooperative_paizuri",
|
||||
"2girls",
|
||||
"1boy",
|
||||
"paizuri",
|
||||
"assisted paizuri",
|
||||
"male hand",
|
||||
"breast squeeze",
|
||||
"titjob",
|
||||
"penis between breasts",
|
||||
"sexual act",
|
||||
"cleavage",
|
||||
"big breasts"
|
||||
"breasts",
|
||||
"penis",
|
||||
"facial",
|
||||
"pov",
|
||||
"from_side",
|
||||
"large_breasts"
|
||||
]
|
||||
}
|
||||
@@ -2,34 +2,29 @@
|
||||
"action_id": "covering_privates_illustrious_v1_0",
|
||||
"action_name": "Covering Privates Illustrious V1 0",
|
||||
"action": {
|
||||
"full_body": "standing in a defensive, modest posture, body language expressing vulnerability",
|
||||
"head": "tilted down or looking away in embarrassment",
|
||||
"eyes": "averted gaze, shy or flustered expression",
|
||||
"arms": "arms pulled in tight against the body",
|
||||
"hands": "hands covering crotch, hand over breasts, covering self",
|
||||
"torso": "slightly hunched forward or twisting away",
|
||||
"pelvis": "hips slightly turned",
|
||||
"legs": "legs pressed tightly together, thighs touching, knock-kneed",
|
||||
"feet": "standing close together, possibly pigeon-toed",
|
||||
"additional": "blush, steam or light rays (optional)"
|
||||
},
|
||||
"participants": {
|
||||
"solo_focus": "true",
|
||||
"orientation": "F"
|
||||
"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_illustrious_V1.0"
|
||||
"lora_triggers": "covering privates, covering crotch, covering breasts"
|
||||
},
|
||||
"tags": [
|
||||
"covering self",
|
||||
"covering_privates",
|
||||
"covering_breasts",
|
||||
"covering_crotch",
|
||||
"embarrassed",
|
||||
"blush",
|
||||
"hands on crotch",
|
||||
"arm across chest",
|
||||
"modesty",
|
||||
"legs together",
|
||||
"shy"
|
||||
"arm_across_chest",
|
||||
"legs_together"
|
||||
]
|
||||
}
|
||||
@@ -2,35 +2,23 @@
|
||||
"action_id": "coveringownmouth_ill_v1",
|
||||
"action_name": "Coveringownmouth Ill V1",
|
||||
"action": {
|
||||
"full_body": "character appearing sick or nauseous, posture slightly hunched forward",
|
||||
"head": "pale complexion, sweatdrops on face, cheeks flushed or blue (if severe), grimacing",
|
||||
"eyes": "tearing up, wincing, half-closed, or dilated pupils",
|
||||
"arms": "one or both arms raised sharply towards the face",
|
||||
"hands": "covering mouth, hand over mouth, fingers clutching face",
|
||||
"torso": "leaning forward, tense shoulders usually associated with retching or coughing",
|
||||
"pelvis": "neutral position or slightly bent forward",
|
||||
"legs": "knees slightly bent or trembling",
|
||||
"feet": "planted firmly or stumbling",
|
||||
"additional": "motion lines indicating shaking, gloom lines, vomit (optional/extreme)"
|
||||
},
|
||||
"participants": {
|
||||
"solo_focus": "true",
|
||||
"orientation": "F"
|
||||
"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": "CoveringOwnMouth_Ill_V1"
|
||||
"lora_triggers": "covering_own_mouth"
|
||||
},
|
||||
"tags": [
|
||||
"covering mouth",
|
||||
"hand over mouth",
|
||||
"ill",
|
||||
"sick",
|
||||
"nausea",
|
||||
"queasy",
|
||||
"motion sickness",
|
||||
"sweat",
|
||||
"pale"
|
||||
"covering_own_mouth"
|
||||
]
|
||||
}
|
||||
@@ -2,38 +2,32 @@
|
||||
"action_id": "cum_in_cleavage_illustrious",
|
||||
"action_name": "Cum In Cleavage Illustrious",
|
||||
"action": {
|
||||
"full_body": "close-up or cowboy shot focusing intensely on the upper body and chest area",
|
||||
"head": "flushed cheeks, heavy breathing, mouth slightly open, expression of embarrassment or pleasure, saliva trail",
|
||||
"eyes": "half-closed, heart-shaped pupils (optional), looking down at chest or shyly at viewer",
|
||||
"arms": "arms bent brings hands to chest level",
|
||||
"hands": "hands squeezing breasts together to deepen cleavage, or pulling clothing aside to reveal the mess",
|
||||
"torso": "large breasts pressed together, deep cleavage filled with pooling white seminal fluid, cum dripping down skin, messy upper body",
|
||||
"pelvis": "obscured or hips visible in background",
|
||||
"legs": "obscured",
|
||||
"feet": "out of frame",
|
||||
"additional": "high viscosity liquid detail, shiny skin, wet texture, after sex atmosphere"
|
||||
},
|
||||
"participants": {
|
||||
"solo_focus": "true",
|
||||
"orientation": "F"
|
||||
"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_illustrious"
|
||||
"lora_triggers": "cum_in_cleavage, holding own breasts"
|
||||
},
|
||||
"tags": [
|
||||
"cum",
|
||||
"cum in cleavage",
|
||||
"cum on breasts",
|
||||
"semen",
|
||||
"huge breasts",
|
||||
"cleavage",
|
||||
"messy",
|
||||
"sticky",
|
||||
"cum_on_breasts",
|
||||
"paizuri",
|
||||
"sex act",
|
||||
"illustration",
|
||||
"nsfw"
|
||||
"cleavage",
|
||||
"breasts",
|
||||
"breast_lift",
|
||||
"plump",
|
||||
"mature_female",
|
||||
"short_hair",
|
||||
"black_hair",
|
||||
"indoors"
|
||||
]
|
||||
}
|
||||
@@ -2,35 +2,42 @@
|
||||
"action_id": "cum_shot",
|
||||
"action_name": "Cum Shot",
|
||||
"action": {
|
||||
"full_body": "close-up, portrait, upper body focus, kneeling or sitting",
|
||||
"head": "mouth open, tongue out, blushing, sweating, cum on face, cum in mouth, semen on hair, messy hair",
|
||||
"eyes": "half-closed eyes, rolling eyes, heart-shaped pupils, looking at viewer, glazed eyes",
|
||||
"arms": "arms relaxed or hands framing face",
|
||||
"hands": "hands on cheeks, making peace sign, or wiping face",
|
||||
"torso": "exposed upper body, wet skin, cleavage",
|
||||
"pelvis": "obscured or out of frame",
|
||||
"legs": "kneeling or out of frame",
|
||||
"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 liquid, splashing, sticky texture, aftermath, detailed fluids, high contrast"
|
||||
},
|
||||
"participants": {
|
||||
"solo_focus": "true",
|
||||
"orientation": "MF"
|
||||
"additional": "white fluids, messy, dripping, shiny skin"
|
||||
},
|
||||
"lora": {
|
||||
"lora_name": "Illustrious/Poses/cum_shot.safetensors",
|
||||
"lora_weight": 1.0,
|
||||
"lora_triggers": "cum_shot"
|
||||
"lora_weight": 0.8,
|
||||
"lora_triggers": "cum, facial, ejaculation"
|
||||
},
|
||||
"tags": [
|
||||
"cum_shot",
|
||||
"facial",
|
||||
"semen",
|
||||
"cum",
|
||||
"facial",
|
||||
"ejaculation",
|
||||
"cum_on_body",
|
||||
"cum_on_breasts",
|
||||
"cum_in_eye",
|
||||
"cum_in_mouth",
|
||||
"bukkake",
|
||||
"aftermath",
|
||||
"nsfw",
|
||||
"liquid",
|
||||
"messy"
|
||||
"after_sex",
|
||||
"messy_body",
|
||||
"sticky",
|
||||
"white_fluid",
|
||||
"open_mouth",
|
||||
"tongue",
|
||||
"bukkake",
|
||||
"tongue_out",
|
||||
"saliva",
|
||||
"sweat",
|
||||
"blush",
|
||||
"ahegao"
|
||||
]
|
||||
}
|
||||
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"
|
||||
]
|
||||
}
|
||||
@@ -2,35 +2,30 @@
|
||||
"action_id": "cuminhands",
|
||||
"action_name": "Cuminhands",
|
||||
"action": {
|
||||
"full_body": "upper body focus, character presenting cupped hands towards the viewer",
|
||||
"head": "looking down at hands or looking at viewer, expression of embarrassment or lewd satisfaction, blushing",
|
||||
"eyes": "half-closed or wide open, focused on the hands",
|
||||
"arms": "elbows bent, forearms brought together in front of the chest or stomach",
|
||||
"hands": "cupped hands, palms facing up, fingers tight together, holding white liquid, messy hands",
|
||||
"torso": "posture slightly hunched or leaning forward to show hands",
|
||||
"pelvis": "stationary",
|
||||
"legs": "kneeling or standing",
|
||||
"feet": "planted",
|
||||
"additional": "white liquid, seminal fluid, dripping between fingers, sticky texture, high contrast fluids"
|
||||
},
|
||||
"participants": {
|
||||
"solo_focus": "true",
|
||||
"orientation": "F"
|
||||
"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": "cuminhands"
|
||||
"lora_triggers": "cum on hands, cupping hands, excessive cum, cum on face, cum in mouth, cum string"
|
||||
},
|
||||
"tags": [
|
||||
"cum in hands",
|
||||
"cupped hands",
|
||||
"holding cum",
|
||||
"cum",
|
||||
"bodily fluids",
|
||||
"messy",
|
||||
"palms up",
|
||||
"sticky",
|
||||
"white liquid"
|
||||
"cum_on_hands",
|
||||
"cupping_hands",
|
||||
"excessive_cum",
|
||||
"facial",
|
||||
"cum_in_mouth",
|
||||
"cum_string",
|
||||
"after_fellatio",
|
||||
"looking_at_hands"
|
||||
]
|
||||
}
|
||||
@@ -2,33 +2,36 @@
|
||||
"action_id": "cunnilingus_on_back_illustriousxl_lora_nochekaiser",
|
||||
"action_name": "Cunnilingus On Back Illustriousxl Lora Nochekaiser",
|
||||
"action": {
|
||||
"full_body": "lying on back, receiving oral sex, partner between legs",
|
||||
"head": "head tilted back, expression of pleasure, blushing, heavy breathing, mouth open",
|
||||
"eyes": "eyes closed, rolling eyes, or looking down at partner",
|
||||
"arms": "arms resting on bed or reaching towards partner",
|
||||
"hands": "gripping bedsheets, clutching pillow, or holding partner's head",
|
||||
"torso": "arched back, chest heaving",
|
||||
"pelvis": "hips lifted, crotch exposed to partner",
|
||||
"legs": "spread legs, legs apart, knees bent, m-legs",
|
||||
"feet": "toes curled, feet on bed",
|
||||
"additional": "partner's face in crotch, tongue, saliva, sexual act, intimate focus"
|
||||
},
|
||||
"participants": {
|
||||
"solo_focus": "true",
|
||||
"orientation": "MF"
|
||||
"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-illustriousxl-lora-nochekaiser"
|
||||
"lora_triggers": "cunnilingus on back"
|
||||
},
|
||||
"tags": [
|
||||
"cunnilingus",
|
||||
"oral sex",
|
||||
"lying on back",
|
||||
"spread legs",
|
||||
"pleasure",
|
||||
"sex",
|
||||
"NSFW"
|
||||
"lying",
|
||||
"on_back",
|
||||
"spread_legs",
|
||||
"hands_on_own_chest",
|
||||
"torogao",
|
||||
"half-closed_eyes",
|
||||
"sweat",
|
||||
"blush",
|
||||
"navel",
|
||||
"nipples",
|
||||
"hetero",
|
||||
"on_bed",
|
||||
"from_side"
|
||||
]
|
||||
}
|
||||
@@ -2,32 +2,30 @@
|
||||
"action_id": "danglinglegs",
|
||||
"action_name": "Danglinglegs",
|
||||
"action": {
|
||||
"full_body": "holding waist, dangling legs, size difference",
|
||||
"head": "facing forward or looking down",
|
||||
"eyes": "relaxed gaze",
|
||||
"arms": "resting on lap or gripping the edge of the seat",
|
||||
"hands": "placed on thighs or holding on",
|
||||
"torso": "upright sitting posture",
|
||||
"pelvis": "seated on edge",
|
||||
"legs": "dangling in the air, knees bent at edge, feet not touching the floor",
|
||||
"feet": "relaxed, hanging loose",
|
||||
"additional": "sitting on ledge, sitting on desk, high stool"
|
||||
},
|
||||
"participants": {
|
||||
"solo_focus": "true",
|
||||
"orientation": "MF"
|
||||
"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": "danglinglegs"
|
||||
"lora_triggers": "dangling legs, lifted by penis, suspended on penis"
|
||||
},
|
||||
"tags": [
|
||||
"dangling legs",
|
||||
"sitting",
|
||||
"feet off ground",
|
||||
"from below",
|
||||
"ledge",
|
||||
"high place"
|
||||
"suspended_congress",
|
||||
"lifting_person",
|
||||
"standing_sex",
|
||||
"sex_from_behind",
|
||||
"size_difference",
|
||||
"toes_up",
|
||||
"barefoot",
|
||||
"clenched_teeth"
|
||||
]
|
||||
}
|
||||
@@ -2,39 +2,32 @@
|
||||
"action_id": "deepthroat_ponytailhandle_anime_il_v1",
|
||||
"action_name": "Deepthroat Ponytailhandle Anime Il V1",
|
||||
"action": {
|
||||
"full_body": "kneeling, performing deepthroat fellatio, body angled towards partner",
|
||||
"head": "tilted back forcedly, mouth stretched wide, gagging, face flushed, hair pulled taught",
|
||||
"eyes": "tearing up, rolled back, looking up, streaming tears",
|
||||
"arms": "reaching forward, holding onto partner's legs for support",
|
||||
"hands": "grasping thighs, fingers digging in",
|
||||
"torso": "leaning forward, back slightly arched",
|
||||
"pelvis": "kneeling position",
|
||||
"legs": "knees on ground, shins flat",
|
||||
"feet": "toes curled tightly",
|
||||
"additional": "saliva trails, heavy breathing, hand grabbing ponytail, penis in mouth, irrumatio"
|
||||
},
|
||||
"participants": {
|
||||
"solo_focus": "true",
|
||||
"orientation": "MF"
|
||||
"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_Anime_IL_V1"
|
||||
"lora_triggers": "deepthroat_ponytailhandle, grabbing another's hair, ponytail"
|
||||
},
|
||||
"tags": [
|
||||
"irrumatio",
|
||||
"deepthroat",
|
||||
"fellatio",
|
||||
"oral sex",
|
||||
"hair pull",
|
||||
"grabbing hair",
|
||||
"grabbing_another's_hair",
|
||||
"ponytail",
|
||||
"kneeling",
|
||||
"gagging",
|
||||
"irrumatio",
|
||||
"drooling",
|
||||
"tears",
|
||||
"saliva",
|
||||
"submissive",
|
||||
"forced oral"
|
||||
"crying",
|
||||
"penis",
|
||||
"forced"
|
||||
]
|
||||
}
|
||||
@@ -2,32 +2,32 @@
|
||||
"action_id": "doggydoublefingering",
|
||||
"action_name": "Doggydoublefingering",
|
||||
"action": {
|
||||
"full_body": "all fours, doggy style, kneeling, presenting rear, from behind",
|
||||
"head": "looking back, looking at viewer, blushing face",
|
||||
"eyes": "half-closed eyes, expressionless or aroused",
|
||||
"arms": "reaching back between legs, reaching towards crotch",
|
||||
"hands": "fingering, double fingering, both hands used, spreading vaginal lips, manipulating genitals",
|
||||
"torso": "arched back, curvature of spine",
|
||||
"pelvis": "hips raised, presenting pussy, exposed gluteal crease",
|
||||
"legs": "knees bent on ground, thighs spread",
|
||||
"feet": "toes curled, relaxing instep",
|
||||
"additional": "pussy juice, focus on buttocks, focus on genitals"
|
||||
},
|
||||
"participants": {
|
||||
"solo_focus": "true",
|
||||
"orientation": "MF"
|
||||
"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": "DoggyDoubleFingering"
|
||||
"lora_triggers": "doggydoublefingerfront, from front, 3girls, multiple girls, fingering, sex from behind, doggystyle"
|
||||
},
|
||||
"tags": [
|
||||
"masturbation",
|
||||
"solo",
|
||||
"ass focus",
|
||||
"pussy",
|
||||
"kneeling",
|
||||
"NSFW"
|
||||
"3girls",
|
||||
"group_sex",
|
||||
"doggystyle",
|
||||
"fingering",
|
||||
"all_fours",
|
||||
"sex_from_behind",
|
||||
"vaginal",
|
||||
"hetero",
|
||||
"harem",
|
||||
"male_fingering"
|
||||
]
|
||||
}
|
||||
@@ -2,36 +2,35 @@
|
||||
"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 over a table or surface, bent at the waist",
|
||||
"head": "face submerged in a bowl, head bent downward",
|
||||
"eyes": "closed or obscured by liquid",
|
||||
"arms": "resting on the surface to support weight or holding the bowl",
|
||||
"hands": "palms flat on table or gripping the sides of the bowl",
|
||||
"torso": "leaned forward, horizontal alignment",
|
||||
"pelvis": "pushed back",
|
||||
"legs": "standing or kneeling",
|
||||
"feet": "resting on floor",
|
||||
"additional": "cum pool, large bowl filled with viscous white liquid, semen, messy, splashing, dripping"
|
||||
},
|
||||
"participants": {
|
||||
"solo_focus": "true",
|
||||
"orientation": "MF"
|
||||
"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": "Dunking_face_in_a_bowl_of_cum_r1"
|
||||
"lora_triggers": "face in cum bowl, cum in bowl, cum bubble, excessive cum"
|
||||
},
|
||||
"tags": [
|
||||
"dunking face",
|
||||
"face in bowl",
|
||||
"bowl of cum",
|
||||
"semen",
|
||||
"messy",
|
||||
"submerged",
|
||||
"leaning forward",
|
||||
"bent over",
|
||||
"white liquid",
|
||||
"1girl",
|
||||
"solo",
|
||||
"leaning_forward",
|
||||
"head_down",
|
||||
"clutching_head",
|
||||
"drowning",
|
||||
"air_bubble",
|
||||
"crying",
|
||||
"tears",
|
||||
"embarrassed",
|
||||
"disgust",
|
||||
"bowl",
|
||||
"cum"
|
||||
]
|
||||
}
|
||||
@@ -2,36 +2,33 @@
|
||||
"action_id": "extreme_sex_v1_0_illustriousxl",
|
||||
"action_name": "Extreme Sex V1 0 Illustriousxl",
|
||||
"action": {
|
||||
"full_body": "lying on back, mating press, legs lifted high, dynamic angle, foreshortening",
|
||||
"head": "head leaning back, heavy blush, sweat, mouth open, tongue out, intense expression",
|
||||
"eyes": "rolling eyes, heart-shaped pupils, eyelashes",
|
||||
"arms": "arms reaching forward, grabbing sheets, or holding own legs",
|
||||
"hands": "clenched hands, grabbing",
|
||||
"torso": "arched back, chest exposed, sweat on skin",
|
||||
"pelvis": "hips lifted, pelvis tilted upwards",
|
||||
"legs": "legs spread, m-legs, legs folded towards torso, knees bent",
|
||||
"feet": "feet in air, toes curled, plantar view",
|
||||
"additional": "motion lines, shaking, bodily fluids, bed sheet, pillow"
|
||||
},
|
||||
"participants": {
|
||||
"solo_focus": "true",
|
||||
"orientation": "MF"
|
||||
"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-v1.0-illustriousxl"
|
||||
"lora_triggers": "extreme sex"
|
||||
},
|
||||
"tags": [
|
||||
"mating press",
|
||||
"lying on back",
|
||||
"legs up",
|
||||
"open mouth",
|
||||
"blush",
|
||||
"sweat",
|
||||
"m-legs",
|
||||
"intense",
|
||||
"rolling_eyes",
|
||||
"ahegao",
|
||||
"explicit"
|
||||
"drooling",
|
||||
"sweat",
|
||||
"open_mouth",
|
||||
"tongue_out",
|
||||
"messy_hair",
|
||||
"heavy_breathing",
|
||||
"blush",
|
||||
"mind_break",
|
||||
"sex"
|
||||
]
|
||||
}
|
||||
@@ -2,35 +2,32 @@
|
||||
"action_id": "face_grab_illustrious",
|
||||
"action_name": "Face Grab Illustrious",
|
||||
"action": {
|
||||
"full_body": "medium shot or close up of a character having their face grabbed by a hand",
|
||||
"head": "face obscured by hand, cheeks squeezed, skin indentation from fingers, annoyed or pained expression",
|
||||
"eyes": "squinting or partially covered by fingers",
|
||||
"arms": "raised upwards attempting to pry the hand away",
|
||||
"hands": "holding the wrist or forearm of the grabbing hand",
|
||||
"torso": "upper body slightly leaned back from the force of the grab",
|
||||
"pelvis": "neutral alignment",
|
||||
"legs": "standing still",
|
||||
"feet": "planted firmly",
|
||||
"additional": "the grabbing hand usually belongs to another person or is an off-screen entity, commonly referred to as the iron claw technique"
|
||||
},
|
||||
"participants": {
|
||||
"solo_focus": "true",
|
||||
"orientation": "MF"
|
||||
"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": 1.0,
|
||||
"lora_triggers": "face_grab_illustrious"
|
||||
"lora_weight": 0.5,
|
||||
"lora_triggers": "fcgrb, face grab, grabbing another's face, pov, pov hand, open mouth, tongue out"
|
||||
},
|
||||
"tags": [
|
||||
"face grab",
|
||||
"iron claw",
|
||||
"hand on face",
|
||||
"hand over face",
|
||||
"skin indentation",
|
||||
"squeezed face",
|
||||
"fingers on face",
|
||||
"forced",
|
||||
"cheek pinch"
|
||||
"grabbing_another's_face",
|
||||
"pov",
|
||||
"pov_hands",
|
||||
"after_fellatio",
|
||||
"cum_on_tongue",
|
||||
"open_mouth",
|
||||
"tongue_out",
|
||||
"pout",
|
||||
"streaming_tears",
|
||||
"cheek_pinching"
|
||||
]
|
||||
}
|
||||
@@ -2,33 +2,36 @@
|
||||
"action_id": "facesit_08",
|
||||
"action_name": "Facesit 08",
|
||||
"action": {
|
||||
"full_body": "POV perspective from below, character straddling the camera/viewer in a squatting or kneeling position",
|
||||
"head": "tilted downwards, looking directly at the viewer",
|
||||
"eyes": "gazing down, maintaining eye contact",
|
||||
"arms": "resting comfortably",
|
||||
"hands": "placed on own thighs or knees for support",
|
||||
"torso": "foreshortened from below, leaning slightly forward",
|
||||
"pelvis": "positioned directly over the camera lens, dominating the frame",
|
||||
"legs": "spread wide, knees bent deeply, thighs framing the view",
|
||||
"feet": "resting on the surface on either side of the viewpoint",
|
||||
"additional": "extreme low angle, forced perspective, intimate proximity"
|
||||
},
|
||||
"participants": {
|
||||
"solo_focus": "true",
|
||||
"orientation": "MF"
|
||||
"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": 1.0,
|
||||
"lora_triggers": "facesit-08"
|
||||
"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": [
|
||||
"facesitting",
|
||||
"pov",
|
||||
"femdom",
|
||||
"squatting",
|
||||
"looking down",
|
||||
"low angle",
|
||||
"thighs"
|
||||
"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"
|
||||
]
|
||||
}
|
||||
@@ -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"
|
||||
]
|
||||
}
|
||||
@@ -2,37 +2,36 @@
|
||||
"action_id": "fellatio_on_couch_illustriousxl_lora_nochekaiser",
|
||||
"action_name": "Fellatio On Couch Illustriousxl Lora Nochekaiser",
|
||||
"action": {
|
||||
"full_body": "kneeling on couch, leaning forward, performing fellatio, sexual act, duo focus",
|
||||
"head": "face in crotch, mouth open, sucking, cheeks hollowed, saliva trail",
|
||||
"eyes": "looking up, half-closed eyes, eye contact, ahegao",
|
||||
"arms": "reaching forward, holding partner's thighs, resting on cushions",
|
||||
"hands": "stroking penis, gripping legs, guiding head",
|
||||
"torso": "leaning forward, bent over, arched back",
|
||||
"pelvis": "kneeling, hips pushed back",
|
||||
"legs": "kneeling on sofa, spread slightly, knees bent",
|
||||
"feet": "toes curled, resting on upholstery, plantar flexion",
|
||||
"additional": "indoor, living room, sofa, couch, fabric texture, motion lines"
|
||||
},
|
||||
"participants": {
|
||||
"solo_focus": "true",
|
||||
"orientation": "MF"
|
||||
"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-illustriousxl-lora-nochekaiser"
|
||||
"lora_triggers": "fellatio on couch, hetero, penis, oral, sitting, fellatio, testicles, blush, couch, sweat, breast press, nipples, completely nude, uncensored"
|
||||
},
|
||||
"tags": [
|
||||
"fellatio",
|
||||
"oral sex",
|
||||
"on couch",
|
||||
"kneeling",
|
||||
"sofa",
|
||||
"on_couch",
|
||||
"hetero",
|
||||
"penis",
|
||||
"cum",
|
||||
"saliva",
|
||||
"indoor",
|
||||
"sex",
|
||||
"blowjob"
|
||||
"oral",
|
||||
"sitting",
|
||||
"testicles",
|
||||
"blush",
|
||||
"sweat",
|
||||
"breast_press",
|
||||
"nipples",
|
||||
"nude",
|
||||
"uncensored",
|
||||
"couch"
|
||||
]
|
||||
}
|
||||
@@ -2,36 +2,31 @@
|
||||
"action_id": "femdom_held_down_illust",
|
||||
"action_name": "Femdom Held Down Illust",
|
||||
"action": {
|
||||
"full_body": "dominant character straddling someone, pinning them to the surface, assertive posture, on top",
|
||||
"head": "looking down at viewer (pov), dominance expression, chin tilted down",
|
||||
"eyes": "narrowed, intense eye contact, looking down",
|
||||
"arms": "extended downwards, locked elbows, exerting pressure",
|
||||
"hands": "forcefully holding wrists against the surface, pinning hands, wrist grab",
|
||||
"torso": "leaning forward slightly, arching back, looming over",
|
||||
"pelvis": "straddling the subject's waist or chest, hips grounded",
|
||||
"legs": "knees bent, kneeling on either side of the subject, thighs active",
|
||||
"feet": "kneeling position, toes touching the ground or bed",
|
||||
"additional": "pov, from below, power dynamic, submission, floor or bed background"
|
||||
},
|
||||
"participants": {
|
||||
"solo_focus": "true",
|
||||
"orientation": "MF"
|
||||
"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": 1.0,
|
||||
"lora_triggers": "Femdom_Held_Down_Illust"
|
||||
"lora_weight": 0.8,
|
||||
"lora_triggers": "fdom_held"
|
||||
},
|
||||
"tags": [
|
||||
"femdom",
|
||||
"held down",
|
||||
"pinning",
|
||||
"assertive_female",
|
||||
"rough_sex",
|
||||
"girl_on_top",
|
||||
"straddling",
|
||||
"on top",
|
||||
"looking down",
|
||||
"pov",
|
||||
"from below",
|
||||
"wrist grab",
|
||||
"dominance"
|
||||
"holding_another's_wrists",
|
||||
"lying_on_back",
|
||||
"pinned",
|
||||
"struggling"
|
||||
]
|
||||
}
|
||||
@@ -2,34 +2,34 @@
|
||||
"action_id": "fertilization_illustriousxl_lora_nochekaiser",
|
||||
"action_name": "Fertilization Illustriousxl Lora Nochekaiser",
|
||||
"action": {
|
||||
"full_body": "lying on back, legs spread, internal view, cross-section, x-ray view of abdomen",
|
||||
"head": "head resting on pillow, heavy breathing, blushing",
|
||||
"eyes": "half-closed eyes, rolled back eyes or heart-shaped pupils",
|
||||
"arms": "arms resting at sides or holding bed sheets",
|
||||
"hands": "hands clutching sheets or resting on stomach",
|
||||
"torso": "exposed tummy, navel, transparent skin effect",
|
||||
"pelvis": "focus on womb, uterus visible, internal female anatomy",
|
||||
"legs": "legs spread wide, m-legs, knees up",
|
||||
"feet": "toes curled",
|
||||
"additional": "visualized fertilization process, sperm, egg, cum inside, glowing internal organs, detailed uterus, biology diagram style"
|
||||
},
|
||||
"participants": {
|
||||
"solo_focus": "true",
|
||||
"orientation": "MF"
|
||||
"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-illustriousxl-lora-nochekaiser"
|
||||
"lora_triggers": "fertilization, ovum, impregnation, sperm cell, cross-section, cum in pussy, internal cumshot, uterus, cum, sex, vaginal, ovaries, penis, hetero, ejaculation"
|
||||
},
|
||||
"tags": [
|
||||
"fertilization",
|
||||
"internal view",
|
||||
"cross-section",
|
||||
"x-ray",
|
||||
"womb",
|
||||
"cum inside",
|
||||
"ovum",
|
||||
"sperm_cell",
|
||||
"impregnation",
|
||||
"uterus",
|
||||
"impregnation"
|
||||
"internal_cumshot",
|
||||
"cum_in_pussy",
|
||||
"vaginal",
|
||||
"ovaries",
|
||||
"ahegao",
|
||||
"on_bed"
|
||||
]
|
||||
}
|
||||
@@ -2,38 +2,32 @@
|
||||
"action_id": "fff_imminent_masturbation",
|
||||
"action_name": "Fff Imminent Masturbation",
|
||||
"action": {
|
||||
"full_body": "lying on back, reclining mostly nude, body tense with anticipation",
|
||||
"head": "tilted back slightly, chin up, face flushed",
|
||||
"eyes": "half-closed, heavy-lidded, lustful gaze",
|
||||
"arms": "reaching downwards along the body",
|
||||
"hands": "hovering near genitals, fingers spreading, one hand grasping thigh, one hand reaching into panties or towards crotch",
|
||||
"torso": "arched back, chest heaving",
|
||||
"pelvis": "tilted upward, hips lifted slightly",
|
||||
"legs": "spread wide, knees bent and falling outward (M-legs)",
|
||||
"feet": "toes curled",
|
||||
"additional": "sweaty skin, disheveled clothing, underwear pulled aside, messy sheets"
|
||||
},
|
||||
"participants": {
|
||||
"solo_focus": "false",
|
||||
"orientation": "FFF"
|
||||
"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_imminent_masturbation"
|
||||
"lora_triggers": "FFF_grabbing_own_crotch, trembling, sweat, breath, imminent_masturbation"
|
||||
},
|
||||
"tags": [
|
||||
"solo",
|
||||
"female",
|
||||
"imminent masturbation",
|
||||
"hand near crotch",
|
||||
"hand in panties",
|
||||
"fingering",
|
||||
"spread legs",
|
||||
"lying",
|
||||
"on bed",
|
||||
"aroused",
|
||||
"hand_on_own_crotch",
|
||||
"heavy_breathing",
|
||||
"trembling",
|
||||
"sweat",
|
||||
"blush",
|
||||
"nsfw"
|
||||
"legs_together",
|
||||
"clothed_masturbation",
|
||||
"hand_between_legs",
|
||||
"aroused",
|
||||
"rubbing_crotch"
|
||||
]
|
||||
}
|
||||
@@ -2,37 +2,37 @@
|
||||
"action_id": "ffm_threesome___kiss_and_fellatio_illustrious",
|
||||
"action_name": "Ffm Threesome Kiss And Fellatio Illustrious",
|
||||
"action": {
|
||||
"full_body": "FFM threesome composition, 1boy between 2girls, simultaneous sexual activity",
|
||||
"head": "one female kissing the male deep french kiss, second female bobbing head at crotch level",
|
||||
"eyes": "eyes closed in pleasure, half-lidded, rolling back",
|
||||
"arms": "wrapping around neck, holding head, bracing on thighs",
|
||||
"hands": "fingers tangled in hair, holding penis, guiding head, groping",
|
||||
"torso": "leaning forward, arched back, sitting upright",
|
||||
"pelvis": "kneeling, sitting on lap, hips thrust forward",
|
||||
"legs": "kneeling, spread legs, wrapped around waist",
|
||||
"feet": "arched feet, curled toes",
|
||||
"additional": "saliva trail, tongue, penis in mouth, cheek poking, blush, sweat, intimate lighting"
|
||||
},
|
||||
"participants": {
|
||||
"solo_focus": "false",
|
||||
"orientation": "FFM"
|
||||
"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_Illustrious"
|
||||
"lora_triggers": "ffm_threesome_kiss_and_fellatio"
|
||||
},
|
||||
"tags": [
|
||||
"ffm",
|
||||
"threesome",
|
||||
"group sex",
|
||||
"kissing",
|
||||
"fellatio",
|
||||
"blowjob",
|
||||
"2girls",
|
||||
"1boy",
|
||||
"simultaneous oral",
|
||||
"french kiss",
|
||||
"penis in mouth"
|
||||
"ffm_threesome",
|
||||
"group_sex",
|
||||
"hetero",
|
||||
"kissing",
|
||||
"fellatio",
|
||||
"faceless_male",
|
||||
"sitting",
|
||||
"couch",
|
||||
"indoor",
|
||||
"nude",
|
||||
"blush",
|
||||
"saliva",
|
||||
"sandwich_position"
|
||||
]
|
||||
}
|
||||
@@ -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"
|
||||
]
|
||||
}
|
||||
@@ -2,39 +2,37 @@
|
||||
"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 scene consisting of a male lying on his back on a bed, one female straddling his hips in a cowgirl position, and a second female positioned near his head or upper body",
|
||||
"head": "heads close together, expressions of pleasure, mouth open, blushing",
|
||||
"eyes": "rolled back, heart-shaped pupils, closed eyes, looking down",
|
||||
"arms": "reaching out, holding hips, caressing face, resting on bed",
|
||||
"hands": "gripping waist, holding hair, touching chest",
|
||||
"torso": "arching back, leaning forward, sweat on skin, bare skin",
|
||||
"pelvis": "interlocking hips, straddling, grinding motion",
|
||||
"legs": "kneeling, spread wide, bent at knees",
|
||||
"feet": "toes curled, resting on mattress",
|
||||
"additional": "bedroom setting, crumpled sheets, intimate atmosphere, soft lighting"
|
||||
},
|
||||
"participants": {
|
||||
"solo_focus": "false",
|
||||
"orientation": "FFM"
|
||||
"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_one_girl_on_top_and_BJ"
|
||||
"lora_triggers": "ffm_threesome_straddling_fellatio"
|
||||
},
|
||||
"tags": [
|
||||
"ffm_threesome",
|
||||
"cowgirl_position",
|
||||
"fellatio",
|
||||
"straddling",
|
||||
"2girls",
|
||||
"1boy",
|
||||
"ffm",
|
||||
"threesome",
|
||||
"cowgirl",
|
||||
"fellatio",
|
||||
"woman on top",
|
||||
"reaction",
|
||||
"lying",
|
||||
"on_back",
|
||||
"nude",
|
||||
"sex",
|
||||
"vaginal",
|
||||
"oral",
|
||||
"group sex",
|
||||
"lying on back",
|
||||
"nude"
|
||||
"penis",
|
||||
"testicles",
|
||||
"erotic",
|
||||
"cum"
|
||||
]
|
||||
}
|
||||
@@ -2,33 +2,30 @@
|
||||
"action_id": "fixed_point_v2",
|
||||
"action_name": "Fixed Point V2",
|
||||
"action": {
|
||||
"full_body": "standing, assertive posture, foreshortening effect on the arm",
|
||||
"head": "facing viewer, chin slightly tucked or tilted confidentially",
|
||||
"eyes": "looking at viewer, focused gaze, winking or intense stare",
|
||||
"arms": "arm extended forward towards the camera, elbow straight or slightly bent",
|
||||
"hands": "finger gun, pointing, index finger extended, thumb raised, hand gesture",
|
||||
"torso": "facing forward, slight rotation to align with the pointing arm",
|
||||
"pelvis": "neutral standing position",
|
||||
"legs": "standing, hip width apart",
|
||||
"feet": "grounded",
|
||||
"additional": "depth of field, focus on hand, perspective usually from front"
|
||||
},
|
||||
"participants": {
|
||||
"solo_focus": "true",
|
||||
"orientation": "MF"
|
||||
"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": 1.0,
|
||||
"lora_triggers": "fixed_point_v2"
|
||||
"lora_weight": 0.8,
|
||||
"lora_triggers": "fxdpt, full room view"
|
||||
},
|
||||
"tags": [
|
||||
"gesture",
|
||||
"finger gun",
|
||||
"pointing",
|
||||
"aiming",
|
||||
"looking at viewer",
|
||||
"foreshortening",
|
||||
"bang"
|
||||
"kneeling",
|
||||
"on_floor",
|
||||
"indoors",
|
||||
"bedroom",
|
||||
"bed",
|
||||
"wide_shot",
|
||||
"from_above",
|
||||
"perspective"
|
||||
]
|
||||
}
|
||||
@@ -2,33 +2,31 @@
|
||||
"action_id": "flaccid_after_cum_illustrious_000009",
|
||||
"action_name": "Flaccid After Cum Illustrious 000009",
|
||||
"action": {
|
||||
"full_body": "lying on back, limp pose, completely spent, relaxed muscles, spread eagle",
|
||||
"head": "head tilted back, mouth open, tongue hanging out, messy hair, heavy breathing",
|
||||
"eyes": "half-closed eyes, eyes rolled back, glassy eyes, ahegao",
|
||||
"arms": "arms spread wide, limp arms, resting on surface",
|
||||
"hands": "loosely open hands, twitching fingers",
|
||||
"torso": "heaving chest, sweating skin, relaxed abdomen",
|
||||
"pelvis": "exposed, hips flat on surface",
|
||||
"legs": "legs spread wide, m-legs, knees bent and falling outward",
|
||||
"feet": "toes curled",
|
||||
"additional": "covered in white liquid, messy body, bodily fluids, after sex, exhaustion, sweat drops"
|
||||
},
|
||||
"participants": {
|
||||
"solo_focus": "true",
|
||||
"orientation": "MF"
|
||||
"full_body": "exhausted post-coital slump, relaxing",
|
||||
"head": "flushed face, head tilted back, disheveled hair",
|
||||
"eyes": "half-closed, ahegao or glazed expression",
|
||||
"arms": "limp, resting at sides",
|
||||
"hands": "relaxed, open",
|
||||
"torso": "sweaty skin, heaving chest",
|
||||
"pelvis": "flaccid penis exposed, soft, seminal fluid leaking",
|
||||
"legs": "spread wide, relaxed",
|
||||
"feet": "loose",
|
||||
"additional": "messy bed sheets, heavy breathing, steamy atmosphere"
|
||||
},
|
||||
"lora": {
|
||||
"lora_name": "Illustrious/Poses/Flaccid_After_Cum_Illustrious-000009.safetensors",
|
||||
"lora_weight": 1.0,
|
||||
"lora_triggers": "Flaccid_After_Cum_Illustrious-000009"
|
||||
"lora_triggers": "flaccid after cum"
|
||||
},
|
||||
"tags": [
|
||||
"lying",
|
||||
"after_sex",
|
||||
"flaccid",
|
||||
"cum_in_pussy",
|
||||
"sweat",
|
||||
"blush",
|
||||
"open mouth",
|
||||
"bodily fluids",
|
||||
"spread legs",
|
||||
"ahegao"
|
||||
"heavy_breathing",
|
||||
"messy_hair",
|
||||
"cum_on_body",
|
||||
"cum_in_mouth",
|
||||
"after_fellatio"
|
||||
]
|
||||
}
|
||||
35
data/actions/full_body_blowjob.json
Normal file
35
data/actions/full_body_blowjob.json
Normal file
@@ -0,0 +1,35 @@
|
||||
{
|
||||
"action_id": "full_body_blowjob",
|
||||
"action_name": "Full Body Blowjob",
|
||||
"action": {
|
||||
"full_body": "fellatio, full_body, from_side",
|
||||
"head": "cheek_bulge",
|
||||
"eyes": "half-closed_eyes",
|
||||
"arms": "reaching",
|
||||
"hands": "penis_grab",
|
||||
"torso": "leaning_forward, nude",
|
||||
"pelvis": "kneeling",
|
||||
"legs": "kneeling",
|
||||
"feet": "barefoot",
|
||||
"additional": "saliva_trail, head_grab"
|
||||
},
|
||||
"lora": {
|
||||
"lora_name": "Illustrious/Poses/full_body_blowjob.safetensors",
|
||||
"lora_weight": 0.9,
|
||||
"lora_triggers": "full_body_blowjob"
|
||||
},
|
||||
"tags": [
|
||||
"fellatio",
|
||||
"full_body",
|
||||
"from_side",
|
||||
"kneeling",
|
||||
"penis",
|
||||
"nude",
|
||||
"1girl",
|
||||
"1boy",
|
||||
"oral",
|
||||
"cheek_bulge",
|
||||
"head_grab",
|
||||
"penis_grab"
|
||||
]
|
||||
}
|
||||
@@ -2,40 +2,28 @@
|
||||
"action_id": "futa_on_female_000051_1_",
|
||||
"action_name": "Futa On Female 000051 1 ",
|
||||
"action": {
|
||||
"full_body": "intimate duo pose, futanari character positioning closely on top of female character, missionary or pressing variance",
|
||||
"head": "flushed complexion, heavy breathing, looking at partner",
|
||||
"eyes": "half-closed in pleasure, heart-shaped pupils, watery eyes",
|
||||
"arms": "arms supporting weight on surface or embracing partner",
|
||||
"hands": "grasping partner's shoulders or hips, fingers digging into skin",
|
||||
"torso": "sweaty skin, leaning forward, chest contact",
|
||||
"pelvis": "interlocked hips, penetrating action, engaged core",
|
||||
"legs": "kneeling between partner's thighs, thighs touching",
|
||||
"feet": "toes curled, arched feet",
|
||||
"additional": "bodily fluids, motion lines, sweat, messy bed sheets"
|
||||
},
|
||||
"participants": {
|
||||
"solo_focus": "false",
|
||||
"orientation": "FF"
|
||||
"full_body": "2girls, futa_with_female, sex",
|
||||
"head": "looking_at_viewer, blush",
|
||||
"eyes": "open_eyes",
|
||||
"arms": "braided_arms, grabbing_hips",
|
||||
"hands": "on_hips",
|
||||
"torso": "breasts, nipples",
|
||||
"pelvis": "futanari, penis, vaginal, pussy",
|
||||
"legs": "spread_legs, straddling",
|
||||
"feet": "barefoot",
|
||||
"additional": "duo, bodily_fluids"
|
||||
},
|
||||
"lora": {
|
||||
"lora_name": "Illustrious/Poses/Futa_on_Female-000051(1).safetensors",
|
||||
"lora_weight": 1.0,
|
||||
"lora_triggers": "Futa_on_Female-000051(1)"
|
||||
"lora_triggers": "futa with female"
|
||||
},
|
||||
"tags": [
|
||||
"futa_with_female",
|
||||
"futanari",
|
||||
"futa_on_female",
|
||||
"1girl",
|
||||
"1futanari",
|
||||
"2girls",
|
||||
"vaginal",
|
||||
"sex",
|
||||
"penis",
|
||||
"erection",
|
||||
"pussy",
|
||||
"cum",
|
||||
"sweat",
|
||||
"blush",
|
||||
"duo",
|
||||
"nsfw"
|
||||
"breasts"
|
||||
]
|
||||
}
|
||||
@@ -2,36 +2,36 @@
|
||||
"action_id": "giantess_cunnilingus_illustrious",
|
||||
"action_name": "Giantess Cunnilingus Illustrious",
|
||||
"action": {
|
||||
"full_body": "giantess, size difference, recumbent, m-legs, lying on back, low angle view, from below",
|
||||
"head": "pleasured expression, heavy blush, mouth open, head thrown back, panting",
|
||||
"eyes": "half-closed eyes, rolling eyes, heart-shaped pupils, ahegao",
|
||||
"arms": "arms spread, resting",
|
||||
"hands": "hands grasping sheets, clenching",
|
||||
"torso": "large breasts, heaving chest, arched back",
|
||||
"pelvis": "legs spread wide, exposed pussy, wet",
|
||||
"legs": "spread legs, bent knees, thick thighs",
|
||||
"feet": "toes curled",
|
||||
"additional": "cunnilingus, oral sex, licking, tongue, saliva, micro male, miniguy, shrunken partner, pov"
|
||||
},
|
||||
"participants": {
|
||||
"solo_focus": "true",
|
||||
"orientation": "MF"
|
||||
"full_body": "A tall female giantess standing, often leaning back against a wall, while a much shorter male performs cunnilingus.",
|
||||
"head": "Looking down, often laughing or with a happy/aroused expression.",
|
||||
"eyes": "Looking down at partner.",
|
||||
"arms": "Hands placed on the partner's head, pressing it into her crotch or grabbing their hair.",
|
||||
"hands": "Hands upon another's head, holding head.",
|
||||
"torso": "Leaning back slightly, often against a vertical surface.",
|
||||
"pelvis": "Thrust forward or positioned for access.",
|
||||
"legs": "Standing, legs apart or one leg lifted (leg lock).",
|
||||
"feet": "Standing on ground.",
|
||||
"additional": "Extreme size difference emphasized."
|
||||
},
|
||||
"lora": {
|
||||
"lora_name": "Illustrious/Poses/Giantess_Cunnilingus_Illustrious.safetensors",
|
||||
"lora_weight": 1.0,
|
||||
"lora_triggers": "Giantess_Cunnilingus_Illustrious"
|
||||
"lora_weight": 0.8,
|
||||
"lora_triggers": "giantess cunnilingus, tall_female, short_male"
|
||||
},
|
||||
"tags": [
|
||||
"illustrious (azur lane)",
|
||||
"giantess",
|
||||
"cunnilingus",
|
||||
"size difference",
|
||||
"micro",
|
||||
"low angle",
|
||||
"m-legs",
|
||||
"oral sex",
|
||||
"standing_cunnilingus",
|
||||
"femdom",
|
||||
"anime center"
|
||||
"size_difference",
|
||||
"tall_female",
|
||||
"short_male",
|
||||
"hands_on_another's_head",
|
||||
"leaning_back",
|
||||
"against_wall",
|
||||
"laughing",
|
||||
"looking_down",
|
||||
"face_in_crotch",
|
||||
"leg_lock"
|
||||
]
|
||||
}
|
||||
@@ -2,33 +2,32 @@
|
||||
"action_id": "giantess_missionary_000037",
|
||||
"action_name": "Giantess Missionary 000037",
|
||||
"action": {
|
||||
"full_body": "lying on back, missionary position, legs spread, engaging in sexual activity, large female figure dominating perspective",
|
||||
"head": "head resting on pillow, looking down at partner or looking up in pleasure",
|
||||
"eyes": "half-closed eyes, looking at viewer, or rolled back",
|
||||
"arms": "reaching up, wrapping around partner, or resting on surface",
|
||||
"hands": "grasping sheets, holding partner, or open palms",
|
||||
"torso": "chest facing up, breasts pressed or swaying",
|
||||
"pelvis": "hips centered, groin exposed, receiving",
|
||||
"legs": "spread legs, knees bent, legs in variable m-shape or wrapping around partner",
|
||||
"feet": "toes curled, feet in air or resting on bed",
|
||||
"additional": "giantess, size difference, micro male (optional context), low angle view"
|
||||
},
|
||||
"participants": {
|
||||
"solo_focus": "true",
|
||||
"orientation": "MF"
|
||||
"full_body": "missionary, lying, on_back, size_difference, giantess, larger_female",
|
||||
"head": "face_between_breasts, burying_face",
|
||||
"eyes": "closed_eyes, expressionless",
|
||||
"arms": "hug, arms_around_back",
|
||||
"hands": "hands_on_back",
|
||||
"torso": "breasts, cleavage, large_breasts",
|
||||
"pelvis": "hops",
|
||||
"legs": "spread_legs, legs_up",
|
||||
"feet": "barefoot",
|
||||
"additional": "male_on_top, hetero, bearhug, femdom"
|
||||
},
|
||||
"lora": {
|
||||
"lora_name": "Illustrious/Poses/Giantess_Missionary-000037.safetensors",
|
||||
"lora_weight": 1.0,
|
||||
"lora_triggers": "Giantess_Missionary-000037"
|
||||
"lora_weight": 0.9,
|
||||
"lora_triggers": "M0t0rB0atM1ss10nary"
|
||||
},
|
||||
"tags": [
|
||||
"missionary",
|
||||
"giantess",
|
||||
"lying on back",
|
||||
"legs spread",
|
||||
"size difference",
|
||||
"sex",
|
||||
"vaginal"
|
||||
"size_difference",
|
||||
"larger_female",
|
||||
"face_between_breasts",
|
||||
"hug",
|
||||
"spread_legs",
|
||||
"lying",
|
||||
"on_back",
|
||||
"cleavage"
|
||||
]
|
||||
}
|
||||
@@ -2,35 +2,28 @@
|
||||
"action_id": "girls_lineup_il_1144149",
|
||||
"action_name": "Girls Lineup Il 1144149",
|
||||
"action": {
|
||||
"full_body": "standing, police lineup, mugshot, full body shot",
|
||||
"head": "looking at viewer, neutral expression, facing forward",
|
||||
"eyes": "open eyes, staring",
|
||||
"arms": "arms at sides, arms behind back",
|
||||
"hands": "hands behind back",
|
||||
"torso": "facing forward, upright posture",
|
||||
"pelvis": "facing forward",
|
||||
"legs": "standing straight, feet shoulder width apart",
|
||||
"feet": "flat on ground",
|
||||
"additional": "height chart, wall markings, measurement lines, police station background, indoor, simple background"
|
||||
},
|
||||
"participants": {
|
||||
"solo_focus": "true",
|
||||
"orientation": "MF"
|
||||
"full_body": "multiple girls standing in a row",
|
||||
"head": "facing viewer",
|
||||
"eyes": "looking at viewer",
|
||||
"arms": "arms at sides",
|
||||
"hands": "hands at sides",
|
||||
"torso": "standing",
|
||||
"pelvis": "facing viewer",
|
||||
"legs": "standing",
|
||||
"feet": "standing",
|
||||
"additional": "simple background"
|
||||
},
|
||||
"lora": {
|
||||
"lora_name": "Illustrious/Poses/girls_lineup_IL_1144149.safetensors",
|
||||
"lora_weight": 1.0,
|
||||
"lora_triggers": "girls_lineup_IL_1144149"
|
||||
"lora_triggers": "lineup"
|
||||
},
|
||||
"tags": [
|
||||
"police lineup",
|
||||
"mugshot",
|
||||
"height chart",
|
||||
"lineup",
|
||||
"multiple_girls",
|
||||
"standing",
|
||||
"criminal",
|
||||
"arrest",
|
||||
"prison",
|
||||
"law enforcement",
|
||||
"measurement"
|
||||
"facing_viewer",
|
||||
"looking_at_viewer",
|
||||
"simple_background"
|
||||
]
|
||||
}
|
||||
@@ -2,34 +2,32 @@
|
||||
"action_id": "glory_wall_stuck_illustrious",
|
||||
"action_name": "Glory Wall Stuck Illustrious",
|
||||
"action": {
|
||||
"full_body": "character stuck in wall, bent over pose, viewed from behind, lower body exposed",
|
||||
"head": "head through hole, hidden inside wall",
|
||||
"eyes": "not visible",
|
||||
"arms": "arms through hole, reaching forward or bracing against the other side",
|
||||
"hands": "not visible",
|
||||
"torso": "upper torso obscured by wall, bent forward 90 degrees",
|
||||
"pelvis": "hips trapped in hole, stuck fast, protruding rear",
|
||||
"legs": "standing, legs spread apart, knees slightly bent for stability",
|
||||
"feet": "standing on ground, possibly on tiptoes",
|
||||
"additional": "wooden or concrete wall, circular hole, sense of entrapment, struggling"
|
||||
},
|
||||
"participants": {
|
||||
"solo_focus": "true",
|
||||
"orientation": "MF"
|
||||
"full_body": "stuck, bent_over, from_behind",
|
||||
"head": "looking_back, looking_at_viewer",
|
||||
"eyes": "looking_at_viewer",
|
||||
"arms": "arms_behind_back",
|
||||
"hands": "hands_on_wall",
|
||||
"torso": "bent_over",
|
||||
"pelvis": "ass, ass_focus, panties, underwear, pussy",
|
||||
"legs": "legs_up, standing",
|
||||
"feet": "barefoot, shoes",
|
||||
"additional": "glory_hole, wall"
|
||||
},
|
||||
"lora": {
|
||||
"lora_name": "Illustrious/Poses/Glory_Wall_Stuck_illustrious.safetensors",
|
||||
"lora_weight": 1.0,
|
||||
"lora_triggers": "Glory_Wall_Stuck_illustrious"
|
||||
"lora_triggers": "glory_wall_stuck"
|
||||
},
|
||||
"tags": [
|
||||
"stuck in wall",
|
||||
"glory hole",
|
||||
"bent over",
|
||||
"from behind",
|
||||
"trapped",
|
||||
"lower body",
|
||||
"legs apart",
|
||||
"stuck"
|
||||
"stuck",
|
||||
"glory_hole",
|
||||
"ass_focus",
|
||||
"from_behind",
|
||||
"looking_back",
|
||||
"bent_over",
|
||||
"ass",
|
||||
"panties",
|
||||
"legs_up",
|
||||
"wall"
|
||||
]
|
||||
}
|
||||
33
data/actions/goblin_molestation_illustrious.json
Normal file
33
data/actions/goblin_molestation_illustrious.json
Normal file
@@ -0,0 +1,33 @@
|
||||
{
|
||||
"action_id": "goblin_molestation_illustrious",
|
||||
"action_name": "Goblin Molestation Illustrious",
|
||||
"action": {
|
||||
"full_body": "1girl surrounded by multiple small goblins in a gangbang scenario",
|
||||
"head": "flustered, ahegao, or distressed expression",
|
||||
"eyes": "tearing, rolling back, or heart-shaped pupils",
|
||||
"arms": "restrained, held back, or grabbing sheets",
|
||||
"hands": "clenched or grasped by goblins",
|
||||
"torso": "exposed, pinned down, size difference emphasized",
|
||||
"pelvis": "engaged in sexual activity, hips lifted",
|
||||
"legs": "m-legs, spread wide, or held up by goblins",
|
||||
"feet": "toes curled in pleasure or pain",
|
||||
"additional": "size difference, bodily fluids, messy environment, cave background"
|
||||
},
|
||||
"lora": {
|
||||
"lora_name": "Illustrious/Poses/Goblin_Molestation_Illustrious.safetensors",
|
||||
"lora_weight": 0.8,
|
||||
"lora_triggers": "Goblinestation, gangbang, many goblins, multiple boys, 1girl, sex"
|
||||
},
|
||||
"tags": [
|
||||
"1girl",
|
||||
"goblin",
|
||||
"multiple_boys",
|
||||
"gangbang",
|
||||
"group_sex",
|
||||
"sex",
|
||||
"cum",
|
||||
"size_difference",
|
||||
"surrounded",
|
||||
"rape"
|
||||
]
|
||||
}
|
||||
@@ -2,33 +2,30 @@
|
||||
"action_id": "goblin_sucking_boobs_illustrious",
|
||||
"action_name": "Goblin Sucking Boobs Illustrious",
|
||||
"action": {
|
||||
"full_body": "size difference, intimate interaction, a small goblin clinging to the torso of a larger female character",
|
||||
"head": "looking down, expression of pleasure or surprise, heavy blush, saliva",
|
||||
"eyes": "half-closed eyes, heart-shaped pupils, looking at goblin",
|
||||
"arms": "cradling the goblin, holding the goblin's head, pressing breast to mouth",
|
||||
"hands": "fingers spread, holding the creature, squeezing breast",
|
||||
"torso": "exposed breasts, breast sucking, nipple stimulation, arching back",
|
||||
"pelvis": "slightly pushed forward or seated pose",
|
||||
"legs": "standing or sitting, relaxed stance",
|
||||
"feet": "toes curled (if visible)",
|
||||
"additional": "monster, goblin, green skin, pointy ears, height difference, nursing, lactation"
|
||||
},
|
||||
"participants": {
|
||||
"solo_focus": "true",
|
||||
"orientation": "MF"
|
||||
"full_body": "1girl with a small goblin creature clinging to her chest",
|
||||
"head": "goblin's head buried in cleavage or mouth attached to nipple",
|
||||
"eyes": "girl looking down at the goblin or closed in sensation",
|
||||
"arms": "goblin grabbing the breasts or clinging to the torso",
|
||||
"hands": "goblin's hands kneading or holding the breasts",
|
||||
"torso": "exposed breasts being suckled",
|
||||
"pelvis": "n/a",
|
||||
"legs": "n/a",
|
||||
"feet": "n/a",
|
||||
"additional": "size difference between the large female character and the small goblin"
|
||||
},
|
||||
"lora": {
|
||||
"lora_name": "Illustrious/Poses/Goblin_sucking_boobs_Illustrious.safetensors",
|
||||
"lora_weight": 1.0,
|
||||
"lora_triggers": "Goblin_sucking_boobs_Illustrious"
|
||||
"lora_weight": 0.8,
|
||||
"lora_triggers": "goblin breastfeeding, goblin, breast sucking"
|
||||
},
|
||||
"tags": [
|
||||
"goblin",
|
||||
"breast sucking",
|
||||
"size difference",
|
||||
"breast_sucking",
|
||||
"breastfeeding",
|
||||
"monster",
|
||||
"duo",
|
||||
"lactation",
|
||||
"nsfw"
|
||||
"1girl",
|
||||
"monster_boy",
|
||||
"size_difference"
|
||||
]
|
||||
}
|
||||
@@ -2,37 +2,37 @@
|
||||
"action_id": "goblins_burrow_il_nai_py",
|
||||
"action_name": "Goblins Burrow Il Nai Py",
|
||||
"action": {
|
||||
"full_body": "size difference, character crouching low to the ground in a deep, feral squat or crawling position",
|
||||
"head": "tilted upward or hunched low, often with a mischievous or feral expression, tongue out",
|
||||
"eyes": "wide open, dilated pupils, looking up at viewer",
|
||||
"arms": "reaching towards the ground between legs or resting on knees, elbows bent",
|
||||
"hands": "palms on the floor or clawing at the ground, fingers spread",
|
||||
"torso": "leaning forward sharply, hunched back or arched depending on angle, compact posture",
|
||||
"pelvis": "lowered close to the heels, anterior pelvic tilt",
|
||||
"legs": "knees bent deeply and spread wide apart, thighs pressing against ribs or opened outward",
|
||||
"feet": "resting on toes with heels raised or flat on ground, indicating readiness to pounce",
|
||||
"additional": "dynamic angle, low perspective, emphasis on hips and flexibility"
|
||||
},
|
||||
"participants": {
|
||||
"solo_focus": "true",
|
||||
"orientation": "MF"
|
||||
"full_body": "standing_sex, carrying, interspecies, size_difference",
|
||||
"head": "blush, sweat, ahegao",
|
||||
"eyes": "closed_eyes, half-closed_eyes",
|
||||
"arms": "embracing, arms_around_neck",
|
||||
"hands": "clinging",
|
||||
"torso": "large_breasts, nipples, nude",
|
||||
"pelvis": "sex, cum_in_pussy, vaginal_penetration",
|
||||
"legs": "spread_legs, wrapped_around",
|
||||
"feet": "barefoot",
|
||||
"additional": "cave, outdoors, torn_clothes, peephole"
|
||||
},
|
||||
"lora": {
|
||||
"lora_name": "Illustrious/Poses/Goblins burrow-IL_NAI_PY.safetensors",
|
||||
"lora_weight": 1.0,
|
||||
"lora_triggers": "Goblins burrow-IL_NAI_PY"
|
||||
"lora_weight": 0.6,
|
||||
"lora_triggers": "goblin, burrow, frog embrace position"
|
||||
},
|
||||
"tags": [
|
||||
"squatting",
|
||||
"crouching",
|
||||
"goblin mode",
|
||||
"feral",
|
||||
"spread legs",
|
||||
"knees apart",
|
||||
"on toes",
|
||||
"all fours",
|
||||
"looking up",
|
||||
"shortstack",
|
||||
"hunched over"
|
||||
"goblin",
|
||||
"standing_sex",
|
||||
"size_difference",
|
||||
"interspecies",
|
||||
"spread_legs",
|
||||
"carrying",
|
||||
"cave",
|
||||
"outdoors",
|
||||
"sweat",
|
||||
"blush",
|
||||
"torn_clothes",
|
||||
"cum",
|
||||
"peephole",
|
||||
"1girl",
|
||||
"1boy"
|
||||
]
|
||||
}
|
||||
@@ -2,31 +2,30 @@
|
||||
"action_id": "guided_penetration_illustrious_v1_0",
|
||||
"action_name": "Guided Penetration Illustrious V1 0",
|
||||
"action": {
|
||||
"full_body": "intimate sexual position, lying on back or missionary, lower body focus",
|
||||
"head": "looking down, chin tucked, flushed face, heavy breathing",
|
||||
"eyes": "focused on genitals, half-closed eyes, arousal",
|
||||
"arms": "reaching down between legs",
|
||||
"hands": "hand on penis, guiding penis, holding penis, fingers grasping shaft, touching tip",
|
||||
"torso": "chest exposed, nipples visible, slight arch",
|
||||
"pelvis": "exposed genitals, pussy, hips tilted up",
|
||||
"legs": "spread legs, m legs, open legs, knees bent",
|
||||
"feet": "relaxed or toes curled",
|
||||
"additional": "penis, erection, insertion, just the tip, uncensored, sexual intercourse"
|
||||
},
|
||||
"participants": {
|
||||
"solo_focus": "true",
|
||||
"orientation": "MF"
|
||||
"full_body": "guided_penetration",
|
||||
"head": "looking_at_penis",
|
||||
"eyes": "open_eyes",
|
||||
"arms": "arms_extended",
|
||||
"hands": "penis_grab",
|
||||
"torso": "sex",
|
||||
"pelvis": "vaginal",
|
||||
"legs": "spread_legs",
|
||||
"feet": "feet_out_of_frame",
|
||||
"additional": "insertion"
|
||||
},
|
||||
"lora": {
|
||||
"lora_name": "Illustrious/Poses/guided penetration_illustrious_V1.0.safetensors",
|
||||
"lora_weight": 1.0,
|
||||
"lora_triggers": "guided penetration_illustrious_V1.0"
|
||||
"lora_weight": 1.1,
|
||||
"lora_triggers": "guided penetration"
|
||||
},
|
||||
"tags": [
|
||||
"guided penetration",
|
||||
"hand on penis",
|
||||
"guided_penetration",
|
||||
"penis_grab",
|
||||
"vaginal",
|
||||
"sex",
|
||||
"insertion",
|
||||
"guiding penis"
|
||||
"1boy",
|
||||
"1girl",
|
||||
"penis",
|
||||
"hands_on_penis"
|
||||
]
|
||||
}
|
||||
@@ -2,32 +2,31 @@
|
||||
"action_id": "gyaru_bitch_illustrious",
|
||||
"action_name": "Gyaru Bitch Illustrious",
|
||||
"action": {
|
||||
"full_body": "standing pose, upper body leaning slightly forward to accentuate curves, confident and flashy posture",
|
||||
"head": "tilted slightly to the side, chin down",
|
||||
"eyes": "looking directly at viewer, heavy makeup, possibly winking",
|
||||
"arms": "raised, elbows bent outwards",
|
||||
"hands": "double peace sign, v-sign near face, aggressive finger splay",
|
||||
"torso": "arched back significantly, emphasized chest",
|
||||
"pelvis": "hips cocked to one side",
|
||||
"legs": "standing with weight on one leg, other leg slightly bent at knee",
|
||||
"feet": "planted firmly",
|
||||
"additional": "exuding a haughty or teasing 'gal' atmosphere, flashy accessories"
|
||||
},
|
||||
"participants": {
|
||||
"solo_focus": "true",
|
||||
"orientation": "F"
|
||||
"full_body": "standing, energetic pose, looking_at_viewer",
|
||||
"head": "blonde_hair, heavy_makeup, smiling, tanned_skin",
|
||||
"eyes": "eyelashes, eyeshadow",
|
||||
"arms": "hand_on_hip, arm_up",
|
||||
"hands": "v_sign, long_fingernails",
|
||||
"torso": "animal_print, revealing_clothes, cleavage, navel",
|
||||
"pelvis": "short_skirt, hips",
|
||||
"legs": "tanned_legs, standing",
|
||||
"feet": "high_heels",
|
||||
"additional": "jewelry, necklace, earrings"
|
||||
},
|
||||
"lora": {
|
||||
"lora_name": "Illustrious/Poses/Gyaru_bitch_illustrious.safetensors",
|
||||
"lora_weight": 1.0,
|
||||
"lora_triggers": "Gyaru_bitch_illustrious"
|
||||
"lora_triggers": "gyaru bitch, gyaru"
|
||||
},
|
||||
"tags": [
|
||||
"double peace sign",
|
||||
"gyaru",
|
||||
"smug",
|
||||
"tongue out",
|
||||
"leaning forward",
|
||||
"tan"
|
||||
"dark_skin",
|
||||
"animal_print",
|
||||
"long_fingernails",
|
||||
"makeup",
|
||||
"blonde_hair",
|
||||
"jewelry",
|
||||
"revealing_clothes",
|
||||
"navel"
|
||||
]
|
||||
}
|
||||
@@ -2,34 +2,32 @@
|
||||
"action_id": "gyaru_v_illustriousxl_lora_nochekaiser",
|
||||
"action_name": "Gyaru V Illustriousxl Lora Nochekaiser",
|
||||
"action": {
|
||||
"full_body": "medium shot of a character performing the viral gyaru peace gesture, leaning slightly forward towards the viewer",
|
||||
"head": "tilted slightly to the side with a confident or playful expression",
|
||||
"eyes": "looking at viewer, winking or wide open",
|
||||
"arms": "elbow bent, forearm raised and wrist rotated",
|
||||
"hands": "inverted v-sign, peace sign fingers pointing down, palm facing inwards towards the body (gyaru peace)",
|
||||
"torso": "upper body angled towards the camera",
|
||||
"pelvis": "hips slightly cocked to the side",
|
||||
"legs": "standing pose, weight on one leg",
|
||||
"feet": "default standing position",
|
||||
"additional": "focus on the specific inverted hand gesture characteristic of the 2020s gyaru trend"
|
||||
},
|
||||
"participants": {
|
||||
"solo_focus": "true",
|
||||
"orientation": "F"
|
||||
"full_body": "leaning_forward, standing or cowboy_shot",
|
||||
"head": "tilted_head, smile, blush, open_mouth or grin",
|
||||
"eyes": "one_eye_closed, glowing_eyes or winking, looking_at_viewer",
|
||||
"arms": "arm_up, reaching_towards_viewer",
|
||||
"hands": "v_over_eye, v_sign, fingers_near_face",
|
||||
"torso": "leaning_forward, upper_body",
|
||||
"pelvis": "n/a",
|
||||
"legs": "n/a",
|
||||
"feet": "n/a",
|
||||
"additional": "selfie, gyaru, energetic atmosphere"
|
||||
},
|
||||
"lora": {
|
||||
"lora_name": "Illustrious/Poses/gyaru-v-illustriousxl-lora-nochekaiser.safetensors",
|
||||
"lora_weight": 1.0,
|
||||
"lora_triggers": "gyaru-v-illustriousxl-lora-nochekaiser"
|
||||
"lora_triggers": "gyaruv"
|
||||
},
|
||||
"tags": [
|
||||
"gyaru peace",
|
||||
"inverted v-sign",
|
||||
"peace sign",
|
||||
"hand gesture",
|
||||
"fingers pointing down",
|
||||
"leaning forward",
|
||||
"upper body",
|
||||
"looking at viewer"
|
||||
"gyaru",
|
||||
"v_over_eye",
|
||||
"leaning_forward",
|
||||
"one_eye_closed",
|
||||
"looking_at_viewer",
|
||||
"blush",
|
||||
"smile",
|
||||
"selfie",
|
||||
"open_mouth",
|
||||
"grin"
|
||||
]
|
||||
}
|
||||
@@ -2,34 +2,34 @@
|
||||
"action_id": "hugging_doggystyle_illustriousxl_lora_nochekaiser",
|
||||
"action_name": "Hugging Doggystyle Illustriousxl Lora Nochekaiser",
|
||||
"action": {
|
||||
"full_body": "duo, 2 persons, doggystyle, from behind, all fours, intimate interaction",
|
||||
"head": "looking back, head resting on shoulder, cheek to cheek, face buried in hair",
|
||||
"eyes": "closed eyes, affectionate gaze, half-closed eyes",
|
||||
"arms": "arms around waist, arms around neck, hugging, supporting body weight",
|
||||
"hands": "hands on ground, hands clasping partner, grabbing sheets",
|
||||
"torso": "arched back, bent over, chest pressed against back, leaning forward",
|
||||
"pelvis": "kneeling, hips raised, bottom up",
|
||||
"legs": "kneeling, bent knees, legs spread",
|
||||
"feet": "barefoot, toes curled",
|
||||
"additional": "sex from behind, affectionate, cuddling, romantic, indoor"
|
||||
},
|
||||
"participants": {
|
||||
"solo_focus": "true",
|
||||
"orientation": "MF"
|
||||
"full_body": "doggystyle, all_fours, sex_from_behind",
|
||||
"head": "blush, sweat, open_mouth",
|
||||
"eyes": "rolled_eyes, closed_eyes",
|
||||
"arms": "hug, hug_from_behind",
|
||||
"hands": "hands_on_sheets",
|
||||
"torso": "hanging_breasts, bent_over, trembling",
|
||||
"pelvis": "hips",
|
||||
"legs": "kneeling, spread_legs",
|
||||
"feet": "toes",
|
||||
"additional": "completely_nude, motion_lines, hetero, sex"
|
||||
},
|
||||
"lora": {
|
||||
"lora_name": "Illustrious/Poses/hugging-doggystyle-illustriousxl-lora-nochekaiser.safetensors",
|
||||
"lora_weight": 1.0,
|
||||
"lora_triggers": "hugging-doggystyle-illustriousxl-lora-nochekaiser"
|
||||
"lora_triggers": "hugging doggystyle, hug, doggystyle, sex_from_behind"
|
||||
},
|
||||
"tags": [
|
||||
"hugging_doggystyle",
|
||||
"hug",
|
||||
"doggystyle",
|
||||
"hugging",
|
||||
"from behind",
|
||||
"all fours",
|
||||
"duo",
|
||||
"intimate",
|
||||
"kneeling"
|
||||
"sex_from_behind",
|
||||
"all_fours",
|
||||
"hug_from_behind",
|
||||
"hanging_breasts",
|
||||
"trembling",
|
||||
"sweat",
|
||||
"open_mouth",
|
||||
"completely_nude",
|
||||
"motion_lines"
|
||||
]
|
||||
}
|
||||
@@ -2,34 +2,36 @@
|
||||
"action_id": "hugkissingbreast_press_pov_illustrious_000005",
|
||||
"action_name": "Hugkissingbreast Press Pov Illustrious 000005",
|
||||
"action": {
|
||||
"full_body": "pov, close-up, leaning towards viewer, intimate interaction",
|
||||
"head": "face close to camera, tilted head, kissing motion",
|
||||
"eyes": "closed eyes, half-closed eyes, affectionate gaze",
|
||||
"arms": "reaching forward, wrapping around viewer, arms visible on sides",
|
||||
"hands": "hands on viewer's shoulders, hands behind viewer's neck, or out of frame",
|
||||
"torso": "chest pressed against viewer, breasts squished, breast press",
|
||||
"pelvis": "close proximity to viewer, angled forward",
|
||||
"legs": "not visible or cropped",
|
||||
"full_body": "POV close-up of a character hugging and kissing the viewer with breasts pressed against the 'camera'",
|
||||
"head": "tilted forward, kissing expression, often with tongue or saliva trail, intense focus",
|
||||
"eyes": "closed_eyes or looking_at_viewer, passionate gaze",
|
||||
"arms": "arms_around_neck or reaching_towards_viewer, embracing the viewer",
|
||||
"hands": "touching viewer's face or gripping shoulders (off-screen reference)",
|
||||
"torso": "breast_press against the viewer, reduced distance",
|
||||
"pelvis": "not visible (close-up)",
|
||||
"legs": "not visible",
|
||||
"feet": "not visible",
|
||||
"additional": "blush, saliva trail, deeply romantic atmosphere, soft lighting"
|
||||
},
|
||||
"participants": {
|
||||
"solo_focus": "true",
|
||||
"orientation": "MF"
|
||||
"additional": "intimate atmosphere, blushing, french_kiss, saliva_trail"
|
||||
},
|
||||
"lora": {
|
||||
"lora_name": "Illustrious/Poses/Hugkissingbreast_press_pov_Illustrious-000005.safetensors",
|
||||
"lora_weight": 1.0,
|
||||
"lora_triggers": "Hugkissingbreast_press_pov_Illustrious-000005"
|
||||
"lora_weight": 0.7,
|
||||
"lora_triggers": "pov kiss, breast press"
|
||||
},
|
||||
"tags": [
|
||||
"pov",
|
||||
"kiss",
|
||||
"breast_press",
|
||||
"hug",
|
||||
"kissing",
|
||||
"breast press",
|
||||
"french_kiss",
|
||||
"close-up",
|
||||
"intimate",
|
||||
"squeezing",
|
||||
"couple"
|
||||
"reaching_towards_viewer",
|
||||
"arms_around_neck",
|
||||
"closed_eyes",
|
||||
"blush",
|
||||
"saliva_trail",
|
||||
"tongue",
|
||||
"head_tilt",
|
||||
"1girl"
|
||||
]
|
||||
}
|
||||
@@ -2,36 +2,38 @@
|
||||
"action_id": "id_card_after_sex_illustriousxl_lora_nochekaiser",
|
||||
"action_name": "Id Card After Sex Illustriousxl Lora Nochekaiser",
|
||||
"action": {
|
||||
"full_body": "upper body shot, solo, character presenting identification in a disheveled state",
|
||||
"head": "messy hair, hair over eyes, heavy blush, sweaty face, panting, mouth slightly open, slobber",
|
||||
"eyes": "half-closed eyes, glazed eyes, moisture, looking at viewer",
|
||||
"arms": "arm raised to chest or face level",
|
||||
"hands": "holding id card, holding object, showing card to viewer",
|
||||
"torso": "disheveled clothing, unbuttoned shirt, collarbone, sweat on skin, breast focus (if applicable)",
|
||||
"pelvis": "not visible",
|
||||
"legs": "not visible",
|
||||
"feet": "not visible",
|
||||
"additional": "blurry background, indoor lighting, intimate atmosphere, mugshot style composition"
|
||||
},
|
||||
"participants": {
|
||||
"solo_focus": "true",
|
||||
"orientation": "F"
|
||||
"full_body": "lying, on_bed, cowboy_shot, after_sex",
|
||||
"head": "messy_hair, blush, sweat, drooling, heavy_breathing, looking_at_viewer",
|
||||
"eyes": "half-closed_eyes",
|
||||
"arms": "sheet_grab",
|
||||
"hands": "holding_id_card",
|
||||
"torso": "navel, sweat, breasts",
|
||||
"pelvis": "bed_sheet, wet_spot",
|
||||
"legs": "lying",
|
||||
"feet": "barefoot",
|
||||
"additional": "id_card, pov, interior"
|
||||
},
|
||||
"lora": {
|
||||
"lora_name": "Illustrious/Poses/id-card-after-sex-illustriousxl-lora-nochekaiser.safetensors",
|
||||
"lora_weight": 1.0,
|
||||
"lora_triggers": "id-card-after-sex-illustriousxl-lora-nochekaiser"
|
||||
"lora_triggers": "id card after sex, id card, aftersex, bed sheet, blush, drooling, lying, sheet grab, sweat, holding id card, pov, cowboy shot"
|
||||
},
|
||||
"tags": [
|
||||
"holding id card",
|
||||
"messy hair",
|
||||
"disheveled",
|
||||
"heavy breathing",
|
||||
"holding_id_card",
|
||||
"id_card",
|
||||
"after_sex",
|
||||
"lying",
|
||||
"on_bed",
|
||||
"bed_sheet",
|
||||
"sweat",
|
||||
"blush",
|
||||
"upper body",
|
||||
"after sex",
|
||||
"glazed eyes",
|
||||
"open mouth"
|
||||
"messy_hair",
|
||||
"sheet_grab",
|
||||
"drooling",
|
||||
"heavy_breathing",
|
||||
"wet_spot",
|
||||
"navel",
|
||||
"cowboy_shot",
|
||||
"pov"
|
||||
]
|
||||
}
|
||||
28
data/actions/il_cheekbj.json
Normal file
28
data/actions/il_cheekbj.json
Normal file
@@ -0,0 +1,28 @@
|
||||
{
|
||||
"action_id": "il_cheekbj",
|
||||
"action_name": "Il Cheekbj",
|
||||
"action": {
|
||||
"full_body": "kneeling",
|
||||
"head": "fellatio, cheek_bulge, open_mouth",
|
||||
"eyes": "looking_at_viewer",
|
||||
"arms": "hands_on_legs",
|
||||
"hands": "resting",
|
||||
"torso": "leaning_forward",
|
||||
"pelvis": "kneeling",
|
||||
"legs": "kneeling",
|
||||
"feet": "toes_on_ground",
|
||||
"additional": "penis"
|
||||
},
|
||||
"lora": {
|
||||
"lora_name": "Illustrious/Poses/IL_cheekbj.safetensors",
|
||||
"lora_weight": 0.8,
|
||||
"lora_triggers": "ch33k_bj, one_cheek_bulge, fellatio"
|
||||
},
|
||||
"tags": [
|
||||
"fellatio",
|
||||
"cheek_bulge",
|
||||
"kneeling",
|
||||
"looking_at_viewer",
|
||||
"penis"
|
||||
]
|
||||
}
|
||||
@@ -2,32 +2,31 @@
|
||||
"action_id": "illustrious_standing_cunnilingus_000010",
|
||||
"action_name": "Illustrious Standing Cunnilingus 000010",
|
||||
"action": {
|
||||
"full_body": "duo focus, standing position, one person lifting another, standing cunnilingus, carry",
|
||||
"head": "face buried in crotch, head between legs, ecstatic expression, tongue out",
|
||||
"eyes": "eyes closed, rolling eyes, heart-shaped pupils",
|
||||
"arms": "arms under buttocks, holding legs, arms wrapped around neck",
|
||||
"hands": "squeezing butt, hands on head, fingers in hair",
|
||||
"torso": "back arched, chest pressed",
|
||||
"pelvis": "pussy exposed, genital contact",
|
||||
"legs": "legs wrapped around waist, spread legs, legs over shoulders",
|
||||
"feet": "toes curled, feet dangling",
|
||||
"additional": "saliva, motion lines, sexual act"
|
||||
},
|
||||
"participants": {
|
||||
"solo_focus": "true",
|
||||
"orientation": "MF"
|
||||
"full_body": "standing cunnilingus, femdom, 1girl standing, 1boy kneeling",
|
||||
"head": "looking down, evil smirk",
|
||||
"eyes": "looking at partner",
|
||||
"arms": "arms at sides or arms behind head",
|
||||
"hands": "resting on partner's head",
|
||||
"torso": "facing viewer or facing partner",
|
||||
"pelvis": "legs apart",
|
||||
"legs": "standing",
|
||||
"feet": "standing",
|
||||
"additional": "male between legs, oral sex, forced cunnilingus"
|
||||
},
|
||||
"lora": {
|
||||
"lora_name": "Illustrious/Poses/Illustrious_Standing_Cunnilingus-000010.safetensors",
|
||||
"lora_weight": 1.0,
|
||||
"lora_triggers": "Illustrious_Standing_Cunnilingus-000010"
|
||||
"lora_weight": 0.65,
|
||||
"lora_triggers": "PWF1, pussy worship, femdom, cunnilingus, licks pussy, standing"
|
||||
},
|
||||
"tags": [
|
||||
"standing cunnilingus",
|
||||
"lifting person",
|
||||
"carry",
|
||||
"legs around waist",
|
||||
"oral sex",
|
||||
"nsfw"
|
||||
"standing_cunnilingus",
|
||||
"cunnilingus",
|
||||
"femdom",
|
||||
"standing",
|
||||
"kneeling",
|
||||
"looking_down",
|
||||
"legs_apart",
|
||||
"between_legs",
|
||||
"forced_cunnilingus"
|
||||
]
|
||||
}
|
||||
@@ -2,33 +2,32 @@
|
||||
"action_id": "illustriousxl_size_difference_large_female",
|
||||
"action_name": "Illustriousxl Size Difference Large Female",
|
||||
"action": {
|
||||
"full_body": "towering female figure standing over a tiny environment or person, emphasizing extreme scale difference",
|
||||
"head": "tilted downwards, looking down with curiosity or affection",
|
||||
"eyes": "gazing intently at the object in hand or on the ground",
|
||||
"arms": "elbows bent, lifting one hand closer to the face for inspection",
|
||||
"hands": "palm open and facing up, cupping a tiny person or object gently",
|
||||
"torso": "leaning slightly forward to reduce the distance to the smaller subject",
|
||||
"pelvis": "neutral standing posture, hips slightly shifted",
|
||||
"legs": "standing firm and pillar-like to emphasize stability and size",
|
||||
"feet": "planted firmly on the ground, perhaps next to tiny buildings or trees for scale comparison",
|
||||
"additional": "low angle view, depth of field, giantess theme, macro perspective on hand"
|
||||
},
|
||||
"participants": {
|
||||
"solo_focus": "true",
|
||||
"orientation": "MF"
|
||||
"full_body": "standing, size_difference, height_difference, giantess, mini_person, duo",
|
||||
"head": "looking_down, looking_at_another",
|
||||
"eyes": "open_eyes",
|
||||
"arms": "arms_at_sides",
|
||||
"hands": "hands_down",
|
||||
"torso": "upper_body, leaning_forward",
|
||||
"pelvis": "hips",
|
||||
"legs": "standing, long_legs",
|
||||
"feet": "standing",
|
||||
"additional": "low_angle, man_looking_up"
|
||||
},
|
||||
"lora": {
|
||||
"lora_name": "Illustrious/Poses/IllustriousXL_Size_difference_large_female.safetensors",
|
||||
"lora_weight": 1.0,
|
||||
"lora_triggers": "IllustriousXL_Size_difference_large_female"
|
||||
"lora_triggers": "size difference, larger female, smaller male, tall female"
|
||||
},
|
||||
"tags": [
|
||||
"size difference",
|
||||
"size_difference",
|
||||
"giantess",
|
||||
"looking down",
|
||||
"holding tiny person",
|
||||
"perspective",
|
||||
"interaction",
|
||||
"scale comparison"
|
||||
"height_difference",
|
||||
"tall_female",
|
||||
"larger_female",
|
||||
"mini_person",
|
||||
"looking_down",
|
||||
"looking_up",
|
||||
"looking_at_another",
|
||||
"standing"
|
||||
]
|
||||
}
|
||||
@@ -1,34 +1,32 @@
|
||||
{
|
||||
"action_id": "ilst",
|
||||
"action_name": "Imminent Facesitting",
|
||||
"action_name": "Ilst",
|
||||
"action": {
|
||||
"full_body": "pov, facesitting",
|
||||
"head": "",
|
||||
"eyes": "",
|
||||
"arms": "",
|
||||
"hands": "",
|
||||
"torso": "",
|
||||
"pelvis": "pussy, pussy juice",
|
||||
"legs": "",
|
||||
"feet": "",
|
||||
"additional": ""
|
||||
},
|
||||
"participants": {
|
||||
"solo_focus": "true",
|
||||
"orientation": "F"
|
||||
"full_body": "squatting or standing over the viewer, dominating the frame",
|
||||
"head": "looking down at viewer",
|
||||
"eyes": "looking at viewer",
|
||||
"arms": "reaching towards viewer, one hand extending down",
|
||||
"hands": "reaching or gesturing towards the camera",
|
||||
"torso": "leaning forward slightly",
|
||||
"pelvis": "centered in view, from below angle",
|
||||
"legs": "straddling the viewer, wide stance",
|
||||
"feet": "planted on ground",
|
||||
"additional": "perspective from below, intimate proximity"
|
||||
},
|
||||
"lora": {
|
||||
"lora_name": "Illustrious/Poses/ILST.safetensors",
|
||||
"lora_weight": 1.0,
|
||||
"lora_triggers": "ILST"
|
||||
"lora_weight": 0.9,
|
||||
"lora_triggers": "Facesitting_POV, from below"
|
||||
},
|
||||
"tags": [
|
||||
"standing split",
|
||||
"leg hold",
|
||||
"high kick",
|
||||
"gymnastics",
|
||||
"yoga",
|
||||
"stretching",
|
||||
"balance"
|
||||
"imminent_facesitting",
|
||||
"pov",
|
||||
"from_below",
|
||||
"squatting",
|
||||
"standing",
|
||||
"looking_at_viewer",
|
||||
"reaching_towards_viewer",
|
||||
"legs_apart",
|
||||
"solo"
|
||||
]
|
||||
}
|
||||
@@ -2,36 +2,31 @@
|
||||
"action_id": "imminent_penetration_illustriousxl_lora_nochekaiser",
|
||||
"action_name": "Imminent Penetration Illustriousxl Lora Nochekaiser",
|
||||
"action": {
|
||||
"full_body": "lying on back, intimate close-up, sexual activity, extreme proximity to viewer",
|
||||
"head": "heavily blushing, panting, mouth open, sweat, expression of anticipation or arousal",
|
||||
"eyes": "half-closed eyes, upturned eyes, looking at viewer",
|
||||
"arms": "reaching out or clutching bedsheets",
|
||||
"hands": "hands gripping, knuckles white",
|
||||
"torso": "arched back, heaving chest",
|
||||
"pelvis": "hips lifted, genitals exposed, genital contact",
|
||||
"legs": "spread legs, m-legs, knees up, legs apart",
|
||||
"feet": "toes curled",
|
||||
"additional": "imminent penetration, penis tip, touching, just the tip, friction, pov, insertion validation"
|
||||
},
|
||||
"participants": {
|
||||
"solo_focus": "true",
|
||||
"orientation": "MF"
|
||||
"full_body": "imminent_penetration, lying, on_back, spread_legs",
|
||||
"head": "blush, closed_mouth",
|
||||
"eyes": "looking_at_viewer",
|
||||
"arms": "arms_at_sides",
|
||||
"hands": "torso_grab",
|
||||
"torso": "navel, open_shirt, open_clothes",
|
||||
"pelvis": "bottomless, heterosexual, imminent_vaginal",
|
||||
"legs": "spread_legs, panties_around_one_leg",
|
||||
"feet": "feet_out_of_frame",
|
||||
"additional": "sex, penis, erection, uncensored"
|
||||
},
|
||||
"lora": {
|
||||
"lora_name": "Illustrious/Poses/imminent-penetration-illustriousxl-lora-nochekaiser.safetensors",
|
||||
"lora_weight": 1.0,
|
||||
"lora_triggers": "imminent-penetration-illustriousxl-lora-nochekaiser"
|
||||
"lora_triggers": "imminent penetration, torso grab, imminent vaginal, panties around one leg"
|
||||
},
|
||||
"tags": [
|
||||
"imminent penetration",
|
||||
"tip",
|
||||
"touching",
|
||||
"pov",
|
||||
"sex",
|
||||
"spread legs",
|
||||
"imminent_penetration",
|
||||
"torso_grab",
|
||||
"lying",
|
||||
"on_back",
|
||||
"spread_legs",
|
||||
"bottomless",
|
||||
"open_shirt",
|
||||
"blush",
|
||||
"sweat",
|
||||
"genital close-up",
|
||||
"nsfw"
|
||||
"panties_around_one_leg"
|
||||
]
|
||||
}
|
||||
@@ -2,34 +2,32 @@
|
||||
"action_id": "impossiblefit",
|
||||
"action_name": "Impossiblefit",
|
||||
"action": {
|
||||
"full_body": "character standing, struggling to close or pull up extremely tight clothing that is too small for their body type",
|
||||
"head": "tilted down looking at waist, face flushed or straining",
|
||||
"eyes": "focused downwards on the clothing gap",
|
||||
"arms": "bent at elbows, exerting force",
|
||||
"hands": "gripping waistband, pulling zipper tab, or pinching fabric edges together",
|
||||
"torso": "stomach sucked in, torso arched slightly backward or scrunched forward",
|
||||
"pelvis": "hips emphasized, flesh compressed by tight fabric, potential muffin top",
|
||||
"legs": "standing close together, knees sometimes bent for leverage",
|
||||
"feet": "planted on ground, or hopping on one foot",
|
||||
"additional": "clothing gap, open zipper, bursting buttons, skin indentation, clothes too small"
|
||||
},
|
||||
"participants": {
|
||||
"solo_focus": "true",
|
||||
"orientation": "MF"
|
||||
"full_body": "kneeling on ground, facing partner",
|
||||
"head": "looking down, looking at penis",
|
||||
"eyes": "wide open, expression of awe or fear, blushing",
|
||||
"arms": "reaching forward or hands protecting body",
|
||||
"hands": "tentative touch or handjob",
|
||||
"torso": "leaning slightly back or forward in anticipation",
|
||||
"pelvis": "kneeling",
|
||||
"legs": "kneeling, spread or together",
|
||||
"feet": "tucked behind",
|
||||
"additional": "extreme size difference, sweat drops, open mouth"
|
||||
},
|
||||
"lora": {
|
||||
"lora_name": "Illustrious/Poses/impossiblefit.safetensors",
|
||||
"lora_weight": 1.0,
|
||||
"lora_triggers": "impossiblefit"
|
||||
"lora_triggers": "impossible fit"
|
||||
},
|
||||
"tags": [
|
||||
"tight clothing",
|
||||
"clothes too small",
|
||||
"struggling",
|
||||
"clothing gap",
|
||||
"muffin top",
|
||||
"zipper",
|
||||
"embarrassed",
|
||||
"curvy"
|
||||
"size_difference",
|
||||
"huge_penis",
|
||||
"imminent_penetration",
|
||||
"penis_awe",
|
||||
"looking_at_penis",
|
||||
"blush",
|
||||
"sweat",
|
||||
"scared",
|
||||
"open_mouth",
|
||||
"penis_on_stomach"
|
||||
]
|
||||
}
|
||||
@@ -2,36 +2,35 @@
|
||||
"action_id": "instant_loss_caught_il_nai_py",
|
||||
"action_name": "Instant Loss Caught Il Nai Py",
|
||||
"action": {
|
||||
"full_body": "character exhibiting immediate total defeat, body going completely limp and incapacitated",
|
||||
"head": "head thrown back or slumped forward in unconsciousness, mouth falling open",
|
||||
"eyes": "eyes rolled back (ahoge), empty eyes, or spiral eyes, indicating loss of consciousness",
|
||||
"arms": "arms dangling uselessly at sides or floating limply if suspended",
|
||||
"hands": "fingers loose and uncurled, wrists limp",
|
||||
"torso": "posture collapsed, arching back or slumped over, defenseless",
|
||||
"pelvis": "hips neutral or pushed forward due to limpness",
|
||||
"legs": "knees buckled, legs giving way or dangling if lifted",
|
||||
"feet": "feet relaxed, toes pointing down",
|
||||
"additional": "drooling, tongue out, heavy breathing, flushed skin, sweat, mind break visual cues"
|
||||
},
|
||||
"participants": {
|
||||
"solo_focus": "true",
|
||||
"orientation": "MF"
|
||||
"full_body": "lying, on_back, spread_legs, defeat",
|
||||
"head": "blush, sweat, open_mouth, tongue_out, looking_at_viewer",
|
||||
"eyes": "half_closed_eyes, tears",
|
||||
"arms": "arms_at_sides, grabbing",
|
||||
"hands": "clenched_hands",
|
||||
"torso": "exposed_breasts, arching_back",
|
||||
"pelvis": "legs_spread, pelvis_lift",
|
||||
"legs": "spread_legs, knees_up",
|
||||
"feet": "toes_curled",
|
||||
"additional": "2koma, multiple_views, penis_shadow, comic"
|
||||
},
|
||||
"lora": {
|
||||
"lora_name": "Illustrious/Poses/Instant loss caught-IL_NAI_PY.safetensors",
|
||||
"lora_weight": 1.0,
|
||||
"lora_triggers": "Instant loss caught-IL_NAI_PY"
|
||||
"lora_weight": 0.7,
|
||||
"lora_triggers": "instant_loss, caught"
|
||||
},
|
||||
"tags": [
|
||||
"instant_loss",
|
||||
"defeat",
|
||||
"fainted",
|
||||
"limp",
|
||||
"unconscious",
|
||||
"mind_break",
|
||||
"eyes_rolled_back",
|
||||
"caught",
|
||||
"2koma",
|
||||
"multiple_views",
|
||||
"penis_shadow",
|
||||
"lying",
|
||||
"on_back",
|
||||
"spread_legs",
|
||||
"blush",
|
||||
"open_mouth",
|
||||
"sweat",
|
||||
"tongue_out",
|
||||
"drooling",
|
||||
"caught"
|
||||
"defeat"
|
||||
]
|
||||
}
|
||||
@@ -2,33 +2,32 @@
|
||||
"action_id": "kiss_multiple_view_close_up_illustrious",
|
||||
"action_name": "Kiss Multiple View Close Up Illustrious",
|
||||
"action": {
|
||||
"full_body": "close-up framing of two characters sharing an intimate kiss",
|
||||
"head": "profiles facing each other, heads slightly tilted, lips pressed together, noses touching",
|
||||
"eyes": "closed eyes, eyelashes visible, tender expression",
|
||||
"arms": "arms embracing neck or shoulders (if visible within frame)",
|
||||
"hands": "cupping the partner's cheek, holding the chin, or fingers running through hair",
|
||||
"torso": "upper chests pressing against each other, leaning forward",
|
||||
"pelvis": "not visible (cropped)",
|
||||
"legs": "not visible (cropped)",
|
||||
"feet": "not visible (cropped)",
|
||||
"additional": "bokeh background, romantic atmosphere, mouth-to-mouth contact, blushing cheeks"
|
||||
},
|
||||
"participants": {
|
||||
"solo_focus": "true",
|
||||
"orientation": "MF"
|
||||
"full_body": "multiple_views, kiss, french_kiss, affectionate_gesture",
|
||||
"head": "close-up, profile, cheek_to_cheek",
|
||||
"eyes": "closed_eyes",
|
||||
"arms": "embrace, arms_around_neck",
|
||||
"hands": "cupping_face, hand_on_cheek",
|
||||
"torso": "upper_body, breast_press",
|
||||
"pelvis": "n/a",
|
||||
"legs": "n/a",
|
||||
"feet": "n/a",
|
||||
"additional": "tongue, saliva, saliva_trail, blush, sweat"
|
||||
},
|
||||
"lora": {
|
||||
"lora_name": "Illustrious/Poses/Kiss_multiple_view_close_up_Illustrious.safetensors",
|
||||
"lora_weight": 1.0,
|
||||
"lora_triggers": "Kiss_multiple_view_close_up_Illustrious"
|
||||
"lora_triggers": "kiss_multiple_views"
|
||||
},
|
||||
"tags": [
|
||||
"romance",
|
||||
"intimacy",
|
||||
"couple",
|
||||
"love",
|
||||
"affection",
|
||||
"lipstick",
|
||||
"face-to-face"
|
||||
"multiple_views",
|
||||
"kiss",
|
||||
"french_kiss",
|
||||
"close-up",
|
||||
"tongue",
|
||||
"breast_press",
|
||||
"saliva",
|
||||
"upper_body",
|
||||
"closed_eyes",
|
||||
"profile"
|
||||
]
|
||||
}
|
||||
@@ -2,33 +2,30 @@
|
||||
"action_id": "kissing_penis_illustriousxl_lora_nochekaiser",
|
||||
"action_name": "Kissing Penis Illustriousxl Lora Nochekaiser",
|
||||
"action": {
|
||||
"full_body": "kneeling or crouching, leaning forward towards partner's groin area",
|
||||
"head": "face close to crotch, mouth touching or kissing the glans",
|
||||
"eyes": "looking toward object, looking up (ahegao possible), or closed eyes",
|
||||
"arms": "reaching forward, bent at elbows",
|
||||
"hands": "holding the penis shaft, cupping testicles, or resting on partner's thighs",
|
||||
"torso": "leaning forward, slight arch",
|
||||
"pelvis": "kneeling on the ground or bed",
|
||||
"legs": "kneeling, bent knees",
|
||||
"feet": "toes curled or flat on surface",
|
||||
"additional": "saliva, penis, erection, glans, sexual act, intimacy"
|
||||
},
|
||||
"participants": {
|
||||
"solo_focus": "true",
|
||||
"orientation": "MF"
|
||||
"full_body": "fellatio, squatting, from_side",
|
||||
"head": "profile, blush",
|
||||
"eyes": "closed_eyes",
|
||||
"arms": "arms_down",
|
||||
"hands": "hands_on_legs",
|
||||
"torso": "leaning_forward",
|
||||
"pelvis": "squatting",
|
||||
"legs": "squatting",
|
||||
"feet": "barefoot",
|
||||
"additional": "spoken_heart, heart"
|
||||
},
|
||||
"lora": {
|
||||
"lora_name": "Illustrious/Poses/kissing-penis-illustriousxl-lora-nochekaiser.safetensors",
|
||||
"lora_weight": 1.0,
|
||||
"lora_triggers": "kissing-penis-illustriousxl-lora-nochekaiser"
|
||||
"lora_triggers": "kissing penis, fellatio"
|
||||
},
|
||||
"tags": [
|
||||
"kissing penis",
|
||||
"kissing_penis",
|
||||
"fellatio",
|
||||
"oral sex",
|
||||
"blowjob",
|
||||
"penis",
|
||||
"kneeling",
|
||||
"nsfw"
|
||||
"squatting",
|
||||
"from_side",
|
||||
"closed_eyes",
|
||||
"blush",
|
||||
"spoken_heart",
|
||||
"heart"
|
||||
]
|
||||
}
|
||||
@@ -2,38 +2,32 @@
|
||||
"action_id": "kissstanding_on_one_leg_il_000014",
|
||||
"action_name": "Kissstanding On One Leg Il 000014",
|
||||
"action": {
|
||||
"full_body": "Two characters in a romantic standing embrace, usually seen clearly from the side",
|
||||
"head": "Faces close together, lips locked in a kiss, heads tilted slightly in opposite directions",
|
||||
"eyes": "Closed eyes signifying intimacy",
|
||||
"arms": "One person's arms wrapped around the other's neck, the other person's arms holding the partner's waist or back",
|
||||
"hands": "Hands clutching clothing or resting gently on the back/waist",
|
||||
"torso": "Chests pressing against each other, leaning in",
|
||||
"pelvis": "Hips close together, facing each other",
|
||||
"legs": "One character stands on one leg while the other leg is bent backward at the knee (foot pop); the partner stands firmly on both legs",
|
||||
"feet": "One foot lifted in the air behind the body, others planted on the ground",
|
||||
"additional": "Romantic atmosphere, height difference, anime trope 'foot pop'"
|
||||
},
|
||||
"participants": {
|
||||
"solo_focus": "true",
|
||||
"orientation": "MF"
|
||||
"full_body": "duo, standing, standing_on_one_leg, kiss, embrace",
|
||||
"head": "closed_eyes, tilted_head, profile",
|
||||
"eyes": "closed_eyes",
|
||||
"arms": "arms_around_neck, arms_around_waist, hugging",
|
||||
"hands": "placed_on_back, placed_on_shoulders",
|
||||
"torso": "leaning_forward, chest_press",
|
||||
"pelvis": "facing_viewer",
|
||||
"legs": "leg_up, bent_knee, standing_on_one_leg",
|
||||
"feet": "one_foot_raised",
|
||||
"additional": "romantic_ambience, height_difference"
|
||||
},
|
||||
"lora": {
|
||||
"lora_name": "Illustrious/Poses/KIssStanding-On-One-Leg-IL-000014.safetensors",
|
||||
"lora_weight": 1.0,
|
||||
"lora_triggers": "KIssStanding-On-One-Leg-IL-000014"
|
||||
"lora_triggers": "KSOOLIL-V1.0, standing on one leg, leg up, kiss"
|
||||
},
|
||||
"tags": [
|
||||
"duo",
|
||||
"kiss",
|
||||
"kissing",
|
||||
"couple",
|
||||
"standing on one leg",
|
||||
"one leg up",
|
||||
"foot pop",
|
||||
"hugging",
|
||||
"standing",
|
||||
"standing_on_one_leg",
|
||||
"leg_up",
|
||||
"bent_knee",
|
||||
"embrace",
|
||||
"romantic",
|
||||
"closed eyes",
|
||||
"side view",
|
||||
"love"
|
||||
"arms_around_neck",
|
||||
"arms_around_waist",
|
||||
"closed_eyes"
|
||||
]
|
||||
}
|
||||
@@ -2,34 +2,35 @@
|
||||
"action_id": "kneeling_upright_sex_from_behind_illustriousxl_lora_nochekaiser",
|
||||
"action_name": "Kneeling Upright Sex From Behind Illustriousxl Lora Nochekaiser",
|
||||
"action": {
|
||||
"full_body": "kneeling, upright posture, viewing from behind",
|
||||
"head": "head turned back, blushing, mouth slightly open",
|
||||
"eyes": "half-closed eyes, looking back",
|
||||
"arms": "arms behind back, hands placed on heels or holding partner",
|
||||
"hands": "hands grasping",
|
||||
"torso": "straight back, slight arch, accentuated curve",
|
||||
"pelvis": "legs spread, presenting rear",
|
||||
"legs": "kneeling, knees apart, thighs vertical",
|
||||
"feet": "toes curling, barefoot",
|
||||
"additional": "sex from behind, doggy style, penetration, intercourse"
|
||||
},
|
||||
"participants": {
|
||||
"solo_focus": "true",
|
||||
"orientation": "MF"
|
||||
"full_body": "kneeling, sex_from_behind, doggystyle",
|
||||
"head": "blush, open_mouth, sweating",
|
||||
"eyes": "open_eyes, looking_back",
|
||||
"arms": "arms_behind_back, arms_held_back",
|
||||
"hands": "bound_wrists (optional), clenched_hands",
|
||||
"torso": "upright, arching_back, nipples",
|
||||
"pelvis": "sex_from_behind, rear_entry",
|
||||
"legs": "kneeling, spread_legs",
|
||||
"feet": "barefoot, toes_curled",
|
||||
"additional": "hetero, motion_lines, motion_blur, bedroom, sweat"
|
||||
},
|
||||
"lora": {
|
||||
"lora_name": "Illustrious/Poses/kneeling-upright-sex-from-behind-illustriousxl-lora-nochekaiser.safetensors",
|
||||
"lora_weight": 1.0,
|
||||
"lora_triggers": "kneeling-upright-sex-from-behind-illustriousxl-lora-nochekaiser"
|
||||
"lora_triggers": "kneeling upright sex from behind, arm grab, sex from behind, kneeling, sex, hetero, sweat, blush, open mouth"
|
||||
},
|
||||
"tags": [
|
||||
"kneeling",
|
||||
"upright",
|
||||
"from behind",
|
||||
"doggystyle",
|
||||
"arched back",
|
||||
"looking back",
|
||||
"sex_from_behind",
|
||||
"hetero",
|
||||
"sex",
|
||||
"nsfw"
|
||||
"sweat",
|
||||
"nipples",
|
||||
"completely_nude",
|
||||
"blush",
|
||||
"open_mouth",
|
||||
"motion_lines",
|
||||
"motion_blur",
|
||||
"bedroom",
|
||||
"doggystyle"
|
||||
]
|
||||
}
|
||||
@@ -2,33 +2,32 @@
|
||||
"action_id": "lap_pov_illustriousxl_lora_nochekaiser",
|
||||
"action_name": "Lap Pov Illustriousxl Lora Nochekaiser",
|
||||
"action": {
|
||||
"full_body": "pov, sitting on lap, straddling, shot from above, close-up, intimate distance",
|
||||
"head": "looking up, chin tilted up, face close to camera",
|
||||
"eyes": "eye contact, looking at viewer, intense gaze",
|
||||
"arms": "arms around neck, embracing viewer, or hands resting on viewer's chest",
|
||||
"hands": "touching viewer, resting on shoulders",
|
||||
"torso": "upper body close to viewer, leaning slightly back",
|
||||
"pelvis": "sitting on viewer's thighs, weight settled",
|
||||
"legs": "knees bent, thighs visible, straddling viewer's legs, spread legs",
|
||||
"feet": "out of frame or dangling",
|
||||
"additional": "viewer's legs visible beneath, depth of field, own hands (pov)"
|
||||
},
|
||||
"participants": {
|
||||
"solo_focus": "true",
|
||||
"orientation": "MF"
|
||||
"full_body": "lap_pillow, pov",
|
||||
"head": "looking_down, blush, smile",
|
||||
"eyes": "eye_contact",
|
||||
"arms": "arms_not_visible",
|
||||
"hands": "hands_not_visible",
|
||||
"torso": "from_below, navel",
|
||||
"pelvis": "thighs",
|
||||
"legs": "sitting",
|
||||
"feet": "feet_out_of_frame",
|
||||
"additional": "ceiling"
|
||||
},
|
||||
"lora": {
|
||||
"lora_name": "Illustrious/Poses/lap-pov-illustriousxl-lora-nochekaiser.safetensors",
|
||||
"lora_weight": 1.0,
|
||||
"lora_triggers": "lap-pov-illustriousxl-lora-nochekaiser"
|
||||
"lora_triggers": "lap pov, lap pillow, from below, ceiling, looking down, pov"
|
||||
},
|
||||
"tags": [
|
||||
"lap_pillow",
|
||||
"pov",
|
||||
"sitting on lap",
|
||||
"straddling",
|
||||
"looking up",
|
||||
"from above",
|
||||
"intricate details",
|
||||
"highly detailed"
|
||||
"from_below",
|
||||
"looking_down",
|
||||
"lap_pov",
|
||||
"eye_contact",
|
||||
"ceiling",
|
||||
"thighs",
|
||||
"navel",
|
||||
"lying_on_lap"
|
||||
]
|
||||
}
|
||||
@@ -2,32 +2,31 @@
|
||||
"action_id": "lickkkp",
|
||||
"action_name": "Lickkkp",
|
||||
"action": {
|
||||
"full_body": "A focus on the interaction between the character and an object near the mouth.",
|
||||
"head": "Tilted slightly forward or sideways, mouth open.",
|
||||
"eyes": "Focused intently on the object or gazing upwards at the viewer.",
|
||||
"arms": "Elbows bent, bringing hands close to the face.",
|
||||
"hands": "Holding a popsicle, lollipop, or finger positioned for checking.",
|
||||
"torso": "Leaning slightly towards the object of interest.",
|
||||
"pelvis": "Neutral alignment, stationary.",
|
||||
"legs": "Standing or sitting in a relaxed posture.",
|
||||
"feet": "Plant or crossed comfortably.",
|
||||
"additional": "Tongue extended outward making contact, saliva trails, wet tongue texture."
|
||||
},
|
||||
"participants": {
|
||||
"solo_focus": "true",
|
||||
"orientation": "MF"
|
||||
"full_body": "threesome, 2girls, kneeling",
|
||||
"head": "open_mouth, tongue_out, licking",
|
||||
"eyes": "looking_at_viewer",
|
||||
"arms": "arms_not_visible",
|
||||
"hands": "hands_not_visible",
|
||||
"torso": "upper_body",
|
||||
"pelvis": "kneeling",
|
||||
"legs": "kneeling",
|
||||
"feet": "feet_out_of_frame",
|
||||
"additional": "veiny_penis, saliva, glansjob"
|
||||
},
|
||||
"lora": {
|
||||
"lora_name": "Illustrious/Poses/LicKKKP.safetensors",
|
||||
"lora_weight": 1.0,
|
||||
"lora_triggers": "LicKKKP"
|
||||
"lora_triggers": "lkkkp, glansjob"
|
||||
},
|
||||
"tags": [
|
||||
"licking",
|
||||
"tongue out",
|
||||
"2girls",
|
||||
"threesome",
|
||||
"licking_penis",
|
||||
"fellatio",
|
||||
"veiny_penis",
|
||||
"looking_at_viewer",
|
||||
"tongue_out",
|
||||
"saliva",
|
||||
"open mouth",
|
||||
"oral fixation",
|
||||
"close-up"
|
||||
"glansjob"
|
||||
]
|
||||
}
|
||||
@@ -2,36 +2,30 @@
|
||||
"action_id": "lotusposition",
|
||||
"action_name": "Lotusposition",
|
||||
"action": {
|
||||
"full_body": "sitting in lotus position, padmasana, meditative posture, yoga pose, whole body visible",
|
||||
"head": "facing forward, calm expression, chin slightly tucked",
|
||||
"eyes": "closed eyes, relaxing, or soft gaze downwards",
|
||||
"arms": "arms relaxed, wrists resting on knees, elbows slightly bent",
|
||||
"hands": "gyan mudra, index fingers touching thumbs, palms facing up, open hands",
|
||||
"torso": "posture erect, straight spine, chest open, upright",
|
||||
"pelvis": "grounded, sitting on floor, hips externally rotated",
|
||||
"legs": "crossed legs tightly, feet resting on opposite thighs, flexibility",
|
||||
"feet": "soles facing upward, feet visible on thighs, barefoot",
|
||||
"additional": "serene atmosphere, tranquility, zen, spiritual practice"
|
||||
},
|
||||
"participants": {
|
||||
"solo_focus": "true",
|
||||
"orientation": "MF"
|
||||
"full_body": "lotus_position, sitting",
|
||||
"head": "facing_viewer",
|
||||
"eyes": "closed_eyes",
|
||||
"arms": "arms_at_sides",
|
||||
"hands": "hands_on_lap, mudra",
|
||||
"torso": "upper_body",
|
||||
"pelvis": "hips",
|
||||
"legs": "crossed_legs",
|
||||
"feet": "soles, barefoot",
|
||||
"additional": "meditation, yoga, floating_hair"
|
||||
},
|
||||
"lora": {
|
||||
"lora_name": "Illustrious/Poses/lotusposition.safetensors",
|
||||
"lora_weight": 1.0,
|
||||
"lora_triggers": "lotusposition"
|
||||
"lora_triggers": "lotus position"
|
||||
},
|
||||
"tags": [
|
||||
"lotus position",
|
||||
"lotus_position",
|
||||
"sitting",
|
||||
"crossed_legs",
|
||||
"meditation",
|
||||
"yoga",
|
||||
"sitting",
|
||||
"padmasana",
|
||||
"crossed legs",
|
||||
"zen",
|
||||
"peaceful",
|
||||
"flexible",
|
||||
"barefoot"
|
||||
"soles",
|
||||
"barefoot",
|
||||
"hands_on_lap"
|
||||
]
|
||||
}
|
||||
@@ -2,32 +2,28 @@
|
||||
"action_id": "mask_pull_up",
|
||||
"action_name": "Mask Pull Up",
|
||||
"action": {
|
||||
"full_body": "Upper body or portrait shot of a character interacting with their face covering",
|
||||
"head": "Facing forward, chin slightly tucked or level",
|
||||
"eyes": "focused gaze looking directly at the viewer",
|
||||
"arms": "Elbows bent, raised towards the face",
|
||||
"hands": "Fingers grasping the top edge of a mask or fabric, pulling it upwards",
|
||||
"torso": "Shoulders squared",
|
||||
"full_body": "upper_body",
|
||||
"head": "head_tilt, looking_at_viewer",
|
||||
"eyes": "open_eyes",
|
||||
"arms": "arms_up, hand_to_face",
|
||||
"hands": "hand_on_mask",
|
||||
"torso": "upper_body",
|
||||
"pelvis": "n/a",
|
||||
"legs": "n/a",
|
||||
"feet": "n/a",
|
||||
"additional": "The mask fabric is taut where pulled, potentially covering the mouth and nose or in the process of doing so"
|
||||
},
|
||||
"participants": {
|
||||
"solo_focus": "true",
|
||||
"orientation": "MF"
|
||||
"additional": "adjusting_mask"
|
||||
},
|
||||
"lora": {
|
||||
"lora_name": "Illustrious/Poses/mask_pull_up.safetensors",
|
||||
"lora_weight": 1.0,
|
||||
"lora_triggers": "mask_pull_up"
|
||||
"lora_triggers": "surgical mask, mask pull"
|
||||
},
|
||||
"tags": [
|
||||
"adjusting_mask",
|
||||
"surgical_mask",
|
||||
"mask_pull",
|
||||
"hand_on_mask",
|
||||
"covering_mouth",
|
||||
"upper_body",
|
||||
"mask"
|
||||
"adjusting_mask",
|
||||
"head_tilt",
|
||||
"upper_body"
|
||||
]
|
||||
}
|
||||
@@ -2,36 +2,34 @@
|
||||
"action_id": "masturbation_h",
|
||||
"action_name": "Masturbation H",
|
||||
"action": {
|
||||
"full_body": "lying on back, body arched in pleasure, intimate perspective",
|
||||
"head": "tilted back, flushed face, mouth open, heavy breathing, tongue out, salivating",
|
||||
"eyes": "half-closed eyes, rolled back, heart pupils, tearing up",
|
||||
"arms": "one arm across chest, other reaching down between legs",
|
||||
"hands": "fondling breasts, rubbing clitoris, fingering, fingers inserted",
|
||||
"torso": "sweaty skin, heaving chest, arched back",
|
||||
"pelvis": "lifted hips, exposed crotch",
|
||||
"legs": "spread legs, m-legs, knees bent, thighs open",
|
||||
"feet": "toes curled, plantar flexion",
|
||||
"additional": "pussy juice, messy sheets, unbuttoned clothes, intense pleasure"
|
||||
},
|
||||
"participants": {
|
||||
"solo_focus": "true",
|
||||
"orientation": "MF"
|
||||
"full_body": "Lying on back or stomach, masturbating",
|
||||
"head": "Heavy breathing, open mouth, blushing, head tilted back",
|
||||
"eyes": "Eyes closed or rolling back",
|
||||
"arms": "Grabbing own breasts or reaching downwards",
|
||||
"hands": "Fingering pussy or squeezing breasts",
|
||||
"torso": "Nude, arched back, shiny skin",
|
||||
"pelvis": "Exposed pussy, pussy juice",
|
||||
"legs": "Spread legs, open wide, knees bent",
|
||||
"feet": "Toes curled",
|
||||
"additional": "Top-down view, intense pleasure, sweat"
|
||||
},
|
||||
"lora": {
|
||||
"lora_name": "Illustrious/Poses/masturbation_h.safetensors",
|
||||
"lora_weight": 1.0,
|
||||
"lora_triggers": "masturbation_h"
|
||||
"lora_weight": 0.8,
|
||||
"lora_triggers": "female masturbation, top down bottom up"
|
||||
},
|
||||
"tags": [
|
||||
"masturbation",
|
||||
"fingering",
|
||||
"female_masturbation",
|
||||
"top-down_bottom-up",
|
||||
"lying",
|
||||
"on_back",
|
||||
"spread_legs",
|
||||
"nude",
|
||||
"pussy",
|
||||
"pussy_juice",
|
||||
"heavy_breathing",
|
||||
"arched_back",
|
||||
"ahegao",
|
||||
"sweat",
|
||||
"blush",
|
||||
"lying_on_bed",
|
||||
"nipple_tweak",
|
||||
"sex_act"
|
||||
"open_mouth",
|
||||
"blush"
|
||||
]
|
||||
}
|
||||
@@ -2,35 +2,27 @@
|
||||
"action_id": "mating_press___size_diff_000010_1726954",
|
||||
"action_name": "Mating Press Size Diff 000010 1726954",
|
||||
"action": {
|
||||
"full_body": "mating press, lying on back, partner on top, size difference, height difference, close bodies",
|
||||
"head": "head tilted back, heavy breathing, blushing, mouth open, sweat",
|
||||
"eyes": "half-closed eyes, rolled back eyes, ahegao",
|
||||
"arms": "arms resting on bed, arms above head, clutching sheets",
|
||||
"hands": "fists, gripping bedsheets, holding onto partner",
|
||||
"torso": "arched back, chest pressed",
|
||||
"pelvis": "hips raised, pelvis lifted, groins touching",
|
||||
"legs": "legs up, legs folded, knees to chest, spread legs, legs held by partner, feet past shoulders",
|
||||
"feet": "toes curled, suspended in air",
|
||||
"additional": "sex, vaginal penetration, duo, male on top, bed, pillows, intimate, deeply inserted"
|
||||
},
|
||||
"participants": {
|
||||
"solo_focus": "true",
|
||||
"orientation": "MF"
|
||||
"full_body": "mating_press, lying, on_back, missionary",
|
||||
"head": "looking_at_viewer, blush",
|
||||
"eyes": "open_eyes",
|
||||
"arms": "arms_spread, arms_up",
|
||||
"hands": "leg_grab",
|
||||
"torso": "navel, medium_breasts",
|
||||
"pelvis": "pussy",
|
||||
"legs": "legs_up, spread_legs, legs_lifted",
|
||||
"feet": "barefoot, toes",
|
||||
"additional": "size_difference, giant, giant_male, sex, vaginal, 1boy, 1girl"
|
||||
},
|
||||
"lora": {
|
||||
"lora_name": "Illustrious/Poses/Mating_Press_-_Size_Diff-000010_1726954.safetensors",
|
||||
"lora_weight": 1.0,
|
||||
"lora_triggers": "Mating_Press_-_Size_Diff-000010_1726954"
|
||||
"lora_weight": 0.8,
|
||||
"lora_triggers": "MPSDV1.0, mating_press, size_difference"
|
||||
},
|
||||
"tags": [
|
||||
"mating press",
|
||||
"size difference",
|
||||
"legs up",
|
||||
"lying on back",
|
||||
"partner on top",
|
||||
"knees to chest",
|
||||
"sex",
|
||||
"vaginal",
|
||||
"legs folded"
|
||||
"best_quality",
|
||||
"masterpiece",
|
||||
"absurdres",
|
||||
"highres",
|
||||
"newest"
|
||||
]
|
||||
}
|
||||
@@ -2,35 +2,36 @@
|
||||
"action_id": "mating_press_from_above_illustriousxl_lora_nochekaiser",
|
||||
"action_name": "Mating Press From Above Illustriousxl Lora Nochekaiser",
|
||||
"action": {
|
||||
"full_body": "lying on back, mating press pose, supine",
|
||||
"head": "resting on surface, looking up at viewer",
|
||||
"eyes": "half-closed eyes, rolling eyes, ahegao",
|
||||
"arms": "arms at sides or reaching up",
|
||||
"hands": "grabbing sheets or holding legs",
|
||||
"torso": "back flat against surface, chest heaving",
|
||||
"pelvis": "hips exposed, legs spread wide",
|
||||
"legs": "legs up, knees bent towards shoulders, thighs pressed back",
|
||||
"feet": "feet in air, toes curled",
|
||||
"additional": "from above, high angle, pov, bed sheet, sweat, intimate"
|
||||
},
|
||||
"participants": {
|
||||
"solo_focus": "true",
|
||||
"orientation": "MF"
|
||||
"full_body": "mating_press, missionary, lying, sex",
|
||||
"head": "blush, sweat, looking_at_viewer, open_mouth",
|
||||
"eyes": "looking_at_viewer",
|
||||
"arms": "arms_around_back, hug",
|
||||
"hands": "hands_on_back",
|
||||
"torso": "on_back, breasts_squished",
|
||||
"pelvis": "hips_lifted",
|
||||
"legs": "leg_lock, legs_up",
|
||||
"feet": "barefoot",
|
||||
"additional": "from_above, faceless_male, hetero"
|
||||
},
|
||||
"lora": {
|
||||
"lora_name": "Illustrious/Poses/mating-press-from-above-illustriousxl-lora-nochekaiser.safetensors",
|
||||
"lora_weight": 1.0,
|
||||
"lora_triggers": "mating-press-from-above-illustriousxl-lora-nochekaiser"
|
||||
"lora_triggers": "mating press from above, mating press, missionary, leg lock, on back, hug"
|
||||
},
|
||||
"tags": [
|
||||
"mating press",
|
||||
"from above",
|
||||
"lying on back",
|
||||
"legs up",
|
||||
"spread legs",
|
||||
"knees to chest",
|
||||
"pov",
|
||||
"high angle",
|
||||
"sex"
|
||||
"mating_press",
|
||||
"missionary",
|
||||
"from_above",
|
||||
"leg_lock",
|
||||
"lying",
|
||||
"on_back",
|
||||
"sweat",
|
||||
"blush",
|
||||
"open_mouth",
|
||||
"looking_at_viewer",
|
||||
"hug",
|
||||
"arms_around_back",
|
||||
"faceless_male",
|
||||
"hetero"
|
||||
]
|
||||
}
|
||||
@@ -2,35 +2,36 @@
|
||||
"action_id": "mating_press_from_side_illustriousxl_lora_nochekaiser",
|
||||
"action_name": "Mating Press From Side Illustriousxl Lora Nochekaiser",
|
||||
"action": {
|
||||
"full_body": "lying on back, legs lifted high toward chest, profile view, receiving forceful thrusts",
|
||||
"head": "head pressed against pillow, chin tilted up, neck exposed",
|
||||
"eyes": "rolled back or squeezed shut, ahegao or heavy breathing",
|
||||
"arms": "reaching out to hold partner or gripping bedsheets tightly",
|
||||
"hands": "clenched fists or grabbing partner's back",
|
||||
"torso": "back arched slightly, chest heaving",
|
||||
"pelvis": "lifted off the mattress, hips tilted upwards",
|
||||
"legs": "legs up, thighs pressed against torso, knees bent, ankles crossed behind partner's back or resting on partner's shoulders",
|
||||
"feet": "toes curled or pointing upwards",
|
||||
"additional": "sex, profile, side view, sweat, bed, crumpled sheets"
|
||||
},
|
||||
"participants": {
|
||||
"solo_focus": "true",
|
||||
"orientation": "MF"
|
||||
"full_body": "missionary, mating_press, lying, on_back, from_side",
|
||||
"head": "blush, open_mouth",
|
||||
"eyes": "eyes_open",
|
||||
"arms": "arms_at_sides",
|
||||
"hands": "hands_on_bed",
|
||||
"torso": "nude, breasts, nipples",
|
||||
"pelvis": "sex, vaginal",
|
||||
"legs": "leg_lock, legs_up",
|
||||
"feet": "barefoot",
|
||||
"additional": "on_bed, bedroom, motion_blur"
|
||||
},
|
||||
"lora": {
|
||||
"lora_name": "Illustrious/Poses/mating-press-from-side-illustriousxl-lora-nochekaiser.safetensors",
|
||||
"lora_weight": 1.0,
|
||||
"lora_triggers": "mating-press-from-side-illustriousxl-lora-nochekaiser"
|
||||
"lora_triggers": "mating press from side, leg lock, missionary"
|
||||
},
|
||||
"tags": [
|
||||
"mating press",
|
||||
"from side",
|
||||
"legs up",
|
||||
"lying on back",
|
||||
"mating_press",
|
||||
"from_side",
|
||||
"leg_lock",
|
||||
"missionary",
|
||||
"lying",
|
||||
"on_back",
|
||||
"on_bed",
|
||||
"bedroom",
|
||||
"sex",
|
||||
"vaginal",
|
||||
"side view",
|
||||
"profile",
|
||||
"legs over head"
|
||||
"nude",
|
||||
"blush",
|
||||
"open_mouth",
|
||||
"motion_blur",
|
||||
"nipples"
|
||||
]
|
||||
}
|
||||
@@ -2,35 +2,33 @@
|
||||
"action_id": "midis_cumshower_lr_v1_naixl_vpred_",
|
||||
"action_name": "Midis Cumshower Lr V1 Naixl Vpred ",
|
||||
"action": {
|
||||
"full_body": "kneeling or standing pose, body seemingly under a waterfall of viscous liquid",
|
||||
"head": "tilted back, looking up, facial, face covered in white liquid, dripping heavily",
|
||||
"eyes": "eyes closed or squinting, eyelashes wet and clumped, messy face",
|
||||
"arms": "arms relaxed or hands touching face, skin slick with liquid",
|
||||
"hands": "messy hands, covered in cum, spread palms",
|
||||
"torso": "chest covered in liquid, streams running down the body, wet skin shine",
|
||||
"pelvis": "kneeling or stationary",
|
||||
"legs": "thighs wet, liquid pooling",
|
||||
"feet": "bare feet",
|
||||
"additional": "heavy cum, excessive cum, bukkake, splashing liquid, messy"
|
||||
},
|
||||
"participants": {
|
||||
"solo_focus": "true",
|
||||
"orientation": "MF"
|
||||
"full_body": "standing, showering",
|
||||
"head": "wet_hair, cum_on_hair",
|
||||
"eyes": "closed_eyes",
|
||||
"arms": "washing_hair, arms_behind_head",
|
||||
"hands": "hands_on_head",
|
||||
"torso": "wet, cum_on_body",
|
||||
"pelvis": "wet",
|
||||
"legs": "standing",
|
||||
"feet": "barefoot",
|
||||
"additional": "steam, bathroom, shower_head, excessive_cum"
|
||||
},
|
||||
"lora": {
|
||||
"lora_name": "Illustrious/Poses/midis_CumShower_LR-V1[NAIXL-vPred].safetensors",
|
||||
"lora_weight": 1.0,
|
||||
"lora_triggers": "midis_CumShower_LR-V1[NAIXL-vPred]"
|
||||
"lora_triggers": "showering, cumshower"
|
||||
},
|
||||
"tags": [
|
||||
"cum_shower",
|
||||
"bukkake",
|
||||
"heavy_cum",
|
||||
"facial",
|
||||
"covered_in_cum",
|
||||
"excessive_cum",
|
||||
"dripping_cum",
|
||||
"messy",
|
||||
"body_bukkake"
|
||||
"showering",
|
||||
"washing_hair",
|
||||
"wet",
|
||||
"wet_hair",
|
||||
"steam",
|
||||
"bathroom",
|
||||
"cum",
|
||||
"cum_on_body",
|
||||
"cum_on_hair",
|
||||
"arms_behind_head",
|
||||
"closed_eyes"
|
||||
]
|
||||
}
|
||||
@@ -2,32 +2,30 @@
|
||||
"action_id": "midis_cunnilingus_v0_6_naixl_vpred_",
|
||||
"action_name": "Midis Cunnilingus V0 6 Naixl Vpred ",
|
||||
"action": {
|
||||
"full_body": "duo focus, cunnilingus, oral sex, sexual act, female receiving oral sex, partner positioning between legs",
|
||||
"head": "face buried in crotch, face between legs, tongue out, licking",
|
||||
"eyes": "eyes closed, rolling eyes, expression of pleasure",
|
||||
"arms": "holding thighs, gripping hips, supporting body weight",
|
||||
"hands": "spreading labia, touching clitoris, fingering",
|
||||
"torso": "leaning forward, prone",
|
||||
"pelvis": "hips raised, exposed vulva, pelvic tilt",
|
||||
"legs": "spread legs, open legs, legs over shoulders, m-legs, knees bent",
|
||||
"feet": "toes curled, plantar flexion",
|
||||
"additional": "pussy juice, saliva trail, wet pussy, intimacy"
|
||||
},
|
||||
"participants": {
|
||||
"solo_focus": "true",
|
||||
"orientation": "MF"
|
||||
"full_body": "sitting_on_face, straddling, leaning_forward",
|
||||
"head": "looking_down",
|
||||
"eyes": "looking_at_viewer",
|
||||
"arms": "arms_support, hands_on_own_legs",
|
||||
"hands": "resting",
|
||||
"torso": "leaning_forward",
|
||||
"pelvis": "straddling, hips_spread",
|
||||
"legs": "spread_legs, kneeling, thighs",
|
||||
"feet": "out_of_frame",
|
||||
"additional": "pov, from_below, intimate_perspective, aggressive_angle"
|
||||
},
|
||||
"lora": {
|
||||
"lora_name": "Illustrious/Poses/midis_Cunnilingus_V0.6[NAIXL-vPred].safetensors",
|
||||
"lora_weight": 1.0,
|
||||
"lora_triggers": "midis_Cunnilingus_V0.6[NAIXL-vPred]"
|
||||
"lora_triggers": "cunnilingus pov, looking down"
|
||||
},
|
||||
"tags": [
|
||||
"cunnilingus",
|
||||
"oral sex",
|
||||
"pussy licking",
|
||||
"nsfw",
|
||||
"sexual act",
|
||||
"duo"
|
||||
"pov",
|
||||
"sitting_on_face",
|
||||
"looking_down",
|
||||
"from_below",
|
||||
"straddling",
|
||||
"spread_legs",
|
||||
"thighs"
|
||||
]
|
||||
}
|
||||
@@ -2,34 +2,32 @@
|
||||
"action_id": "midis_expressivelanguagelovingit_v0_5_il_",
|
||||
"action_name": "Midis Expressivelanguagelovingit V0 5 Il ",
|
||||
"action": {
|
||||
"full_body": "character displaying intense affection, leaning forward enthusiastically",
|
||||
"head": "tilted slightly to the side, huge smile, blushing cheeks",
|
||||
"eyes": "closed happy eyes (><) or heart-shaped pupils",
|
||||
"arms": "brought together in front of the chest or face",
|
||||
"hands": "fingers curved to form a heart shape (heart hands)",
|
||||
"torso": "facing viewer, upper body focus",
|
||||
"pelvis": "neutral",
|
||||
"legs": "standing or obscured",
|
||||
"feet": "obscured",
|
||||
"additional": "floating pink hearts, sparkles, radiating happiness"
|
||||
},
|
||||
"participants": {
|
||||
"solo_focus": "true",
|
||||
"orientation": "MF"
|
||||
"full_body": "doggystyle",
|
||||
"head": "facing_away, moaning, heavy_breathing, sweat",
|
||||
"eyes": "half-closed_eyes",
|
||||
"arms": "leaning_forward",
|
||||
"hands": "on_surface",
|
||||
"torso": "bent_over, arched_back",
|
||||
"pelvis": "lifted",
|
||||
"legs": "kneeling, spread_legs",
|
||||
"feet": "toes_curled",
|
||||
"additional": "speech_bubble, english_text, sound_effects, motion_lines"
|
||||
},
|
||||
"lora": {
|
||||
"lora_name": "Illustrious/Poses/midis_ExpressiveLanguageLovingit_V0.5[IL].safetensors",
|
||||
"lora_weight": 1.0,
|
||||
"lora_triggers": "midis_ExpressiveLanguageLovingit_V0.5[IL]"
|
||||
"lora_triggers": "lovingit"
|
||||
},
|
||||
"tags": [
|
||||
"heart hands",
|
||||
"hands forming heart",
|
||||
"love",
|
||||
"smile",
|
||||
"blush",
|
||||
"closed eyes",
|
||||
"happy",
|
||||
"adoration"
|
||||
"lovingit",
|
||||
"speech_bubble",
|
||||
"moaning",
|
||||
"english_text",
|
||||
"doggystyle",
|
||||
"bent_over",
|
||||
"facing_away",
|
||||
"sex",
|
||||
"motion_lines",
|
||||
"sound_effects"
|
||||
]
|
||||
}
|
||||
@@ -2,33 +2,31 @@
|
||||
"action_id": "midis_onbackoral_v0_4_il_",
|
||||
"action_name": "Midis Onbackoral V0 4 Il ",
|
||||
"action": {
|
||||
"full_body": "lying on back, supine position, sensual pose",
|
||||
"head": "head resting on surface, head tilted back, blush",
|
||||
"eyes": "rolling eyes, eyes closed, or looking down",
|
||||
"arms": "arms at sides, grabbing bedsheets, or arms above head",
|
||||
"hands": "clenched hands, fingers curling",
|
||||
"torso": "arched back, chest upward",
|
||||
"pelvis": "hips lifted, pelvis exposed",
|
||||
"legs": "spread legs, legs apart, knees bent, m-legs, open legs",
|
||||
"feet": "toes curled, feet in air",
|
||||
"additional": "pov, view from above, between legs, bed, messy sheets"
|
||||
},
|
||||
"participants": {
|
||||
"solo_focus": "true",
|
||||
"orientation": "MF"
|
||||
"full_body": "lying, on_back, sitting_on_person",
|
||||
"head": "open_mouth, head_back, looking_up",
|
||||
"eyes": "closed_eyes, half_closed_eyes",
|
||||
"arms": "arms_at_sides, arms_above_head",
|
||||
"hands": "clenched_hands",
|
||||
"torso": "chest, breasts, lying_on_back",
|
||||
"pelvis": "lying",
|
||||
"legs": "legs_straight, legs_apart",
|
||||
"feet": "toes_curled",
|
||||
"additional": "irrumatio, fellatio, sitting_on_breasts, sitting_on_chest, struggling"
|
||||
},
|
||||
"lora": {
|
||||
"lora_name": "Illustrious/Poses/midis_OnBackOral_V0.4[IL].safetensors",
|
||||
"lora_weight": 1.0,
|
||||
"lora_triggers": "midis_OnBackOral_V0.4[IL]"
|
||||
"lora_triggers": "oral, lying"
|
||||
},
|
||||
"tags": [
|
||||
"lying on back",
|
||||
"spread legs",
|
||||
"pov",
|
||||
"legs apart",
|
||||
"supine",
|
||||
"m-legs",
|
||||
"sensual"
|
||||
"lying",
|
||||
"on_back",
|
||||
"oral",
|
||||
"irrumatio",
|
||||
"fellatio",
|
||||
"sitting_on_person",
|
||||
"sitting_on_breasts",
|
||||
"sitting_on_chest",
|
||||
"struggling"
|
||||
]
|
||||
}
|
||||
@@ -2,35 +2,29 @@
|
||||
"action_id": "multiple_asses_r1",
|
||||
"action_name": "Multiple Asses R1",
|
||||
"action": {
|
||||
"full_body": "multiple subjects standing in a row or group turned away from the camera, full rear view",
|
||||
"head": "facing forward away from camera or turned slightly to look back",
|
||||
"eyes": "looking at viewer over shoulder or not visible",
|
||||
"arms": "relaxed at sides or hands resting on hips",
|
||||
"hands": "resting on waist or touching thighs",
|
||||
"torso": "visible back, slightly arched lower back",
|
||||
"pelvis": "hips wide, buttocks emphasized and focused in composition",
|
||||
"legs": "standing straight or slightly bent at knees, shoulder-width apart",
|
||||
"feet": "planted on ground, heels slightly raised or flat",
|
||||
"additional": "focus on varying shapes and sizes of buttocks, depth of field focused on rear"
|
||||
},
|
||||
"participants": {
|
||||
"solo_focus": "true",
|
||||
"orientation": "MF"
|
||||
"full_body": "multiple_girls, lineup, from_behind, ass_focus",
|
||||
"head": "looking_back",
|
||||
"eyes": "detailed_eyes",
|
||||
"arms": "arms_at_sides",
|
||||
"hands": "hands_on_hips",
|
||||
"torso": "bent_over, arched_back",
|
||||
"pelvis": "ass, hips",
|
||||
"legs": "standing, legs_apart",
|
||||
"feet": "feet_out_of_frame",
|
||||
"additional": "group_picture, depth_of_field"
|
||||
},
|
||||
"lora": {
|
||||
"lora_name": "Illustrious/Poses/Multiple_Asses_r1.safetensors",
|
||||
"lora_weight": 1.0,
|
||||
"lora_triggers": "Multiple_Asses_r1"
|
||||
"lora_triggers": "Multiple_Asses_V1"
|
||||
},
|
||||
"tags": [
|
||||
"from behind",
|
||||
"ass",
|
||||
"butt",
|
||||
"multiple girls",
|
||||
"group",
|
||||
"back view",
|
||||
"looking back",
|
||||
"medium shot",
|
||||
"lower body focus"
|
||||
"multiple_girls",
|
||||
"lineup",
|
||||
"from_behind",
|
||||
"ass_focus",
|
||||
"3girls",
|
||||
"bent_over",
|
||||
"looking_back"
|
||||
]
|
||||
}
|
||||
@@ -2,33 +2,32 @@
|
||||
"action_id": "multiple_fellatio_illustrious_v1_0",
|
||||
"action_name": "Multiple Fellatio Illustrious V1 0",
|
||||
"action": {
|
||||
"full_body": "multiple views, kneeling or sitting position, flanked by two partners, maintaining balance while engaging multiple subjects",
|
||||
"head": "mouth wide open, jaw stretched, head tilted back or neutral, heavily blushing face, messy hair",
|
||||
"eyes": "rolled back (ahegao), heart-shaped pupils, or crossed eyes, streaming tears",
|
||||
"arms": "raised to hold partners or resting on their legs",
|
||||
"hands": "stroking shafts, guiding penises towards mouth, or resting on partners' thighs",
|
||||
"torso": "chest pushed forward, leaning in towards the action",
|
||||
"pelvis": "hips settled on heels or slightly raised in a kneeling stance",
|
||||
"legs": "kneeling, shins flat against the surface, knees spread apart",
|
||||
"feet": "toes curled or resting flat",
|
||||
"additional": "saliva trails, double fellatio, penis in mouth, penis on face, cum on face, high motion lines, explicit sexual activity"
|
||||
},
|
||||
"participants": {
|
||||
"solo_focus": "true",
|
||||
"orientation": "MF"
|
||||
"full_body": "cooperative_fellatio, group_sex, multiple_girls",
|
||||
"head": "open_mouth, tongue_out, licking",
|
||||
"eyes": "upward_gaze, looking_at_penis",
|
||||
"arms": "holding_penis",
|
||||
"hands": "on_penis",
|
||||
"torso": "leaning_forward",
|
||||
"pelvis": "kneeling",
|
||||
"legs": "kneeling",
|
||||
"feet": "toes_curled",
|
||||
"additional": "pov, saliva, penile_stimulation"
|
||||
},
|
||||
"lora": {
|
||||
"lora_name": "Illustrious/Poses/multiple fellatio_illustrious_V1.0.safetensors",
|
||||
"lora_weight": 1.0,
|
||||
"lora_triggers": "multiple fellatio_illustrious_V1.0"
|
||||
"lora_weight": 0.7,
|
||||
"lora_triggers": "multiple fellatio, cooperative fellatio, fellatio, oral, group sex, licking, pov"
|
||||
},
|
||||
"tags": [
|
||||
"multiple fellatio",
|
||||
"double fellatio",
|
||||
"oral sex",
|
||||
"kneeling",
|
||||
"group sex",
|
||||
"ahegao",
|
||||
"saliva"
|
||||
"cooperative_fellatio",
|
||||
"fellatio",
|
||||
"group_sex",
|
||||
"oral",
|
||||
"licking",
|
||||
"pov",
|
||||
"multiple_girls",
|
||||
"penis",
|
||||
"1boy",
|
||||
"kneeling"
|
||||
]
|
||||
}
|
||||
@@ -2,34 +2,28 @@
|
||||
"action_id": "multiple_views_sex",
|
||||
"action_name": "Multiple Views Sex",
|
||||
"action": {
|
||||
"full_body": "multiple views, split view, character sheet, three-view drawing, front view, side view, back view",
|
||||
"head": "neutral expression, looking forward, head visible from multiple angles",
|
||||
"eyes": "open, direct gaze (in front view)",
|
||||
"arms": "arms at sides, A-pose or T-pose, relaxed",
|
||||
"hands": "open hands, relaxed",
|
||||
"torso": "standing straight, visible from front, side, and back",
|
||||
"pelvis": "facing forward (front view), facing side (side view)",
|
||||
"legs": "standing straight, legs slightly apart",
|
||||
"feet": "flat on floor",
|
||||
"additional": "simple background, white background, concept art style, anatomy reference"
|
||||
},
|
||||
"participants": {
|
||||
"solo_focus": "true",
|
||||
"orientation": "MF"
|
||||
"full_body": "multiple_views, sex, doggystyle, all_fours",
|
||||
"head": "looking_back",
|
||||
"eyes": "open_eyes",
|
||||
"arms": "on_ground",
|
||||
"hands": "on_ground",
|
||||
"torso": "arched_back, bent_over",
|
||||
"pelvis": "lifted",
|
||||
"legs": "kneeling",
|
||||
"feet": "toes_pointing",
|
||||
"additional": "split_screen"
|
||||
},
|
||||
"lora": {
|
||||
"lora_name": "Illustrious/Poses/Multiple_views_sex.safetensors",
|
||||
"lora_weight": 1.0,
|
||||
"lora_triggers": "Multiple_views_sex"
|
||||
"lora_weight": 0.8,
|
||||
"lora_triggers": "multiple_views"
|
||||
},
|
||||
"tags": [
|
||||
"multiple views",
|
||||
"character turnaround",
|
||||
"reference sheet",
|
||||
"split view",
|
||||
"from front",
|
||||
"from side",
|
||||
"from back",
|
||||
"model sheet"
|
||||
"multiple_views",
|
||||
"sex",
|
||||
"doggystyle",
|
||||
"from_side",
|
||||
"from_behind",
|
||||
"split_screen"
|
||||
]
|
||||
}
|
||||
@@ -2,34 +2,33 @@
|
||||
"action_id": "multipleviews",
|
||||
"action_name": "Multipleviews",
|
||||
"action": {
|
||||
"full_body": "character sheet layout displaying the same character from multiple angles (front, side, back), standing pose",
|
||||
"head": "neutral expression, face forward (front view), profile (side view)",
|
||||
"eyes": "looking straight ahead",
|
||||
"arms": "arms at sides, slight A-pose to show details",
|
||||
"hands": "relaxed at sides",
|
||||
"torso": "upright, various angles",
|
||||
"pelvis": "facing front, side, and back",
|
||||
"legs": "standing straight, shoulder width apart",
|
||||
"feet": "standing flat",
|
||||
"additional": "simple background, concept art style, turnaround, split view"
|
||||
},
|
||||
"participants": {
|
||||
"solo_focus": "true",
|
||||
"orientation": "MF"
|
||||
"full_body": "multiple_views, on_stomach, doggystyle",
|
||||
"head": "naughty_face, blush, open_mouth",
|
||||
"eyes": "rolling_eyes, heart-shaped_pupils",
|
||||
"arms": "arms_tied, grabbing_sheets",
|
||||
"hands": "on_bed",
|
||||
"torso": "cum_on_body, sweaty, arched_back",
|
||||
"pelvis": "sex_from_behind, vaginal",
|
||||
"legs": "kneeling, spread_legs",
|
||||
"feet": "toes_curled",
|
||||
"additional": "collage, after_sex, cumdrip, orgasm, deepthroat"
|
||||
},
|
||||
"lora": {
|
||||
"lora_name": "Illustrious/Poses/multipleviews.safetensors",
|
||||
"lora_weight": 1.0,
|
||||
"lora_triggers": "multipleviews"
|
||||
"lora_triggers": "multiple_views"
|
||||
},
|
||||
"tags": [
|
||||
"multiple views",
|
||||
"character sheet",
|
||||
"reference sheet",
|
||||
"turnaround",
|
||||
"front view",
|
||||
"side view",
|
||||
"back view",
|
||||
"concept art"
|
||||
"multiple_views",
|
||||
"1girl",
|
||||
"1boy",
|
||||
"sex_from_behind",
|
||||
"on_stomach",
|
||||
"naughty_face",
|
||||
"cumdrip",
|
||||
"after_sex",
|
||||
"orgasm",
|
||||
"deepthroat",
|
||||
"vaginal"
|
||||
]
|
||||
}
|
||||
@@ -2,33 +2,33 @@
|
||||
"action_id": "multiview_oralsex",
|
||||
"action_name": "Multiview Oralsex",
|
||||
"action": {
|
||||
"full_body": "multiple views of a character displayed in a grid or sequence, showing different angles of a kneeling pose",
|
||||
"head": "tilted slightly upward or forward, varying by angle, mouth slightly open or neutral",
|
||||
"eyes": "focused upward or closed, depending on the specific view",
|
||||
"arms": "reaching forward or resting on a surface",
|
||||
"hands": "gesturing or holding onto a support",
|
||||
"torso": "leaning forward, back slightly arched",
|
||||
"pelvis": "positioned low, kneeling grounded stance",
|
||||
"legs": "knees bent on the ground, shins flat against the surface",
|
||||
"feet": "toes supporting or flat, visible in rear views",
|
||||
"additional": "character sheet style, white or simple background to emphasize the pose analysis"
|
||||
},
|
||||
"participants": {
|
||||
"solo_focus": "true",
|
||||
"orientation": "MF"
|
||||
"full_body": "kneeling, multiple_views",
|
||||
"head": "licking, saliva, open_mouth, tongue_out",
|
||||
"eyes": "looking_at_penis",
|
||||
"arms": "arms_down",
|
||||
"hands": "on_legs",
|
||||
"torso": "leaning_forward",
|
||||
"pelvis": "kneeling",
|
||||
"legs": "kneeling",
|
||||
"feet": "toes",
|
||||
"additional": "fellatio, penis, testicles, close-up"
|
||||
},
|
||||
"lora": {
|
||||
"lora_name": "Illustrious/Poses/multiview_oralsex.safetensors",
|
||||
"lora_weight": 1.0,
|
||||
"lora_triggers": "multiview_oralsex"
|
||||
"lora_weight": 0.9,
|
||||
"lora_triggers": "multi_oralsex, oral, multiple_views, kneeling, testicles, saliva, licking, penis"
|
||||
},
|
||||
"tags": [
|
||||
"multiview",
|
||||
"character sheet",
|
||||
"reference sheet",
|
||||
"multiple_views",
|
||||
"fellatio",
|
||||
"kneeling",
|
||||
"leaning forward",
|
||||
"multiple angles",
|
||||
"pose check"
|
||||
"saliva",
|
||||
"licking",
|
||||
"penis",
|
||||
"testicles",
|
||||
"close-up",
|
||||
"open_mouth",
|
||||
"tongue_out",
|
||||
"leaning_forward"
|
||||
]
|
||||
}
|
||||
@@ -2,31 +2,29 @@
|
||||
"action_id": "neba",
|
||||
"action_name": "Neba",
|
||||
"action": {
|
||||
"full_body": "character posing while stretching a viscous, sticky substance between body parts",
|
||||
"head": "tilted slightly forward or back, focused on the substance",
|
||||
"eyes": "focused gaze, watching the strands stretch",
|
||||
"arms": "extended outwards or pulled apart to create tension in the liquid",
|
||||
"hands": "fingers spread, pulling sticky material apart with visible strands connecting them",
|
||||
"torso": "posture adjusts to accommodate the stretching motion",
|
||||
"pelvis": "neutral or slightly shifted weight",
|
||||
"legs": "standing or sitting planted firmly",
|
||||
"feet": "neutral placement",
|
||||
"additional": "thick, stringy strands (neba neba) connecting hands to other surfaces or body parts, implies viscosity"
|
||||
},
|
||||
"participants": {
|
||||
"solo_focus": "true",
|
||||
"orientation": "MF"
|
||||
"full_body": "character covered in viscous slime substance, wet and shiny skin",
|
||||
"head": "slime dripping from face, flushed expression",
|
||||
"eyes": "wide open eyes",
|
||||
"arms": "arms coated in sticky liquid",
|
||||
"hands": "slimy hands",
|
||||
"torso": "slime running down body",
|
||||
"pelvis": "wet with slime",
|
||||
"legs": "legs covered in slippery slime",
|
||||
"feet": "standing in slime puddle",
|
||||
"additional": "sticky strands, messy texture, high viscosity"
|
||||
},
|
||||
"lora": {
|
||||
"lora_name": "Illustrious/Poses/neba.safetensors",
|
||||
"lora_weight": 1.0,
|
||||
"lora_triggers": "neba"
|
||||
"lora_triggers": "black slime, pink slime, white slime, green slime, yellow slime, transparent slime, mud slime, slime (substance)"
|
||||
},
|
||||
"tags": [
|
||||
"neba neba",
|
||||
"slime_(substance)",
|
||||
"sticky",
|
||||
"stretching",
|
||||
"viscous",
|
||||
"slime"
|
||||
"wet",
|
||||
"shiny_skin",
|
||||
"dripping",
|
||||
"blush",
|
||||
"open_mouth"
|
||||
]
|
||||
}
|
||||
@@ -2,34 +2,36 @@
|
||||
"action_id": "nm_fullmouthcum_ill",
|
||||
"action_name": "Nm Fullmouthcum Ill",
|
||||
"action": {
|
||||
"full_body": "portrait or upper body shot focusing on facial distortion",
|
||||
"head": "face flushed, cheeks bulging significantly, puffy cheeks, stuffed cheeks, lips pursed or slightly leaking liquid",
|
||||
"eyes": "tearing up, watery eyes, squashed or wide open depending on intensity",
|
||||
"arms": "optional, hands often near face",
|
||||
"hands": "wiping mouth or framing face, messy with liquid",
|
||||
"torso": "visible upper chest",
|
||||
"pelvis": "not visible or kneeling",
|
||||
"legs": "not visible",
|
||||
"feet": "not visible",
|
||||
"additional": "mouth full, holding breath, white liquid dripping, semen in mouth, cum drip, excess saliva, struggling to swallow"
|
||||
},
|
||||
"participants": {
|
||||
"solo_focus": "true",
|
||||
"orientation": "MF"
|
||||
"full_body": "focus on face",
|
||||
"head": "tilted back, open_mouth, visible uvula",
|
||||
"eyes": "half-closed_eyes, rolled_up_eyes",
|
||||
"arms": "",
|
||||
"hands": "",
|
||||
"torso": "",
|
||||
"pelvis": "",
|
||||
"legs": "",
|
||||
"feet": "",
|
||||
"additional": "cum_in_mouth, cum_on_tongue, excessive_cum, saliva, facial, full_mouth"
|
||||
},
|
||||
"lora": {
|
||||
"lora_name": "Illustrious/Poses/NM_FullMouthCum_ill.safetensors",
|
||||
"lora_weight": 1.0,
|
||||
"lora_triggers": "NM_FullMouthCum_ill"
|
||||
"lora_triggers": "nm_fullmouthcum"
|
||||
},
|
||||
"tags": [
|
||||
"stuffed cheeks",
|
||||
"puffy cheeks",
|
||||
"mouth full",
|
||||
"cum in mouth",
|
||||
"bulging cheeks",
|
||||
"semen in mouth",
|
||||
"holding breath",
|
||||
"cheeks"
|
||||
"cum_in_mouth",
|
||||
"cum_on_tongue",
|
||||
"full_mouth",
|
||||
"excessive_cum",
|
||||
"facial",
|
||||
"bukkake",
|
||||
"after_fellatio",
|
||||
"open_mouth",
|
||||
"tongue_out",
|
||||
"saliva",
|
||||
"lips",
|
||||
"uvula",
|
||||
"half-closed_eyes",
|
||||
"close-up"
|
||||
]
|
||||
}
|
||||
32
data/actions/paionlap_illu_dwnsty.json
Normal file
32
data/actions/paionlap_illu_dwnsty.json
Normal file
@@ -0,0 +1,32 @@
|
||||
{
|
||||
"action_id": "paionlap_illu_dwnsty",
|
||||
"action_name": "Paionlap Illu Dwnsty",
|
||||
"action": {
|
||||
"full_body": "sitting_on_lap, straddling, full_body",
|
||||
"head": "looking_up",
|
||||
"eyes": "detailed_eyes",
|
||||
"arms": "elbows_out",
|
||||
"hands": "grabbing_own_breast",
|
||||
"torso": "breasts_out, large_breasts",
|
||||
"pelvis": "straddling",
|
||||
"legs": "wariza, kneeling",
|
||||
"feet": "",
|
||||
"additional": "paizuri, pov, from_below, solo_focus, indoors"
|
||||
},
|
||||
"lora": {
|
||||
"lora_name": "Illustrious/Poses/PaiOnLap_Illu_Dwnsty.safetensors",
|
||||
"lora_weight": 1.0,
|
||||
"lora_triggers": "paionlap"
|
||||
},
|
||||
"tags": [
|
||||
"paizuri",
|
||||
"pov",
|
||||
"wariza",
|
||||
"sitting_on_lap",
|
||||
"from_below",
|
||||
"grabbing_own_breast",
|
||||
"looking_up",
|
||||
"solo_focus",
|
||||
"breasts_out"
|
||||
]
|
||||
}
|
||||
@@ -2,31 +2,28 @@
|
||||
"action_id": "panty_aside_illustrious_v1_0",
|
||||
"action_name": "Panty Aside Illustrious V1 0",
|
||||
"action": {
|
||||
"full_body": "pulling panties aside, revealing pose, front view, standing or lying on back",
|
||||
"head": "looking at viewer, blush, embarrassed or seductive expression",
|
||||
"eyes": "eye contact, alluring gaze",
|
||||
"arms": "arms reaching down, arm at side",
|
||||
"hands": "hand on hip, fingers hooking panties, pulling fabric, thumb inside waistband",
|
||||
"torso": "bare midriff, navel, exposed slightly",
|
||||
"pelvis": "panties, underwear, hip bone, side tie, exposed hip, gap",
|
||||
"legs": "thighs, bare legs, slightly parted",
|
||||
"feet": "standing or feet out of frame",
|
||||
"additional": "lingerie, teasing, skin indentation, exposure"
|
||||
},
|
||||
"participants": {
|
||||
"solo_focus": "true",
|
||||
"orientation": "MF"
|
||||
"full_body": "panties_aside",
|
||||
"head": "looking_at_viewer",
|
||||
"eyes": "ultra-detailed-eyes",
|
||||
"arms": "arms_at_sides",
|
||||
"hands": "adjusting_panties",
|
||||
"torso": "cute_girl",
|
||||
"pelvis": "panties_aside, panties, pussy",
|
||||
"legs": "legs_apart",
|
||||
"feet": "standing",
|
||||
"additional": "censored"
|
||||
},
|
||||
"lora": {
|
||||
"lora_name": "Illustrious/Poses/panty aside_illustrious_V1.0.safetensors",
|
||||
"lora_weight": 1.0,
|
||||
"lora_triggers": "panty aside_illustrious_V1.0"
|
||||
"lora_weight": 0.7,
|
||||
"lora_triggers": "panties aside, panties, pussy"
|
||||
},
|
||||
"tags": [
|
||||
"panty aside",
|
||||
"pulling panties aside",
|
||||
"underwear",
|
||||
"lingerie",
|
||||
"teasing"
|
||||
"panties_aside",
|
||||
"panties",
|
||||
"pussy",
|
||||
"adjusting_panties",
|
||||
"legs_apart",
|
||||
"censored"
|
||||
]
|
||||
}
|
||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user