File size: 22,960 Bytes
244baf9 | 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 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 | {
"prompt_terms": [
{
"term": "masterpiece",
"type": "通用",
"chinese": "杰作级别"
},
{
"term": "fox tail",
"type": "专用",
"subtype": "装饰 Accessory",
"chinese": "狐狸尾巴"
},
{
"term": "crystal tiara",
"type": "专用",
"subtype": "装饰 Accessory",
"chinese": "水晶王冠"
},
{
"term": "feather hairpin",
"type": "专用",
"subtype": "装饰 Accessory",
"chinese": "羽毛发夹"
},
{
"term": "butterfly wings",
"type": "专用",
"subtype": "装饰 Accessory",
"chinese": "蝴蝶翅膀"
},
{
"term": "star-shaped earrings",
"type": "专用",
"subtype": "装饰 Accessory",
"chinese": "星星耳饰"
},
{
"term": "ribbon choker",
"type": "专用",
"subtype": "装饰 Accessory",
"chinese": "缎带项圈"
},
{
"term": "flower crown",
"type": "专用",
"subtype": "装饰 Accessory",
"chinese": "花环"
},
{
"term": "glowing bracelets",
"type": "专用",
"subtype": "装饰 Accessory",
"chinese": "发光手镯"
},
{
"term": "goggles on head",
"type": "专用",
"subtype": "装饰 Accessory",
"chinese": "头戴护目镜"
},
{
"term": "steampunk attire",
"type": "专用",
"subtype": "衣服 Clothing",
"chinese": "蒸汽朋克服饰"
},
{
"term": "elven robe",
"type": "专用",
"subtype": "衣服 Clothing",
"chinese": "精灵长袍"
},
{
"term": "celestial dress",
"type": "专用",
"subtype": "衣服 Clothing",
"chinese": "星空连衣裙"
},
{
"term": "samurai armor",
"type": "专用",
"subtype": "衣服 Clothing",
"chinese": "武士铠甲"
},
{
"term": "futuristic bodysuit",
"type": "专用",
"subtype": "衣服 Clothing",
"chinese": "未来紧身服"
},
{
"term": "historical royal gown",
"type": "专用",
"subtype": "衣服 Clothing",
"chinese": "历史宫廷礼服"
},
{
"term": "vintage detective coat",
"type": "专用",
"subtype": "衣服 Clothing",
"chinese": "复古侦探大衣"
},
{
"term": "wizard cloak",
"type": "专用",
"subtype": "衣服 Clothing",
"chinese": "巫师斗篷"
},
{
"term": "fairy tale costume",
"type": "专用",
"subtype": "衣服 Clothing",
"chinese": "童话服装"
},
{
"term": "tilting head",
"type": "专用",
"subtype": "动作 Action",
"chinese": "歪头"
},
{
"term": "smiling gently",
"type": "专用",
"subtype": "动作 Action",
"chinese": "温柔微笑"
},
{
"term": "eyes closed",
"type": "专用",
"subtype": "动作 Action",
"chinese": "闭眼"
},
{
"term": "looking up",
"type": "专用",
"subtype": "动作 Action",
"chinese": "仰望"
},
{
"term": "looking down",
"type": "专用",
"subtype": "动作 Action",
"chinese": "俯视"
},
{
"term": "blushing",
"type": "专用",
"subtype": "动作 Action",
"chinese": "脸红"
},
{
"term": "resting chin on something",
"type": "专用",
"subtype": "动作 Action",
"chinese": "下巴倚靠"
},
{
"term": "hair flowing in wind",
"type": "专用",
"subtype": "动作 Action",
"chinese": "秀发随风飘扬"
},
{
"term": "leaning back",
"type": "专用",
"subtype": "动作 Action",
"chinese": "后仰"
},
{
"term": "shoulders slightly raised",
"type": "专用",
"subtype": "动作 Action",
"chinese": "微耸双肩"
},
{
"term": "playing an instrument",
"type": "专用",
"subtype": "动作 Action",
"chinese": "演奏乐器"
},
{
"term": "exploring surroundings",
"type": "专用",
"subtype": "动作 Action",
"chinese": "探索四周"
},
{
"term": "enchanted forest",
"type": "专用",
"subtype": "场景 Scene",
"chinese": "魔法森林"
},
{
"term": "crystal cave",
"type": "专用",
"subtype": "场景 Scene",
"chinese": "水晶洞穴"
},
{
"term": "ancient ruins",
"type": "专用",
"subtype": "场景 Scene",
"chinese": "远古遗迹"
},
{
"term": "starlit meadow",
"type": "专用",
"subtype": "场景 Scene",
"chinese": "星光草原"
},
{
"term": "underwater",
"type": "专用",
"subtype": "场景 Scene",
"chinese": "水下"
},
{
"term": "autumn grove",
"type": "专用",
"subtype": "场景 Scene",
"chinese": "秋日林地"
},
{
"term": "best quality",
"type": "通用",
"chinese": "最佳质量"
},
{
"term": "game cg",
"type": "通用",
"subtype": "风格 Style",
"chinese": "游戏CG风格"
},
{
"term": "1boy",
"type": "专用",
"subtype": "主题 Subject",
"chinese": "一个男孩"
},
{
"term": "looking at viewer",
"type": "专用",
"subtype": "动作 Action",
"chinese": "看向观众"
},
{
"term": "ligne claire",
"type": "通用",
"subtype": "风格 Style",
"chinese": "清晰线条风格"
},
{
"term": "grey hair",
"type": "专用",
"subtype": "头发 Hair",
"chinese": "灰色头发"
},
{
"term": "green eyes",
"type": "专用",
"subtype": "眼睛 Eyes",
"chinese": "绿色眼睛"
},
{
"term": "animal ears",
"type": "专用",
"subtype": "装饰 Accessory",
"chinese": "动物耳朵"
},
{
"term": "cat ears",
"type": "专用",
"subtype": "装饰 Accessory",
"chinese": "猫耳"
},
{
"term": "swashbuckler costume",
"type": "专用",
"subtype": "衣服 Clothing",
"chinese": "侠客服装"
},
{
"term": "night sky",
"type": "专用",
"subtype": "场景 Scene",
"chinese": "夜空"
},
{
"term": "1girl",
"type": "专用",
"subtype": "主题 Subject",
"chinese": "一个女孩"
},
{
"term": "fantasy style",
"type": "专用",
"subtype": "风格 Style",
"chinese": "奇幻风格"
},
{
"term": "official art",
"type": "专用",
"subtype": "风格 Style",
"chinese": "官方美术风格"
},
{
"term": "baroque elegance",
"type": "专用",
"subtype": "风格 Style",
"chinese": "巴洛克优雅风格"
},
{
"term": "neo-noir lighting",
"type": "专用",
"subtype": "风格 Style",
"chinese": "新黑色电影风格"
},
{
"term": "surreal dreamscape",
"type": "专用",
"subtype": "风格 Style",
"chinese": "超现实梦境风格"
},
{
"term": "gothic romance",
"type": "专用",
"subtype": "风格 Style",
"chinese": "哥特浪漫风格"
},
{
"term": "celestial fantasy",
"type": "专用",
"subtype": "风格 Style",
"chinese": "天体奇幻风格"
},
{
"term": "bioluminescent night",
"type": "专用",
"subtype": "风格 Style",
"chinese": "生物发光夜景风格"
},
{
"term": "arcane vintage",
"type": "专用",
"subtype": "风格 Style",
"chinese": "神秘复古风格"
},
{
"term": "storybook illustration",
"type": "专用",
"subtype": "风格 Style",
"chinese": "童话书插画风格"
},
{
"term": "ethereal watercolor",
"type": "专用",
"subtype": "风格 Style",
"chinese": "空灵水彩画风"
},
{
"term": "futuristic abstraction",
"type": "专用",
"subtype": "风格 Style",
"chinese": "未来抽象风格"
},
{
"term": "4k textures",
"type": "通用",
"subtype": "quality",
"chinese": "4K纹理"
},
{
"term": "black hair",
"type": "专用",
"subtype": "头发 Hair",
"chinese": "黑发"
},
{
"term": "detailed feathers",
"type": "专用",
"subtype": "装饰 Accessory",
"chinese": "精细羽毛"
},
{
"term": "aggressive pose",
"type": "专用",
"subtype": "动作 Action",
"chinese": "攻击性姿势"
},
{
"term": "midflight",
"type": "专用",
"subtype": "动作 Action",
"chinese": "飞行中"
},
{
"term": "glowing effects",
"type": "专用",
"subtype": "场景 Scene",
"chinese": "发光特效"
},
{
"term": "dark background",
"type": "专用",
"subtype": "场景 Scene",
"chinese": "暗色背景"
},
{
"term": "fire",
"type": "专用",
"subtype": "场景 Scene",
"chinese": "火焰"
},
{
"term": "dramatic lighting",
"type": "通用",
"subtype": "lighting",
"chinese": "戏剧性打光"
},
{
"term": "sharp focus",
"type": "通用",
"subtype": "quality",
"chinese": "锐利焦点"
},
{
"term": "epic scenery",
"type": "专用",
"subtype": "场景 Scene",
"chinese": "史诗级场景"
},
{
"term": "hdr",
"type": "通用",
"subtype": "quality",
"chinese": "高动态范围"
},
{
"term": "movie still",
"type": "通用",
"subtype": "风格 Style",
"chinese": "电影剧照风格"
},
{
"term": "depth of field",
"type": "通用",
"subtype": "photography",
"chinese": "景深效果"
},
{
"term": "anime coloring",
"type": "通用",
"subtype": "风格 Style",
"chinese": "动漫上色风格"
},
{
"term": "blonde hair",
"type": "专用",
"subtype": "头发 Hair",
"chinese": "金发"
},
{
"term": "yellow eyes",
"type": "专用",
"subtype": "眼睛 Eyes",
"chinese": "黄瞳"
},
{
"term": "multicolored hair",
"type": "专用",
"subtype": "头发 Hair",
"chinese": "多色头发"
},
{
"term": "two-tone hair",
"type": "专用",
"subtype": "头发 Hair",
"chinese": "双色渐变发"
},
{
"term": "jewelry",
"type": "专用",
"subtype": "装饰 Accessory",
"chinese": "珠宝饰品"
},
{
"term": "butler costume",
"type": "专用",
"subtype": "衣服 Clothing",
"chinese": "管家服饰"
},
{
"term": "world war 1",
"type": "专用",
"subtype": "场景 Scene",
"chinese": "一战背景"
},
{
"term": "High resolution",
"type": "通用",
"subtype": "quality",
"chinese": "高清分辨率"
},
{
"term": "photorealistic",
"type": "通用",
"subtype": "风格 Style",
"chinese": "照片级写实"
},
{
"term": "4k",
"type": "通用",
"subtype": "quality",
"chinese": "4K超清"
},
{
"term": "Masterpiece",
"type": "通用",
"chinese": "大师级作品"
},
{
"term": "extremely detailed",
"type": "通用",
"subtype": "quality",
"chinese": "极致细节"
},
{
"term": "professional photography",
"type": "通用",
"subtype": "风格 Style",
"chinese": "专业摄影质感"
},
{
"term": "sharp detail",
"type": "通用",
"subtype": "quality",
"chinese": "锐利细节"
},
{
"term": "grey eyes",
"type": "专用",
"subtype": "眼睛 Eyes",
"chinese": "灰眸"
},
{
"term": "earrings",
"type": "专用",
"subtype": "装饰 Accessory",
"chinese": "耳环饰品"
},
{
"term": "cloche hat",
"type": "专用",
"subtype": "装饰 Accessory",
"chinese": "钟形女帽"
},
{
"term": "steampunk",
"type": "专用",
"subtype": "风格 Style",
"chinese": "蒸汽朋克主题"
},
{
"term": "intricate details",
"type": "通用",
"subtype": "quality",
"chinese": "复杂细节"
},
{
"term": "unity 8k wallpaper",
"type": "通用",
"subtype": "风格 Style",
"chinese": "Unity引擎8K壁纸风格"
},
{
"term": "ultra detailed",
"type": "通用",
"subtype": "quality",
"chinese": "超精细细节"
},
{
"term": "beautiful and aesthetic",
"type": "通用",
"subtype": "风格 Style",
"chinese": "唯美艺术风格"
},
{
"term": "perfect lighting",
"type": "通用",
"subtype": "photography",
"chinese": "完美布光"
},
{
"term": "gradient coloured hair",
"type": "专用",
"subtype": "头发 Hair",
"chinese": "渐变色发型"
},
{
"term": "sfw",
"type": "通用",
"subtype": "safety",
"chinese": "安全内容过滤"
},
{
"term": "expressionless",
"type": "专用",
"subtype": "动作 Action",
"chinese": "无表情状态"
},
{
"term": "formal",
"type": "专用",
"subtype": "衣服 Clothing",
"chinese": "正式着装"
},
{
"term": "necktie",
"type": "专用",
"subtype": "装饰 Accessory",
"chinese": "领带"
},
{
"term": "dress shirt",
"type": "专用",
"subtype": "衣服 Clothing",
"chinese": "衬衫"
},
{
"term": "ray tracing",
"type": "通用",
"subtype": "photography",
"chinese": "光线追踪技术"
},
{
"term": "Heavenly Cathedral",
"type": "专用",
"subtype": "场景 Scene",
"chinese": "天界大教堂场景"
},
{
"term": "monk",
"type": "专用",
"subtype": "衣服 Clothing",
"chinese": "僧侣服饰"
},
{
"term": "diablo style",
"type": "专用",
"subtype": "风格 Style",
"chinese": "暗黑破坏神风格"
},
{
"term": "ultra realistic 8k",
"type": "通用",
"subtype": "quality",
"chinese": "8K超现实精度"
},
{
"term": "cinematic lighting",
"type": "通用",
"subtype": "photography",
"chinese": "电影级布光"
},
{
"term": "hyperdetailed",
"type": "通用",
"subtype": "quality",
"chinese": "超解析细节"
},
{
"term": "neutral colors",
"type": "通用",
"subtype": "color",
"chinese": "中性色调"
},
{
"term": "muted colors",
"type": "通用",
"subtype": "color",
"chinese": "低饱和配色"
},
{
"term": "fine texture",
"type": "通用",
"subtype": "quality",
"chinese": "精细材质纹理"
},
{
"term": "highly detailed",
"type": "通用",
"chinese": "高度细节"
},
{
"term": "absurdres",
"type": "通用",
"chinese": "超高分辨率"
},
{
"term": "low light",
"type": "通用",
"chinese": "低光环境"
},
{
"term": "partially illuminated",
"type": "通用",
"chinese": "局部照明"
},
{
"term": "bokeh",
"type": "通用",
"chinese": "散景效果"
},
{
"term": "cinematic environment",
"type": "通用",
"chinese": "电影级环境"
},
{
"term": "volumetric lighting",
"type": "通用",
"chinese": "体积光照"
},
{
"term": "hazy background",
"type": "通用",
"chinese": "朦胧背景"
},
{
"term": "high detail",
"type": "通用",
"chinese": "高细节度"
},
{
"term": "immersive atmosphere",
"type": "通用",
"chinese": "沉浸式氛围"
},
{
"term": "intricate texture",
"type": "通用",
"chinese": "复杂纹理"
},
{
"term": "blue eyeshadow",
"type": "专用",
"subtype": "眼睛 Eyes",
"chinese": "蓝色眼影"
},
{
"term": "black coat",
"type": "专用",
"subtype": "衣服 Clothing",
"chinese": "黑色外套"
},
{
"term": "windblown hair",
"type": "专用",
"subtype": "头发 Hair",
"chinese": "风扬发型"
},
{
"term": "white hair",
"type": "专用",
"subtype": "头发 Hair",
"chinese": "白色头发"
},
{
"term": "glowing hair",
"type": "专用",
"subtype": "头发 Hair",
"chinese": "发光发丝"
},
{
"term": "iridescent hair",
"type": "专用",
"subtype": "头发 Hair",
"chinese": "虹彩发色"
},
{
"term": "gradient hair",
"type": "专用",
"subtype": "头发 Hair",
"chinese": "渐变发色"
},
{
"term": "glowing yellow eye",
"type": "专用",
"subtype": "眼睛 Eyes",
"chinese": "发光黄瞳"
},
{
"term": "fiberoptic hair",
"type": "专用",
"subtype": "头发 Hair",
"chinese": "光纤头发"
},
{
"term": "flaming hair",
"type": "专用",
"subtype": "头发 Hair",
"chinese": "火焰发型"
},
{
"term": "perfect details",
"type": "通用",
"chinese": "完美细节"
},
{
"term": "illustration",
"type": "通用",
"chinese": "插画风格"
},
{
"term": "glasses",
"type": "专用",
"subtype": "装饰 Accessory",
"chinese": "眼镜"
},
{
"term": "shirt",
"type": "专用",
"subtype": "衣服 Clothing",
"chinese": "衬衫"
},
{
"term": "hood",
"type": "专用",
"subtype": "衣服 Clothing",
"chinese": "兜帽"
},
{
"term": "jacket",
"type": "专用",
"subtype": "衣服 Clothing",
"chinese": "夹克"
},
{
"term": "red shirt",
"type": "专用",
"subtype": "衣服 Clothing",
"chinese": "红色衬衫"
},
{
"term": "cloud",
"type": "专用",
"subtype": "场景 Scene",
"chinese": "云朵"
},
{
"term": "black-framed eyewear",
"type": "专用",
"subtype": "装饰 Accessory",
"chinese": "黑框眼镜"
},
{
"term": "long sleeves",
"type": "专用",
"subtype": "衣服 Clothing",
"chinese": "长袖"
},
{
"term": "sky",
"type": "专用",
"subtype": "场景 Scene",
"chinese": "天空"
},
{
"term": "hair between eyes",
"type": "专用",
"subtype": "头发 Hair",
"chinese": "遮眼发型"
},
{
"term": "closed mouth",
"type": "专用",
"subtype": "动作 Action",
"chinese": "闭口"
},
{
"term": "outdoors",
"type": "专用",
"subtype": "场景 Scene",
"chinese": "户外"
},
{
"term": "black jacket",
"type": "专用",
"subtype": "衣服 Clothing",
"chinese": "黑色夹克"
},
{
"term": "short hair",
"type": "专用",
"subtype": "头发 Hair",
"chinese": "短发"
},
{
"term": "hood down",
"type": "专用",
"subtype": "衣服 Clothing",
"chinese": "放下兜帽"
},
{
"term": "sunset",
"type": "专用",
"subtype": "场景 Scene",
"chinese": "日落"
},
{
"term": "hooded jacket",
"type": "专用",
"subtype": "衣服 Clothing",
"chinese": "连帽夹克"
},
{
"term": "hoodie",
"type": "专用",
"subtype": "衣服 Clothing",
"chinese": "连帽衫"
},
{
"term": "sleeves past wrists",
"type": "专用",
"subtype": "衣服 Clothing",
"chinese": "过腕长袖"
},
{
"term": "open jacket",
"type": "专用",
"subtype": "衣服 Clothing",
"chinese": "敞开夹克"
},
{
"term": "dynamic angle",
"type": "通用",
"chinese": "动态视角"
},
{
"term": "ultra-detailed",
"type": "通用",
"chinese": "超精细细节"
},
{
"term": "fantasy",
"type": "专用",
"subtype": "风格 Style",
"chinese": "奇幻主题"
},
{
"term": "beautiful and detailed eyes",
"type": "专用",
"subtype": "眼睛 Eyes",
"chinese": "精美细致眼瞳"
},
{
"term": "long straight hair",
"type": "专用",
"subtype": "头发 Hair",
"chinese": "直长发"
},
{
"term": "hair flower",
"type": "专用",
"subtype": "装饰 Accessory",
"chinese": "发间花朵饰品"
},
{
"term": "japanese long kimono with flowers",
"type": "专用",
"subtype": "衣服 Clothing",
"chinese": "花卉日式长振袖"
},
{
"term": "detached sleeves",
"type": "专用",
"subtype": "衣服 Clothing",
"chinese": "离脱式袖套"
},
{
"term": "wide sleeves",
"type": "专用",
"subtype": "衣服 Clothing",
"chinese": "广口衣袖"
},
{
"term": "stockings",
"type": "专用",
"subtype": "衣服 Clothing",
"chinese": "长筒袜"
},
{
"term": "detail fingers",
"type": "通用",
"chinese": "精细手指描绘"
},
{
"term": "magic dark forest background",
"type": "专用",
"subtype": "场景 Scene",
"chinese": "魔法暗黑森林背景"
},
{
"term": "anime",
"type": "通用",
"chinese": "动漫风格"
},
{
"term": "2d",
"type": "通用",
"chinese": "二维平面"
},
{
"term": "ghibli style",
"type": "通用",
"chinese": "吉卜力画风"
},
{
"term": "white fox tail",
"type": "专用",
"subtype": "装饰 Accessory",
"chinese": "白狐尾巴"
},
{
"term": "black pantyhose",
"type": "专用",
"subtype": "衣服 Clothing",
"chinese": "黑色连裤袜"
},
{
"term": "blue eyes",
"type": "专用",
"subtype": "眼睛 Eyes",
"chinese": "蓝色眼睛"
}
]
} |