-
Notifications
You must be signed in to change notification settings - Fork 1
/
lazy-wildcards.yaml
15941 lines (15941 loc) · 656 KB
/
lazy-wildcards.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
#
# https://github.com/adieyal/sd-dynamic-prompts/blob/main/docs/SYNTAX.md
#
# https://civitai.com/user/C0rn_Fl4k3s/models
# https://civitai.com/models/138970/billions-of-wildcards-character-vehicle-scenery-building-creature-scifi-fantasy-magic-all-you-want
# https://github.com/sdbds/stable-diffusion-webui-wildcards
#
lazy-wildcards:
prompts:
costume:
- >-
{__lazy-wildcards/subject/costume-anything/nsfw/prompts__|__lazy-wildcards/subject/costume-anything/clothes/prompts__}
costume-with-color:
- >-
__lazy-wildcards/utils/costume-color-theme__{,__lazy-wildcards/prompts/costume__|}
- >-
{__lazy-wildcards/utils/costume-color-theme__,|}__lazy-wildcards/prompts/costume__
hair:
- >-
__lazy-wildcards/char/hair-length__{,__lazy-wildcards/char/haircuts-multis__|}{,__lazy-wildcards/char/hair-style-multi__|}{,__lazy-wildcards/subject/costume-elem-accessories/hair_ornament/prompts__|}
hair-with-color:
- >-
__lazy-wildcards/char/haircolor__,__lazy-wildcards/prompts/hair__
hair-all:
- >-
{3::__lazy-wildcards/prompts/hair__|3::__lazy-wildcards/prompts/hair-with-color__|0.1::__lazy-wildcards/char/hair-bald__}
- __lazy-wildcards/prompts/hair__
- __lazy-wildcards/prompts/hair-with-color__
eyes:
- (__lazy-wildcards/char/eyecolor__)
- >-
({1-2$$__lazy-wildcards/char/eyecolor__}){0.3::,__lazy-wildcards/char/eyeliner-color__|}{0.3::,__lazy-wildcards/char/eyeshadow-color__|}{0.3::,__lazy-wildcards/char/eyelashes__|}{0.3::,__lazy-wildcards/char/eyelashes-color__|}{0.3::,{0-3$$__lazy-wildcards/char/eyes-expressions__}|}{0.3::,{0-3$$__lazy-wildcards/char/eyes-style__}|}
mouth:
- >-
{0.1::(__lazy-wildcards/char/mouth__:1.4),|}{0.1::({1-3$$__lazy-wildcards/char/mouth-style__}),|}__lazy-wildcards/char/lips-color__
dataset:
char-base:
- >-
__lazy-wildcards/dataset/char-view__,1girl,__lazy-wildcards/prompts/eyes__,__lazy-wildcards/prompts/hair-all__,__lazy-wildcards/prompts/costume-with-color__,__lazy-wildcards/prompts/mouth__,{0.1::__lazy-wildcards/char/expressions__|0.3::__lazy-wildcards/char/expressions2__|}
face:
- >-
__lazy-wildcards/prompts/dataset/char-base__,{__lazy-wildcards/dataset/action__,|}__lazy-wildcards/dataset/background__
face-simple:
- >-
__lazy-wildcards/prompts/dataset/char-base__,{__lazy-wildcards/dataset/action__,|}__lazy-wildcards/dataset/background-color__
char-nude:
- >-
__lazy-wildcards/dataset/char-view__,1girl,{0.3::(__lazy-wildcards/char/mouth__:1.4),|}(__lazy-wildcards/char/eyecolor__),__lazy-wildcards/prompts/hair-all__,__lazy-wildcards/subject/costume-anything/nsfw-nude/prompts__,{0.3::__lazy-wildcards/char/lips-color__,|}{0.3::__lazy-wildcards/char/eyeliner-color__,|}{0.3::__lazy-wildcards/char/eyeshadow-color__,|}{0.1::__lazy-wildcards/char/expressions__|0.3::__lazy-wildcards/char/expressions__2|},{__lazy-wildcards/dataset/action__,|}__lazy-wildcards/dataset/background-color__
cover:
- >-
(__lazy-wildcards/subject/style-book/shared-cover/prompts__),__lazy-wildcards/prompts/dataset/char-base__,{__lazy-wildcards/subject/style-book/*/action-pose__|__lazy-wildcards/dataset/action__},(__lazy-wildcards/dataset/background__:1.25)
showcase:
- |-
female fifty-something,pear-shaped,inuit,golden eyes,large ears,unusual face shape,sandy blonde voluminous curls hair,curiosity wearing sleeveless jumpsuit,cut-out lingerie set,fishing tackle bag,playing with necklace,playing with a necklace with a seductive glance,adding an element of elegance and allure,sunset lighting,the warm,golden glow of a sunset,adding a romantic and enchanting feel to the scene,a vibrant street market,with vendors showcasing their unique crafts and products,lecture hall,cutting board,shoe rack,dryer,carpet,travertine stone,rya knots tapestry,bioluminescent organisms,pendant lights,torn clothes,sexy body,wet,drunk,bottles fallen on the floor,unconscious
- >-
tennis player wearing green Zip-up jacket with tennis ball print,tennis skirt with pleated back,bucket hat with mesh panel,platform tennis shoes,tennis ball stored in a mesh bag,haunted house,Basement,Foreboding chamber with stone walls covered in moss,rusted chains hanging from the ceiling,broken crates scattered around,a rusted iron maiden in the corner,and the sound of distant whispers echoing through the darkness
- smoke_from_head
- police car Trunk,Spacious compartment containing emergency equipment such as cones,flares,fire extinguisher,portable toolbox,rifle rack with a shotgun secured in place,spare tire tucked away in the corner
- |-
(1girl:1.2),ninja wearing Stealthy black gi with a fitted top,high-waisted pants,ninja mask,fingerless gloves,black boots,orphanage Playroom,Colorful space with toys strewn across the floor,child-sized tables and chairs,bright murals decorating the walls,large bean bags for lounging,and shelves stocked with art supplies
- >-
huge breasts,black hair,long sleeves,jacket,glasses,short shorts,black shorts,blue jacket,track jacket,buruma,torn clothes,sexy body,wet,drunk,bottles fallen on the floor,unconscious
- 1girl,between breasts,money,bills,playboy bunny,casino
- vibrant background,vivid background,Village Square,Bustling gathering place with wooden market stalls,vendors hawking their wares,children playing games in the cobblestone streets,cherry blossom trees offering shade,distant glimpse of the ocean beyond the rooftops
- |-
__lazy-wildcards/subject/style-book/shared-cover/prompts__,upper body,1girl,(steel gray eyes),very short hair,dark brown hair,parted bangs,crossed bangs,green clothes,side-tie panties,cleavage,multi-strapped panties,highleg panties,string panties,groin,strap slip,denim,denim bikini,dark chestnut lips,tongue sticking out,squatting spread legs position,squatting,spread legs,crouching,__lazy-wildcards/dataset/background__
- |-
1girl,__lazy-wildcards/prompts/hair__,soldier wearing Short-sleeved shirt with tactical vest,cargo shorts,combat boots,patrol cap,military base Helipad,Open space with helicopters parked in neat rows,rotor blades spinning as they prepare for takeoff,ground crew bustling around with refueling equipment,a sense of urgency in the air,the deafening roar of engines,{__lazy-wildcards/background/color-multi__|}
- ((fast pencil scribble sketch)),((the various expressions are shown of characters in different poses)),on paper,1girl,__lazy-wildcards/prompts/hair__
- |-
Caribbean,(dark tunnel:1.2),1girl,naked,lying on a bed,with her feet in front of the camera,soles of her feet,red nails,completely naked,legs open,wet pussy,pussy with cum,water,(wet skin,drenched,wet,moist skinwet skin,drenched,wet,moist skin:1.1),facing viewer,looking at viewer,breasts,waist,extremely sexy,__lazy-wildcards/prompts/hair__,__lazy-wildcards/prompts/eyes__,__lazy-wildcards/dataset/background-color__,(flower,falling petals,petals on liquid,petals,cherry blossom:0.8)
- |-
1girl,solo,under boob,up skirt,downblouse,cleavage,(from below,looking down,ass visible through thighs:1.2),ceiling,(peek panties,panty peek,pussy peek),selfie pose,squatting,crouching,__lazy-wildcards/prompts/hair__,__lazy-wildcards/prompts/eyes__,__lazy-wildcards/dataset/background__,(flower,falling petals,petals on liquid,petals,cherry blossom:0.8)
- |-
upper_body,1girl,breasts,collarbone,covered_mouth,gag,gagged,improvised_gag,mask,mouth_mask,surgical_mask,solo,forehead,(shirt:1.2),bar,underwear,cleavage,(asymmetrical breasts,cleavage_overflow:1.6),({1-$$Taretiti|saggy breasts|drooping breasts|soft breasts|sagging breasts|hanging breasts}:1.2),__lazy-wildcards/utils/costume-color-theme__,__lazy-wildcards/prompts/hair__,__lazy-wildcards/prompts/eyes__,__lazy-wildcards/dataset/background-color__,(flower,falling petals,petals on liquid,petals,cherry blossom:0.8),{__lazy-wildcards/dataset/action__}
- >-
(silhouette:1.2),jianying,1girl,nude,(in river),splash,({sun rays,sunset|moonlight|dawn|twilight} background,low horizon),backlighting,contour light,body contour light,light particles,__lazy-wildcards/prompts/hair__,__lazy-wildcards/dataset/background-color__,(flower,falling petals,petals on liquid,petals,cherry blossom:0.8)
- >-
1girl,(boarding a cruise ship,ocean liner:1.2),waving,(holding luggage,drag luggage:1.2),luggage,suitcase,baggage,luggage tag,walking,traveling,__lazy-wildcards/prompts/hair__,__lazy-wildcards/dataset/background-color__
- >-
(style of {Steve McCurry|Jeremiah Ketner}),illustration,photo background,(portrait of {Housework robots|family|noble man|animals|robots|man|idolmaster cinderella girls|tech genius teenage girl}:1.2),{0.2::animals|cat|}
- >-
(otherworldly),uncensored,1girl,(whip,whip marks,whipped,whip scar:1.2),pain,chained,tortured,underwear,topless,(whipping_hair:1.2),{0.3::{1-$$low_light|dim_lighting|dramatic_lighting|shadow|noir}|} dark background,(fantasy world)
- >-
1girl,Tower13_Gizelle,(wearing a luxurious red gown:1.3),sitting on a table in a glamorous restaurant,{baseball hat,|}long-shot ruins,building,window frame,cracked window,wall corner,upturned,abandoned,metal,industrial,fence,moody,cracked mud,urban,canalside,upper body
- >-
1girl,wearing __lazy-wildcards/subject/style-theme/NeoFalmerWorld/costume__,__lazy-wildcards/subject/style-theme/NeoFalmerWorld/prompts-bg__,__lazy-wildcards/prompts/hair__
- >-
(psychedelic,vivid colors,3d papercut shadow box) of a deck of tarot cards spilled on a table,text "megapack" is written on the box,magic lights,bokeh
- >-
1girl,(white scaly body),halo,wings,fallen angel,loose waves,red eyes,(dragon,art by hermann nitsch,zdzislaw beksinski,dariusz zawadzki,giger),naked,(__lazy-wildcards/char/haircolor__),(__lazy-wildcards/dataset/background-color__)
- >-
phone,cellphone,holding_phone,smartphone,1girl,selfie,looking_at_phone,sitting,long_hair,holding,solo,dress,iphone,sandals,see-through dress,(__lazy-wildcards/char/haircolor__),(__lazy-wildcards/dataset/background__)
- a woman in a bikini standing on a pier next to the ocean with her hands on her hips and her breasts exposed,ocean,(__lazy-wildcards/char/haircolor__),(__lazy-wildcards/dataset/background__)
- >-
(Ethnofuturism,solarpunk,naturepunk:1.2),large artificial lake,Ethnic_Village,(rock stairs,gates,wind power,Wind turbine,natural environments,natural elements,visible machinery and control room,weirs,Green_Rooftop,stone road,wooden road,surrounded by plants and trees and flowers:1.2),Urban_Gardener_Attire,Leafy_Attire,cemetery,graveyard,(1girl:1.3),solo focus,(__lazy-wildcards/char/haircolor__),__lazy-wildcards/dataset/background-color__
- |-
(nebula under the sea:1.3),galactic,celestial,ocean,(mandala),sunken ruins,(underwater,underwater city),(1girl:1.3),solo focus,__lazy-wildcards/dataset/background-color__
- |-
(1girl:1.3),solo focus,__lazy-wildcards/subject/scenes-meme/equipment-layout-dogeza/prompts__,__lazy-wildcards/dataset/background-color__
- __lazy-wildcards/subject/scenes-showcase/*/prompts__
showcase-others:
- |-
ethereal fantasy concept art of (blue and ginger scales blooming rose :1.2),ephemeral filigree distortion,from above,magnificent,celestial,ethereal,__lazy-wildcards/dataset/background-color__
background:
color-style:
- >-
({1-3$$ background,$$multicolored|gradient|solid color|neon color|fluorescent|psychedelic color|fluid color|color splash|color fusion|EPtiedyeworld,tie-dye color|colour sequence|rainbow|colored geometric|color bokeh|color stripes|colored confetti|colored marble|colored smoke|colored digital glitch|{abstract |}colored fractal|abstract colored|dripping colors|bold color|colored mosaic} background{0.3:::{1.2|1.3|1.4}|})
color-theme:
- __mix-lazy-auto/color-anything__ background
color-transparent:
- |-
(pure __lazy-wildcards/utils/color-base__ background,transparent background:1.2)
color-multi:
- >-
a colorful background,__lazy-wildcards/background/color-style__
- >-
{2-3$$ background,$$__mix-lazy-auto/color-anything__} background,__lazy-wildcards/background/color-style__
- >-
pure {2-3$$ background,pure $$__lazy-wildcards/utils/color-base__} background,__lazy-wildcards/background/color-style__
- >-
neon {2-3$$ background,neon $$__lazy-wildcards/utils/color-base__} background,__lazy-wildcards/background/color-style__
char:
eyes-expressions:
- >-
{half-|}closed eyes
- >-
{half-|}opened eyes
- >-
{1-$$crying with eyes open|tears|crying}
- narrowed eyes
- empty eyes
- rolling eyes
- cross eyed
- tsurime
- constricted pupils
- water eyes
- solid eyes
- eye_contact
- glint
- >-
{1-$$sharp_eyes|slanted_eyes}
- expressive eyes
- twinkling smiley eyes
- slightly close eyes
- seductive eyes
- wakeupeye,rubbing eyes
- constricted eyes,constricted pupils,bright pupils
- raised eyebrows
eyes-style:
- >-
{1-$$multicolored eyes|gradient eyes|heterochromia}
- >-
{1-$$heart-shaped eyes|heart-shaped pupils|heart_in_eye}
- button eyes
- >-
{1-$$glowing eyes|sparkling eyes|pupils sparkling|light_eyes|shiny_eyes}
- blank eyes
- extra eyes
- >-
{1-$$bloodshot eyes|blood from eyes}
- slit pupils
- devil eyes
- >-
{1-$$covering eyes|eyes visible through hair|hidden eyes|no eyes|shading eyes|eyebrows visible through hair}
- snake pupils
- color contact lenses
- flower-shaped pupils
- hollow_eyes
- ringed_eyes
- eye_relfection
- mechanical eyes
- clock eyes
- compound eyes
- eye_of_horus
- spiral_eyes
- flaming_eye
- bags_under_eyes
- no_eyepatch
- no_blindfold
- scar_across_eye
- medical_eyepatch
- eyepatch
- colored sclera
- jewel-like eyes
- Blush Eyeshadow,Thick Eyebrows,Thick Eyelashes,eyeliner
- gears in eyes
- symbol-shaped eyes
- |-
(smokey_eyes,sultry_look,heavy_eye_makeup:1.4)
eyecolor:
- __person/regular/eyecolor__
- __mix-lazy-auto/color-anything__ eyes
eyeliner-color:
- __mix-lazy-auto/color-anything__ eyeliner
eyeshadow-color:
- __mix-lazy-auto/color-anything__ eyeshadow
# 睫毛
eyelashes:
- eyelashes_behind_hair
- eyelashes_through_hair
- eyelashes_visible_through_hair
- eyelashes
- thick eyelashes
- mismatched eyelashes
- long eyelashes
eyelashes-color:
- __mix-lazy-auto/color-anything__ eyelashes
- colored eyelashes
hair-length:
- short hair
- long hair
- medium hair
- very long hair
- very short hair
- absurdly long hair
- short hair with long locks
haircolor-style:
- split-color hair,dual-toned hair,two-tone hair
- multi_color_hair,multicolored hair,multi colored hair
- rainbow hair,Iridescence hair
- colored inner hair
- gradient hair
- streaked hair
haircolor-multi:
- >-
{2-3$$ hair,$$__mix-lazy-auto/color-anything__} hair,{1-2$$__lazy-wildcards/char/haircolor-style__}
- __lazy-wildcards/char/haircolor__
haircolor:
- >-
__mix-lazy-auto/color-anything__ hair{0.3::,{1-2$$__lazy-wildcards/char/haircolor-style__}|}
hair-style-multi:
- >-
{1-4$$__lazy-wildcards/char/hair-style__}
hair-style:
- metal hair
- Blowing hair in the strong wind
- >-
{ultra |}floating,{ultra |}floating hair
- >-
{1-$$soaked hair|wet hair|sweat hair}
- >-
messy hair{,morning hair,bedhead|}
- flipped hair
- vortex hair
- wild hair
- fluid hair,fussion of fluid and hair
- bioluminescent hair
- updo hair
- abstract representation of the girl in her flowing hair
- spiked hair
- leaf hair
- >-
{1-$$flowing hair|hair blown by wind}
- >-
hair over {one eye|eyes}
- >-
hair over {one breast|breasts}
- >-
hair over {one shoulder|shoulder}
- hair intakes
- >-
{low |}twin braids
- __lazy-wildcards/subject/costume-ethnicity-hair/*/prompts__
- tendril bangs hairstyle
- voluminous_look
- elegant_finish
- two side up
- hair spread out
- big hair
- loose hair strand
haircuts-multis:
- >-
{1-4$$ hair,$$__person/regular/haircuts-*__} hair
- >-
{1-4$$__lazy-wildcards/char/haircuts__}
haircuts:
- blunt bangs
- swept bangs
- crossed bangs
- parted bangs
- drill hair
- twin drill hair
- Wavy Side Bangs hair
- hair pulled back,Folded tied hair
- curly frizzy flowy hair
- >-
ahoge,antenna hair,{huge ahoge|heart ahoge}
- wolf tail hairstyle
- feathered haircutfeathered haircut
- Layered Wavy Cut with Curtain Bangs hair
- box braids
- __cf-*/hairstyle__ hair
- folded ponytail
- rolled_hairstyle
- curled_hair
- >-
{Messy |}Side Swept Hair
# https://civitai.com/models/553481/shaggy-mullet-hair-style-sd15-sdxl-pony?modelVersionId=615957
- >-
Shaggy Mullet Hair Style,shaggyMullet,shaggyMullet hair,(disheveled,messy hair,thinned hair)
- rolled lob hairstyle,elegant_finish
hair-bald:
- >-
(Completely bald,bald,bald girl:1.3)
lips-color:
- __mix-lazy-auto/color-anything__ lips
mouth-style:
- wavy mouth
- chestnut_mouth
- >-
{1-$$hair_in_mouth|hair_tie_in_mouth}
- |-
{drooling|saliva}
- triangle_mouth
- spoon_in_mouth
- pacifier
- dot_mouth
- shark mouth
- heart-shaped mouth
- puffy lips
- thick lips
- >-
open mouth,{1-$$-shaped mouth,$$chestnut|acorn|raindrop}{,expressionless|}
mouth:
- |-
{1-$$open mouth|gasping}
- closed mouth
- parted lips
- finger to mouth
- homu
- Pouted lips
- mouth_hold
- oral
- covered_mouth
- >-
{1-$$cleave_gag|bit_gag|gag}
- gnaw
- no_mouth
- >-
:>
- >-
:o
- >-
:3
- coysmile
# Smug mouth with fang / 八重歯付きのニヤけた口 - v1.0
# https://civitai.com/models/469309?modelVersionId=522175
- >-
(smug,Yaeba),open mouth,fang
mole:
- mole under eye
- mole under mouth
- mole on breast
- mole on thigh
expressions:
- __person/regular/expressions__
- __halloween/pumpkin-carving/expressions__
- (fucked silly,torogao,Dazed,Climax),drunk,Confused
- yandere,crazy eyes,crazy,crazy smile
- (ahegao),[tongue_out,saliva,drooling,teasing,eyes_up,eyes_rolling_back,eye_roll]
- >-
{1-$$shy|blush}
- |-
Mouth wide open in delighted surprise,lips slightly parted,eyes closed in a joyful moment,she's caught in the wonder of the unexpected
- seductive look,seductive
- moan,moaning,blush,squinting,lips,seductive smile
expressions2:
- scornful
- (disgusted face,disgust,disgust_face,frown,shaded_face,clenched teeth,scorn)
- (disgusted face,disgust,disgust_face,frown,shaded_face,clenched teeth,scorn),angry
- (expressionless)
- flustered
body:
body-types:
- curvy body,hourglass body,narrow waist,hourglass slim figure
- wide hips,narrow waist
- |-
perfect body,muscular body,Thick thigh,wide pelvis,(big ass:0.5),tall woman
# 腹部 / 肚子
belly:
- >-
{1-$$swollen belly|plump belly}
- inflation
- pregnant
- groin
- abs
- midriff
- belly
waist-style:
- clothes around waist
- waist chain
# 腰
waist:
- narrow waist
- slender waist
- muscled waist
tattoos:
- Hindu symbols tattoos
- tattoos
horns:
- curled horns
utils:
interior-style-anything:
- __mix-lazy-auto/interior-style-anything__
- >-
{2-4$$__mix-lazy-auto/interior-style-anything__}
interior-style-popular:
- modern,Modern style,clean_lines,neutral_colors,open_space
- contemporary,Contemporary style,sleek_furniture,metallic_finishes,open_floor_plan
- minimalist,Minimalist style,simple_furniture,clutter_free,monochrome_palette
- industrial,Industrial style,exposed_brick,metal_pipes,rustic_wood
- mid-century_modern,Mid-Century Modern style,organic_shapes,simple_fabrics,geometric_patterns
- scandinavian,Scandinavian style,light_woods,natural_light,cozy_textiles
- traditional,Traditional style,elegant_furniture,rich_colors,classic_decor
- transitional,Transitional style,balanced_decor,neutral_palette,combination_furniture
- french_country,French Country style,distressed_wood,pastel_colors,floral_patterns
- bohemian,Bohemian style,bold_colors,eclectic_furniture,artistic_accessories
- rustic,Rustic style,natural_materials,earthy_colors,handcrafted_furniture
- shabby_chic,Shabby Chic style,distressed_furniture,soft_colors,vintage_decor,laid-back vibes,airy lighting fixtures,antique-touch furniture,vintage-inspired charm
- hollywood_glam,Hollywood Glam style,luxurious_fabrics,bold_decor,glamorous_accessories
- coastal,Coastal style,light_colors,nautical_decor,airy_space
- eclectic,Eclectic style,mix_match,variety_of_textures,personalized_decor
- farmhouse,Farmhouse style,barn_doors,neutral_palette,cozy_fabrics
- art_deco,Art Deco style,geometric_patterns,luxurious_materials,bold_colors
- mediterranean,Mediterranean style,terracotta_tiles,arched_windows,wrought_iron
- asian_zen,Asian Zen style,zen_decor,natural_elements,simplicity
- urban_modern,Urban Modern style,urban_furniture,sleek_decor,neutral_palette
- vintage,Vintage style,antique_furniture,classic_decor,muted_colors
- retro,Retro style,bold_patterns,vibrant_colors,vintage_furniture
- tropical,Tropical style,lush_plants,tropical_colors,natural_materials
- nautical,Nautical style,nautical_decor,blue_white_palette,weathered_wood
- victorian,Victorian style,ornate_decor,rich_colors,antique_furniture
- colonial,Colonial style,classic_decor,symmetry,antique_furniture
- gothic,Gothic style,gothic_decor,dark_palette,ornate_furniture
- southwestern,Southwestern style,southwestern_patterns,earthy_colors,rustic_furniture
- moroccan,Moroccan style,intricate_patterns,vibrant_colors,exotic_decor
- tuscan,Tuscan style,stone_floors,warm_colors,rustic_decor
- indochine,indochine style
# Indo-Chine (中南半島)
interior-style-indochine:
- indochine,Indo-Chine style,dark_wood,intricate_carvings,tropical_plants
- french_colonial_influence,French Colonial influence,wrought_iron,large_windows,high_ceiling
- indochine,Indo-Chine style,asian_motifs,Asian motifs,dragon_patterns,lotus_flowers,bamboo
- indochine,Indo-Chine style,blending_of_cultures,Blending of cultures,mixed_textiles,eclectic_decor,fusion_furniture
- indochine,Indo-Chine style,natural_materials,Natural materials,rattan_furniture,woven_baskets,wooden_beams
- indochine,Indo-Chine style,handcrafted_details,Handcrafted details,carved_panels,embroidered_textiles,artisan_decor
- indochine,Indo-Chine style,ropical_vibes,Tropical vibes,palm_leaves,exotic_flowers,open_airy_space
- indochine,Indo-Chine style,vibrant_colors,Vibrant colors,bold_reds,deep_blues,bright_yellows
# Indian (印度風格室內設計)
interior-style-indian:
- indian,indian_interiors,Indian Interiors style,vibrant_colors,ornate_furniture,traditional_artifacts
- indian,intricate_carvings,Intricate carvings,detailed_woodwork,ornate_doors,carved_panels
- indian,bright_textiles,Bright textiles,colorful_fabrics,patterned_cushions,embroidered_tapestries
- indian,traditional_motifs,Traditional motifs,paisley_patterns,floral_designs,religious_symbols
- indian,handcrafted_furniture,Handcrafted furniture,wooden_chairs,intricately_carved_tables,artisan_pieces
- indian,rich_palettes,Rich palettes,deep_reds,royal_blues,golden_yellows
- indian,floor_seating,Floor seating,low_cushions,decorative_rugs,traditional_mat_seating
- indian,ornate_lighting,Ornate lighting,hanging_lanterns,brass_lamps,intricate_chandeliers
- indian,temple_influences,Temple influences,sacred_symbols,religious_statues,spiritual_art
- indian,natural_materials,Natural materials,stone_flooring,wooden_beams,clay_pots
color-base:
- white
- black
- green
- magenta
- cyan
- yellow
- blue
- red
- pink
- orange
- purple
# do not use this anymore
color-anything:
- >-
__Bo/chars/haircolor__
- >-
__lazy-wildcards/utils/color-base__
- >-
__cf-*/color__
- >-
bright blue-green
costume-type1:
- skirt
- jacket
- shirt
- tank top
- shorts
- hijab
- pants
- thighhighs
- bikini
- lingerie
- dress
- bra
- platform heels
- stiletto heels
- thong
- pantyhose
- glasses
- hair
- choker
- earrings
- leotard
costume-type2-unworn:
- capelet
- chocolate
- suspenders
- tabard
- bandage
- scarf
- overalls
- hoodie
- cape
- sheet
- coat
- ribbon
- apron
- towel
- shirt
- panties
- bra
- dress
- earring
- thighhighs
- armor
- boots
costume-color-theme-multi:
- >-
{1-3$$ clothes,$$__mix-lazy-auto/color-anything__} clothes
costume-color-theme:
- __mix-lazy-auto/color-anything__ clothes
action:
playing-card:
poker-playing:
- ace \(playing card\)
- king \(playing card\)
- jack \(playing card\)
- queen \(playing card\)
poker-card:
- ace of hearts
- ace of spades
- ace of diamonds
- ace of clubs
- three of hearts
- king of spades
- ten of hearts
- ten of spades
- two of spades
- royal flush
- five of hearts
- four of clubs
- jack of spades
- three of spades
- five of spades
- two of hearts
char-view:
- __lazy-wildcards/dataset/char-view__
- |-
(from below,looking down,ass visible through thighs:1.2)
view:
- front view
- from side
- from behind
- from inside
- from outside
- from top
- from bottom
- from below
- from side to side
- from behind to front
- from top to bottom
- from above
# 作物
crops:
# 必要作物
essential_crops:
- Wheat
- Corn
- Potatoes
- Rice
- Soybeans
- Carrots
- Tomatoes
- Leafy Greens
- Onions
- Lentils
# 經濟作物
economic_crops:
- Coffee
- Tea
- Chilies
- Herbs
- Grapes
- Cotton
- Chicory
- Strawberries
- Blueberries
- Mushrooms
scenery:
- >-
scenery{,{1-$$outdoors|horizon|landscape|ultra wide angle,very wide shot,wide angle shot|HDRI Panorama View|360 panorama|aerial view,drone view}|}
scenery-no-humans:
- >-
__lazy-wildcards/utils/scenery__{,no humans|}
fn:
# __lazy-wildcards/utils/fn/style-inspired(v=lego)__
style-inspired:
- >-
inspired by ${v},${v}-inspired,style of ${v},${v} style
subject:
style-art-type:
others:
prompts:
- retro futurism style
- smoke sketch style
sketch-pen-landscape:
prompts:
- >-
__lazy-wildcards/subject/style-art-type/sketch-pen-landscape/style-art-main__,__lazy-wildcards/subject/style-art-type/sketch-pen-base/prompts__
style-art-main:
- |-
(XCYP) Landscape Sketch,(Sketch Landscape:1.4)
sketch-pen-portrait:
prompts:
- >-
__lazy-wildcards/subject/style-art-type/sketch-pen-portrait/style-art-main__,__lazy-wildcards/subject/style-art-type/sketch-pen-base/prompts__
style-art-main:
- (Sketch portrait,portrait)
sketch-pen-base:
prompts:
- >-
__lazy-wildcards/subject/style-art-type/sketch-pen-base/style-art-main__,{__lazy-wildcards/subject/style-art-type/sketch-pen-base/style-color__,|}({3-$$__lazy-wildcards/subject/style-art-type/sketch-pen-base/style__})
style-art-main:
- |-
(XCYP) Sketch,(Sketch:1.4),(Pen Drawing:2)
style-color:
- >-
(Black and White Pen Drawing:2){,(Strong Black and White Contrast)|}
style:
- High Summary
- Minimalist Style
- Thick Lines
- Smooth Lines
- Clean
- Perfect Composition
- High Contrast
- Strong Contrast
- pencil sketch
- charcoal sketch
# https://civitai.com/models/15927
# https://civitai.com/models/144283/or-mecha-drawings-in-ancient-chinese-style
# https://civitai.com/models/210933/technical-drawing?modelVersionId=237582
# https://civitai.com/models/199836/davinci-sketch?modelVersionId=224860
blueprint-architectural-drawings:
prompts:
- >-
__lazy-wildcards/subject/style-art-type/blueprint-architectural-drawings/style-art-main__{0.2::,{1-2$$__lazy-wildcards/subject/style-art-type/blueprint-architectural-drawings/env-architectural__}|}{,{1-$$__lazy-wildcards/subject/style-art-type/blueprint-architectural-drawings/style__}|}{,{1-2$$__lazy-wildcards/subject/style-art-type/blueprint-architectural-drawings/style-art-type__}|}
style-art-main:
- |-
(blueprint:1.3),architectural drawing,techdraw,davincisketch,UFO_Alchemy
env-architectural:
- old moscow town conceptual style architecture
- conceptual style
- Chinese ancient architecture
- real-estate perspective of conceptual style architecture
- Swedish architecture
- School building
- Zaha Hadid style
- traditional chinese room
- ruins,rubble ruins
style:
- dimensions
- building
- structure
- layout
- Disassembly diagram
style-art-type:
- Floor_Plan,top-down perspective
- Elevation
- Section_Drawing
- Site_Plan
- Detail_Drawing
- Architectural_Rendering
- Axonometric_Drawing
- Concept_Sketch
- Construction_Documents
- As-Built_Drawings
- Mechanical_Plan
- Structural_Drawing
- Reflected_Ceiling_Plan
- technical drawing
- Blueprint Schematic Drawing,schematic
- Character Design Sheet,character reference sheet,character turn around,2dsprite assets,2dcharacter
- industrial design sketch
- sketch
- Davinci sketch
env:
- english text
- arow line dimensions in mm
# https://civitai.com/models/14892?modelVersionId=17546
papercutting-art:
prompts:
- >-
__lazy-wildcards/subject/style-art-type/papercutting-art/main__{,{1-2$$__lazy-wildcards/subject/style-art-type/papercutting-art/env-paper-type__}|}{,{1-3$$__lazy-wildcards/subject/style-art-type/papercutting-art/style-art-type__}|}{,{1-$$__lazy-wildcards/subject/style-art-type/papercutting-art/style__}|}
main:
- Papercutting Art,Papercuts,paper cut art
style:
- decoration
- Intricate_Papercuts
style-art-type:
- Chinese_Papercutting
- Silhouette_Papercuts
- Lace_Papercuts
- Folk_Papercuts
- Festival_Papercuts
- Window_Papercuts
- Storytelling_Papercuts
- Modern_Papercuts
- Layered_Papercuts
- Floral_Papercuts
- Animal_Papercuts
- Abstract_Papercuts
env-paper-type:
- Construction_Paper
- Origami_Paper
- Watercolor_Paper
- Cardstock
- Tissue_Paper
- Kraft_Paper,brown paper
- Rice_Paper
- Parchment_Paper
- Newsprint
- Vellum
- translucent and smooth paper
# https://civitai.com/models/461566/isometric?modelVersionId=513667
# https://civitai.com/models/107391/playstation-1-old-game-background-maps?modelVersionId=115479
# https://civitai.com/models/80713/table-rpg-dandd-maps-isometric-level
isometric:
prompts:
- >-
(__lazy-wildcards/subject/style-art-type/isometric/style-art-main__{,{1-$$__lazy-wildcards/subject/style-art-type/isometric/style-main__}|}:1.4){,{1-$$__lazy-wildcards/subject/style-art-type/isometric/env-bg__}|}{,{1-$$__lazy-wildcards/subject/style-art-type/isometric/env-bg__}|}
style-art-main:
- isometricnive,isometric
style-main:
- isometric cutaway
- isometriciterior,isometric iterior,isometric interior
env-bg:
- indoors,interior
style:
- __lazy-wildcards/utils/scenery-no-humans__
mosaic:
prompts:
- >-
__lazy-wildcards/subject/style-art-type/mosaic/style-art-main__{,{1-2$$__lazy-wildcards/subject/style-art-type/mosaic/style__}|}
style-art-main:
- >-
(Mosaic Art,Mosaic:1.3),ArsMJStyle
style:
- tessellation
- geometric_pattern
- repeating_pattern
- symmetry
- colorful,vibrant_colors,multicolored
- ancient_art
- classical_art
- byzantine_art
- intricate_design,elaborate_pattern
- mosaic background
# https://civitai.com/models/28531/miniature-world-style?modelVersionId=34223
# https://civitai.com/models/227021/miniature-models-lora-flux-sdxl-sd15?modelVersionId=256087
miniature:
prompts:
- >-
__lazy-wildcards/subject/style-art-type/miniature/style-art-main__{,{1-2$$__lazy-wildcards/subject/style-art-type/miniature/env-bg__}|}{,{1-$$__lazy-wildcards/subject/style-art-type/miniature/style__}|}
style-art-main:
- >-
(mini\(ttp\),miniature,miniature model{0.3:::{1.2|1.3|1.4}|}),pmini style,M1n14tur3,landscape
env-bg:
- plate
- cup
- bowl
- on table
- on floor
style:
- isometric style
- crisp
- ntricate
- vibrant
# https://civitai.com/models/553811/stained-glass-sd15-sdxl-pony-flux?modelVersionId=653863
stained_glass:
prompts:
- >-
(__lazy-wildcards/subject/style-art-type/stained_glass/style-art-main__{0.3:::{1.2|1.3|1.4}|}){0.3::,{1-$$__lazy-wildcards/subject/style-art-type/stained_glass/env__}|}{0.2::,{1-$$__lazy-wildcards/subject/style-art-type/stained_glass/env-bg__}|}{,{1-$$__lazy-wildcards/subject/style-art-type/stained_glass/style__}|}
style-art-main:
- stained_glass,stained_glass_print,sglass style
env:
- stained_glass_window
- leadwork
- religious_symbol
- bird_motif
- circle
env-bg:
- gothic_cathedral
- forest_scenery
style:
- colorful_light
- geometric_pattern
- art_nouveau
- floral_design
- feminine_silhouette
- flowing_lines
# https://civitai.com/models/749593/pixrochar?modelVersionId=838276
pixel-sprite-sheet:
prompts:
- >-
(__lazy-wildcards/subject/style-art-type/pixel-sprite-sheet/style-art-main__{0.3:::{1.2|1.3|1.4}|}){,{1-$$__lazy-wildcards/subject/style-art-type/pixel-sprite-sheet/style__}|}{0.3::,{1-$$__lazy-wildcards/subject/style-art-type/pixel-sprite-sheet/costume__}|}
style-art-main:
- >-
pixel art,rochar,RoSprite,ROSprites,Ragnarok online Art style,persistent character sprite sheet
costume:
- Feminine ninja,fishnet,fur,mask
- Feminine mummy
- Feminine acolyte
style:
- vivid color
- exaggerated body proportion
- front view and back view
- battle stand
# https://civitai.com/models/88900/gmic-iconpixel-style?modelVersionId=94602
pixel-game-icon:
prompts:
- >-
Game Icon Institute,pixel art
murals:
prompts:
- >-
(intricate murals,MuralBG{0.3:::{1.2|1.3|1.4}|})
# https://civitai.com/models/779878/pre-historic-cave-paintings?modelVersionId=872200
cave_paintings:
prompts:
- >-
__lazy-wildcards/subject/style-art-type/cave_paintings/style-art-main__{,{1-$$__lazy-wildcards/subject/style-art-type/cave_paintings/style__}|}{0.3::,{1-$$__lazy-wildcards/subject/style-art-type/cave_paintings/env-creatures__}|}{,{1-$$__lazy-wildcards/subject/style-art-type/cave_paintings/env-bg__}|}
style-art-main:
- |-
(cave paintings,cave art{0.3:::{1.2|1.3|1.4}|}),rock art
env-creatures:
- prehistoric_animal
env-bg:
- cave_interior
- ritual_space
- sacred_cave
- Lascaux Cave,France
- Altamira Cave,Spain
- Chauvet Cave,France
- Sulawesi Caves,Indonesia
style:
- Pre-historic Cave Paintings
- cave_art_animal,animal_painting
- hunting_scene,primitive_hunting,prehistoric_hunter
- cave_human_figure,primitive_human,shaman_painting
- prehistoric_symbol,geometric_pattern,cave_art_abstract
- handprint_art,prehistoric_handprint,cave_handprint
- natural_pigment,ochre_painting,charcoal_painting
icon-game:
prompts:
- >-
(game icon institute,game icon,gen-icon-material,IconsMi,SKSKS app icon,Game Icon Institute3d,icon{0.3:::{1.2|1.3|1.4}|})
# https://civitai.com/models/60132/vector-illustration
vector_art:
prompts:
- >-
(vector_art,vector illustration{0.3:::{1.2|1.3|1.4}|})
# https://civitai.com/models/141063/watercolor-style-lora
# https://civitai.com/models/198866/vintage-anime-watercolor-stylehttps://civitai.com/models/198866/vintage-anime-watercolor-style
# https://civitai.com/models/83572/watercolor-stickers-lora
# https://civitai.com/models/105784/watercolor-or
# https://civitai.com/models/93762/i-watercolor-senery
# https://civitai.com/models/107609/watercolor-paint
# https://civitai.com/models/200510/watercolorayaya
# https://civitai.com/models/224469/mtg-rebecca-guay-watercolor-artstyle
watercolor:
prompts:
- >-
(__lazy-wildcards/subject/style-art-type/watercolor/style-art-main__{,{1-$$__lazy-wildcards/subject/style-art-type/watercolor/style-art__}|}{0.3:::{1.2|1.3|1.4}|}),xuer mind bending murals{,{1-$$__lazy-wildcards/subject/style-art-type/watercolor/style__}|}{0.2::,{1-$$__lazy-wildcards/subject/style-art-type/watercolor/style-artist__}|}
style-art-main:
- watercolor style
style-art:
- watercolor \(medium\)
- transparent watercolor
- wet_on_wet_watercolor,blended_wet_effect,Wet-on-wet Watercolor Painting
- wet_on_dry_watercolor,Wet-On-Dry Watercolor Technique
- drip,dripping watercolor,watercolor_drips,watercolor drops
style:
- traditional media
- watercolor senery
- flat color
- thick lines
- painting \(medium\)
- Watercolor sticker
- painting,watercolor painting
- layered_transparency
- watercolor_blur
- watercolor_bleed
- expressive_watercolor,bold_strokes
- sharp_watercolor_edges
- watercolor background
style-artist:
- akihiro yamada
- takada akemi,Akemi Takada
- Rebecca Guay
# https://civitai.com/search/models?baseModel=SD%201.5&baseModel=Other&sortBy=models_v9&query=map
# https://civitai.com/models/433169/cartoon-map
# https://civitai.com/models/71682/table-rpg-dandd-maps-10-cities
# https://civitai.com/models/79374/table-rpg-dandd-maps-hand-drawn-old-school
# https://civitai.com/models/303605/cartography
# https://civitai.com/models/79629/war-thunder-maps-lora-or-map
# https://civitai.com/models/231463/map-draw
# https://civitai.com/models/18597/map-sketch
# https://civitai.com/models/180976/battle-maps
map:
prompts:
- >-
map,travelmap,BattleMapV1,BattleMap,mapdraw,no humans
# https://civitai.com/models/516265/map
map-satellite:
prompts:
- >-
satellite map,__lazy-wildcards/subject/style-art-type/map/prompts__
Lego:
prompts:
- >-
(__lazy-wildcards/subject/style-art-type/Lego/style-art-main__{0.3:::{1.2|1.3|1.4}|}){,{1-$$__lazy-wildcards/subject/style-art-type/Lego/style__}|}
style-art-main:
- >-
lego,LegoAI,LEGO BrickHeadz,LEGO MiniFig,LEGO Creator,lego world,BJ_Lego bricks,__lazy-wildcards/utils/fn/style-inspired(v=lego)__,lgo,Lego Style
style:
- lego material
- LEGO_Pixel
- __lazy-wildcards/subject/style-art-type/isometric/style-art-main__
style-artist-name:
comic:
prompts:
# 鳥山明
- toriyama akira \(style\)
- Kentaro Miura
- Eguchi Hisashi
- matsumoto_leiji \(style\)
comic-american:
prompts:
- Clayton Crain
girl:
prompts:
- Artgerm
decorative-arts:
prompts:
# 裝飾藝術花卉女性
- alphonse mucha
- Artur Bordalo
dark:
prompts:
- beksinski style,zdzislaw beksinski
- hermann nitsch
- dariusz zawadzki art
- Bastien Lecouffe Deharme
- Luis Royo
- Victo Ngai
- Alberto Seveso
- Hieronymus Bosch
biomachine:
prompts:
- giger
scifi:
prompts:
- John Berkey
fantasy:
prompts:
- Anne Stokes
- Victo Ngai
- Kinuko Y\. Craft
- Miho Hirano
- Alan Lee
ink:
prompts:
- Carne Griffiths
- Daniel Merriam
- Zhang Daqian
fluid:
prompts:
- Alberto Seveso
- Agnes Cecile
photography:
prompts:
- roger deakins
- Spencer Tunick
- Wes Anderson
architectural:
prompts:
- style of zaha hadid