File size: 5,966 Bytes
54e7dc5
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
Our AI model discord server, Myne Factory: https://discord.gg/ADyd4ZXY6g
Feel free to join for updates on current models or models on other shows. :)

Recommended settings:
Sampling Steps: At least 20
Image size: At least 640 x 640
CFG: 3 - 7
Highres. fix: around 0.6 with BSRGAN (settings, upscaler for img2img. If you don’t have BSRGAN as an option, the file is in the drive folder. Put it in the \stable_diffusion_webui\models\ESRGAN\ folder)
Clip skip: 1 (settings, Clip skip)

Prompt format: Parent tag 1, description prompt 1, description prompt 2, etc; Parent tag 2, description prompt 1, description prompt 2, etc;

Example: Darkness, blushing, eyes closed, happy; sparkle; evening; lens flare; petals;

Just because we haven’t trained on something doesn’t mean the base AI model doesn’t already know what it is, so go crazy. Below is a list of prompts we did train on.

-------------Characters---------------

Kazuma
	back
	close-up
	blurry
	
	tracksuit
	cloak
	shirt
	work outfit
	winter outfit
	loincloth
	collar
	beat up
	
	holding sword
	holding guild card
	holding basket
	holding bag of money
	holding rag
	holding broom
	steal
	sitting on chair
	sitting at table
	sitting on ground
	sitting on bed
	laying on couch
	on his knees
	crouching
	bowing
	sleeping on hay
	eating
	drinking
	thinking
	saluting
	waving
	running
	thumbs up
	fishing
	posing
	praying
	running
	casting water
	ready to fight
	in air
	in water
	
	eyes closed
	eyes covered
	winking
	evil
	worried
	blushing
	happy
	smug
	sad
	shocked
	disappointed
	surprised
	bored
	angry
	smiling
	embarrassed
	scared
	crying
	pursed lips
	secretive
	nervous
	
	carrying Megumin
	grabbing Megumin's neck
	grabbing Aqua's neck
	holding Aqua
	holding Aqua's hand
	pointing at Aqua
	pointing at Darkness
	laying on Wiz's lap
	laying on Aqua's lap
	
	
Aqua
	back
	close-up
	lower body
	blurry
	
	feather dress
	hairpin
	work outfit
	pink scarf
	ethereal scarf
	winter outfit
	blue pajamas
	slimy
	beat up
	
	staff on back
	holding tulip staff
	holding bottle
	holding net
	holding snow sprites
	holding guild card
	holding fans
	posing
	running away
	sleeping on hay
	sleeping
	sitting on chair
	sitting at table
	sitting in cage
	sitting
	crouching
	on her knees
	laying down
	bowing
	magic attack
	in water
	eating
	drinking
	drinking tea
	waving
	pointing
	thumbs up
	casting
	flood spell
	ready to fight
	reading book
	leaning on railing
	posing
	
	eyes closed
	eyes hidden
	winking
	smug
	laughing
	happy
	surprised
	blushing
	crying
	sad
	shocked
	smiling
	angry
	disappointed
	scared
	tired
	uncomfortable
	bored
	pursed lips
	embarrassed
	thinking
	mouth full
	
	on top of Wiz
	hugging Wiz
	holding Wiz's hand
	pointing at Wiz
	pointing at Kazuma
	punching Kyouya
	grabbing Luna
	
Megumin
	back
	close-up
	
	witch hat
	cape
	crimson dress
	beltless
	red pajamas
	winter outfit
	eyepatch
	slimy
	beat up
	blue staffball
	
	holding staff
	holding rag
	passed out
	laying on ground
	posing
	praying
	sitting on chair
	sitting at table
	sitting
	on her knees
	ready to fight
	eating
	drinking
	casting
	thumbs up
	in water
	leaning on railing
	reading book
	
	smiling
	blushing
	embarrassed
	tired
	surprised
	shocked
	crying
	laughing
	worried
	happy
	determined
	angry
	smug
	sad
	pursed lips
	drooling
	scared
	
	pointing at Kazuma
	hugging Aqua
	grabbing Yunyun
	
	
Darkness
	back
	close-up
	
	armour
	beat up
	winter outfit
	pink pajamas
	secretary
	armourless
	
	holding sword
	holding onusa
	on the ground
	curled up
	on her knees
	in water
	running
	sitting at table
	ready to fight
	
	eyes closed
	smiling
	happy
	blushing
	aroused
	shocked
	worried
	determined
	surprised
	embarrassed
	crying
	pursed lips
	licking lips
	angry
	
	holding Kazuma's hand
	fighting Beldia
	
Chris
	back
	close-up
	
	pointing
	
	winking
	embarrassed


Eris
	back
	close-up
	worried
	eyes closed
	surprised
	confused
	blushing
	winking


Wiz
	back
	close-up
	
	transparent
	
	laying on the ground
	on her knees
	
	eyes closed
	embarrassed
	blushing
	worried
	smiling
	shocked
	
	hugging Aqua
	
	
Yunyun
	back
	close-up
	
	pointing
	
	eyes closed
	worried
	crying
	blushing


Kyouya
	back
	close-up
	
	holding sword
	
	sweating
	happy
	surprised


Cremea
	back
	close-up
	
	holding sword
	running
	pointing
	waving
	
	blushing
	scared
	
	hugging Fio	
	pulling Fio's cheeks
	
	
Fio
	back
	close-up
	
	running
	
	blushing	
	eyes closed
	scared
	
	hugging Cremea
	hugging Kyouya


Ruffian
	back
	close-up
	
	sitting
	drinking
	thumbs up
	cheering
	arms crossed
	
	eyes closed
	
	carrying Megumin


Luna
	back
	close-up
	
	headphones
	
	wiping desk
	holding megaphone
	holding guild card
	
	surprised
	happy
	worried
	
Dust
	back
	close-up
	
	whispering

	eyes closed
	blushing
	determined
	surprised
	
	hugging Kazuma

Keith
	back
	close-up
	
	eyes closed
	blushing
	
	hugging Kazuma

waitress
	holding beer
	holding tray
	holding broom
	
Receptionist succubus
	back
	close-up
	
	seductive
	
	eyes closed

Newbie succubus
	back
	close-up
	
	on her knees
	
	crying

angel
	back
	close-up
	
	arms raised
	

Giant frog
	pink
	green
	blue
	white
	mouth open
	
Beldia
	back
	close-up
	
	horse
	sweating
	
	holding greatsword
	holding Beldia's head

winter shogun
	back
	close-up
	holding sword

--------------Locations------------------

Axel (starter town)
	city gate
	bridge
	alleyway

farm

Magic item shop

rooftop

afterlife

mountains

lake

grass

Adventurer's guild
	booth
	bar
	quest board
	
barn

field
	worn-down
	muddy
	rocky

forest

cabbages

castle

mansion
	hallway
	bed
	
gravestone

succubus cafe

Destroyer
	inside
	core

cliffs

dungeon


--------------Mood---------------

	night
	evening
	cloudy
	embers
	holy
	sparkle
	bright

--------------Misc---------------

	explosion
	explosion runes

	lens flare
	glow

	stars

	chess

	doll
		close-up
	dolls

	crowd
	succubi
	adventurers
	people
	guild workers
	knights

	feathers
	
	food
	
	monsters (probably doesn't work)
	dragon
	minotaur