-
Notifications
You must be signed in to change notification settings - Fork 677
Expand file tree
/
Copy pathtempCodeRunnerFile.javascript
More file actions
2454 lines (2453 loc) · 82.7 KB
/
tempCodeRunnerFile.javascript
File metadata and controls
2454 lines (2453 loc) · 82.7 KB
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
const origin = {
code: 200,
type: "success",
message: "",
result: [
{
id: 0,
companyId: null,
name: "常用风格",
parentId: null,
status: 1,
isSystem: true,
filmStyleCount: 0,
styles: [
{
id: -197,
companyId: null,
catId: 0,
catName: "常用风格",
name: "2D动漫风格",
prompt: "(画风:2D动漫风格,2d animation style)",
promptEn: "2d animation style",
fileUrl: "https://files.manjuwu.cn/anime/aigc/g/i/68985098-60f1-4b64-b973-64071d95edb3.png",
status: 1,
isSystem: true,
},
{
id: -196,
companyId: null,
catId: 0,
catName: "常用风格",
name: "真人写实",
prompt: "(画风:照片级真人超写实,photorealistic, lifelike, ultra detailed)",
promptEn: "photorealistic, lifelike, ultra detailed",
fileUrl: "https://files.manjuwu.cn/anime/uploads/other/20260127/025c131413394fb5a9214e00d67ea354.jpg",
status: 1,
isSystem: true,
},
{
id: -109,
companyId: null,
catId: 0,
catName: "常用风格",
name: "3D国创",
prompt: "(画风:3D国创,Chinese 3D animation style)",
promptEn: "Chinese 3D animation style",
fileUrl: "https://files.manjuwu.cn//app/FilmStyle/V1/立体风格/3D国创.webp",
status: 1,
isSystem: true,
},
{
id: -60,
companyId: null,
catId: 0,
catName: "常用风格",
name: "三渲二",
prompt: "(画风:三渲二,cel-shaded)",
promptEn: "cel-shaded",
fileUrl: "https://files.manjuwu.cn//app/FilmStyle/V1/日系风格/三渲二.webp",
status: 1,
isSystem: true,
},
{
id: 2,
companyId: null,
catId: 0,
catName: "常用风格",
name: "日式少女漫",
prompt: "(画风:日式少女漫,shoujo manga style)",
promptEn: "shoujo manga style",
fileUrl: "https://files.manjuwu.cn//app/FilmStyle/V1/插画风格/日式少女漫.webp",
status: 1,
isSystem: true,
},
{
id: 16,
companyId: null,
catId: 0,
catName: "常用风格",
name: "龙族传说",
prompt: "(画风:龙族传说,dragon clan legend art)",
promptEn: "dragon clan legend art",
fileUrl: "https://files.manjuwu.cn//app/FilmStyle/V1/日系风格/龙族传说.webp",
status: 1,
isSystem: true,
},
{
id: 36,
companyId: null,
catId: 0,
catName: "常用风格",
name: "吉卜力",
prompt: "(画风:吉卜力,Ghibli style, Studio Ghibli aesthetic)",
promptEn: "Ghibli style, Studio Ghibli aesthetic",
fileUrl: "https://files.manjuwu.cn//app/FilmStyle/V1/日系风格/吉卜力.webp",
status: 1,
isSystem: true,
},
{
id: 78,
companyId: null,
catId: 0,
catName: "常用风格",
name: "80s年代",
prompt: "(画风:80s年代,1980s retro)",
promptEn: "1980s retro",
fileUrl: "https://files.manjuwu.cn//app/FilmStyle/V1/插画风格/80s年代.webp",
status: 1,
isSystem: true,
},
{
id: 105,
companyId: null,
catId: 0,
catName: "常用风格",
name: "木叶村",
prompt: "(画风:木叶村,Naruto style, Konohagakure)",
promptEn: "Naruto style, Konohagakure",
fileUrl: "https://files.manjuwu.cn//app/FilmStyle/V1/ip风格/木叶村.webp",
status: 1,
isSystem: true,
},
{
id: 128,
companyId: null,
catId: 0,
catName: "常用风格",
name: "名侦探阿楠",
prompt: "(画风:名侦探阿楠,Detective Conan style, Case Closed style)",
promptEn: "Detective Conan style, Case Closed style",
fileUrl: "https://files.manjuwu.cn//app/FilmStyle/V1/日系风格/名侦探阿楠.webp",
status: 1,
isSystem: true,
},
{
id: 135,
companyId: null,
catId: 0,
catName: "常用风格",
name: "草帽团",
prompt: "(画风:草帽团,One Piece style, Straw Hat Pirates)",
promptEn: "One Piece style, Straw Hat Pirates",
fileUrl: "https://files.manjuwu.cn//app/FilmStyle/V1/日系风格/草帽团.webp",
status: 1,
isSystem: true,
},
{
id: 145,
companyId: null,
catId: 0,
catName: "常用风格",
name: "奇幻平涂",
prompt: "(画风:奇幻平涂,fantasy flat illustration)",
promptEn: "fantasy flat illustration",
fileUrl: "https://files.manjuwu.cn//app/FilmStyle/V1/插画风格/奇幻平涂.webp",
status: 1,
isSystem: true,
},
{
id: 161,
companyId: null,
catId: 0,
catName: "常用风格",
name: "藤本树",
prompt: "(画风:藤本树,Tatsuki Fujimoto style)",
promptEn: "Tatsuki Fujimoto style",
fileUrl: "https://files.manjuwu.cn//app/FilmStyle/V1/插画风格/藤本树.webp",
status: 1,
isSystem: true,
},
{
id: 174,
companyId: null,
catId: 0,
catName: "常用风格",
name: "空灵哥特",
prompt: "(画风:空灵哥特,ethereal gothic)",
promptEn: "ethereal gothic",
fileUrl: "https://files.manjuwu.cn//app/FilmStyle/V1/插画风格/空灵哥特.webp",
status: 1,
isSystem: true,
},
{
id: 181,
companyId: null,
catId: 0,
catName: "常用风格",
name: "美式3D",
prompt: "(画风:美式3D,American 3D animation style/ Pixar style)",
promptEn: "American 3D animation style/ Pixar style",
fileUrl: "https://files.manjuwu.cn//app/FilmStyle/V1/ip风格/美式3D.webp",
status: 1,
isSystem: true,
},
],
},
{
id: 1,
companyId: null,
name: "ip风格",
parentId: null,
status: 1,
isSystem: true,
filmStyleCount: 0,
styles: [
{
id: 7,
companyId: null,
catId: 1,
catName: "ip风格",
name: "怪诞哥特卡通",
prompt: "(画风:怪诞哥特卡通,grotesque gothic cartoon)",
promptEn: "grotesque gothic cartoon",
fileUrl: "https://files.manjuwu.cn//app/FilmStyle/V1/ip风格/怪诞哥特卡通.webp",
status: 1,
isSystem: true,
},
{
id: 17,
companyId: null,
catId: 1,
catName: "ip风格",
name: "龙族传说",
prompt: "(画风:龙族传说,dragon clan legend art)",
promptEn: "dragon clan legend art",
fileUrl: "https://files.manjuwu.cn//app/FilmStyle/V1/ip风格/龙族传说.webp",
status: 1,
isSystem: true,
},
{
id: 22,
companyId: null,
catId: 1,
catName: "ip风格",
name: "比奇堡",
prompt: "(画风:比奇堡,SpongeBob SquarePants style, Bikini Bottom)",
promptEn: "SpongeBob SquarePants style, Bikini Bottom",
fileUrl: "https://files.manjuwu.cn//app/FilmStyle/V1/ip风格/比奇堡.webp",
status: 1,
isSystem: true,
},
{
id: 38,
companyId: null,
catId: 1,
catName: "ip风格",
name: "吉卜力",
prompt: "(画风:吉卜力,Ghibli style, Studio Ghibli aesthetic)",
promptEn: "Ghibli style, Studio Ghibli aesthetic",
fileUrl: "https://files.manjuwu.cn//app/FilmStyle/V1/ip风格/吉卜力.webp",
status: 1,
isSystem: true,
},
{
id: 43,
companyId: null,
catId: 1,
catName: "ip风格",
name: "复古掌机",
prompt: "(画风:复古掌机,retro pixel art, 8-bit graphics)",
promptEn: "retro pixel art, 8-bit graphics",
fileUrl: "https://files.manjuwu.cn//app/FilmStyle/V1/ip风格/复古掌机.webp",
status: 1,
isSystem: true,
},
{
id: 55,
companyId: null,
catId: 1,
catName: "ip风格",
name: "美式喜剧",
prompt: "(画风:美式喜剧,American sitcom aesthetic)",
promptEn: "American sitcom aesthetic",
fileUrl: "https://files.manjuwu.cn//app/FilmStyle/V1/ip风格/美式喜剧.webp",
status: 1,
isSystem: true,
},
{
id: 61,
companyId: null,
catId: 1,
catName: "ip风格",
name: "三渲二",
prompt: "(画风:三渲二,cel-shaded)",
promptEn: "cel-shaded",
fileUrl: "https://files.manjuwu.cn//app/FilmStyle/V1/ip风格/三渲二.webp",
status: 1,
isSystem: true,
},
{
id: 91,
companyId: null,
catId: 1,
catName: "ip风格",
name: "史努比",
prompt: "(画风:史努比,Peanuts comic style)",
promptEn: "Peanuts comic style",
fileUrl: "https://files.manjuwu.cn//app/FilmStyle/V1/ip风格/史努比.webp",
status: 1,
isSystem: true,
},
{
id: 101,
companyId: null,
catId: 1,
catName: "ip风格",
name: "锈湖",
prompt: "(画风:锈湖,Rusty Lake game style)",
promptEn: "Rusty Lake game style",
fileUrl: "https://files.manjuwu.cn//app/FilmStyle/V1/ip风格/锈湖.webp",
status: 1,
isSystem: true,
},
{
id: 129,
companyId: null,
catId: 1,
catName: "ip风格",
name: "名侦探阿楠",
prompt: "(画风:名侦探阿楠,Detective Conan style, Case Closed style)",
promptEn: "Detective Conan style, Case Closed style",
fileUrl: "https://files.manjuwu.cn//app/FilmStyle/V1/ip风格/名侦探阿楠.webp",
status: 1,
isSystem: true,
},
{
id: 136,
companyId: null,
catId: 1,
catName: "ip风格",
name: "草帽团",
prompt: "(画风:草帽团,One Piece style, Straw Hat Pirates)",
promptEn: "One Piece style, Straw Hat Pirates",
fileUrl: "https://files.manjuwu.cn//app/FilmStyle/V1/ip风格/草帽团.webp",
status: 1,
isSystem: true,
},
{
id: 150,
companyId: null,
catId: 1,
catName: "ip风格",
name: "乐高",
prompt: "(画风:乐高,LEGO style, brick-built)",
promptEn: "LEGO style, brick-built",
fileUrl: "https://files.manjuwu.cn//app/FilmStyle/V1/ip风格/乐高.webp",
status: 1,
isSystem: true,
},
{
id: 163,
companyId: null,
catId: 1,
catName: "ip风格",
name: "动森",
prompt: "(画风:动森,Animal Crossing style)",
promptEn: "Animal Crossing style",
fileUrl: "https://files.manjuwu.cn//app/FilmStyle/V1/ip风格/动森.webp",
status: 1,
isSystem: true,
},
{
id: 183,
companyId: null,
catId: 1,
catName: "ip风格",
name: "蜡笔小新",
prompt: "(画风:蜡笔小新,Crayon Shin-chan style)",
promptEn: "Crayon Shin-chan style",
fileUrl: "https://files.manjuwu.cn//app/FilmStyle/V1/ip风格/蜡笔小新.webp",
status: 1,
isSystem: true,
},
{
id: 186,
companyId: null,
catId: 1,
catName: "ip风格",
name: "扁平图形设计",
prompt: "(画风:扁平图形设计,flat design, minimal vector art)",
promptEn: "flat design, minimal vector art",
fileUrl: "https://files.manjuwu.cn//app/FilmStyle/V1/ip风格/扁平图形设计.webp",
status: 1,
isSystem: true,
},
{
id: 187,
companyId: null,
catId: 1,
catName: "ip风格",
name: "莱卡定格动画",
prompt: "(画风:莱卡定格动画,Laika stop-motion style)",
promptEn: "Laika stop-motion style",
fileUrl: "https://files.manjuwu.cn//app/FilmStyle/V1/ip风格/莱卡定格动画.webp",
status: 1,
isSystem: true,
},
{
id: 195,
companyId: null,
catId: 1,
catName: "ip风格",
name: "日本小人",
prompt: "(画风:日本小人,chibi)",
promptEn: "chibi",
fileUrl: "https://files.manjuwu.cn//app/FilmStyle/V1/ip风格/日本小人.webp",
status: 1,
isSystem: true,
},
],
},
{
id: 2,
companyId: null,
name: "插画风格",
parentId: null,
status: 1,
isSystem: true,
filmStyleCount: 0,
styles: [
{
id: 3,
companyId: null,
catId: 2,
catName: "插画风格",
name: "生动水彩图形",
prompt: "(画风:生动水彩图形,vibrant watercolor illustration)",
promptEn: "vibrant watercolor illustration",
fileUrl: "https://files.manjuwu.cn//app/FilmStyle/V1/插画风格/生动水彩图形.webp",
status: 1,
isSystem: true,
},
{
id: 5,
companyId: null,
catId: 2,
catName: "插画风格",
name: "单色排线素描",
prompt: "(画风:单色排线素描,monochrome cross-hatching sketch)",
promptEn: "monochrome cross-hatching sketch",
fileUrl: "https://files.manjuwu.cn//app/FilmStyle/V1/插画风格/单色排线素描.webp",
status: 1,
isSystem: true,
},
{
id: 6,
companyId: null,
catId: 2,
catName: "插画风格",
name: "怪诞哥特卡通",
prompt: "(画风:怪诞哥特卡通,grotesque gothic cartoon)",
promptEn: "grotesque gothic cartoon",
fileUrl: "https://files.manjuwu.cn//app/FilmStyle/V1/插画风格/怪诞哥特卡通.webp",
status: 1,
isSystem: true,
},
{
id: 8,
companyId: null,
catId: 2,
catName: "插画风格",
name: "彩铅素描插画",
prompt: "(画风:彩铅素描插画,colored pencil sketch)",
promptEn: "colored pencil sketch",
fileUrl: "https://files.manjuwu.cn//app/FilmStyle/V1/插画风格/彩铅素描插画.webp",
status: 1,
isSystem: true,
},
{
id: 9,
companyId: null,
catId: 2,
catName: "插画风格",
name: "经典美式漫画",
prompt: "(画风:经典美式漫画,classic American comic book style)",
promptEn: "classic American comic book style",
fileUrl: "https://files.manjuwu.cn//app/FilmStyle/V1/插画风格/经典美式漫画.webp",
status: 1,
isSystem: true,
},
{
id: 10,
companyId: null,
catId: 2,
catName: "插画风格",
name: "诡萌幻想绘本",
prompt: "(画风:诡萌幻想绘本,Q Cute Mark Pen Coloring)",
promptEn: "Q Cute Mark Pen Coloring",
fileUrl: "https://files.manjuwu.cn//app/FilmStyle/V1/插画风格/诡萌幻想绘本.webp",
status: 1,
isSystem: true,
},
{
id: 11,
companyId: null,
catId: 2,
catName: "插画风格",
name: "波普印刷",
prompt: "(画风:波普印刷,pop art print)",
promptEn: "pop art print",
fileUrl: "https://files.manjuwu.cn//app/FilmStyle/V1/插画风格/波普印刷.webp",
status: 1,
isSystem: true,
},
{
id: 12,
companyId: null,
catId: 2,
catName: "插画风格",
name: "涂色颗粒怀旧",
prompt: "(画风:涂色颗粒怀旧,Legend of the Dragon Clan)",
promptEn: "Legend of the Dragon Clan",
fileUrl: "https://files.manjuwu.cn//app/FilmStyle/V1/插画风格/涂色颗粒怀旧.webp",
status: 1,
isSystem: true,
},
{
id: 13,
companyId: null,
catId: 2,
catName: "插画风格",
name: "Q萌马克笔着色",
prompt: "(画风:Q萌马克笔着色,chibi marker art)",
promptEn: "chibi marker art",
fileUrl: "https://files.manjuwu.cn//app/FilmStyle/V1/插画风格/Q萌马克笔着色.webp",
status: 1,
isSystem: true,
},
{
id: 15,
companyId: null,
catId: 2,
catName: "插画风格",
name: "蚀刻光影",
prompt: "(画风:蚀刻光影,etching with dramatic lighting)",
promptEn: "etching with dramatic lighting",
fileUrl: "https://files.manjuwu.cn//app/FilmStyle/V1/插画风格/蚀刻光影.webp",
status: 1,
isSystem: true,
},
{
id: 19,
companyId: null,
catId: 2,
catName: "插画风格",
name: "复古梦幻赛璐璐",
prompt: "(画风:复古梦幻赛璐璐,retro dreamlike cel animation)",
promptEn: "retro dreamlike cel animation",
fileUrl: "https://files.manjuwu.cn//app/FilmStyle/V1/插画风格/复古梦幻赛璐璐.webp",
status: 1,
isSystem: true,
},
{
id: 20,
companyId: null,
catId: 2,
catName: "插画风格",
name: "比奇堡",
prompt: "(画风:比奇堡,SpongeBob SquarePants style, Bikini Bottom)",
promptEn: "SpongeBob SquarePants style, Bikini Bottom",
fileUrl: "https://files.manjuwu.cn//app/FilmStyle/V1/插画风格/比奇堡.webp",
status: 1,
isSystem: true,
},
{
id: 23,
companyId: null,
catId: 2,
catName: "插画风格",
name: "彩色排线手绘",
prompt: "(画风:彩色排线手绘,colorful cross-hatching, hand-drawn)",
promptEn: "colorful cross-hatching, hand-drawn",
fileUrl: "https://files.manjuwu.cn//app/FilmStyle/V1/插画风格/彩色排线手绘.webp",
status: 1,
isSystem: true,
},
{
id: 25,
companyId: null,
catId: 2,
catName: "插画风格",
name: "复古线条都市",
prompt: "(画风:复古线条都市,retro line art urban)",
promptEn: "retro line art urban",
fileUrl: "https://files.manjuwu.cn//app/FilmStyle/V1/插画风格/复古线条都市.webp",
status: 1,
isSystem: true,
},
{
id: 27,
companyId: null,
catId: 2,
catName: "插画风格",
name: "浮世绘超现实",
prompt: "(画风:浮世绘超现实,surreal ukiyo-e)",
promptEn: "surreal ukiyo-e",
fileUrl: "https://files.manjuwu.cn//app/FilmStyle/V1/插画风格/浮世绘超现实.webp",
status: 1,
isSystem: true,
},
{
id: 28,
companyId: null,
catId: 2,
catName: "插画风格",
name: "冷静感线条",
prompt: "(画风:冷静感线条,clean calm line art)",
promptEn: "clean calm line art",
fileUrl: "https://files.manjuwu.cn//app/FilmStyle/V1/插画风格/冷静感线条.webp",
status: 1,
isSystem: true,
},
{
id: 30,
companyId: null,
catId: 2,
catName: "插画风格",
name: "复杂线条都市漫",
prompt: "(画风:复杂线条都市漫,intricate line art urban comic)",
promptEn: "intricate line art urban comic",
fileUrl: "https://files.manjuwu.cn//app/FilmStyle/V1/插画风格/复杂线条都市漫.webp",
status: 1,
isSystem: true,
},
{
id: 31,
companyId: null,
catId: 2,
catName: "插画风格",
name: "通透光泽马卡龙",
prompt: "(画风:通透光泽马卡龙,glossy translucent macaron colors)",
promptEn: "glossy translucent macaron colors",
fileUrl: "https://files.manjuwu.cn//app/FilmStyle/V1/插画风格/通透光泽马卡龙.webp",
status: 1,
isSystem: true,
},
{
id: 33,
companyId: null,
catId: 2,
catName: "插画风格",
name: "魅惑哥特霓虹",
prompt: "(画风:魅惑哥特霓虹,alluring gothic neon)",
promptEn: "alluring gothic neon",
fileUrl: "https://files.manjuwu.cn//app/FilmStyle/V1/插画风格/魅惑哥特霓虹.webp",
status: 1,
isSystem: true,
},
{
id: 34,
companyId: null,
catId: 2,
catName: "插画风格",
name: "表现主义儿童",
prompt: "(画风:表现主义儿童,expressionist child art)",
promptEn: "expressionist child art",
fileUrl: "https://files.manjuwu.cn//app/FilmStyle/V1/插画风格/表现主义儿童.webp",
status: 1,
isSystem: true,
},
{
id: 35,
companyId: null,
catId: 2,
catName: "插画风格",
name: "粘土玩具",
prompt: "(画风:粘土玩具,clay toy, claymation style)",
promptEn: "clay toy, claymation style",
fileUrl: "https://files.manjuwu.cn//app/FilmStyle/V1/插画风格/粘土玩具.webp",
status: 1,
isSystem: true,
},
{
id: 37,
companyId: null,
catId: 2,
catName: "插画风格",
name: "吉卜力",
prompt: "(画风:吉卜力,Ghibli style, Studio Ghibli aesthetic)",
promptEn: "Ghibli style, Studio Ghibli aesthetic",
fileUrl: "https://files.manjuwu.cn//app/FilmStyle/V1/插画风格/吉卜力.webp",
status: 1,
isSystem: true,
},
{
id: 39,
companyId: null,
catId: 2,
catName: "插画风格",
name: "童趣蜡笔插画",
prompt: "(画风:童趣蜡笔插画,childlike crayon illustration)",
promptEn: "childlike crayon illustration",
fileUrl: "https://files.manjuwu.cn//app/FilmStyle/V1/插画风格/童趣蜡笔插画.webp",
status: 1,
isSystem: true,
},
{
id: 41,
companyId: null,
catId: 2,
catName: "插画风格",
name: "怀旧胶片线条",
prompt: "(画风:怀旧胶片线条,nostalgic film grain line art)",
promptEn: "nostalgic film grain line art",
fileUrl: "https://files.manjuwu.cn//app/FilmStyle/V1/插画风格/怀旧胶片线条.webp",
status: 1,
isSystem: true,
},
{
id: 42,
companyId: null,
catId: 2,
catName: "插画风格",
name: "唯美清新通透",
prompt: "(画风:唯美清新通透,aesthetic fresh translucent)",
promptEn: "aesthetic fresh translucent",
fileUrl: "https://files.manjuwu.cn//app/FilmStyle/V1/插画风格/唯美清新通透.webp",
status: 1,
isSystem: true,
},
{
id: 44,
companyId: null,
catId: 2,
catName: "插画风格",
name: "哥特都市涂鸦",
prompt: "(画风:哥特都市涂鸦,gothic urban graffiti)",
promptEn: "gothic urban graffiti",
fileUrl: "https://files.manjuwu.cn//app/FilmStyle/V1/插画风格/哥特都市涂鸦.webp",
status: 1,
isSystem: true,
},
{
id: 45,
companyId: null,
catId: 2,
catName: "插画风格",
name: "高能动感卡通",
prompt: "(画风:高能动感卡通,high-energy dynamic cartoon)",
promptEn: "high-energy dynamic cartoon",
fileUrl: "https://files.manjuwu.cn//app/FilmStyle/V1/插画风格/高能动感卡通.webp",
status: 1,
isSystem: true,
},
{
id: 47,
companyId: null,
catId: 2,
catName: "插画风格",
name: "梦幻线条怪诞",
prompt: "(画风:梦幻线条怪诞,dreamlike grotesque line art)",
promptEn: "dreamlike grotesque line art",
fileUrl: "https://files.manjuwu.cn//app/FilmStyle/V1/插画风格/梦幻线条怪诞.webp",
status: 1,
isSystem: true,
},
{
id: 49,
companyId: null,
catId: 2,
catName: "插画风格",
name: "轻复古水彩",
prompt: "(画风:轻复古水彩,Prism malfunction art)",
promptEn: "Prism malfunction art",
fileUrl: "https://files.manjuwu.cn//app/FilmStyle/V1/插画风格/轻复古水彩.webp",
status: 1,
isSystem: true,
},
{
id: 50,
companyId: null,
catId: 2,
catName: "插画风格",
name: "美式肌肉讽刺",
prompt: "(画风:美式肌肉讽刺,American muscle satire)",
promptEn: "American muscle satire",
fileUrl: "https://files.manjuwu.cn//app/FilmStyle/V1/插画风格/美式肌肉讽刺.webp",
status: 1,
isSystem: true,
},
{
id: 51,
companyId: null,
catId: 2,
catName: "插画风格",
name: "潮流都市",
prompt: "(画风:潮流都市,urban streetwear aesthetic)",
promptEn: "urban streetwear aesthetic",
fileUrl: "https://files.manjuwu.cn//app/FilmStyle/V1/插画风格/潮流都市.webp",
status: 1,
isSystem: true,
},
{
id: 52,
companyId: null,
catId: 2,
catName: "插画风格",
name: "奶油色绘本",
prompt: "(画风:奶油色绘本,cream-colored picture book)",
promptEn: "cream-colored picture book",
fileUrl: "https://files.manjuwu.cn//app/FilmStyle/V1/插画风格/奶油色绘本.webp",
status: 1,
isSystem: true,
},
{
id: 53,
companyId: null,
catId: 2,
catName: "插画风格",
name: "棱镜故障艺术",
prompt: "(画风:棱镜故障艺术,prism glitch art)",
promptEn: "prism glitch art",
fileUrl: "https://files.manjuwu.cn//app/FilmStyle/V1/插画风格/棱镜故障艺术.webp",
status: 1,
isSystem: true,
},
{
id: 56,
companyId: null,
catId: 2,
catName: "插画风格",
name: "朦胧暖色速写",
prompt: "(画风:朦胧暖色速写,hazy warm-toned sketch)",
promptEn: "hazy warm-toned sketch",
fileUrl: "https://files.manjuwu.cn//app/FilmStyle/V1/插画风格/朦胧暖色速写.webp",
status: 1,
isSystem: true,
},
{
id: 58,
companyId: null,
catId: 2,
catName: "插画风格",
name: "怀旧电影感氛围",
prompt: "(画风:怀旧电影感氛围,nostalgic cinematic atmosphere)",
promptEn: "nostalgic cinematic atmosphere",
fileUrl: "https://files.manjuwu.cn//app/FilmStyle/V1/插画风格/怀旧电影感氛围.webp",
status: 1,
isSystem: true,
},
{
id: 59,
companyId: null,
catId: 2,
catName: "插画风格",
name: "欧漫概念艺术",
prompt: "(画风:欧漫概念艺术,European comic concept art)",
promptEn: "European comic concept art",
fileUrl: "https://files.manjuwu.cn//app/FilmStyle/V1/插画风格/欧漫概念艺术.webp",
status: 1,
isSystem: true,
},
{
id: 62,
companyId: null,
catId: 2,
catName: "插画风格",
name: "抒情柔光线条",
prompt: "(画风:抒情柔光线条,lyrical soft-glow line art)",
promptEn: "lyrical soft-glow line art",
fileUrl: "https://files.manjuwu.cn//app/FilmStyle/V1/插画风格/抒情柔光线条.webp",
status: 1,
isSystem: true,
},
{
id: 63,
companyId: null,
catId: 2,
catName: "插画风格",
name: "怪萌墨线",
prompt: "(画风:怪萌墨线,weird-cute ink lines)",
promptEn: "weird-cute ink lines",
fileUrl: "https://files.manjuwu.cn//app/FilmStyle/V1/插画风格/怪萌墨线.webp",
status: 1,
isSystem: true,
},
{
id: 64,
companyId: null,
catId: 2,
catName: "插画风格",
name: "硬边萌系赛璐璐",
prompt: "(画风:硬边萌系赛璐璐,hard-edged cute cel animation)",
promptEn: "hard-edged cute cel animation",
fileUrl: "https://files.manjuwu.cn//app/FilmStyle/V1/插画风格/硬边萌系赛璐璐.webp",
status: 1,
isSystem: true,
},
{
id: 66,
companyId: null,
catId: 2,
catName: "插画风格",
name: "柔光浪漫水彩",
prompt: "(画风:柔光浪漫水彩,soft romantic watercolor)",
promptEn: "soft romantic watercolor",
fileUrl: "https://files.manjuwu.cn//app/FilmStyle/V1/插画风格/柔光浪漫水彩.webp",
status: 1,
isSystem: true,
},
{
id: 69,
companyId: null,
catId: 2,
catName: "插画风格",
name: "油画釉光",
prompt: "(画风:油画釉光,oil painting with glaze finish)",
promptEn: "oil painting with glaze finish",
fileUrl: "https://files.manjuwu.cn//app/FilmStyle/V1/插画风格/油画釉光.webp",
status: 1,
isSystem: true,
},
{
id: 70,
companyId: null,
catId: 2,
catName: "插画风格",
name: "粗犷墨线",
prompt: "(画风:粗犷墨线,rough ink lines)",
promptEn: "rough ink lines",
fileUrl: "https://files.manjuwu.cn//app/FilmStyle/V1/插画风格/粗犷墨线.webp",
status: 1,
isSystem: true,
},
{
id: 71,
companyId: null,
catId: 2,
catName: "插画风格",
name: "五零年代",
prompt: "(画风:五零年代,1950s style)",
promptEn: "1950s style",
fileUrl: "https://files.manjuwu.cn//app/FilmStyle/V1/插画风格/五零年代.webp",
status: 1,
isSystem: true,
},
{
id: 72,
companyId: null,
catId: 2,
catName: "插画风格",
name: "古典戏剧情绪",
prompt: "(画风:古典戏剧情绪,classical dramatic mood)",
promptEn: "classical dramatic mood",
fileUrl: "https://files.manjuwu.cn//app/FilmStyle/V1/插画风格/古典戏剧情绪.webp",
status: 1,
isSystem: true,
},
{
id: 73,
companyId: null,
catId: 2,
catName: "插画风格",
name: "治愈童趣颗粒",
prompt: "(画风:治愈童趣颗粒,healing childish grain texture)",
promptEn: "healing childish grain texture",
fileUrl: "https://files.manjuwu.cn//app/FilmStyle/V1/插画风格/治愈童趣颗粒.webp",
status: 1,
isSystem: true,
},
{
id: 74,
companyId: null,
catId: 2,
catName: "插画风格",
name: "墨线卡通",
prompt: "(画风:墨线卡通,ink line cartoon)",
promptEn: "ink line cartoon",
fileUrl: "https://files.manjuwu.cn//app/FilmStyle/V1/插画风格/墨线卡通.webp",
status: 1,
isSystem: true,
},
{
id: 76,
companyId: null,
catId: 2,
catName: "插画风格",
name: "温馨彩绘",
prompt: "(画风:温馨彩绘,cozy painted illustration)",
promptEn: "cozy painted illustration",
fileUrl: "https://files.manjuwu.cn//app/FilmStyle/V1/插画风格/温馨彩绘.webp",
status: 1,
isSystem: true,
},
{
id: 81,
companyId: null,
catId: 2,
catName: "插画风格",
name: "美式粗线漫画",
prompt: "(画风:美式粗线漫画,American bold line comic)",
promptEn: "American bold line comic",
fileUrl: "https://files.manjuwu.cn//app/FilmStyle/V1/插画风格/美式粗线漫画.webp",
status: 1,
isSystem: true,
},
{
id: 83,
companyId: null,
catId: 2,