commit
33d083a821
26
README.md
26
README.md
|
|
@ -1,16 +1,22 @@
|
|||
|
||||
|
||||
# sd-webui-oldsix_prompt v1.2
|
||||
### 感谢知乎大佬 “路过银河” 整理的提示词
|
||||
# sd-webui-oldsix_prompt v1.3
|
||||
### 新词库由群里小伙伴 @麻瓜 @万岁爷 @元一斤 整理
|
||||
#### 英文不好不用怕!彻底解决prompt对于国人不友好的痛点,整理了多个分类上千个提示词,无需英文快速输入提示词
|
||||
#### 词库会持续更新,觉得不错的点个start
|
||||
#### AI交流Q群875376246 各种疑难解答 帮你踩坑
|
||||
---
|
||||
### 安装方法
|
||||
* 方法1、复制地址到你的webui中 从网站安装后应用并重启
|
||||
```sh
|
||||
https://github.com/thisjam/sd-webui-oldsix-prompt.git
|
||||
```
|
||||
* 方法2、 如果webui中无法安装的可以选择手动安装,点击页面上的code->DownloadZip 解压以后放在你的sd文件夹下的extensions文件夹后应用并重启
|
||||
---
|
||||
### 使用方法
|
||||
* 左键输入正向提示框、 右键输入正向提示框
|
||||
* 支持随机抽卡
|
||||
---
|
||||
##### 展示
|
||||

|
||||
|
||||
## 安装方法
|
||||
### 方法1、 复制 https://github.com/thisjam/sd-webui-oldsix-prompt.git 到你的webui中 从网站安装后应用并重启
|
||||
### 方法2、 如果webui中无法安装的可以选择手动安装,点击页面上的code->DownloadZip 解压以后放在你的sd文件夹下的extensions文件夹后应用并重启
|
||||
|
||||
##### 展示1
|
||||

|
||||
##### 展示2
|
||||

|
||||
|
|
|
|||
Binary file not shown.
|
After Width: | Height: | Size: 376 KiB |
|
|
@ -11,16 +11,32 @@ function loadNodes() {
|
|||
|
||||
imgpromt: document.querySelector('#img2img_prompt textarea'),
|
||||
imgnpromt: document.querySelector('#img2img_neg_prompt textarea'),
|
||||
|
||||
RdtxtAreasEn:document.querySelectorAll('#randomTextEn textarea'),
|
||||
RdtxtAreasZh:document.querySelectorAll('#randomTextZh textarea'),
|
||||
btnSends:document.querySelectorAll('.oldsix-btnSend'),
|
||||
txtStart:document.querySelectorAll('.oldsix-txt-start textarea'),
|
||||
txtEnd:document.querySelectorAll('.oldsix-txt-end textarea'),
|
||||
btnReload:[],
|
||||
btnClearP:[],
|
||||
btnClearNP:[]
|
||||
btnClearNP:[],
|
||||
pClasses:[],
|
||||
|
||||
|
||||
|
||||
}
|
||||
return Elements
|
||||
}
|
||||
|
||||
let dicClass={
|
||||
0:{},
|
||||
1:{}
|
||||
}
|
||||
|
||||
const loadTime=3000
|
||||
|
||||
|
||||
|
||||
|
||||
function getEle(key) {
|
||||
return gradioApp().querySelector(key)
|
||||
}
|
||||
|
|
@ -33,13 +49,51 @@ function CreateEle(type,parentDom,css,html){
|
|||
return dom
|
||||
}
|
||||
|
||||
function addPrompt(e) {
|
||||
let dom=e.target;
|
||||
let str= e.target.dataset.sixoldtit
|
||||
|
||||
let elementprompt =e.target.dataset.pageindex==1 ? Elements.imgpromt : Elements.txtpromt
|
||||
dom.classList.toggle("active")
|
||||
toggleNavCss(dom)
|
||||
ishas=false;
|
||||
for (const item of dom.classList) {
|
||||
if(item=='active'){
|
||||
ishas=true
|
||||
}
|
||||
}
|
||||
if(!ishas){
|
||||
|
||||
if(elementprompt.value.includes(str+':')){
|
||||
const teststr=`${str},|\\(${str}:\\d+\\.\\d+\\),`
|
||||
const regex =new RegExp(teststr);
|
||||
console.log(regex.test(elementprompt.value));
|
||||
elementprompt.value= elementprompt.value.replace(regex,'');
|
||||
|
||||
}
|
||||
else{
|
||||
elementprompt.value= elementprompt.value.replace(str+',','');
|
||||
}
|
||||
return
|
||||
}
|
||||
|
||||
InserttextToTextArea(elementprompt,str)
|
||||
|
||||
}
|
||||
|
||||
|
||||
function addNPrompt(e) {
|
||||
let elementprompt = e.target.dataset.pageindex==1 ? Elements.imgnpromt : Elements.txtnpromt
|
||||
let elementprompt = e.target.dataset.pageindex==1 ? Elements.imgnpromt : Elements.txtnpromt
|
||||
elementprompt.focus();
|
||||
document.execCommand('insertText', false, e.target.dataset.sixoldtit + ',')
|
||||
|
||||
}
|
||||
|
||||
function InserttextToTextArea(inputelem,val){
|
||||
inputelem.value+=val+','
|
||||
updateInput(inputelem)
|
||||
}
|
||||
|
||||
|
||||
function getParentBycss(obj,css) {
|
||||
let parent=obj
|
||||
|
|
@ -74,36 +128,13 @@ function toggleNavCss(dom){
|
|||
}
|
||||
|
||||
|
||||
function addPrompt(e) {
|
||||
let dom=e.target;
|
||||
let str= e.target.dataset.sixoldtit + ','
|
||||
let elementprompt =e.target.dataset.pageindex==1 ? Elements.imgpromt : Elements.txtpromt
|
||||
dom.classList.toggle("active")
|
||||
toggleNavCss(dom)
|
||||
ishas=false;
|
||||
for (const item of dom.classList) {
|
||||
if(item=='active'){
|
||||
ishas=true
|
||||
}
|
||||
}
|
||||
if(!ishas){
|
||||
elementprompt.focus();
|
||||
elementprompt.value= elementprompt.value.replace(new RegExp(`(${str})`, 'g'), '');
|
||||
return
|
||||
}
|
||||
|
||||
elementprompt.focus();
|
||||
document.execCommand('insertText', false,str)
|
||||
|
||||
|
||||
}
|
||||
|
||||
|
||||
|
||||
|
||||
async function getJsonStr() {
|
||||
|
||||
await new Promise(resolve => setTimeout(resolve, 1500));
|
||||
await new Promise(resolve => setTimeout(resolve, loadTime));
|
||||
|
||||
let val1 = document.querySelector("#oldsix-area1 textarea").value
|
||||
let val2 = document.querySelector("#oldsix-area2 textarea").value
|
||||
|
|
@ -115,18 +146,60 @@ function clearTextarea(){
|
|||
document.querySelector("#oldsix-area2 textarea").value='area2'
|
||||
}
|
||||
|
||||
function createBtnTitle(name,parent){
|
||||
function createBtnTitle(name,val,parent,pageindex){
|
||||
|
||||
let div=document.createElement('div')
|
||||
let btn=document.createElement('button')
|
||||
setCss(div,'oldsix-row ')
|
||||
setCss(btn,'oldsix-btn-tit sm primary gradio-button svelte-1ipelgc')
|
||||
btn.innerHTML=name
|
||||
|
||||
div.appendChild(btn)
|
||||
parent.appendChild(div)
|
||||
for (const key in val) {
|
||||
if (typeof val[key] != 'object' )
|
||||
btn.addEventListener('click', function () {
|
||||
addDicClasses(name,val,pageindex)
|
||||
})
|
||||
return div
|
||||
}
|
||||
|
||||
return div
|
||||
}
|
||||
|
||||
|
||||
function addDicClasses(key,val,pageindex)
|
||||
{
|
||||
if(dicClass[pageindex][key]){
|
||||
return
|
||||
}
|
||||
let list=[]
|
||||
for (const key in val) {
|
||||
list.push({'key':key,'val':val[key]})
|
||||
}
|
||||
dicClass[pageindex][key]=list
|
||||
CreateClassesBtn(key,pageindex)
|
||||
}
|
||||
|
||||
function CreateClassesBtn(btnName,pageindex)
|
||||
{
|
||||
let btn=document.createElement('button')
|
||||
setCss(btn,'sm secondary gradio-button svelte-1ipelgc')
|
||||
btn.innerHTML=btnName
|
||||
Elements.pClasses[pageindex].appendChild(btn);
|
||||
btn.addEventListener('click',function(){
|
||||
btn.parentElement.removeChild(btn)
|
||||
Reflect.deleteProperty(dicClass[pageindex], btnName);
|
||||
|
||||
})
|
||||
|
||||
|
||||
}
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
function createBtnPrompt(key,val,parent,pageindex){
|
||||
let btn=document.createElement('button')
|
||||
setCss(btn,'sm secondary gradio-button svelte-1ipelgc oldsix-btn')
|
||||
|
|
@ -146,12 +219,14 @@ function createBtnPrompt(key,val,parent,pageindex){
|
|||
return btn
|
||||
}
|
||||
|
||||
|
||||
|
||||
|
||||
function traverse(obj,parent,pageindex) {
|
||||
for (var key in obj) {
|
||||
if (obj.hasOwnProperty(key)) {
|
||||
if (typeof obj[key] === 'object' && obj[key] !== null) {
|
||||
let resdom= createBtnTitle(key,parent)
|
||||
let resdom= createBtnTitle(key, obj[key],parent,pageindex)
|
||||
traverse(obj[key],resdom,pageindex);
|
||||
} else {
|
||||
createBtnPrompt(key,obj[key],parent,pageindex)
|
||||
|
|
@ -210,20 +285,19 @@ function reloadNodes(jsonstring, btnreloadDom) {
|
|||
setCss(tabs, 'oldsix-tabs gradio-tabs svelte-1g805jl')
|
||||
setCss(tabnav, 'oldsix-tab-nav scroll-hide svelte-1g805jl')
|
||||
setCss(contentContainer, 'tab-container')
|
||||
|
||||
|
||||
tabs.appendChild(tabnav)
|
||||
tabs.appendChild(contentContainer)
|
||||
btnreloadDom.parentNode.parentNode.appendChild(tabs)
|
||||
|
||||
}
|
||||
|
||||
|
||||
async function loadCustomUI(){
|
||||
let jsonstr= await getJsonStr()
|
||||
if (jsonstr) {
|
||||
|
||||
if (jsonstr) {
|
||||
reloadNodes(jsonstr, Elements.btnReload[0])
|
||||
reloadNodes(jsonstr, Elements.btnReload[1])
|
||||
|
||||
reloadNodes(jsonstr, Elements.btnReload[1])
|
||||
}
|
||||
|
||||
}
|
||||
|
|
@ -296,14 +370,43 @@ function loadClearbtn(){
|
|||
}
|
||||
|
||||
|
||||
function ranDomPropt(pageindex){
|
||||
let texten=''
|
||||
let textzh=''
|
||||
for (const key in dicClass[pageindex]) {
|
||||
let listcount=dicClass[pageindex][key].length
|
||||
let rdindex=GetRandomNum(listcount)
|
||||
let rdtarget=dicClass[pageindex][key][rdindex]
|
||||
texten+=rdtarget.val+','
|
||||
textzh+=rdtarget.key+','
|
||||
}
|
||||
Elements.RdtxtAreasZh[pageindex].value=textzh
|
||||
Elements.RdtxtAreasEn[pageindex].value=Elements.txtStart[pageindex].value+texten+Elements.txtEnd[pageindex].value
|
||||
|
||||
|
||||
}
|
||||
|
||||
|
||||
|
||||
function GetRandomNum(Max) {
|
||||
return Math.floor(Math.random() * Max);
|
||||
}
|
||||
|
||||
onUiLoaded(async => {
|
||||
move()
|
||||
|
||||
loadClearbtn()
|
||||
|
||||
|
||||
|
||||
|
||||
Elements.pClasses=document.querySelectorAll('.oldsix-classes-shop')
|
||||
Elements.btnReload= document.querySelectorAll('.oldsix-reload');
|
||||
Elements.btnRandoms= document.querySelectorAll('.btn-crandom');
|
||||
|
||||
Elements.btnRandoms.forEach((item,index) => {
|
||||
item.addEventListener('click', () => {
|
||||
ranDomPropt(index)
|
||||
})
|
||||
})
|
||||
|
||||
Elements.btnReload.forEach((item,index) => {
|
||||
item.dataset.page=index
|
||||
item.addEventListener('click', () => {
|
||||
|
|
@ -311,7 +414,20 @@ onUiLoaded(async => {
|
|||
})
|
||||
})
|
||||
|
||||
Elements.btnSends.forEach((item,index) => {
|
||||
item.addEventListener('click', () => {
|
||||
let elementprompt=index==1 ? Elements.imgpromt : Elements.txtpromt
|
||||
elementprompt.value=''
|
||||
elementprompt.focus();
|
||||
let str=Elements.RdtxtAreasEn[index].value
|
||||
document.execCommand('insertText', false,str);
|
||||
})
|
||||
})
|
||||
|
||||
|
||||
loadCustomUI()
|
||||
|
||||
|
||||
|
||||
})
|
||||
|
||||
|
|
@ -326,3 +442,6 @@ onUiLoaded(async => {
|
|||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
|
|
|||
File diff suppressed because one or more lines are too long
|
|
@ -0,0 +1 @@
|
|||
{"人设": {"公主": "princess", "舞者": "dancer", "啦啦队": "cheerleader", "芭蕾舞女演员": "ballerina", "体操队队长": "gym leader", "女服务员": "waitress", "和风女仆": "wa maid", "女仆": "maid", "偶像": "idol", "弓道": "kyuudou", "女武神": "valkyrie", "办公室小姐": "office lady", "赛车女郎": "race queen", "魔女": "Witch", "巫女": "miko", "修女": "nun", "牧师": "priest", "神职人员(基督教)": "cleric", "忍者": "ninja", "女警": "policewoman", "警察": "police", "医生": "doctor", "护士": "nurse", "眼镜娘": "glasses", "狐狸精": "kitsune", "公交车": "public use", "女王(SM中)": "dominatrix", "机娘": "mecha musume", "另一种机娘": "gynoid", "类人机器人": "humanoid robot", "半机械人": "cyborg"}, "性别/年龄": {"单人": "solo", "女人": "female", "男人": "male", "性转": "genderswap", "扶她": "futanari", "伪娘": "otoko no ko", "儿 童": "child", "未成年": "underage", "年轻": "young", "熟女": "mature female", "老年": "old"}, "胸部": {"胸": "chest", "胸肌": "pectorals", "大胸肌": "large pectorals", "小胸部(B": "small breasts", "中等胸部(C": "medium breasts", "大胸部(D": "big breasts", "巨乳(E": "huge breasts", "魔乳(F": "gigantic breasts", "拉开衣服": "unbuttoned clothes"}, "皮肤": {"有光泽的皮肤": "shiny skin", "苍白皮肤": "pale skin", "白皙皮肤": "white skin", "棕色皮肤": "brown skin", "深色皮肤": "deep skin", "偏黑皮肤": "black skin", "晒日线": "tan lines", "泳装晒痕": "pang", "如白色大理石般有光泽的肌肤": "white marble glowing skin"}, "体型": {"模特": "model", "苗条": "slender", "诱惑": "glamor", "丰满": "plump", "肥胖": "fat", "高大": "tall", "纤弱": "petite", "肌肉": "muscular", "细腰": "narrow waist", "大屁股": "wide hips"}, "眉毛": {"浓眉": "thick eyebrows", "眉毛翘起": "cocked eyebrow", "短眉毛": "short eyebrows", "V字眉": "v-shaped eyebrows"}}
|
||||
File diff suppressed because one or more lines are too long
|
|
@ -0,0 +1 @@
|
|||
{"头发颜色": {"绿头发": "green hair", "粉色头发": "pink hair", "红头发": "red hair", "铂金色头发": "platinum blonde hair", "青色头发": "azure hair", "水蓝色头发": "aqua hair", "红宝石色头发": "ruby hair", "两色头发": "two-tone hair", "多色的头发": "multicolored hair", "渐变头发": "gradient hair", "分色头发": "split-color hair", "彩虹头发": "rainbow hair"}, "长度": {"长发": "long hair", "很短的头发": "very short hair", "短发": "short hair", "后短发,前长发": "short hair with long locks", "中等头发": "medium hair", "很长的头发": "very long hair", "超级长的头发": "absurdly long hair"}, "马尾": {"马尾": "ponytail", "双马尾": "twintails", "高双马尾": "canonicals", "低双马尾": "low twintails", "披肩单马尾": "one side up", "披肩双马尾": "two side up", "短马尾": "short ponytail", "侧马尾": "side ponytail"}, "辫子": {"辫子": "braid", "法式辫子": "french braid", "辫子头发": "braiding hair", "双辫子": "twin braids", "三股辫": "braid", "短辫子": "short braid", "长辫子": "long braid", "辫子刘海": "braided bangs", "辫式发髻": "braided bun", "麻花辫马尾": "braided ponytail", "法式冠编发": "crown braid", "多股(麻花)辫": "multiple braids", "披在一侧的单条辫": "side braid", "披在两侧的两条辫": "side braids", "单股辫": "single braid", "两条辫子": "twin braids"}, "刘海": {"进气口发型": "hair intakes", "发瓣": "hair flaps", "刘海": "bangs", "空气刘海": "air bangs", "齐刘海": "blunt bangs", "侧面空气刘海": "side blunt bangs", "中分刘海": "parted bangs", "斜刘海": "swept bangs", "不对称刘海": "asymmetric bangs"}, "其他": {"眼睛之间的头发": "hair between eyes", "头发覆盖一只眼": "hair over one eye", "头发遮住眉毛": "hair over one eyebrow", "透过头发可见腮红": "blush visible through hair", "透过头发可见眼睛": "eyes visible through hair", "头发撩到耳后": "hair behind ear", "披肩发": "hair over shoulder", "头发遮住三点": "hair censor", "头发披在胸上": "hair over breasts", "直发": "straight hair", "卷发": "curly hair", "波浪卷": "wavy hair", "钻头(配双)": "drill hair", "姬发式(齐刘海后长黑发": "hime cut", "齐而短头发(波波发": "bob cut", "公主发型": "princess head", "上半部分束起": "Half-up", "额头": "forehead", "扎过的头发": "tied hair", "低扎头发": "low tied hair", "多扎头发": "multi-tied hair", "丸子头": "double bun", "圆发髻": "hair bun", "芭蕾髻": "ballet hair bun", "尖头头发": "pointy hair", "羽毛头发": "feather hair", "弓形头发": "bow-shaped hair", "孤颈头发": "lone nape hair", "变换发型": "alternate hairstyle", "与原设不同头发长度": "alternate hair length", "鬓角": "sideburns", "长鬓角": "long sideburns", "侧边发辫": "sidelocks", "秃头": "bald", "鸟窝头|爆炸头": "afro", "尖刺的头发": "spiked hair"}}
|
||||
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
|
|
@ -1,91 +0,0 @@
|
|||
{
|
||||
"正面起手": {
|
||||
"正常起手": "HDR,UHD,8K,Highly detailed,best quality,masterpiece,1girl",
|
||||
"简单起手": "best quality,masterpiece,1girl",
|
||||
"真实风格起手": "best quality,masterpiece,realistic,1girl",
|
||||
"提高质量": "HDR,UHD,8K",
|
||||
"最佳质量": "best quality",
|
||||
"写实": "realistic",
|
||||
"杰作": "masterpiece",
|
||||
"更多细节": "Highly detailed",
|
||||
"简单背景": "simple background",
|
||||
"模糊背景": "blurry background",
|
||||
"一个女孩": "1girl",
|
||||
"演播室灯光": "Studio lighting",
|
||||
"超精细绘画": "ultra-fine painting",
|
||||
"聚焦清晰": "sharp focus",
|
||||
"物理渲染": "physically-based rendering",
|
||||
"极详细刻画": "extreme detail description",
|
||||
"改善细节": "Professional",
|
||||
"添加鲜艳色彩": "Vivid Colors",
|
||||
"虚化模糊景": "Bokeh",
|
||||
"相机设置": "(EOS R8,50mm,F1.2,8K,RAW photo:1.2)",
|
||||
"老照片": "High resolution scan",
|
||||
"素描": "Sketch",
|
||||
"绘画": "Painting",
|
||||
"上半身":"upper body",
|
||||
"全身":"full body"
|
||||
},
|
||||
"负面": {
|
||||
"超级负面": "multiple breasts, (mutated hands and fingers:1.5 ), (long body :1.3), (mutation, poorly drawn :1.2) , black-white, bad anatomy, liquid body, liquid tongue, disfigured, malformed, mutated, anatomical nonsense, text font ui, error, malformed hands, long neck, blurred, lowers, lowres, bad anatomy, bad proportions, bad shadow, uncoordinated body, unnatural body, fused breasts, bad breasts, huge breasts, poorly drawn breasts, extra breasts, liquid breasts, heavy breasts, missing breasts, huge haunch, huge thighs, huge calf, bad hands, fused hand, missing hand, disappearing arms, disappearing thigh, disappearing calf, disappearing legs, fused ears, bad ears, poorly drawn ears, extra ears, liquid ears, heavy ears, missing ears, fused animal ears, bad animal ears, poorly drawn animal ears, extra animal ears, liquid animal ears, heavy animal ears, missing animal ears, text, ui, error, missing fingers, missing limb, fused fingers, one hand with more than 5 fingers, one hand with less than 5 fingers, one hand with more than 5 digit, one hand with less than 5 digit, extra digit, fewer digits, fused digit, missing digit, bad digit, liquid digit, colorful tongue, black tongue, cropped, watermark, username, blurry, JPEG artifacts, signature, 3D, 3D game, 3D game scene, 3D character, malformed feet, extra feet, bad feet, poorly drawn feet, fused feet, missing feet, extra shoes, bad shoes, fused shoes, more than two shoes, poorly drawn shoes, bad gloves, poorly drawn gloves, fused gloves, bad cum, poorly drawn cum, fused cum, bad hairs, poorly drawn hairs, fused hairs, big muscles, ugly, bad face, fused face, poorly drawn face, cloned face, big face, long face, bad eyes, fused eyes poorly drawn eyes, extra eyes, malformed limbs, more than 2 nipples, missing nipples, different nipples, fused nipples, bad nipples, poorly drawn nipples, black nipples, colorful nipples, gross proportions. short arm, (((missing arms))), missing thighs, missing calf, missing legs, mutation, duplicate, morbid, mutilated, poorly drawn hands, more than 1 left hand, more than 1 right hand, deformed, (blurry), disfigured, missing legs, extra arms, extra thighs, more than 2 thighs, extra calf, fused calf, extra legs, bad knee, extra knee, more than 2 legs, bad tails, bad mouth, fused mouth, poorly drawn mouth, bad tongue, tongue within mouth, too long tongue, black tongue, big mouth, cracked mouth, bad mouth, dirty face, dirty teeth, dirty pantie, fused pantie, poorly drawn pantie, fused cloth, poorly drawn cloth, bad pantie, yellow teeth, thick lips, bad cameltoe, colorful cameltoe, bad asshole, poorly drawn asshole, fused asshole, missing asshole, bad anus, bad pussy, bad crotch, bad crotch seam, fused anus, fused pussy, fused anus, fused crotch, poorly drawn crotch, fused seam, poorly drawn anus, poorly drawn pussy, poorly drawn crotch, poorly drawn crotch seam, bad thigh gap, missing thigh gap, fused thigh gap, liquid thigh gap, poorly drawn thigh gap, poorly drawn anus, bad collarbone, fused collarbone, missing collarbone, liquid collarbone, strong girl, obesity, worst quality, low quality, normal quality, liquid tentacles, bad tentacles, poorly drawn tentacles, split tentacles, fused tentacles, missing clit, bad clit, fused clit, colorful clit, black clit, liquid clit, QR code, bar code, censored, safety panties, safety knickers, beard, furry ,pony, pubic hair, mosaic, excrement, faeces, shit, futa, testis",
|
||||
"基础负面": "nsfw,logo,text,badhandv4,EasyNegative,ng_deepnegative_v1_75t,rev2-badprompt,verybadimagenegative_v1.3,negative_hand-neg,mutated hands and fingers,poorly drawn face,extra limb,missing limb,disconnected limbs,malformed hands,ugly",
|
||||
"NSFW": "nsfw,logo,text",
|
||||
"embeddings": "badhandv4,EasyNegative,ng_deepnegative_v1_75t,rev2-badprompt,verybadimagenegative_v1.3,negative_hand-neg,bad-picture-chill-75v",
|
||||
"变异手指": "mutated hands and fingers",
|
||||
"畸形的": "deformed",
|
||||
"解剖不良": "bad anatomy",
|
||||
"毁容": "disfigured",
|
||||
"脸不好": "poorly drawn face",
|
||||
"变异的": "mutated",
|
||||
"多余肢体": "extra limb",
|
||||
"丑陋": "ugly",
|
||||
"手画得差": "poorly drawn hands",
|
||||
"缺少的肢体": "missing limb",
|
||||
"漂浮的四肢": "floating limbs",
|
||||
"肢体不连贯": "disconnected limbs",
|
||||
"畸形的手": "malformed hands",
|
||||
"脱离焦点": "out of focus",
|
||||
"长颈": "long neck",
|
||||
"身体长": "long body"
|
||||
},
|
||||
"视角": {
|
||||
"动态角度": "dynamic angle",
|
||||
"从左侧视角": "from the left",
|
||||
"从右侧视角": "from the right",
|
||||
"从上方": "from above",
|
||||
"从下面": "from below",
|
||||
"从下往上看": "looking up",
|
||||
"从上往下看": "looking down",
|
||||
"从正上方往下看": "top down",
|
||||
"从侧面往上看": "side view up",
|
||||
"从侧面往下看": "side view down",
|
||||
"从人物的角度往上看": "subject look up",
|
||||
"从人物的角度往下看": "subject look down",
|
||||
"在地面往上看": "ground view up",
|
||||
"在地面往下看": "ground view down",
|
||||
"全景": "panoramic view",
|
||||
"广角宽景": "wide shot",
|
||||
"广角": "wide-angle view",
|
||||
"空中俯瞰视图": "aerial view",
|
||||
"在高处往下看": "bird view",
|
||||
"鸟瞰视角": "bird’s-eye view",
|
||||
"蚯蚓视角": "worm’s eye view",
|
||||
"带有角度的视角": "angled",
|
||||
"低角度视角": "low-angle view",
|
||||
"俯视视角": "top-down",
|
||||
"放大镜效果": "zoomed in",
|
||||
"缩小镜效果": "zoomed out",
|
||||
"俯视": "top-down view",
|
||||
"高角度视角": "high-angle view",
|
||||
"平视": "eye level view/level gaze/straight gaze",
|
||||
"特写": "close-up view",
|
||||
"极端特写": "extreme close-up view"
|
||||
},
|
||||
"视线": {
|
||||
"面对画面或观众": "looking at viewer",
|
||||
"两个角色对视": "looking at another",
|
||||
"看着别的方": "looking away",
|
||||
"回头看": "looking back",
|
||||
"向上看": "looking up"
|
||||
}
|
||||
}
|
||||
66
json/人物.json
66
json/人物.json
|
|
@ -1,66 +0,0 @@
|
|||
{
|
||||
"対象": {
|
||||
"1girl":"1girl",
|
||||
"1boy":"1boy",
|
||||
"1other":"1other",
|
||||
"multiple girls":"multiple girls"
|
||||
},
|
||||
"年齢": {
|
||||
"青少年(13-19)": "teen",
|
||||
"青少年早期(11-15)": "early teen",
|
||||
"大人": "adult",
|
||||
"老人": "elder",
|
||||
"子供": "child",
|
||||
"幼稚園": "kindergartener",
|
||||
"幼儿": "toddler",
|
||||
"萝莉": "loli",
|
||||
"正太": "shota"
|
||||
},
|
||||
"肤色": {
|
||||
"白": "white skin",
|
||||
"苍白": "pale skin",
|
||||
"褐色": "dark skin",
|
||||
"有光泽": "shiny skin",
|
||||
"有色皮肤": "colored skin"
|
||||
},
|
||||
"皮肤": {
|
||||
"日晒": "tan",
|
||||
"日晒痕迹": "tanlines",
|
||||
"纹身": "tattoo",
|
||||
"油性": "oil"
|
||||
},
|
||||
"体形": {
|
||||
"运动员": "athlete",
|
||||
"模特": "model",
|
||||
"苗条": "slender",
|
||||
"诱惑": "glamor",
|
||||
"丰满": "plump",
|
||||
"肥胖": "fat",
|
||||
"高大": "tall",
|
||||
"纤弱": "petite",
|
||||
"Q版": "chibi",
|
||||
"妊娠": "pregnant",
|
||||
"肌肉": "muscular",
|
||||
"细腰": "narrow waist",
|
||||
"大屁股": "wide hips"
|
||||
},
|
||||
"胸": {
|
||||
"平胸": "flat chest",
|
||||
"小胸": "small breasts",
|
||||
"普通": "medium breasts",
|
||||
"巨乳": "large breasts",
|
||||
"爆乳": "huge breasts",
|
||||
"下垂": "hanging breasts",
|
||||
"侧乳":"sideboob",
|
||||
"乳沟":"cleavage",
|
||||
"半露前胸(拉开衣效果)":"unbuttoned clothes"
|
||||
},
|
||||
"身体部位": {
|
||||
"腋窝": "armpits",
|
||||
"鎖骨": "collarbone",
|
||||
"肚脐": "navel",
|
||||
"屁股": "ass",
|
||||
"大腿": "thighs"
|
||||
}
|
||||
|
||||
}
|
||||
|
|
@ -1,82 +0,0 @@
|
|||
{
|
||||
"眉毛": {
|
||||
"浓眉": "thick eyebrows",
|
||||
"眉毛翘起": "cocked eyebrow",
|
||||
"短眉毛": "short eyebrows",
|
||||
"V字眉": "v-shaped eyebrows"
|
||||
},
|
||||
"眼睛": {
|
||||
"黒": "black eyes",
|
||||
"白": "white eyes",
|
||||
"红": "red eyes",
|
||||
"蓝": "blue eyes",
|
||||
"绿": "green eyes",
|
||||
"紫": "purple eyes",
|
||||
"银色": "silver eyes",
|
||||
"金色": "golden eyes",
|
||||
"灰色": "gray eyes",
|
||||
"水色": "aqua eyes",
|
||||
"茶色": "brown eyes",
|
||||
"粉色": "pink eyes",
|
||||
"橙色": "orange eyes",
|
||||
"异色": "heterochromia",
|
||||
"空洞眼睛": "empty eyes",
|
||||
"睁大眼睛": "wide eyes",
|
||||
"闭上一只眼": "one eye closed",
|
||||
"半闭眼睛": "half-closed eyes",
|
||||
"渐变眼": "gradient_eyes",
|
||||
"水汪汪大眼": "aqua eyes",
|
||||
"翻白眼": "rolling eyes",
|
||||
"斗鸡眼": "cross-eyed",
|
||||
"猫眼": "slit pupils",
|
||||
"布满血丝的眼睛": "bloodshot eyes",
|
||||
"发光眼睛": "glowing eyes",
|
||||
"吊眼角": "tsurime",
|
||||
"垂眼角": "tareme",
|
||||
"恶魔眼": "devil eyes",
|
||||
"收缩的瞳孔": "constricted pupils",
|
||||
"魔瞳": "devil pupils",
|
||||
"蛇瞳": "snake pupils",
|
||||
"闪闪发光瞳": "pupils sparkling",
|
||||
"花形瞳": "flower-shaped pupils",
|
||||
"爱心瞳": "heart-shaped pupils",
|
||||
"异色瞳": "heterochromia",
|
||||
"美瞳": "color contact lenses",
|
||||
"长睫毛": "longeyelashes",
|
||||
"彩色睫毛": "colored eyelashes",
|
||||
"眼下痣": "mole under eye"
|
||||
},
|
||||
"嘴巴": {
|
||||
"栗子嘴": "chestnut mouth",
|
||||
"厚嘴唇": "thick lips",
|
||||
"嘴唇浮肿": "puffy lips",
|
||||
"口红": "lipstick",
|
||||
"心形嘴": "heart-shaped mouth",
|
||||
"嘟嘴": "pout",
|
||||
"张嘴": "open mouth",
|
||||
"闭嘴": "closed mouth",
|
||||
"猫咪嘴": ":3",
|
||||
"鲨鱼嘴": "shark mouth",
|
||||
"吐舌头": ":p",
|
||||
"分开嘴唇": "parted lips",
|
||||
"嘴下痣": "mole under mouth"
|
||||
},
|
||||
"耳朵": {
|
||||
"精灵耳": "elf ears",
|
||||
"动物耳朵": "fake animal ears",
|
||||
"猫耳朵": "cat ears",
|
||||
"狗耳朵": "dog ears",
|
||||
"狐狸耳朵": "fox ears",
|
||||
"兔子耳朵": "bunny ears",
|
||||
"熊耳朵": "bear ears"
|
||||
},
|
||||
"胡子&牙": {
|
||||
"胡须": "beard",
|
||||
"小胡子": "mustache",
|
||||
"山羊胡": "goatee",
|
||||
"长鬓角": "long sideburns",
|
||||
"尖牙": "fangs",
|
||||
"虎牙": "canine teeth",
|
||||
"咬紧牙关": "clenched teeth"
|
||||
}
|
||||
}
|
||||
|
|
@ -1,98 +0,0 @@
|
|||
{
|
||||
"髪色": {
|
||||
"単色": {
|
||||
"黒髪": "black hair",
|
||||
"金髪": "blonde hair",
|
||||
"棕髪": "brown hair",
|
||||
"红髪": "red hair",
|
||||
"粉髪": "pink hair",
|
||||
"蓝髪": "blue hair",
|
||||
"水色髪": "aqua hair",
|
||||
"緑髪": "green hair",
|
||||
"紫髪": "purple hair",
|
||||
"橙髪": "orange hair",
|
||||
"銀髪": "silver hair",
|
||||
"灰髪": "gray hair",
|
||||
"白髪": "white hair"
|
||||
},
|
||||
"多色": {
|
||||
"五颜六色": "multicolored hair",
|
||||
"条纹色": "streaked hair",
|
||||
"渐变色": "gradient hair",
|
||||
"内侧彩发": "colored inner hair",
|
||||
"分色(着重发梢)": "split-color hair"
|
||||
}
|
||||
},
|
||||
"长度种类": {
|
||||
"長度": {
|
||||
"极短发": "very short hair",
|
||||
"短发": "short hair",
|
||||
"中等": "medium hair",
|
||||
"长发": "long hair",
|
||||
"超长": "very long hair",
|
||||
"超超长(超过屁股)": "absurdly long hair"
|
||||
},
|
||||
"種類": {
|
||||
"凌乱": "messy hair",
|
||||
"直发": "straight hair",
|
||||
"卷发": "wavy hair",
|
||||
"倒立": "flipped hair",
|
||||
"非対称": "asymmetrical hair"
|
||||
}
|
||||
},
|
||||
"发型": {
|
||||
"马尾": {
|
||||
"马尾": "ponytail",
|
||||
"高马尾": "high ponytail",
|
||||
"低马尾": "low ponytail",
|
||||
"前马尾": "front ponytail",
|
||||
"侧马尾": "side ponytail",
|
||||
"分股马尾": "split ponytail",
|
||||
"折叠马尾": "folded ponytail",
|
||||
"短马尾": "short ponytail"
|
||||
},
|
||||
"双马尾": {
|
||||
"双马尾": "twintails",
|
||||
"低双马尾": "low twintails",
|
||||
"短双马尾": "short twintails",
|
||||
"三尾": "tri tails",
|
||||
"四尾": "quad tails"
|
||||
},
|
||||
"辫子": {
|
||||
"辫子": "braid",
|
||||
"盘辫": "half updo",
|
||||
"一面朝上": "one side up",
|
||||
"两面朝上": "two side up",
|
||||
"多辫": "multi-tied hair",
|
||||
"头顶结": "topknot",
|
||||
"巻毛": "curly hair",
|
||||
"钻孔": "drill hair",
|
||||
"双头螺柱": "twin drills",
|
||||
"发卷儿": "ringlets",
|
||||
"蝴蝶结": "bow-shaped hair",
|
||||
"丸子頭": "hair bun",
|
||||
"带发圈": "hair rings",
|
||||
"脏辫": "dreadlocks"
|
||||
},
|
||||
"刘海": {
|
||||
"平刘海": "blunt bangs",
|
||||
"非対称": "asymmetrical bangs",
|
||||
"遮盖眼睛": "hair over eyes",
|
||||
"遮一只眼睛": "hair over one eye",
|
||||
"分缝的齐刘海": "parted bangs",
|
||||
"齐刘海": "swept bangs",
|
||||
"单竖刘海": "hair between eyes",
|
||||
"发片": "hair flaps",
|
||||
"头量": "hair intakes",
|
||||
"侧锁(侧面看起来整齐)": "side locks"
|
||||
|
||||
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
}
|
||||
188
json/人物_姿势.json
188
json/人物_姿势.json
|
|
@ -1,188 +0,0 @@
|
|||
{
|
||||
|
||||
"综合": {
|
||||
"站立": "standing",
|
||||
"弯腰": "bent over",
|
||||
"弓背": "arched back",
|
||||
"拉伸": "stretching",
|
||||
"躺着": "lying on back",
|
||||
"趴着": "on stomach",
|
||||
"侧躺": "on side",
|
||||
"坐着": "sitting",
|
||||
"w坐割座": "wariza",
|
||||
"跨坐": "straddling",
|
||||
"四肢着地": "all fours",
|
||||
"jack-o": "jack-o' challenge",
|
||||
"双腿过头": "legs over head",
|
||||
"胎儿姿势": "fetal position",
|
||||
"自拍": "selfie",
|
||||
"通过腿看": "looking through legs",
|
||||
"二郎腿": "crossed_legs",
|
||||
"跪姿": "kneel",
|
||||
"萝莉坐": "kneeling&setting on floot",
|
||||
"裸露的肩膀 ": "bare shoulders",
|
||||
"坐在地上": "sitting on the ground",
|
||||
"提裙": "Skirt lift",
|
||||
"一字马": "standing split",
|
||||
"手臂在背后 ": "arms behind back ",
|
||||
"狗趴式": "doggystyle",
|
||||
"鸭子坐(女子座)": "wariza",
|
||||
"泡温泉": "half body under water",
|
||||
"张开腿": "spread legs",
|
||||
"趴着翘臀": "top-down_bottom-up",
|
||||
"開腳": "open your legs wide",
|
||||
"漏腋": "armpits",
|
||||
"坐在地上(XWX)": "w-sitting on the ground",
|
||||
"战斗姿态": "fighting_stance",
|
||||
"坐在椅子上": "sitting on chair",
|
||||
"瑜伽": "yoga",
|
||||
"绝对空域(大腿三角)": "thigh gap",
|
||||
"骑马": "horse riding",
|
||||
"掀裙子": "skirt_lift",
|
||||
"行走": "walk",
|
||||
"鸭子坐": "wariza",
|
||||
"正骑乘": "girl on top",
|
||||
"祈祷": "pray",
|
||||
"蹲着": "squatting",
|
||||
"坐在床上": "sitting on bed",
|
||||
"翘PP": "top-down bottom-up",
|
||||
"抱膝": "huddle, clasp knees",
|
||||
"公主抱": "princess carry",
|
||||
"侧躺着": "Lie on your side,",
|
||||
"抚摸": "groping",
|
||||
"撩起衣服": "clothes_lift",
|
||||
"盘腿坐": "indian style,",
|
||||
"动态姿势": "dynamic pose",
|
||||
"敬礼": "salute"
|
||||
},
|
||||
|
||||
"姿态": {
|
||||
"侧身坐": "yokozuwari",
|
||||
"鸭子坐": "ahirusuwari",
|
||||
"盘腿": "indian style",
|
||||
"跪着": "kneeling",
|
||||
"躬躯": "arched back",
|
||||
"膝枕": "lap pillow",
|
||||
"学猫叫": "paw pose",
|
||||
"单膝跪地": "one knee",
|
||||
"蜷起身子侧躺": "fetal position",
|
||||
"仰卧": "on back",
|
||||
"俯卧": "on stomach",
|
||||
"坐着": "sitting",
|
||||
"屈膝抱腿坐": "hugging own legs",
|
||||
"立式跨骑": "upright straddle",
|
||||
"站着": "standing",
|
||||
"蹲着": "squatting",
|
||||
"绑在十字架上": "crucifixion",
|
||||
"双腿缠绕": "leg lock",
|
||||
"四肢着地": "all fours",
|
||||
"戴耳机": "hand on headphones",
|
||||
"鬼姿势": "ghost pose",
|
||||
"回头": "turning around",
|
||||
"歪头": "head tilt",
|
||||
"前倾": "leaning forward"
|
||||
},
|
||||
"手势": {
|
||||
"嘘手势": "shushing",
|
||||
"翘大拇指": "thumbs up",
|
||||
"手放脑后": "arms behind head",
|
||||
"手放身后": "arms behind back",
|
||||
"手插口袋": "hand in pocket",
|
||||
"双手插口袋": "hands in pocket",
|
||||
"十指相扣": "interlocked fingers",
|
||||
"V字手势": "victory pose",
|
||||
"手在地板上": "hand on floor",
|
||||
"手在额头上": "hand on forehead",
|
||||
"手在肚子上": "hand on own stomach",
|
||||
"手在肩膀上": "arm over shoulder",
|
||||
"手搭别人的腿": "hand on another's leg",
|
||||
"手搭别人的腰": "hand on another's waist",
|
||||
"双手合十": "own hands clasped",
|
||||
"翼展双臂": "wide open arms",
|
||||
"手放嘴边": "hand to mouth",
|
||||
"手枪手势": "finger gun",
|
||||
"猫爪手势": "cat pose"
|
||||
},
|
||||
"视线": {
|
||||
"远眺": "looking afar",
|
||||
"照镜子": "looking at mirror",
|
||||
"看手机": "looking at phone",
|
||||
"看向别处": "looking away",
|
||||
"透过刘海看": "visible through hair",
|
||||
"透过眼镜看": "looking over glasses",
|
||||
"面向观者": "look at viewer",
|
||||
"靠近观者": "close to viewer",
|
||||
"动态角度": "dynamic angle",
|
||||
"舞台角度": "dramatic angle",
|
||||
"凝视": "stare",
|
||||
"向上看": "looking up",
|
||||
"向下看": "looking down",
|
||||
"看向旁边": "looking to the side",
|
||||
"移开目光": "looking away"
|
||||
},
|
||||
"整体": {
|
||||
"嗅闻": "smelling",
|
||||
"公主抱": "princess carry",
|
||||
"拥抱": "hug",
|
||||
"背对背": "back-to-back",
|
||||
"耶": "peace symbol",
|
||||
"调整过膝袜": "adjusting_thighhigh",
|
||||
"抓住": "grabbing",
|
||||
"战斗姿态": "fighting_stance",
|
||||
"走": "walking",
|
||||
"跑": "running",
|
||||
"跨坐": "straddling",
|
||||
"跳": "jump",
|
||||
"飞": "fly",
|
||||
"靠墙": "against wall",
|
||||
"躺": "lie",
|
||||
"从背后抱": "hug from behind",
|
||||
"遛狗": "walk a dog",
|
||||
"提裙": "skirt lift",
|
||||
"泡温泉": "half body under water",
|
||||
"骑马": "horse riding",
|
||||
"自拍": "selfie",
|
||||
"一字马": "standing split",
|
||||
"敬礼": "salute",
|
||||
"祈祷": "pray",
|
||||
"冥想": "doing a meditation"
|
||||
},
|
||||
"上半身": {
|
||||
"伸懒腰": "stretch",
|
||||
"托腮": "gill support",
|
||||
"牵手": "holding hands",
|
||||
"单手叉腰": "hand_on_hip",
|
||||
"双手叉腰": "hands_on_hips",
|
||||
"招手": "waving",
|
||||
"撮头发": "hair scrunchie",
|
||||
"拉头发": "hair_pull",
|
||||
"抓别人的头发": "grabbing another's hair",
|
||||
"竖中指": "middle_finger",
|
||||
"弯腰": "bent over",
|
||||
"亲吻脸颊": "kissing cheek",
|
||||
"亲吻额头": "kissing forehead",
|
||||
"踮起脚尖吻": "tiptoe kiss",
|
||||
"头顶水果": "fruit on head",
|
||||
"咬手套": "glove biting",
|
||||
"脸贴脸": "cheek-to-cheek",
|
||||
"手牵手": "hand on another's hand",
|
||||
"双手交叉": "crossed arms",
|
||||
"双手张开伸直": "spread arms",
|
||||
"挥动手臂": "waving arms",
|
||||
"伸出手臂": "outstretched arm",
|
||||
"用手臂支撑": "carrying",
|
||||
"搂着手臂": "arm hug",
|
||||
"拿着": "holding",
|
||||
"拿着餐刀": "holding knife",
|
||||
"拿着枪": "holding gun",
|
||||
"拿着杯子": "holding cup",
|
||||
"拿着食物": "holding food",
|
||||
"拿着书": "holding book",
|
||||
"拿着魔杖": "holding wand",
|
||||
"打着伞": "holding umbrella",
|
||||
"捧着花": "holding flower",
|
||||
"拿着麦克风": "holding microphone",
|
||||
"抱着物品": "object hug",
|
||||
"抱着心": "holding heart"
|
||||
}
|
||||
}
|
||||
|
|
@ -1,49 +0,0 @@
|
|||
{
|
||||
"尾巴": {
|
||||
"宝可梦尾巴": "pokemon tail",
|
||||
"皮卡丘尾巴": "pikachu tail",
|
||||
"水獭尾巴": "otter tail",
|
||||
"蝎尾": "scorpion tail",
|
||||
"鹿尾": "deer tail",
|
||||
"黄鼠狼尾巴": "weasel tail",
|
||||
"羊驼尾巴": "alpaca tail",
|
||||
"恐龙尾巴": "dinosaur tail",
|
||||
"企鹅尾巴": "penguin tail",
|
||||
"羊尾巴": "sheep tail",
|
||||
"山羊尾巴": "goat tail",
|
||||
"海狸尾巴": "beaver tail",
|
||||
"小熊猫尾巴": "red panda tail",
|
||||
"豺尾巴": "jackal tail",
|
||||
"食蚁兽尾巴": "anteater tail",
|
||||
"土狼尾巴": "aardwolf tail",
|
||||
"猎豹尾巴": "panther tail",
|
||||
"熊猫尾巴": "panda tail",
|
||||
"天使尾巴": "Angel wings"
|
||||
},
|
||||
"翅膀": {
|
||||
"蝴蝶翅膀": "Butterfly wings",
|
||||
"昆虫翅膀": "insect wings",
|
||||
"蝙蝠翅膀": "Bat wings",
|
||||
"鸟翼": "bird wings",
|
||||
"羽翼": "feathered wings",
|
||||
"妖精翅膀": "Fairy wings",
|
||||
"龙之翼": "Dragon wings",
|
||||
"恶魔之翼": "Demon wings",
|
||||
"火焰翅膀": "Fiery wings",
|
||||
"机械翅膀": "Mechanical wings",
|
||||
"冰翅": "ice crystal texture",
|
||||
"冰火之翼": "((burning feathers)),(feathers_made_of_ice),(frozen feathers),(((ice and fire together)))"
|
||||
},
|
||||
"角": {
|
||||
"羚羊角": "antelope horns",
|
||||
"山羊角": "goat horns",
|
||||
"羊角": "sheep horns",
|
||||
"奶牛角": "cow horns",
|
||||
"公牛角": "ox horns",
|
||||
"鬼角": "oni horns",
|
||||
"断角": "broken horn",
|
||||
"机械角": "mechanical horns",
|
||||
"恶魔之角": "demon horns",
|
||||
"龙之角": "dragon horns"
|
||||
}
|
||||
}
|
||||
292
json/人物_服装.json
292
json/人物_服装.json
|
|
@ -1,292 +0,0 @@
|
|||
{
|
||||
"综合1": {
|
||||
"比基尼": "bikini",
|
||||
"系绳比基尼": "string bikini",
|
||||
"解开比基尼": "untied bikini",
|
||||
"前系带比基尼上着": "front-tie bikini top",
|
||||
"侧系带比基尼下着": "side-tie bikini bottom",
|
||||
"微小比基尼": "micro bikini",
|
||||
"泳装": "swimsuit",
|
||||
"连体泳衣": "one-piece swimsuit",
|
||||
"学校泳衣": "school swimsuit",
|
||||
"竞赛泳衣": "competition swimsuit",
|
||||
"运动服": "sportswear",
|
||||
"排球服": "volleyball uniform",
|
||||
"旗袍": "china dress",
|
||||
"水手服": "serafuku",
|
||||
"校服": "school uniform",
|
||||
"布鲁玛": "buruma",
|
||||
"高领衬衫": "collared shirt",
|
||||
"紧身衣": "leotard",
|
||||
"无肩带紧身衣": "strapless leotard",
|
||||
"高叉紧身衣": "highleg leotard",
|
||||
"丁字紧身衣": "thong leotard",
|
||||
"衣服下紧身衣": "leotard under clothes",
|
||||
"紧身衣服": "taut clothes",
|
||||
"紧身衬衫": "taut shirt",
|
||||
"薄纱连衣裙": "sheer tulle dress",
|
||||
"雪纺连衣裙": "chiffon dress",
|
||||
"紧身衣裤": "bodysuit",
|
||||
"背心": "tank top",
|
||||
"连身裙": "dress",
|
||||
"露背连身裙": "backless dress",
|
||||
"绕颈连身裙": "halter dress ",
|
||||
"毛衣连身裙": "sweater dress",
|
||||
"露背装": "backless outfit",
|
||||
"睡袍": "nightgown",
|
||||
"毛衣": "sweater",
|
||||
"高领毛衣": "turtleneck sweater",
|
||||
"罗纹毛衣": "ribbed sweater",
|
||||
"露肩毛衣": "off-shoulder sweater",
|
||||
"开胸毛衣": "open-chest sweater",
|
||||
"肩膀切口": "shoulder cutout",
|
||||
"臀部切口": "hip vent",
|
||||
"心型切口": "heart cutout",
|
||||
"后背切口": "back cutout",
|
||||
"下胸切口": "underboob cutout",
|
||||
"束腹": "corset",
|
||||
"小可爱露腹短上衣": "crop top",
|
||||
"赛车服(By KimZuo)": "racing suit",
|
||||
"护士服(By Yao_men)": "nurse",
|
||||
"乳胶紧身衣(By Yao_men)": "latex",
|
||||
"白大褂(By Yao_men)": "lab_coat",
|
||||
"便利店工作服(By 糯米)": "convenience store uniforms",
|
||||
"夏日长裙": "summer long skirt",
|
||||
"西装": "business suit",
|
||||
"浴衣": "yukata",
|
||||
"圣诞装": "santa",
|
||||
"哥特洛丽塔风格": "gothic_lolita",
|
||||
"马猴烧酒风格": "mahou shoujo"
|
||||
},
|
||||
"综合2": {
|
||||
"女仆装": "Maid dress",
|
||||
"西服(black黑)-by bilibili-跑酷": "black suit",
|
||||
"啦啦隊": "cheerleading",
|
||||
"迷你比基尼": "micro bikini",
|
||||
"頸帶": "neck ribbon",
|
||||
"无胸罩": "no_bra",
|
||||
"黑丝连体衣": "conjoined black silk",
|
||||
"兜帽斗篷": "Cape hood",
|
||||
"修女服": "nun gown",
|
||||
"军装": "military uniform",
|
||||
"汉服": "hanfu",
|
||||
"破损的衣物": "torn clothes",
|
||||
"婚纱": "wedding_dress",
|
||||
"黑色礼服": "black skirt dress, flower pattern in dress,black gown",
|
||||
"披风": "cloak",
|
||||
"白色风衣": "white_windbreaker",
|
||||
"风衣": "wind coat",
|
||||
"奶牛比基尼": "cow_bikini",
|
||||
"露背毛衣": "Open-backed sweater",
|
||||
"曬痕": "tan line",
|
||||
"透明衣服": "see-through",
|
||||
"运动制服": "gym_uniform",
|
||||
"晚礼服": "evening dress",
|
||||
"礼服": "full dress",
|
||||
"战斗服": "combat suit",
|
||||
"小披风": "poncho",
|
||||
"休闲服(素上衣、牛仔裤)": "casual wear",
|
||||
"实验袍": "lab coat",
|
||||
"学校制服": "school_uniform",
|
||||
"甜美可爱的洛丽塔": "sweet_lolita",
|
||||
"网纹衣": "fishnet top",
|
||||
"魔女风格服": "Witch dress",
|
||||
"巫女服": "Miko clothing",
|
||||
"无裆内裤": "crotchless panties",
|
||||
"大衣": "overcoat",
|
||||
"湿润的衣服": "wet clothes",
|
||||
"长袍": "robe",
|
||||
"战壕风衣": "trench_coat",
|
||||
"抹胸": "strapless tank top, navel cutout",
|
||||
"派克大衣": "parka",
|
||||
"洛丽塔风格": "lolita_fashion",
|
||||
"无内衣": "no underwear",
|
||||
"水手裙": "sailor dress",
|
||||
"紧身连体衣": "zentai",
|
||||
"皮衣": "leather jacket",
|
||||
"防弹衣": "bulletproof_vest,",
|
||||
"蛛网纹路": "spider web print",
|
||||
"sweet_lolita,": "sweet_lolita",
|
||||
"A": "Maid dress",
|
||||
"史莱姆装": "slime dress",
|
||||
"撕裂的衣服": "torn clothes",
|
||||
"无": "less clothes\n"
|
||||
},
|
||||
"综合3": {
|
||||
"乳胶衣": "latex",
|
||||
"中式死库水(辉木)": "Chinese style,One-piece swimsuit,Clothes with gold patterns",
|
||||
"雨衣": "Raincoat",
|
||||
"不知火舞": "Mai Shiranui",
|
||||
"睡衣": "pajamas",
|
||||
"街头风格服饰": "street wear",
|
||||
"透明晚礼服 by czz": "[see-through:evening dress:0.3]",
|
||||
"修女": "loli,one girl,domineering lady, nun",
|
||||
"短款和服": "kimono",
|
||||
"浴袍": "bathrobe",
|
||||
"铠甲": "armor",
|
||||
"外套": "coat",
|
||||
"连帽衫(带帽卫衣)": "hoodie",
|
||||
"圆领卫衣": "sweatshirt",
|
||||
"蓝白条纹比基尼": "blue and white striped bikini",
|
||||
"神父/修生黑袍": "Cassock",
|
||||
"动力甲": "power armor",
|
||||
"长袖运动服(直译为立领长风衣)": "Standing collar long windbreaker",
|
||||
"旗袍(效果好)": "cheongsam",
|
||||
"浸湿(如果有内衣会透的更明显)": "soaked",
|
||||
"工装": " dungarees",
|
||||
"透过衣服能看到胸罩": "bra visible through clothes",
|
||||
"蕾丝边胸罩": "lace-trimmed bra",
|
||||
"一些风格服饰": "indian clothes,chinese clothes,Cleopatra,",
|
||||
"肚皮舞者": "Belly Dancer",
|
||||
"中国的衣服裙子": "chinese clothes,china dress,",
|
||||
"连体白丝": "conjoined white silk",
|
||||
"透明水手服": "see-through serafuku",
|
||||
"高叉泳衣": "highleg swimsuit",
|
||||
"礼服长裙": "revealing dress",
|
||||
"病号服": "hospital gown",
|
||||
"白色衣服": "White clothes",
|
||||
"希腊服饰": "Greek clothes",
|
||||
"紧身连衣裤": "leotards",
|
||||
"V领针织毛衣(无袖背心)": "V-NECK SWEATER VEST",
|
||||
"南瓜裙": "Pumpkin skirt",
|
||||
"万圣节服装": "halloween_costume",
|
||||
"软壳外套": "soft shell coat",
|
||||
"内衣": "underwear",
|
||||
"外骨骼": "exoskeleton",
|
||||
"罩衫": "frock",
|
||||
"道袍": "Taoist robe",
|
||||
"军大衣": "Army overcoat",
|
||||
"荷叶边衬衫": "frillded shirt",
|
||||
"黑色连衣裙+白色打底T恤搭配(请勿去掉tag括号)": "(((black sundress with round neck,white T-shirt bottom)))",
|
||||
"外骨骼机甲": "Exoskeleton Mecha",
|
||||
"拼接款": "mosaic",
|
||||
"战袍": "Battle Robe",
|
||||
"性感内衣": "sexy lingerie",
|
||||
"机械服装": "mechanical clothes",
|
||||
"机械战甲": "[Battle Robe:Exoskeleton Mecha:0.3]"
|
||||
|
||||
},
|
||||
"裙子": {
|
||||
"裙子": "skirt",
|
||||
"百褶裙": "pleated skirt",
|
||||
"格子裙 ": "plaid skirt",
|
||||
"超短裙": "miniskirt",
|
||||
"包臀裙": "sheath dress",
|
||||
"连衣裙": "one-piece dress",
|
||||
"花卉图案连衣裙(白)": "white skirt dress, flower pattern in dress,white gow",
|
||||
"花卉图案连衣裙(黑)": "black skirt dress, flower pattern in dress,black gow",
|
||||
"多層裙子": "layered skirt",
|
||||
"分层式半身裙(贵族气质)(by残阳)": "layered skirt",
|
||||
"夏日连衣裙": "summer dress",
|
||||
"腰围裙": "waist apron",
|
||||
"蓬蓬裙": "pettiskirt",
|
||||
"芭蕾舞裙": "tutu",
|
||||
"格子裙": "plaid skirt",
|
||||
"围裙": "apron",
|
||||
"铅笔裙": "pencil skirt",
|
||||
"迷你裙": "miniskirt",
|
||||
"透明硬纱/蕾丝花边": "Organza lace",
|
||||
"哥特式洛丽塔": "lolita gothic",
|
||||
"现代洛丽塔": "lolita fasion",
|
||||
"紧身连衣裙": "Dirndl",
|
||||
"铠装连衣裙": "armored dress",
|
||||
"盔甲裙": "armored dress",
|
||||
"长裙": "Long skirt",
|
||||
"雨裙": "Rainskirt",
|
||||
"中式旗袍死库水": "chinese clothes+leotard",
|
||||
"带褶连衣裙": "pleated dress",
|
||||
"无肩带礼服": "strapless dress",
|
||||
"露肩连衣裙": "off-shoulder dress",
|
||||
"婚纱": "wedding dress",
|
||||
"汉服": "Han Chinese Clothing",
|
||||
"微型短裙": "microskirt",
|
||||
"黑百褶裙": "black pleated skirt",
|
||||
"吊带裙": "suspender skirt"
|
||||
},
|
||||
"上装": {
|
||||
"过手袖": "sleeves_past_fingers",
|
||||
"背心": "tank top",
|
||||
"白衬衫": "white shirt",
|
||||
"水手衬衫": "sailor shirt",
|
||||
"T恤": "T-shirt",
|
||||
"毛衣": "sweater",
|
||||
"夏日长裙": "summer dress",
|
||||
"连帽衫": "hoodie",
|
||||
"毛领": "fur trimmed colla",
|
||||
"兜帽斗篷": "hooded cloak",
|
||||
"夹克": "jacket",
|
||||
"皮夹克": "leather jacket",
|
||||
"探险家夹克": "safari jacket",
|
||||
"兜帽": "hood",
|
||||
"牛仔夹克": "denim jacket",
|
||||
"高领夹克": "turtleneck jacket",
|
||||
"消防员夹克": "firefighter jacket",
|
||||
"透明夹克": "see-through jacket",
|
||||
"战壕大衣": "trench coat",
|
||||
"实验室外套": "lab coat",
|
||||
"羽绒服": "Down Jackets",
|
||||
"防弹盔甲": "body armor",
|
||||
"防弹衣": "flak jacket",
|
||||
"大衣": "overcoat",
|
||||
"粗呢大衣": "duffel coat"
|
||||
},
|
||||
"服装": {
|
||||
"透视装": "transparent clothes",
|
||||
"燕尾服": "tailcoat",
|
||||
"女仆装": "Victoria black maid dress",
|
||||
"水手服": "sailor suit",
|
||||
"学生服": "school uniform",
|
||||
"职场制服": "bussiness suit",
|
||||
"西装": "suit",
|
||||
"军装": "military uniform",
|
||||
"礼服": "lucency full dress",
|
||||
"汉服": "hanfu",
|
||||
"旗袍": "cheongsam",
|
||||
"和服": "japanses clothes",
|
||||
"运动服": "sportswear",
|
||||
"工装服": "dungarees",
|
||||
"婚纱": "wedding dress",
|
||||
"银色连衣裙": "silvercleavage dress",
|
||||
"长袍": "robe",
|
||||
"围裙": "apron",
|
||||
"快餐制服": "fast food uniform",
|
||||
"JK制服": "JK",
|
||||
"健身服": "gym_uniform",
|
||||
"巫女服": "miko attire",
|
||||
"海军陆战队服": "SWAT uniform",
|
||||
"无袖连衣裙": "sleeveless dress",
|
||||
"雨衣": "raincoat",
|
||||
"机甲衣": "mech suit",
|
||||
"巫师法袍": "wizard robe",
|
||||
"刺客装束": "assassin-style"
|
||||
},
|
||||
"下装": {
|
||||
"牛仔短裤": "denim shorts",
|
||||
"百褶裙": "pleated skirt",
|
||||
"热裤": "short shorts",
|
||||
"铅笔裙": "pencil skirt",
|
||||
"皮裙": "leather skirt",
|
||||
"黑色紧身裤": "black leggings",
|
||||
"和服下的裙子": "skirt under kimono"
|
||||
},
|
||||
"其他服装": {
|
||||
"褶边": "frills",
|
||||
"花边": "lace",
|
||||
"哥特风格": "gothic",
|
||||
"洛丽塔风格": "lolita fashion",
|
||||
"西部风格": "western",
|
||||
"湿身": "wet clothes",
|
||||
"露单肩": "off_shoulder",
|
||||
"露双肩": "bare_shoulders",
|
||||
"格子花纹": "tartan",
|
||||
"横条花纹": "striped",
|
||||
"披甲": "armored skirt",
|
||||
"盔甲": "armor",
|
||||
"金属盔甲": "metal armor",
|
||||
"狂战士铠甲": "berserker armor",
|
||||
"腰带": "belt",
|
||||
"围巾": "scarf",
|
||||
"披肩": "cape",
|
||||
"皮草披肩": "fur shawl"
|
||||
}
|
||||
}
|
||||
|
|
@ -1,40 +0,0 @@
|
|||
{
|
||||
"表情": {
|
||||
"笑": "smile",
|
||||
"微笑": "light smile",
|
||||
"惨笑": "sad smile",
|
||||
"邪恶笑": "evil smile",
|
||||
"天使笑": "angelic smile",
|
||||
"强笑": "forced smile",
|
||||
"诱人笑": "seductive smile",
|
||||
"咧嘴笑": "grin",
|
||||
"邪恶咧嘴笑": "evil grin",
|
||||
"傻笑": "smirk",
|
||||
"怒": "angry",
|
||||
"悲伤": "sad",
|
||||
"哭": "crying",
|
||||
"泪": "tears",
|
||||
"恐怖": "scared",
|
||||
"不好的": "serious",
|
||||
"恼怒": "annoyed",
|
||||
"黑暗人格": "dark persona",
|
||||
"多亚脸": "doyagao",
|
||||
"脸红": "blush",
|
||||
"脸通红": "full-face blush",
|
||||
"无聊": "bored",
|
||||
"罪恶感": "guilt",
|
||||
"无感情": "expressionless",
|
||||
"决心": "determined",
|
||||
"接吻": "incoming kiss",
|
||||
"失望": "disappointed",
|
||||
"轻蔑": "disdain",
|
||||
"嫉妒": "envy",
|
||||
"厌恶": "disgust",
|
||||
"困惑": "confused",
|
||||
"烦恼挑眉": "troubled eyebrows",
|
||||
"V型眉": "v-shaped eyebrows",
|
||||
"羞耻": "embarrassed",
|
||||
"顽皮": "naughty",
|
||||
"困乏": "sleepy"
|
||||
}
|
||||
}
|
||||
|
|
@ -1,76 +0,0 @@
|
|||
{
|
||||
"发饰": {
|
||||
"发带": "hair ribbon",
|
||||
"头巾": "head scarf",
|
||||
"动物头巾": "animal hood",
|
||||
"蝴蝶结发饰": "hair bow",
|
||||
"新月发饰": "crescent hair ornament",
|
||||
"洛丽塔发饰": "lolita hairband",
|
||||
"羽毛发饰": "feather hair ornament",
|
||||
"头花": "hair flower",
|
||||
"发髻": "hair bun",
|
||||
"发夹": "hairclip",
|
||||
"发箍": "hair scrunchie",
|
||||
"发圈": "hair rings",
|
||||
"发饰": "hair ornament",
|
||||
"发棒": "hair stick",
|
||||
"心形发饰": "heart hair ornament"
|
||||
},
|
||||
"首饰": {
|
||||
"手链": "bracelet",
|
||||
"项圈": "choker",
|
||||
"金属项圈": "metal collar",
|
||||
"戒指": "ring",
|
||||
"腕带": "wristband",
|
||||
"吊坠": "pendant",
|
||||
"胸针": "brooch",
|
||||
"圈形耳环": "hoop earrings",
|
||||
"手镯": "bangle",
|
||||
"耳钉": "stud earrings",
|
||||
"旭日形首饰": "sunburst",
|
||||
"珍珠手链": "pearl bracelet",
|
||||
"耳坠": "drop earrings",
|
||||
"木偶戒指": "puppet rings",
|
||||
"胸花": "corsage",
|
||||
"蓝宝石胸针": "sapphire brooch",
|
||||
"珠宝首饰": "jewelry",
|
||||
"项链": "necklace"
|
||||
},
|
||||
"装饰": {
|
||||
"丝带": "ribbon",
|
||||
"丝带饰边": "ribbon trim",
|
||||
"蕾丝饰边": "lace trim",
|
||||
"裙撑": "skirt lift",
|
||||
"护手": "gauntlets",
|
||||
"领巾": "neckerchief",
|
||||
"红领巾": "red neckerchief",
|
||||
"肩章": "pauldrons",
|
||||
"臂带": "arm strap",
|
||||
"臂镯": "armlet",
|
||||
"细肩带": "spaghetti strap",
|
||||
"般若面具": "Prajna in mask",
|
||||
"面纱": "veil",
|
||||
"新娘面纱": "bridal veil",
|
||||
"皇冠": "tiara",
|
||||
"迷你皇冠": "mini crown",
|
||||
"耳罩": "ear covers",
|
||||
"飞行员太阳镜": "aviator sunglasses",
|
||||
"无边框眼镜": "semi-rimless eyewear",
|
||||
"半无框眼镜": "semi-rimless eyewear",
|
||||
"太阳镜": "sunglasses",
|
||||
"风镜": "goggles",
|
||||
"独眼眼罩": "eyepatch",
|
||||
"黑色眼罩": "black blindfold",
|
||||
"铁棘": "metal thorns",
|
||||
"光环": "halo",
|
||||
"口罩": "mouth mask",
|
||||
"创口贴": "bandaid hair ornament",
|
||||
"指甲油": "nail polish",
|
||||
"玩偶关节": "doll joints",
|
||||
"机械义肢": "cybernetic prosthesis",
|
||||
"机械腿": "mechanical legs",
|
||||
"沙滩巾": "beach towel",
|
||||
"雨披": "poncho",
|
||||
"浓妆": "make up"
|
||||
}
|
||||
}
|
||||
|
|
@ -1,81 +0,0 @@
|
|||
{
|
||||
"职业": {
|
||||
"救生员": "lifeguard",
|
||||
"拳击手": "boxer",
|
||||
"科学家": "scientist",
|
||||
"运动员": "athletes",
|
||||
"职场女性": "office lady",
|
||||
"和尚": "monk",
|
||||
"杂技演员": "crobat",
|
||||
"修女": "nun",
|
||||
"护士": "nurse",
|
||||
"空姐": "stewardess",
|
||||
"学生": "student",
|
||||
"女服务员": "waitress",
|
||||
"老师": "teacher",
|
||||
"赛车手": "racer",
|
||||
"警察": "police",
|
||||
"士兵": "soldier",
|
||||
"啦啦队": "cheerleader",
|
||||
"男演员": "actor",
|
||||
"女演员": "actress",
|
||||
"间谍": "spy",
|
||||
"特工": "agent",
|
||||
"刺客": "assassin",
|
||||
"诗人": "poet",
|
||||
"日本武士": "samurai",
|
||||
"舞女": "dancing girl",
|
||||
"摩托车手": "motorcyclist",
|
||||
"黑客": "hacker",
|
||||
"魔术师": "magician",
|
||||
"侦探": "detective",
|
||||
"人偶": "doll",
|
||||
"女仆": "maid",
|
||||
"飞行员": "pilot",
|
||||
"潜水员": "diver",
|
||||
"酒吧审查员": "bar censor",
|
||||
"传教士": "missionary",
|
||||
"消防员": "firefighter",
|
||||
"守门员": "goalkeeper",
|
||||
"厨师": "chef",
|
||||
"宇航员": "astronaut",
|
||||
"收银员": "cashier",
|
||||
"邮递员": "mailman",
|
||||
"咖啡师": "barista",
|
||||
"隐士": "the hermit",
|
||||
"牧羊人": "makihitsuji"
|
||||
},
|
||||
"动漫": {
|
||||
"宝可梦": "pokemon",
|
||||
"泰迪熊": "teddy bear",
|
||||
"马里奥": "mario",
|
||||
"皮卡丘": "pikachu",
|
||||
"新世纪福音战士": "neon genesis evangelion",
|
||||
"初音未来": "hatsune miku",
|
||||
"哈利波特": "harry potter",
|
||||
"哆啦A梦": "doraemon",
|
||||
"圣斗士星矢": "saint seiya",
|
||||
"五条悟": "gojou satoru",
|
||||
"复仇者联盟": "avengers",
|
||||
"神奇女侠": "mazinger",
|
||||
"美国队长": "captain america",
|
||||
"蜡笔小新": "crayon shin-chan",
|
||||
"灌篮高手": "slam dunk",
|
||||
"孙悟空": "sun wukong",
|
||||
"女巫": "witch",
|
||||
"忍者": "ninja",
|
||||
"吸血鬼": "vampire",
|
||||
"骑士": "knight",
|
||||
"魔法少女": "magical_girl",
|
||||
"半兽人": "orc",
|
||||
"德鲁伊": "druid",
|
||||
"妖精": "elf",
|
||||
"小精灵": "fairy",
|
||||
"兽人": "furry",
|
||||
"美人鱼": "mermaid",
|
||||
"假面骑士": "kamen rider",
|
||||
"魔导师": "magister",
|
||||
"蜘蛛侠": "spider-man",
|
||||
"圣诞老人": "santa alter"
|
||||
}
|
||||
}
|
||||
|
|
@ -1,87 +0,0 @@
|
|||
{
|
||||
"帽饰": {
|
||||
"棒球帽": "Baseball cap",
|
||||
"针织帽": "Beanie",
|
||||
"拿破仑帽": "Bicorne",
|
||||
"太阳帽": "Boater hat",
|
||||
"遮阳帽": "Visor cap",
|
||||
"圆顶礼帽": "Bowler hat",
|
||||
"报童帽": "Cabbie hat",
|
||||
"渔夫帽": "Bucket hat",
|
||||
"侦探帽": "Fedora",
|
||||
"牛仔帽": "Cowboy hat",
|
||||
"厨师帽": "Chef hat",
|
||||
"军官帽": "Military hat",
|
||||
"圣诞帽": "Santa hat",
|
||||
"派对帽": "Party hat",
|
||||
"小丑帽": "Jester cap",
|
||||
"安全帽": "Hardhat",
|
||||
"棒球头盔": "Baseball helmet",
|
||||
"橄榄球头盔": "Football helmet",
|
||||
"动物头盔": "animal helmet",
|
||||
"女巫帽": "witch hat",
|
||||
"贝雷帽": "beret",
|
||||
"鸭舌帽": "peaked cap",
|
||||
"草帽": "Straw hat"
|
||||
},
|
||||
"鞋类": {
|
||||
"裸足": "bare_legs",
|
||||
"靴子": "boots",
|
||||
"马丁靴": "knee boots",
|
||||
"脚踝靴": "ankle boots",
|
||||
"系带靴": "cross-laced_footwear",
|
||||
"战斗靴": "combat boots",
|
||||
"装甲靴": "armored boots",
|
||||
"过膝靴": "knee boots",
|
||||
"防水橡胶靴": "rubber boots",
|
||||
"皮靴": "leather boots",
|
||||
"雪地靴": "snow boots",
|
||||
"圣诞靴": "santa boots",
|
||||
"鞋子": "shoes",
|
||||
"厚底鞋": "platform footwear",
|
||||
"尖头鞋": "pointy footwear",
|
||||
"芭蕾舞鞋": "ballet slippers",
|
||||
"运动鞋": "sneakers",
|
||||
"旱冰鞋": "roller skates",
|
||||
"溜冰鞋": "ice skates",
|
||||
"钉鞋": "spiked shoes",
|
||||
"高跟鞋": "high heels",
|
||||
"玛丽珍鞋": "mary janes",
|
||||
"乐福鞋": "loafers",
|
||||
"女式学生鞋": "uwabaki",
|
||||
"凉鞋": "sandals",
|
||||
"木屐": "geta",
|
||||
"拖鞋": "slippers",
|
||||
"人字拖": "flip-flops"
|
||||
},
|
||||
"袜类": {
|
||||
"不穿袜子": "no socks",
|
||||
"短袜": "socks",
|
||||
"日式厚底短袜": "tabi",
|
||||
"丝袜": "stockings",
|
||||
"圣诞袜": "christmas stocking",
|
||||
"暖腿袜": "leg warmers",
|
||||
"荷叶边袜子": "frilled socks",
|
||||
"丝带边袜子": "ribbon-trimmed legwear",
|
||||
"闪亮袜子": "shiny legwear",
|
||||
"褶边长筒袜": "frilled thighhighs",
|
||||
"过膝袜": "thighhighs",
|
||||
"渔网袜": "fishnet stockings",
|
||||
"堆堆袜": "loose socks",
|
||||
"裤袜": "leggings",
|
||||
"蕾丝裤袜": "lace legwear",
|
||||
"罗纹裤袜": "ribbed legwear",
|
||||
"湿连裤袜": "wet pantyhose",
|
||||
"格子裤袜": "plaid legwear",
|
||||
"透视裤袜": "see-through legwear",
|
||||
"连裤袜": "pantyhose",
|
||||
"撕裂的连裤袜": "torn pantyhose",
|
||||
"单腿连裤袜": "single leg pantyhose",
|
||||
"荷叶边连裤袜": "frilled pantyhose",
|
||||
"柳丁吊袜带": "studded garter belt",
|
||||
"吊袜带": "sock dangle",
|
||||
"大腿系带": "thigh strap",
|
||||
"腿部花边环": "leg_garter",
|
||||
"包扎腿": "bandaged leg"
|
||||
}
|
||||
}
|
||||
|
|
@ -0,0 +1 @@
|
|||
{"翅膀": {"翅膀": "wings", "蝙蝠翅膀": "bat wings", "天使翅膀": "feathered wings", "恶魔翅膀": "demon wings", "蝴蝶翅膀": "butterfly wings", "冰纹理翅膀": "ice crystal texture wings", "龙翅膀": "dragon wings", "妖精翅膀": "fairy wings", "假翅膀": "fake wings", "头上翅膀": "head wings", "低位翅膀": "low wings", "迷你翅膀": "mini wings", "分离的翅膀": "detached wings"}, "尾巴": {"尾巴": "tail", "兔尾 ": "bunny tail", "猫尾 ": "cat tail", "狗尾 ": "dog tail", "鼠尾 ": "mouse tail", "狐狸尾 ": "fox tail", "老虎尾 ": "tiger tail", "松鼠尾 ": "squirrel tail", "狼尾 ": "wolf tail", "龙尾 ": "dragon tail", "马尾巴 ": "horse tail", "浣熊尾 ": "raccoon tail", "牛尾 ": "cow tail", "恶魔尾巴": "demon tail"}, "耳朵": {"兽耳 ": "animal ears", "蝙蝠耳": "bat ears", "猫耳 ": "cat ears", "狗耳 ": "dog ears", "狐耳 ": "fox ears", "兔耳 ": "bunny ears", "浣熊耳": "raccoon ears", "老鼠耳": "mouse ears", "松鼠耳": "squirrel ears", "熊耳 ": "bear ears", "虎耳 ": "tiger ears", "狼耳 ": "wolf ears", "马耳 ": "horse ears", "牛耳 ": "cow ears", "羊耳 ": "sheep ears", "山羊耳": "goat ears", "狮耳 ": "lion ears", "熊猫耳": "panda ears", "鹿耳 ": "deer ears", "猴耳 ": "monkey ears", "猪耳 ": "pig ears", "鼬耳 ": "ferret ears", "羊驼耳": "alpaca ears", "尖耳 ": "pointy ears", "长尖耳": "long pointy ears", "垂耳 ": "floppy ears"}, "角": {"山羊角": "goat horns", "羊角": "sheep horns", "机械角": "mechanical horns", "奶牛角": "cow horns", "恶魔之角": "demon horns", "断角": "broken horn", "龙之角": "dragon horns"}}
|
||||
|
|
@ -0,0 +1 @@
|
|||
{"自然环境": {"大海": "ocean", "海滩": "beach", "湖泊": "lake", "瀑布": "waterfall", "夜空": "night_sky", "星空": "starry_sky", "星云": "nebula", "超级银河": "hyper_galaxy", "星星轨迹": "star_trail", "落日": "sunset", "月亮": "moon", "月牙": "crescent", "新月": "crescent_moon", "满月": "full_moon", "月光": "moonlight", "猩红月亮": "scarlet_moon", "宇宙": "universe", "太空": "space", "星球": "planet", "地平线": "horizon", "多山的地平线": "mountainous horizon", "牧场": "pasture", "高原": "plateau", "花园": "garden", "田园": "fields", "浮岛": "floating_island", "森林": "forest", "草原": "grasslands", "花田": "flower field", "花海": "flower ocean", "火山": "volcano", "悬崖": "cliff", "雪山": "snowy mountain", "春": "spring", "秋": "autumn", "冬": "winter", "夏": "summer"}, "室外场景": {"公园": "park", "吊架;秋千": "Trapeze", "面包店": "bakery", "咖啡厅": "cafe", "植物园": "greenhouse", "城堡": "castle", "竞技场": "arena", "礼堂": "Auditorium", "音乐会": "concert", "书店": "bookstore", "日本旅馆": "Japanese_hotel", "监狱酒吧": "jail_bars", "在电影院里": "in_the_movie_theatre", "舞台": "stage", "港口": "harbor", "赌场": "casino", "台球桌": "billiard", "地牢": "dungeon", "坟墓": "grave", "泰姬陵": "Taj_Mahal", "马丘比丘": "Machu_Picchu", "明石海峡大桥": "Akashi_Kaikyo_Bridge", "东京天空树": "Skytree", "富士山": "Fuji_Mountain", "东京塔": "Tokyo_Tower", "伏见稻荷": "fushimi_inari", "大峡谷": "grand_canyon", "长城": "great_wall_of_china", "希腊_圣托里尼": "santorini", "意大利_威尼斯": "venice", "铁路": "railway"}, "城市风景": {"天际线": "city", "城市风景": "cityscape", "街道": "street", "市中心": "downtown", "人群": "crowd", "小巷": "alleyway", "大道": "in_main_street", "路口": "Intersection", "草坪": "lawn", "路径": "path", "路面": "pavement", "路标": "road_sign", "路障": "traffic_cone", "路灯": "lamppost", "灯柱": "lamppost", "电线杆和电线": "power_lines", "长凳": "bench", "自动贩卖机": "vending_machine", "摩天楼": "Skyscraper"}, "建筑": {"建筑": "magnificent_architecture", "摩天楼": "Skyscraper", "东亚建筑": "east_asian_architecture", "鸟居/牌坊": "torii", "大教堂": "cathedral", "中式阁楼": "chinese_style_loft", "传统中式客房": "traditional_chinese_room", "城堡": "castle", "塔楼": "turret", "清真寺": "mosque", "水库": "reservoir", "铁路": "railway", "桥": "bridge", "桥下": "under_bridge", "遗迹": "ruins", "废墟堆": "remains", "建筑废墟": "rubble_ruins"}, "室内环境及装饰": {"室内泳池": "indoor pool,", "混合控制台": "mixing_console", "汽车驾驶室内": "car_seat,_seatbelt", "更衣室": "locker_room", "在泳池边": "poolside", "洗衣店": "on laundry", "在房间内": "in the room,", "研究所": "on laboratory", "灯笼环境": "lantern_floating", "豪华房间内": "mansion", "厕所里": "on toilet", "在床上": "on_bed", "在沙发上": "on_couch", "在桌子上": "on_desk", "在巴士内": "on_the_bus", "电车内": "on_the_train", "咖啡厅": "cafe", "居酒屋": "Izakaya", "宴会": "banquet", "木质地板": "tile_floor", "榻榻米": "tatami", "床": "bed", "沙发": "safa", "被炉": "kotatsu", "壁炉": "fireplace", "窗": "window", "窗帘": "curtains", "门": "door", "推拉门": "sliding_doors", "衣架": "clothes_rack", "空调": "air_conditioner", "床单": "bed_sheet", "床垫": "futon", "坐垫": "cushion", "抱枕": "pillow_hug", "毛绒兔子": "stuffed_bunny", "小熊": "koakuma"}, "简单背景": {"单色背景": "monochrome_background", "简单的背景": "simple_background", "无背景|平铺的背景": "flats", "黑色背景": "black_background", "白色背景": "white_background", "透明背景": "transparent_background", "米色背景": "beige_background", "棕色背景": "brown_background", "棕褐色背景": "tan_background", "灰色背景": "grey_background", "双色调背景": "two-tone_background", "渐变的背景": "gradient_background", "多彩的背景": "multicolored_background", "彩虹背景": "rainbow_background", "抽象背景": "abstract_background", "菱形背景": "argyle_background", "方格背景": "checkered_background", "花朵点缀的背景": "floral_background", "网点图背景": "halftone_background", "桃色背景": "heart_background", "蜂窝风格背景": "honeycomb_background", "格子呢背景": "plaid_background", "圆斑背景": "striped_background"}}
|
||||
File diff suppressed because one or more lines are too long
185
json/汉服.json
185
json/汉服.json
|
|
@ -1,185 +0,0 @@
|
|||
{
|
||||
"唐风": {
|
||||
"上杉": {
|
||||
"召唤唐风": "hanfu, tang style outfits,<lora:hanfuTang_v32:0.7>",
|
||||
"橙色上杉": "orange upper shan",
|
||||
"红色上杉": "red upper shan",
|
||||
"绿色上杉": "green upper shan",
|
||||
"蓝色上杉": "blue upper shan",
|
||||
"粉色上杉": "pink upper shan",
|
||||
"黄色上杉": "yellow upper shan",
|
||||
"白色上杉": "white upper shan",
|
||||
"淡蓝上杉": "light blue upper shan",
|
||||
"浅绿上杉": "light green upper shan",
|
||||
"浅红上杉": "light red upper shan",
|
||||
"青蓝上杉": "cyan blue upper shan",
|
||||
"浅紫上杉": "light purple upper shan",
|
||||
"黑蓝上杉": "black with blue upper shan",
|
||||
"橙白上杉": "white with orange upper shan",
|
||||
"粉黑上杉": "pink with black upper shan"
|
||||
},
|
||||
"长上杉": {
|
||||
"橙色": "orange long upper shan",
|
||||
"红色": "red long upper shan",
|
||||
"绿色": "green long upper shan",
|
||||
"蓝色": "blue long upper shan",
|
||||
"粉色": "pink long upper shan",
|
||||
"黄色": "yellow long upper shan",
|
||||
"白色": "white long upper shan",
|
||||
"淡蓝": "light blue long upper shan",
|
||||
"浅绿": "light green long upper shan",
|
||||
"浅红": "light red long upper shan",
|
||||
"青蓝": "cyan blue long upper shan",
|
||||
"浅紫": "light purple long upper shan",
|
||||
"黑蓝": "black with blue long upper shan",
|
||||
"橙白": "white with orange long upper shan",
|
||||
"粉黑": "pink with black long upper shan"
|
||||
},
|
||||
"齐胸破裙": {
|
||||
"白色破裙": "white chest po skirt",
|
||||
"红色破裙": "red chest po skirt",
|
||||
"绿色破裙": "green chest po skirt",
|
||||
"蓝色破裙": "blue chest po skirt",
|
||||
"粉色破裙": "pink chest po skirt",
|
||||
"紫色破裙": "purple chest po skirt",
|
||||
"彩色破裙": "multicolour chest po skirt",
|
||||
"紫白破裙": "purple with white chest po skirt",
|
||||
"黄白破裙": "white with yellow chest po skirt",
|
||||
"天蓝破裙": "blue with white chest po skirt",
|
||||
"橙白破裙": "orange with white chest po skirt",
|
||||
"灰豆绿破裙": "green with white chest po skirt",
|
||||
"淡黄白破裙": "light orange with white chest po skirt",
|
||||
"粉白破裙": "pink with white chest po skirt",
|
||||
"白偏粉破裙": "white with pink chest po skirt"
|
||||
},
|
||||
"齐胸褶裙": {
|
||||
"白色褶裙": "white chest pleated skirt",
|
||||
"红色褶裙": "red chest pleated skirt",
|
||||
"绿色褶裙": "green chest pleated skirt",
|
||||
"蓝色褶裙": "blue chest pleated skirt",
|
||||
"粉色褶裙": "pink chest pleated skirt",
|
||||
"紫色褶裙": "purple chest pleated skirt",
|
||||
"彩色褶裙": "multicolour chest pleated skirt",
|
||||
"紫白褶裙": "purple with white chest pleated skirt",
|
||||
"黄白褶裙": "white with yellow chest pleated skirt",
|
||||
"天蓝褶裙": "blue with white chest pleated skirt",
|
||||
"橙白褶裙": "orange with white chest pleated skirt",
|
||||
"灰豆绿褶裙": "green with white chest pleated skirt",
|
||||
"淡黄白褶裙": "light orange with white chest pleated skirt",
|
||||
"粉白褶裙": "pink with white chest pleated skirt",
|
||||
"白偏粉褶裙": "white with pink chest pleated skirt"
|
||||
},
|
||||
"系带": {
|
||||
"绿色系带": "green waistband",
|
||||
"黄色系带": "yellow waistband",
|
||||
"红色系带": "red waistband",
|
||||
"粉色系带": "pink waistband",
|
||||
"橙色系带": "orange waistband",
|
||||
"淡蓝系带": "light blue waistband",
|
||||
"绿白系带": "light green waistband",
|
||||
"黄绿系带": "green with yellow waistband",
|
||||
"紫白系带": "purple with white waistband",
|
||||
"红白系带": "red with white waistband",
|
||||
"红黑系带": "red with black waistband",
|
||||
"黄白系带": "yellow with white waistband"
|
||||
},
|
||||
"披帛": {
|
||||
"白色披帛": "white pibo",
|
||||
"橙色披帛": "orange pibo",
|
||||
"黑色披帛": "black pibo",
|
||||
"粉色披帛": "pink pibo",
|
||||
"红色披帛": "red pibo",
|
||||
"紫色披帛": "purple pibo",
|
||||
"浅绿披帛": "light green pibo",
|
||||
"黄白披帛": "white with yellow pibo"
|
||||
}
|
||||
},
|
||||
"宋风": {
|
||||
"短衫": {
|
||||
"召唤宋风": "hanfu, song style outfits,<lora:hanfuSong_v31:0.7>",
|
||||
"紫色短杉": "purple short shan",
|
||||
"红色短杉": "red short shan",
|
||||
"绿色短杉": "green short shan",
|
||||
"蓝色短杉": "blue short shan",
|
||||
"粉色短杉": "pink short shan",
|
||||
"黄色短杉": "yellow short shan",
|
||||
"白色短杉": "white short shan",
|
||||
"淡蓝短杉": "light blue short shan",
|
||||
"浅绿短杉": "light green short shan",
|
||||
"浅红短杉": "light red short shan",
|
||||
"青蓝短杉": "cyan blue short shan",
|
||||
"浅紫短杉": "light purple short shan",
|
||||
"黑蓝短杉": "black with blue short shan",
|
||||
"黄白短杉": "white with yellow short shan",
|
||||
"浅黄白绿短": "light yellow with green with white short shan"
|
||||
},
|
||||
"长衫": {
|
||||
"紫色长杉": "purple long shan",
|
||||
"红色长杉": "red long shan",
|
||||
"绿色长杉": "green long shan",
|
||||
"蓝色长杉": "blue long shan",
|
||||
"粉色长杉": "pink long shan",
|
||||
"黄色长杉": "yellow long shan",
|
||||
"白色长杉": "white long shan",
|
||||
"淡蓝长杉": "light blue long shan",
|
||||
"浅绿长杉": "light green long shan",
|
||||
"浅红长杉": "light red long shan",
|
||||
"青蓝长杉": "cyan blue long shan",
|
||||
"浅紫长杉": "light purple long shan",
|
||||
"黑蓝长杉": "black with blue long shan",
|
||||
"黄白长杉": "white with yellow long shan",
|
||||
"浅黄白绿长": "light yellow with green with white long shan"
|
||||
},
|
||||
"百褶裙": {
|
||||
"白裙": "white pleated skirt",
|
||||
"红裙": "red pleated skirt",
|
||||
"绿裙": "green pleated skirt",
|
||||
"蓝裙": "blue pleated skirt",
|
||||
"粉裙": "pink pleated skirt",
|
||||
"浅蓝裙": "light blue pleated skirt",
|
||||
"白金裙": "white golden pleated skirt",
|
||||
"渐变绿裙": "gradient green pleated skirt",
|
||||
"半透白裙": "translucent white pleated skirt",
|
||||
"红青渐变": "red cyan gradient pleated skirt",
|
||||
"红绿渐变": "red green gradient pleated skirt",
|
||||
"白绿相间": "green with white pleated skirt",
|
||||
"浅黄绿相间": "light yellow with green with white pleated skirt"
|
||||
},
|
||||
"宋抹": {
|
||||
"橙色宋抹": "orange songmo",
|
||||
"红色宋抹": "red songmo",
|
||||
"绿色宋抹": "green songmo",
|
||||
"蓝色宋抹": "blue songmo",
|
||||
"粉色宋抹": "pink songmo",
|
||||
"黄色宋抹": "yellow songmo",
|
||||
"白色宋抹": "white songmo",
|
||||
"紫色宋抹": "purple songmo",
|
||||
"绿碎花宋抹": "green floral songmo",
|
||||
"紫碎花宋抹": "purple floral songmo",
|
||||
"青碎花宋抹": "cyan floral songmo"
|
||||
}
|
||||
},
|
||||
"明风": {
|
||||
"上衣": {
|
||||
"召唤明风": "hanfu, ming style outfits,<lora:hanfuMing_v31:0.7>",
|
||||
"短袄": "short coat",
|
||||
"长袄": "long coat"
|
||||
},
|
||||
"裙子": {
|
||||
"马面裙": "mamian skirt"
|
||||
},
|
||||
"领子": {
|
||||
"交领": "overlapping collar",
|
||||
"圆领": "round collar",
|
||||
"立领": "standing collar",
|
||||
"方领": "square collar"
|
||||
},
|
||||
"装饰": {
|
||||
"云肩": "overlapping collar",
|
||||
"刺绣": "embroidery",
|
||||
"织金": "woven gold",
|
||||
"妆花": "makeup flower",
|
||||
"补服": "bufu"
|
||||
}
|
||||
}
|
||||
}
|
||||
201
json/环境.json
201
json/环境.json
|
|
@ -1,201 +0,0 @@
|
|||
{
|
||||
"四季朝暮": {
|
||||
"春天": "in spring",
|
||||
"夏天": "in summer",
|
||||
"秋天": "in autumn",
|
||||
"冬天": "in winter",
|
||||
"黄昏": "dusk",
|
||||
"夜晚": "night",
|
||||
"秋景": "(autumn maple forest:1.3),(very few fallen leaves),(path)"
|
||||
},
|
||||
"日月星辰": {
|
||||
"太阳": "sun",
|
||||
"落日": "sunset",
|
||||
"月亮": "moon",
|
||||
"满月": "full_moon",
|
||||
"星星": "stars",
|
||||
"天空": "sky",
|
||||
"多云": "cloudy",
|
||||
"雨天": "rain",
|
||||
"冰雪": "snow,ice",
|
||||
"雪花": "snowflakes",
|
||||
"闪电": "lighting",
|
||||
"彩虹": "rainbow",
|
||||
"流星雨": "meteor shower",
|
||||
"宇宙": "universe"
|
||||
},
|
||||
"天涯海角": {
|
||||
"大海": "sea",
|
||||
"山丘": "hills",
|
||||
"草地": "in a meadow",
|
||||
"海滩": "on the beach",
|
||||
"水中": "underwater",
|
||||
"海边": "over the sea",
|
||||
"树林": "grove",
|
||||
"沙漠": "on a desert",
|
||||
"高原": "plateau",
|
||||
"悬崖": "cliff",
|
||||
"峡谷": "canyon",
|
||||
"绿洲": "oasis",
|
||||
"竹林": "bamboo forest",
|
||||
"冰川": "glacier",
|
||||
"浮岛": "floating island",
|
||||
"火山": "volcano",
|
||||
"大草原": "savanna",
|
||||
"瀑布": "waterfall",
|
||||
"溪流": "stream",
|
||||
"荒地": "wasteland",
|
||||
"稻田": "rice paddy",
|
||||
"麦田": "wheat field",
|
||||
"花田": "flower field",
|
||||
"花海": "flower sea"
|
||||
},
|
||||
"室内场景": {
|
||||
"室内": "indoor",
|
||||
"窗帘": "curtain",
|
||||
"床": "bed",
|
||||
"浴室": "bathroom",
|
||||
"厕所隔间": "toilet stall",
|
||||
"宅男房间": "otaku room",
|
||||
"自助餐厅": "cafeteria",
|
||||
"教室": "classroom",
|
||||
"俱乐部": "clubroom",
|
||||
"沙龙": "salon",
|
||||
"酒吧": "bar",
|
||||
"居酒屋": "izakaya",
|
||||
"咖啡馆": "cafe",
|
||||
"面包店": "bakery",
|
||||
"便利店": "convenience store",
|
||||
"超市": "supermarket",
|
||||
"书店": "bookstore",
|
||||
"药店": "pharmacy",
|
||||
"剧院": "theater",
|
||||
"电影院": "movie theater",
|
||||
"温室": "greenhouse",
|
||||
"地库": "dungeon",
|
||||
"健身房": "gym",
|
||||
"医务室": "infirmary",
|
||||
"实验室": "laboratory",
|
||||
"图书馆": "library",
|
||||
"工作坊": "workshop",
|
||||
"舞台": "stage",
|
||||
"法庭": "courtroom"
|
||||
},
|
||||
"城市建筑": {
|
||||
"城堡": "castle",
|
||||
"城市": "city",
|
||||
"水上乐园": "waterpark",
|
||||
"旋转木马": "carousel",
|
||||
"摩天轮": "ferris wheel",
|
||||
"水族馆": "aquarium",
|
||||
"动物园": "zoo",
|
||||
"保龄球馆": "bowling alley",
|
||||
"美术馆": "art gallery",
|
||||
"博物馆": "museum",
|
||||
"天文馆": "planetarium",
|
||||
"游泳池": "swimming pool",
|
||||
"体育场": "stadium",
|
||||
"寺庙": "temple",
|
||||
"巴士车站": "bus stop",
|
||||
"火车站": "train station",
|
||||
"喷泉": "fountain",
|
||||
"游乐场": "playground",
|
||||
"市场摊位": "market stall",
|
||||
"电话亭": "phone booth",
|
||||
"铁轨": "railroad tracks",
|
||||
"机场": "airport",
|
||||
"隧道": "tunnel"
|
||||
},
|
||||
"背景氛围": {
|
||||
"新年": "new year",
|
||||
"兔年": "year of the rabbit",
|
||||
"情人节": "valentine",
|
||||
"元宵节": "lantern festival",
|
||||
"夏日祭": "summer festival",
|
||||
"七夕节": "tanabata",
|
||||
"中秋节": "mid-autumn festival",
|
||||
"万圣节": "halloween",
|
||||
"圣诞节": "christmas",
|
||||
"爆炸": "explosion",
|
||||
"蒸汽": "water vapor",
|
||||
"焰火": "fireworks",
|
||||
"落地窗": "ceiling window",
|
||||
"彩色玻璃": "colourful glass",
|
||||
"染色玻璃": "stain glass",
|
||||
"涂鸦墙": "Graffiti wall",
|
||||
"马赛克背景": "mosaic background",
|
||||
"液体背景": "liquid background, Sputtered water",
|
||||
"魔法环": "magic circles",
|
||||
"荧光蘑菇森林": "fluorescent mushroom forests background",
|
||||
"彩色泡泡": "(((colorful bubble)))"
|
||||
},
|
||||
|
||||
"背景建筑": {
|
||||
"太空": "space",
|
||||
"城市风景": "cityscape",
|
||||
"建物": "building architecture",
|
||||
"摩天楼": "skyscraper",
|
||||
"废墟": "ruins",
|
||||
"西罗马建筑": "greco-roman architecture",
|
||||
"东亚建物": "east asian architecture",
|
||||
"鸟居": "torii",
|
||||
"大自然": "nature",
|
||||
"田园": "field",
|
||||
"海洋": "ocean",
|
||||
"海边": "beach",
|
||||
"湖泊": "lake",
|
||||
"河流": "river",
|
||||
"温泉": "onsen",
|
||||
"星空": "starry sky ",
|
||||
"室外": "outdoors",
|
||||
"室内": "indoors",
|
||||
"塌塌米": "tatami",
|
||||
"无人": "no humans",
|
||||
"教堂": "church",
|
||||
"繁花草甸": "flowers meadows",
|
||||
"商店": "shop",
|
||||
"喷泉": "fountain",
|
||||
"阿尔卑斯山脉": "Alps",
|
||||
"街道": "street",
|
||||
"积雨云": "cumulonimbus",
|
||||
"赛博朋克城市": "cyberpunk city",
|
||||
"古风建筑": "chinese style architecture",
|
||||
"神社": "gohei",
|
||||
"繁华都市": "Bustling city",
|
||||
"实验室": "laboratory",
|
||||
"咖啡馆": "coffee house",
|
||||
"宿舍": "dormitory",
|
||||
"健身房": "gym",
|
||||
"厨房": "kitchen",
|
||||
"寺庙": "temple",
|
||||
"博物馆": "museum",
|
||||
"图书馆": "library",
|
||||
"监狱": "prison",
|
||||
"轮机舱": "engine room",
|
||||
"配电房": "electrical room",
|
||||
"服务器机房": "server room",
|
||||
"栏杆": "handrail",
|
||||
"霓虹灯": "neon lights",
|
||||
"路灯": "street lamp",
|
||||
"道路": "road",
|
||||
"贫民窟": "shanty town/slum",
|
||||
"始终背景": "clockbackground",
|
||||
"地下室": "basement",
|
||||
"梦幻之森(虚幻感.光粒子幽静)": "Dreamy forest",
|
||||
"美术室": "art room",
|
||||
"仓库": "warehouse",
|
||||
"哥特式建筑": "gothic architecture",
|
||||
"时钟背景": "clock_background",
|
||||
"浴室": "bathing",
|
||||
"饭店": "restaurant",
|
||||
"树屋": "treehouse",
|
||||
"法兰西": "modern,Europe",
|
||||
"工业化古建筑": "Industrial wind, Chinese architecture",
|
||||
"建筑废墟": "building_ruins",
|
||||
"山脉": "mountain",
|
||||
"卧室": "bedroom",
|
||||
"教室": "classroom",
|
||||
"楼梯": "stairs"
|
||||
}
|
||||
|
||||
}
|
||||
File diff suppressed because one or more lines are too long
|
|
@ -1,75 +0,0 @@
|
|||
{
|
||||
"艺术风格": {
|
||||
"8bit游戏": "8 Bit Game",
|
||||
"80动画": "1980s anime",
|
||||
"迪士尼电影": "disney movie",
|
||||
"哥特摇滚": "goth",
|
||||
"80电影": "80s movie",
|
||||
"泡泡龙": "bubble bobble",
|
||||
"皮克斯动画": "style of Pixar",
|
||||
"宝丽来艺术": "Polaroid art",
|
||||
"万花筒摄影": "Kaleidoscope Photography",
|
||||
"欧泊渲染": "opal render",
|
||||
"色谱图": "chemigram",
|
||||
"吉卜力风格": "Studio Ghibli",
|
||||
"梦幻": "dreamlike",
|
||||
"签绘风格": "(faux traditional media)",
|
||||
"原神冲击": "genshin impact",
|
||||
"碧蓝航线": "azur lane",
|
||||
"舰队收藏": "kantai collection",
|
||||
"边缘行者": "rebecca (cyberpunk)",
|
||||
"电锯人": "chainsaw man",
|
||||
"魔法旋涡": "Magic Vortex",
|
||||
"柴油朋克": "((dieselpunk))",
|
||||
"四格": "4koma",
|
||||
"杂志扫描": "magazine scan",
|
||||
"专辑封面": "album cover",
|
||||
"线条变粗": "(lineart)",
|
||||
"蒸汽波": "synthwave",
|
||||
"洛可可": "(illustration),(paper figure),(lococo),((impasto)),(shiny skin)"
|
||||
},
|
||||
"艺术类型": {
|
||||
"单色图片": "monochrome",
|
||||
"拼贴艺术": "Collage",
|
||||
"彩色玻璃": "Dalle de verre",
|
||||
"像素画": "pixel art",
|
||||
"瓷画": "Encaustic painting",
|
||||
"水墨画": "Ink wash painting",
|
||||
"铜版雕刻": "Mezzotint",
|
||||
"剪影": "silhouette",
|
||||
"插画": "illustration",
|
||||
"水彩画": "(((ink))), ((watercolor))",
|
||||
"浮世绘": "illustration,(((ukiyoe))),((sketch)),((japanese_art))",
|
||||
"中国风": "((wash painting)),((ink s...",
|
||||
"油画": "((dyeing)),((oil painting)),((impasto))",
|
||||
"黑白草图": "(posing sketch), (monochrome)",
|
||||
"手画草稿": "sketch",
|
||||
"铅笔速写": "(monochrome), (gray scale), (pencil sketch lines",
|
||||
"彩铅画": "(watercolor pencil)"
|
||||
},
|
||||
"艺术派系": {
|
||||
"新艺术主义": "((art nouveau))",
|
||||
"古典主义": "((classicism))",
|
||||
"未来主义": "((futurism))",
|
||||
"达达主义": "((Dadaism))",
|
||||
"抽象艺术": "((abstract art))",
|
||||
"ASCII艺术": "((ASCII art))"
|
||||
},
|
||||
"艺术家风格": {
|
||||
"穆夏风格": "((alphonse mucha))",
|
||||
"莫奈风格": "((Monet style))"
|
||||
},
|
||||
"光照": {
|
||||
"轮廓光": "rim light",
|
||||
"体积光": "Volumetric Lighting",
|
||||
"霓虹灯": "glowing neon lights",
|
||||
"电影级光照": "Cinematic Lighting",
|
||||
"透镜光晕": "lens flare",
|
||||
"金属光泽": "metallic luster",
|
||||
"氛围光照": "moody lighting",
|
||||
"丁达尔效应": "Tyndall effect",
|
||||
"漏光光效": "light leaks",
|
||||
"背景光": "background light",
|
||||
"自然光": "available light"
|
||||
}
|
||||
}
|
||||
|
|
@ -1,72 +0,0 @@
|
|||
{
|
||||
"魔法1.0": {
|
||||
"水魔法": "((water drops)),wet clothes,((beautiful detailed water)),((floating)),dynamic angle",
|
||||
"冰魔法": "beautiful detailed glow, (detailed ice), beautiful detailed water",
|
||||
"冰系改": "beautiful detailed glow,detailed ice,beautiful detailed water,(floating palaces:1.2),(ice crystal texture wings),(Iridescence and rainbow hair:2.5)",
|
||||
"星冰乐": "beautiful detailed glow,detailed ice,beautiful detailed water, (floating palaces:1.3),(((ice crystal texture wings)))",
|
||||
"森林冰": "((detailed beautiful snow forest with trees)), ((snowflakes)), floating",
|
||||
"结晶法": "(((crystals texture Hair))),((beautiful detailed glass hair)),((glass shaped texture hand)),((crystallize texture body)),gem body,hands as clear as jewels,crystallization of clothes,((crystals texture skin)),sparkle, lens flare, light leaks,broken glass,detailed glass shaped clothes,beautiful detailed gemstone sky, gemstone sea, crystals texture flowers,((detailed crystallized clothing))",
|
||||
"核爆法": "beautiful detailed glow,((flames of war)),(((nuclear explosion behide)))",
|
||||
"风魔法": "((breeze)), flying splashes, flying petals, wind",
|
||||
"流沙法": "((surrounded by heavy floating sand flow and floating sharp stones)),((((ink)))),((illustration)),((watercolor))",
|
||||
"雷电法": "(detailed light), ((lightning in hand)),lightning surrounds,(((lightning chain)))",
|
||||
"圣光法": "(sunlight),(angel),dynamic angle, floating, wing, halo, floating white silk,(Holy Light),silver stars",
|
||||
"苇名法": "beautiful detailed pampas grass field, open hakama, surrounded by floating sakura, yellow full moon, beautiful detailed dark midnight sky, messy white long hair",
|
||||
"自然法": "beautiful and delicate water, the finest grass, very delicate light, nature, painting, water spray, breeze, flowers and grass meadow, near the water edge, (sunset, starry sky in a circle), randomly distributed clouds, river, splashing water, falling petals",
|
||||
"森林法": "(detailed light) , feather, leaves, nature, (sunlight), river, (forest),(bloom)",
|
||||
"虹彩法": "floating and rainbow long hair,Iridescence and rainbow, beautiful detailed starry sky",
|
||||
"暗锁法": "chain ring, chain storm, dark chain,((wholeblack bloomer)), darkside, night, deep dark, darkness, ((dark clouds)),((ruins)),shadow, death garden",
|
||||
"火烧云": "beautiful detailed glow, floating ashes, beautiful and detailed explosion, red moon, fire, fire cloud, wings on fire, a cloudy sky, smoke of gunpowder, burning, black dress, dove of peace, (floating cloud:1.2)",
|
||||
"城堡法": "beautiful detailed glow, detailed ice, beautiful detailed water, (magic circle:1.2), (floating palaces:1.3)",
|
||||
"黄昏法": "(water bloom), (delicate glow), (breeze), long Flowers meadow,(((sunset)), (less stars form a circle), randomly distributed clouds, (rivers), (willows with branches falling into the water)",
|
||||
"泡泡法": "((colorful bubble)),(floating),detailed light",
|
||||
"蔷薇法": "((rose)), (vine), cage, bandage, red rope, (detail light), falling rose petals",
|
||||
"星空法": "(starry tornado:1.4), starry Nebula, beautiful detailed sky",
|
||||
"月亮法": "((moon)), starry sky, (lighting particle), fog, snow,(bloom)",
|
||||
"雪月法": "beautiful detailed glow, detailed ice, beautiful detailed water, (cold full moon), snowflake, (floating cloud:1.2)",
|
||||
"森火法": "((burning forest)), spark, light leaks, burning sky, flame, flames burning around, (flying sparks)",
|
||||
"废土法": "((destroyed)),explosion, buildings in disarray, The residual eaves DuanBi, cumulus, mouldy, floating, wind, Dead end machine,(broken robot),(Mechanical robot girl), in the rubble of a devastated city",
|
||||
"战甲法": "mecha clothes, robot girl, sliver bodysuit,((sliver)) and (broken) body",
|
||||
"黄金法": "Extremely gorgeous metal style, Metal crown with ornate stripes, Various metals background, Sputtered molten iron, floating hair, Hair like melted metal, Clothes made of silver, Clothes with gold lace, flowing gold and silver, everything flowing and melt, flowing iron, flowing silver, lace flowing and melt",
|
||||
"机娘法": "mecha clothes, robot girl",
|
||||
"死灵法": "ink,(((bone))), (((ribs))), rose, black hair, blue eyes, greyscale, no shadow, simple background, bright skin",
|
||||
"水晶法": "(((gorgeous crystal armor))),(((crystal wings))),((altocumulus)),(clear_sky),(snow mountain),((flowery flowers)),(flowery bubbles),cloud map plane, crystal, crystal poppies,Brilliant light, thick_coating, glass tint,(watercolor)",
|
||||
"水森法": "((an extremely delicate and beautiful)),floating, (detailed wet clothes), (detailed light),feather, nature, (sunlight), river, floating palace, beautiful and delicate water,(bloom),(shine)",
|
||||
"冰火法": "(blue spark),(red and blue hair),blue eyes, burning sky,flame,Rainbow in the sky,((Flames burning ice)),(((fire butterflies))),(((ice crystal texture wings))),(Flying sparks),(detailed ice),((a lot of luminous ice crystals)),((burning feathers)),(feathers made of ice),(frozen feathers),(((ice and fire together)))",
|
||||
"龙骑士": "(anger), dragon horns, (silver armor), metal, complex pattern, cape, indifference",
|
||||
"坠落法": "((full body)),(helpless),tear, crying,(((((falling from the sky))))),((Weathering With You)),((falling)),((face towards the sky)),(hair flows upwards),((disheveled hair)),(1 girl), floating, beautiful detailed sky",
|
||||
"水下法": "((underwater)),(beautiful detailed water),((coral)),dynamic angle, floating,(detailed light),floating hair,(splash),((fishes)),leaves dress, feather, nature,(sunlight),(underwater forest),(bloom),(detailed glow),drenched, seaweed, fish,(((Tyndall effect)))",
|
||||
"秘境法": "(extremely detailed CG unity 8k wallpaper),(((masterpiece))), (((best quality))), ((ultra-detailed)), (best illustration),(best shadow), ((an extremely delicate and beautiful)),dynamic angle,floating, fairyland,dynamic angle,sea of flowers,beautiful detailed garden,wind,classic,spring, (detailed light),feather, nature, (sunlight), river, forest,(((floating palace))),((the best building)),beautiful and delicate water,(painting),(sketch),(bloom),(shine)",
|
||||
"摄影法": "(((masterpiece))), ((the best quality, super fine illustrations, beautiful and delicate water)), ((very delicate light)), ((nature, painting)), ((fine lighting, more transparent stars, high-quality snowflakes, high-quality mountains, very fine 8KCG wallpapers)), (plateau), (((snow mountain))), sunrise, randomly distributed clouds, (snow field), cliff, ((rotating star sky)), ((lake in mountain stream)), luminous particles",
|
||||
"摩登法": "1980s (style),simple background, retro artstyle",
|
||||
"血魔法": "(white hair), red long hair, red eyes, (full body), (((with sword))), angry face, (beautiful detailed eyes), Blood drop,Blood fog, floating hair, disheveled hair, Splashing blood,(Bloodstain)",
|
||||
"唤龙术": "((dragon)), ((dragon background))",
|
||||
"战姬法": "hair fluttering in the wind,((mechanical arm armor)),((mechanical body armor)),riding motor, bodysuit,((ruins of city in war, fire, burning cars, burning buildings)),air force fleet in the sky",
|
||||
"龙机法": "mecha clothes, robot girl, sliver bodysuit, dragon wings, ((a dragon stands behind the girl)), beautiful detailed sliver dragon armor",
|
||||
"星蝶术": "((Beautiful butterflies in detail)),((Beautiful stars in detail)),(((halter dress ))),particle,(Starry sky in beautiful detail),(Hazy fog),(Ruins of beautiful details),(((Standing on the surface of the sea)))",
|
||||
"学院法": "blonde wavy hair, (shiny long hair), ((Gothic Lolita)), blue white skirt, ((short skirt)), black Headdress, bowknot, (((hair ornament))), (hair flower), Lace, cross-laced footwear, ribbon-trimmed sleeves, building architecture, ((gothic architecture)), starry sky, outdoors, church, (castle)",
|
||||
"星霞海": "walking, waves, wind,(((glistening light of waves))),(detailed sunset glow),(floating flow),((coral)),(Luminous),coast,(floating colorful bubbles),beautiful detailed sky,(fluorescence),detailed shadow,(conch),beautiful detailed water, starfish, meteor, rainbow,(seabirds),(glinting stars), (glowworm),(splash),detailed cloud, shell,(fireworks)",
|
||||
"冬雪法": "beautiful detailed sky, night, stars, (red plum blossom),((winter)),(((snowflakes))), ((red and white flowers)),(starry sky),(sitting),((colorful)),scenery, lantern,(starfall)"
|
||||
},
|
||||
"魔法1.5": {
|
||||
"万物熔炉": "((((melt)))),(((((black and white melt))))),(((wear Black and white Taoist robes))),((((gold and silver lace)))),(((gold and silver lace lace))),(((flowing ((black)) and white background))),extremely detailed gorgeous tiara",
|
||||
"暗鸦法": "Floating black ashes, Beautiful and detailed black, red moon, ((The black clouds)), (black Wings) , a black cloudy sky, burning, black dress, ((Black fog)), Red eyes, (black smoke), ((Black feathers floating in the air)),bat, (floating black cloud:1.5),",
|
||||
"花火基础": "dynamic angle, finely detail, (bloom), (shine), glinting stars, ((((best detailed fireworks)))), ((((depth of field)))), (((hanabi))),(((backlight))),",
|
||||
"星之彩": "stars in the eyes, messy floating hair, colored inner hair, Starry sky adorns hair, (lots of big colorful Bubble), (pearl), (Galaxy), depth of field",
|
||||
"沉入星海": "stars in the eyes, messy floating hair, colored inner hair, Starry sky adorns hair, depth of field",
|
||||
"百溺法": "dynamic angle, detailed wet clothes, blank stare, overexplosure, floating, black long straight, red eyes, aqua eyes, gradient eyes, ((blood)), white dress, frills, ((expressionless)), extremely beautiful detailed water, ((lying on the lake)), (bloodred water:1.5), (red background:1.3)",
|
||||
"辉煌阳光法": "((messy hair)),(grassland),(yellow eyes),incredibly absurdres,(gold hair),floating hair,Large number of environments,the medieval ,grace,prospect,water eyes,wind,breeze,god ray,lawn,Mountains and lakes in the distance,The sun shines through the trees,A vast expanse of grassland",
|
||||
"星鬓法": "Starry sky adorns hair, sparkling anime eyes,beautiful detailed stars,blighting stars,emerging dark purple across with white hair,multicolored hair,beautiful detailed sky, beautiful detailed water, cinematic lighting, dramatic angle,",
|
||||
"森罗法": "There are many scattered luminous petals,Hidden in the light yellow flowers,Depth of field,Many flying drops of water,Many scattered leaves,branch ,angle ,contour deepening,cinematic angle",
|
||||
"星天使": "sunlight, extremely light, extremely clothes, Holy Light, dynamic angle, Light particle, very long hair, white hair, yellow eyes, glowing eyes, expressionless, ((light smile)), ((((white Tulle skirt)))), white silk, looking at viewer, angel wings, large wings, multiple wings, angel halo, (((starry sky))), dusk sky, Floating light spot, Lots of feathers",
|
||||
"黄金律": "blonde hair, yellow eyes, white skin, mature female, sunrise, golden sky, magnificent architecture, beautiful detailed sky, overexposure, delicate gold metal decorations",
|
||||
"机械姬": "mechanical prosthesis,mecha coverage,emerging dark purple across with white hair,fluorescent purple,cool movement,rose red eyes,beatiful detailed cyberpunk city, hd semirealistic anime cg concept art digital painting",
|
||||
"人鱼法": "(incredibly absurdres), (highly detailed beautiful fishtail:1.6), (((human hands))), (the lower body is a fish:1.9)AND(no human thigh:1.2), seaweed, (full body), (white seashell), (curved and slender fish tail), (the lower body is bare:1.1), {beautiful tailfin}, ((underwater)), (illustration), detailed water, ((fishes)), (floating), watercolor (medium), (small whirlpool), ((The sensation of water flowing)), (detailed scales on a mermaid)",
|
||||
"末日": "Blood Mist, background Urban rooftop,despair,Blood Cherry Blossom,torn clothes,crying with eyes open,solo,Blood Rain,bandages,Gunpowder smoke,beautiful deatailed shadow, Splashing blood,dust,tyndall effect",
|
||||
"碎梦": "Space opera,Space port,robot arm,elbow gloves,night,glisten,stare,cyberpunk,((((citylight)))),science fiction,bodysuit,Mechanical armor headdress,(bare shoulders)",
|
||||
"幻碎梦": "dynamic angle,rainbow hair,detailed cute anime face,((loli)),flower,cry,water,corrugated,flowers tire,broken glass,(broken screen),atlantis,transparent glass",
|
||||
"血改法": "(white hair),(((red streaked hair))), red eyes, (((full body))),(red hair), (((((Hold a red sword))))), (angry face),((Blood drop)),((Blood fog)),light shafts, soft focus, ((Splashing blood))),Long hair,((Bloodstain)),Fighting stance,{{{{{watercolor (medium)}}}},(((masterpiece))),((white clock)),((ultradetailed)),((Covered in blood)),flowing hair,Exquisite Flame,dynamic angle, floating, (shine), extremely delicate and beautiful girls, bright skin, lying red petals,Holy lighting",
|
||||
"留影术": "dramatic shadows,black and white,monochrome,{{comic}},cross necklace,Cassock",
|
||||
"飘花法": "((ink)),(water color),bloom effect,detailed beautiful grassland with petal,flower,butterfly,necklace,smile,petal,(((surrounded by heavy floating petal flow)))"
|
||||
}
|
||||
}
|
||||
Binary file not shown.
|
|
@ -43,29 +43,17 @@ class Script(scripts.Script):
|
|||
json= LoadTagsFile()
|
||||
randomIndex=0
|
||||
txtprompt=None
|
||||
|
||||
def after_component(self, component, **kwargs):
|
||||
if(component.elem_id=="txt2img_prompt" or component.elem_id=="img2img_prompt"):
|
||||
self.txtprompt=component
|
||||
|
||||
def title(self):
|
||||
return "Old_Six"
|
||||
|
||||
def show(self, is_img2img):
|
||||
return scripts.AlwaysVisible
|
||||
|
||||
|
||||
|
||||
# def createTabs(self):
|
||||
# with gr.Tabs() as tabs:
|
||||
# for item in self.diclist:
|
||||
# with gr.TabItem(item):
|
||||
# html=traverse_dict(self.diclist[item])[6:]
|
||||
# gr.HTML(html)
|
||||
# return tabs
|
||||
|
||||
def after_component(self, component, **kwargs):
|
||||
if(component.elem_id=="txt2img_prompt" or component.elem_id=="img2img_prompt"):
|
||||
self.txtprompt=component
|
||||
# print(component,component.elem_id)
|
||||
|
||||
|
||||
|
||||
def ui(self, is_img2img):
|
||||
if(is_img2img):
|
||||
eid='oldsix-prompt2'
|
||||
|
|
@ -80,33 +68,41 @@ class Script(scripts.Script):
|
|||
btnreload=gr.Button('🔄',elem_classes="oldsix-reload sm secondary gradio-button svelte-1ipelgc")
|
||||
gr.Button('清空正面提示词', variant="secondary",elem_classes="oldsix-clear")
|
||||
gr.Button('清空负面提示词',variant="secondary",elem_classes="oldsix-clear")
|
||||
with gr.Accordion(label="随机灵感",open=False):
|
||||
rdtextarea=gr.TextArea(label='灵感词预览框')
|
||||
with gr.Column(scale=4,elem_id="oldsix-optit"):
|
||||
gr.HTML('<p class="oldsix-classes-shop"></p>')
|
||||
with gr.Accordion(label="随机灵感",open=False):
|
||||
rdtextareaEn=gr.TextArea(label='英文预览框',elem_id='randomTextEn',lines=3,visible=False)
|
||||
rdtextareaZh=gr.TextArea(label='预览框',elem_id='randomTextZh',lines=3)
|
||||
with gr.Row():
|
||||
with gr.Column(scale=4):
|
||||
gr.Textbox(placeholder='开头占位提示词',show_label=False,elem_classes="oldsix-txt-start")
|
||||
with gr.Column(scale=4):
|
||||
gr.Textbox(placeholder='结尾占位提示词',show_label=False,elem_classes="oldsix-txt-end")
|
||||
with gr.Row():
|
||||
with gr.Column(scale=4):
|
||||
btnRandom=gr.Button('随机灵感关键词',variant="primary")
|
||||
btnRandom=gr.Button('随机灵感关键词',variant="primary")
|
||||
with gr.Column(scale=4):
|
||||
btnSend=gr.Button('发送到提示词框',variant="primary")
|
||||
|
||||
def send():
|
||||
return self.rdlist[self.randomIndex]['val']
|
||||
gr.Button('分类组合随机',variant="primary",elem_classes="btn-crandom")
|
||||
with gr.Column(scale=4):
|
||||
gr.Button('发送到提示词框',variant="primary",elem_classes="oldsix-btnSend")
|
||||
|
||||
|
||||
def randomPrompt():
|
||||
self.randomIndex= random.randint(0,len(self.rdlist))
|
||||
return self.rdlist[self.randomIndex]['key']
|
||||
|
||||
return [self.rdlist[self.randomIndex]['val'],self.rdlist[self.randomIndex]['key']]
|
||||
def reloadData():
|
||||
return LoadTagsFile()
|
||||
|
||||
|
||||
btnreload.click(fn=reloadData,inputs=None,outputs=textarea)
|
||||
btnRandom.click(fn=randomPrompt,inputs=None,outputs=rdtextarea)
|
||||
btnSend.click(fn=send,inputs=None,outputs=self.txtprompt)
|
||||
btnRandom.click(fn=randomPrompt,inputs=None,outputs=[rdtextareaEn,rdtextareaZh])
|
||||
|
||||
|
||||
|
||||
return [btnreload]
|
||||
|
||||
|
||||
# def process(self, p, *args):
|
||||
# pass
|
||||
|
||||
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue