45 lines
1.3 KiB
Markdown
45 lines
1.3 KiB
Markdown
# AODH Pack
|
|
|
|
Author: Aodhan Collins
|
|
|
|
## Overview
|
|
|
|
A set of custom ComfyUI nodes that aid in the creation of images of anime/video game characters.
|
|
|
|
## Character JSON Reader
|
|
|
|
Reads a character JSON file and outputs the character's attributes for diverse image generation use cases. The basic format is as follows
|
|
|
|
```json
|
|
{
|
|
"character_id": "cyber_huntress_01",
|
|
"identity": {
|
|
"base_specs": "1woman, athletic build, pale skin",
|
|
"hair": "neon pink bob cut, undercut",
|
|
"eyes": "glowing violet eyes",
|
|
"expression": "stoic, focused",
|
|
"hands": "pink nails",
|
|
"arms": "cat tattoo on arm",
|
|
"torso": "small breasts",
|
|
"pelvis": "narrow waist",
|
|
"legs": "flower tattoo on leg",
|
|
"feet": "pink toenails",
|
|
"distinguishing_marks": "cybernetic interface port on neck, facial tattoos"
|
|
},
|
|
"wardrobe": {
|
|
"inner_layer": "black mesh bodysuit",
|
|
"outer_layer": "oversized holographic bomber jacket",
|
|
"lower_body": "high-waisted tactical shorts",
|
|
"footwear": "platform combat boots",
|
|
"gloves": "fingerless leather gloves",
|
|
"accessories": "cybernetic visor, choker, utility belt"
|
|
},
|
|
"styles": {
|
|
"aesthetic": "cyberpunk, synthwave",
|
|
"primary_color": "pink",
|
|
"secondary_color": "violet",
|
|
"tertiary_color": "cyan"
|
|
}
|
|
}
|
|
```
|