Commit
·
b4aa09f
1
Parent(s):
deaf375
Upload 5 files
Browse files
datasets/Fazzie/Teyvat/README.md
ADDED
@@ -0,0 +1,52 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
---
|
2 |
+
annotations_creators:
|
3 |
+
- no-annotation
|
4 |
+
language_creators:
|
5 |
+
- found
|
6 |
+
language:
|
7 |
+
- en
|
8 |
+
license:
|
9 |
+
- unknown
|
10 |
+
source_datasets:
|
11 |
+
- original
|
12 |
+
task_categories:
|
13 |
+
- text-to-image
|
14 |
+
dataset_info:
|
15 |
+
features:
|
16 |
+
- name: image
|
17 |
+
dtype: image
|
18 |
+
- name: text
|
19 |
+
dtype: string
|
20 |
+
splits:
|
21 |
+
- name: train
|
22 |
+
num_bytes: 71202
|
23 |
+
num_examples: 234
|
24 |
+
download_size: 466995417
|
25 |
+
dataset_size: 71202
|
26 |
+
---
|
27 |
+
|
28 |
+
# Dataset Card for Teyvat BLIP captions
|
29 |
+
Dataset used to train [Teyvat characters text to image model](https://github.com/hpcaitech/ColossalAI/tree/main/examples/images/diffusion).
|
30 |
+
|
31 |
+
BLIP generated captions for characters images from [genshin-impact fandom wiki](https://genshin-impact.fandom.com/wiki/Character#Playable_Characters)and [biligame wiki for genshin impact](https://wiki.biligame.com/ys/%E8%A7%92%E8%89%B2).
|
32 |
+
|
33 |
+
For each row the dataset contains `image` and `text` keys. `image` is a varying size PIL png, and `text` is the accompanying text caption. Only a train split is provided.
|
34 |
+
|
35 |
+
The `text` include the tag `Teyvat`, `Name`,`Element`, `Weapon`, `Region`, `Model type`, and `Description`, the `Description` is captioned with the [pre-trained BLIP model](https://github.com/salesforce/BLIP).
|
36 |
+
## Examples
|
37 |
+
|
38 |
+
<img src = "https://huggingface.co/datasets/Fazzie/Teyvat/resolve/main/data/Ganyu_001.png" title = "Ganyu_001.png" style="max-width: 20%;" >
|
39 |
+
|
40 |
+
> Teyvat, Name:Ganyu, Element:Cryo, Weapon:Bow, Region:Liyue, Model type:Medium Female, Description:an anime character with blue hair and blue eyes
|
41 |
+
|
42 |
+
<img src = "https://huggingface.co/datasets/Fazzie/Teyvat/resolve/main/data/Ganyu_002.png" title = "Ganyu_002.png" style="max-width: 20%;" >
|
43 |
+
|
44 |
+
> Teyvat, Name:Ganyu, Element:Cryo, Weapon:Bow, Region:Liyue, Model type:Medium Female, Description:an anime character with blue hair and blue eyes
|
45 |
+
|
46 |
+
<img src = "https://huggingface.co/datasets/Fazzie/Teyvat/resolve/main/data/Keqing_003.png" title = "Keqing_003.png" style="max-width: 20%;" >
|
47 |
+
|
48 |
+
> Teyvat, Name:Keqing, Element:Electro, Weapon:Sword, Region:Liyue, Model type:Medium Female, Description:a anime girl with long white hair and blue eyes
|
49 |
+
|
50 |
+
<img src = "https://huggingface.co/datasets/Fazzie/Teyvat/resolve/main/data/Keqing_004.png" title = "Keqing_004.png" style="max-width: 20%;" >
|
51 |
+
|
52 |
+
> Teyvat, Name:Keqing, Element:Electro, Weapon:Sword, Region:Liyue, Model type:Medium Female, Description:an anime character wearing a purple dress and cat ears
|
datasets/Fazzie/Teyvat/Teyvat.py
ADDED
@@ -0,0 +1,125 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
# Copyright 2022 Fazzie
|
2 |
+
# MIT License
|
3 |
+
"""Loading script for Teyvat."""
|
4 |
+
|
5 |
+
import re
|
6 |
+
import numpy as np
|
7 |
+
import pandas as pd
|
8 |
+
|
9 |
+
from json import load, dump
|
10 |
+
from os.path import join, basename
|
11 |
+
from huggingface_hub import hf_hub_url
|
12 |
+
|
13 |
+
import datasets
|
14 |
+
|
15 |
+
# You can copy an official description
|
16 |
+
_DESCRIPTION = """
|
17 |
+
Teyvat is the first small-scale text-to-image prompt dataset for Genshin impact.
|
18 |
+
"""
|
19 |
+
|
20 |
+
_LICENSE = "CC0 1.0"
|
21 |
+
_VERSION = datasets.Version("0.0.1")
|
22 |
+
|
23 |
+
# Programmatically generate the URLs for different parts
|
24 |
+
# hf_hub_url() provides a more flexible way to resolve the file URLs
|
25 |
+
# https://huggingface.co/datasets/Fazzie/Teyvat/
|
26 |
+
|
27 |
+
_URLS = {"data" :hf_hub_url(
|
28 |
+
repo_id = "Fazzie/Teyvat",
|
29 |
+
filename = "data.zip",
|
30 |
+
repo_type = "dataset",
|
31 |
+
),
|
32 |
+
"metadata" :hf_hub_url(
|
33 |
+
repo_id = "Fazzie/Teyvat",
|
34 |
+
filename = "metadata.json",
|
35 |
+
repo_type = "dataset",
|
36 |
+
)
|
37 |
+
}
|
38 |
+
|
39 |
+
|
40 |
+
class Teyvat(datasets.GeneratorBasedBuilder):
|
41 |
+
"""Teyvat is the first small-scale text-to-image prompt dataset for Genshin impact"""
|
42 |
+
|
43 |
+
|
44 |
+
def _info(self):
|
45 |
+
"""Specify the information of Teyvat."""
|
46 |
+
|
47 |
+
|
48 |
+
features = datasets.Features(
|
49 |
+
{
|
50 |
+
"image": datasets.Image(),
|
51 |
+
"text": datasets.Value("string"),
|
52 |
+
},
|
53 |
+
)
|
54 |
+
|
55 |
+
return datasets.DatasetInfo(
|
56 |
+
description=_DESCRIPTION,
|
57 |
+
features=features,
|
58 |
+
supervised_keys=None,
|
59 |
+
license=_LICENSE,
|
60 |
+
version=_VERSION
|
61 |
+
)
|
62 |
+
|
63 |
+
def _split_generators(self, dl_manager):
|
64 |
+
# If several configurations are possible (listed in BUILDER_CONFIGS),
|
65 |
+
# the configuration selected by the user is in self.config.name
|
66 |
+
|
67 |
+
# dl_manager is a datasets.download.DownloadManager that can be used to
|
68 |
+
# download and extract URLS It can accept any type or nested list/dict
|
69 |
+
# and will give back the same structure with the url replaced with path
|
70 |
+
# to local files. By default the archives will be extracted and a path
|
71 |
+
# to a cached folder where they are extracted is returned instead of the
|
72 |
+
# archive
|
73 |
+
|
74 |
+
|
75 |
+
# Resolve the urls
|
76 |
+
|
77 |
+
urls = _URLS
|
78 |
+
|
79 |
+
# Also download the data
|
80 |
+
data_path = dl_manager.download_and_extract(urls["data"])
|
81 |
+
meta_data_path = dl_manager.download(urls["metadata"])
|
82 |
+
|
83 |
+
# data = load(open(meta_data_path, "r", encoding="utf8"))
|
84 |
+
# for image in data:
|
85 |
+
# image_path = "data/" + image["file_name"]
|
86 |
+
# image_path = hf_hub_url(
|
87 |
+
# "datasets/Fazzie/Teyvat",
|
88 |
+
# filename=image_path,
|
89 |
+
# ),
|
90 |
+
# dl_manager.download(image_path)
|
91 |
+
|
92 |
+
return [
|
93 |
+
datasets.SplitGenerator(
|
94 |
+
name=datasets.Split.TRAIN,
|
95 |
+
# These kwargs will be passed to _generate_examples
|
96 |
+
gen_kwargs={
|
97 |
+
"data_path": data_path,
|
98 |
+
"meta_data_path": meta_data_path
|
99 |
+
},
|
100 |
+
),
|
101 |
+
]
|
102 |
+
|
103 |
+
def _generate_examples(self, data_path, meta_data_path):
|
104 |
+
# This method handles input defined in _split_generators to yield
|
105 |
+
# (key, example) tuples from the dataset.
|
106 |
+
# The `key` is for legacy reasons (tfds) and is not important in itself,
|
107 |
+
# but must be unique for each example.
|
108 |
+
|
109 |
+
# Load the metadata parquet file if the config is text_only
|
110 |
+
print("Loading metadata...", meta_data_path)
|
111 |
+
data = load(open(meta_data_path, "r", encoding="utf8"))
|
112 |
+
|
113 |
+
for image in data:
|
114 |
+
image_path = join(data_path, "data", image["file_name"])
|
115 |
+
text = image["text"]
|
116 |
+
|
117 |
+
|
118 |
+
|
119 |
+
yield image_path, {
|
120 |
+
"image": {
|
121 |
+
"path": image_path,
|
122 |
+
"bytes": open(image_path, "rb").read(),
|
123 |
+
},
|
124 |
+
"text": text,
|
125 |
+
}
|
datasets/Fazzie/Teyvat/data.zip
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:e9b1a7ceac638f9a54f8ab19ea6563fd7bdaf1b68e657a8eb40db50357ec8786
|
3 |
+
size 466949280
|
datasets/Fazzie/Teyvat/gitattributes.txt
ADDED
@@ -0,0 +1,54 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
*.7z filter=lfs diff=lfs merge=lfs -text
|
2 |
+
*.arrow filter=lfs diff=lfs merge=lfs -text
|
3 |
+
*.bin filter=lfs diff=lfs merge=lfs -text
|
4 |
+
*.bz2 filter=lfs diff=lfs merge=lfs -text
|
5 |
+
*.ckpt filter=lfs diff=lfs merge=lfs -text
|
6 |
+
*.ftz filter=lfs diff=lfs merge=lfs -text
|
7 |
+
*.gz filter=lfs diff=lfs merge=lfs -text
|
8 |
+
*.h5 filter=lfs diff=lfs merge=lfs -text
|
9 |
+
*.joblib filter=lfs diff=lfs merge=lfs -text
|
10 |
+
*.lfs.* filter=lfs diff=lfs merge=lfs -text
|
11 |
+
*.lz4 filter=lfs diff=lfs merge=lfs -text
|
12 |
+
*.mlmodel filter=lfs diff=lfs merge=lfs -text
|
13 |
+
*.model filter=lfs diff=lfs merge=lfs -text
|
14 |
+
*.msgpack filter=lfs diff=lfs merge=lfs -text
|
15 |
+
*.npy filter=lfs diff=lfs merge=lfs -text
|
16 |
+
*.npz filter=lfs diff=lfs merge=lfs -text
|
17 |
+
*.onnx filter=lfs diff=lfs merge=lfs -text
|
18 |
+
*.ot filter=lfs diff=lfs merge=lfs -text
|
19 |
+
*.parquet filter=lfs diff=lfs merge=lfs -text
|
20 |
+
*.pb filter=lfs diff=lfs merge=lfs -text
|
21 |
+
*.pickle filter=lfs diff=lfs merge=lfs -text
|
22 |
+
*.pkl filter=lfs diff=lfs merge=lfs -text
|
23 |
+
*.pt filter=lfs diff=lfs merge=lfs -text
|
24 |
+
*.pth filter=lfs diff=lfs merge=lfs -text
|
25 |
+
*.rar filter=lfs diff=lfs merge=lfs -text
|
26 |
+
*.safetensors filter=lfs diff=lfs merge=lfs -text
|
27 |
+
saved_model/**/* filter=lfs diff=lfs merge=lfs -text
|
28 |
+
*.tar.* filter=lfs diff=lfs merge=lfs -text
|
29 |
+
*.tflite filter=lfs diff=lfs merge=lfs -text
|
30 |
+
*.tgz filter=lfs diff=lfs merge=lfs -text
|
31 |
+
*.wasm filter=lfs diff=lfs merge=lfs -text
|
32 |
+
*.xz filter=lfs diff=lfs merge=lfs -text
|
33 |
+
*.zip filter=lfs diff=lfs merge=lfs -text
|
34 |
+
*.zst filter=lfs diff=lfs merge=lfs -text
|
35 |
+
*tfevents* filter=lfs diff=lfs merge=lfs -text
|
36 |
+
# Audio files - uncompressed
|
37 |
+
*.pcm filter=lfs diff=lfs merge=lfs -text
|
38 |
+
*.sam filter=lfs diff=lfs merge=lfs -text
|
39 |
+
*.raw filter=lfs diff=lfs merge=lfs -text
|
40 |
+
# Audio files - compressed
|
41 |
+
*.aac filter=lfs diff=lfs merge=lfs -text
|
42 |
+
*.flac filter=lfs diff=lfs merge=lfs -text
|
43 |
+
*.mp3 filter=lfs diff=lfs merge=lfs -text
|
44 |
+
*.ogg filter=lfs diff=lfs merge=lfs -text
|
45 |
+
*.wav filter=lfs diff=lfs merge=lfs -text
|
46 |
+
# Image files - uncompressed
|
47 |
+
*.bmp filter=lfs diff=lfs merge=lfs -text
|
48 |
+
*.gif filter=lfs diff=lfs merge=lfs -text
|
49 |
+
*.png filter=lfs diff=lfs merge=lfs -text
|
50 |
+
*.tiff filter=lfs diff=lfs merge=lfs -text
|
51 |
+
# Image files - compressed
|
52 |
+
*.jpg filter=lfs diff=lfs merge=lfs -text
|
53 |
+
*.jpeg filter=lfs diff=lfs merge=lfs -text
|
54 |
+
*.webp filter=lfs diff=lfs merge=lfs -text
|
datasets/Fazzie/Teyvat/metadata.json
ADDED
@@ -0,0 +1,236 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
[
|
2 |
+
{"file_name": "Diluc_001.png", "text": "Teyvat, Name:Diluc, Element:Pyro, Weapon:Claymore, Region:Mondstadt, Model type:Tall Male, Description:an anime character with red hair and a sword"},
|
3 |
+
{"file_name": "Chongyun_001.png", "text": "Teyvat, Name:Chongyun, Element:Cryo, Weapon:Claymore, Region:Liyue, Model type:Medium Male, Description:an anime character holding a sword in her hand"},
|
4 |
+
{"file_name": "Fischl_001.png", "text": "Teyvat, Name:Fischl, Element:Electro, Weapon:Bow, Region:Mondstadt, Model type:Medium Female, Description:a woman in a purple dress with long hair"},
|
5 |
+
{"file_name": "Raiden Shogun_001.png", "text": "Teyvat, Name:Raiden Shogun, Element:Electro, Weapon:Polearm, Region:Inazuma, Model type:Tall Female, Description:a woman in a purple outfit holding a sword"},
|
6 |
+
{"file_name": "Shenhe_001.png", "text": "Teyvat, Name:Shenhe, Element:Cryo, Weapon:Polearm, Region:Liyue, Model type:Tall Female, Description:a woman in a black and white outfit holding two swords"},
|
7 |
+
{"file_name": "Xingqiu_001.png", "text": "Teyvat, Name:Xingqiu, Element:Hydro, Weapon:Sword, Region:Liyue, Model type:Medium Male, Description:an anime character with blue hair and blue eyes"},
|
8 |
+
{"file_name": "Kamisato Ayaka_001.png", "text": "Teyvat, Name:Kamisato Ayaka, Element:Cryo, Weapon:Sword, Region:Inazuma, Model type:Medium Female, Description:a woman in a blue dress holding a sword"},
|
9 |
+
{"file_name": "Tartaglia_001.png", "text": "Teyvat, Name:Tartaglia, Element:Hydro, Weapon:Bow, Region:Snezhnaya, Model type:Tall Male, Description:an anime character with a sword in his hand"},
|
10 |
+
{"file_name": "Nilou_001.png", "text": "Teyvat, Name:Nilou, Element:Hydro, Weapon:Sword, Region:Sumeru, Model type:Medium Female, Description:an anime character with red hair and horns"},
|
11 |
+
{"file_name": "Yae Miko_001.png", "text": "Teyvat, Name:Yae Miko, Element:Electro, Weapon:Catalyst, Region:Inazuma, Model type:Tall Female, Description:a woman in a red and white costume"},
|
12 |
+
{"file_name": "Arataki Itto_001.png", "text": "Teyvat, Name:Arataki Itto, Element:Geo, Weapon:Claymore, Region:Inazuma, Model type:Tall Male, Description:an anime character with a sword and a hat"},
|
13 |
+
{"file_name": "Thoma_001.png", "text": "Teyvat, Name:Thoma, Element:Pyro, Weapon:Polearm, Region:Inazuma, Model type:Tall Male, Description:a woman in a costume holding a sword"},
|
14 |
+
{"file_name": "Kuki Shinobu_001.png", "text": "Teyvat, Name:Kuki Shinobu, Element:Electro, Weapon:Sword, Region:Inazuma, Model type:Medium Female, Description:a woman in a cosplay outfit is posing for a picture"},
|
15 |
+
{"file_name": "Sucrose_001.png", "text": "Teyvat, Name:Sucrose, Element:Anemo, Weapon:Catalyst, Region:Mondstadt, Model type:Medium Female, Description:a girl in a blue dress with a sword"},
|
16 |
+
{"file_name": "Yanfei_001.png", "text": "Teyvat, Name:Yanfei, Element:Pyro, Weapon:Catalyst, Region:Liyue, Model type:Medium Female, Description:an anime character with a sword in her hand"},
|
17 |
+
{"file_name": "Cyno_001.png", "text": "Teyvat, Name:Cyno, Element:Electro, Weapon:Polearm, Region:Sumeru, Model type:Medium Male, Description:a woman in a costume holding a sword"},
|
18 |
+
{"file_name": "Zhongli_001.png", "text": "Teyvat, Name:Zhongli, Element:Geo, Weapon:Polearm, Region:Liyue, Model type:Tall Male, Description:an anime character with a sword in his hand"},
|
19 |
+
{"file_name": "Xiangling_001.png", "text": "Teyvat, Name:Xiangling, Element:Pyro, Weapon:Polearm, Region:Liyue, Model type:Medium Female, Description:a woman in a costume holding a sword"},
|
20 |
+
{"file_name": "Xinyan_001.png", "text": "Teyvat, Name:Xinyan, Element:Pyro, Weapon:Claymore, Region:Liyue, Model type:Medium Female, Description:a woman in a costume holding a sword"},
|
21 |
+
{"file_name": "Bennett_001.png", "text": "Teyvat, Name:Bennett, Element:Pyro, Weapon:Sword, Region:Mondstadt, Model type:Medium Male, Description:an anime character with white hair and green eyes"},
|
22 |
+
{"file_name": "Yun Jin_001.png", "text": "Teyvat, Name:Yun Jin, Element:Geo, Weapon:Polearm, Region:Liyue, Model type:Medium Female, Description:an anime character with a sword in her hand"},
|
23 |
+
{"file_name": "Ganyu_001.png", "text": "Teyvat, Name:Ganyu, Element:Cryo, Weapon:Bow, Region:Liyue, Model type:Medium Female, Description:an anime character with blue hair and blue eyes"},
|
24 |
+
{"file_name": "Sangonomiya Kokomi_001.png", "text": "Teyvat, Name:Sangonomiya Kokomi, Element:Hydro, Weapon:Catalyst, Region:Inazuma, Model type:Medium Female, Description:a woman in a blue dress holding a blue bird"},
|
25 |
+
{"file_name": "Tighnari_001.png", "text": "Teyvat, Name:Tighnari, Element:Dendro, Weapon:Bow, Region:Sumeru, Model type:Medium Male, Description:a woman in a costume with a cat ears on her head"},
|
26 |
+
{"file_name": "Kujou Sara_001.png", "text": "Teyvat, Name:Kujou Sara, Element:Electro, Weapon:Bow, Region:Inazuma, Model type:Tall Female, Description:a woman in a dress with a bird on her head"},
|
27 |
+
{"file_name": "Kamisato Ayato_001.png", "text": "Teyvat, Name:Kamisato Ayato, Element:Hydro, Weapon:Sword, Region:Inazuma, Model type:Tall Male, Description:an anime character with blue hair holding a sword"},
|
28 |
+
{"file_name": "Gorou_001.png", "text": "Teyvat, Name:Gorou, Element:Geo, Weapon:Bow, Region:Inazuma, Model type:Medium Male, Description:an anime character holding a bow and a sword"},
|
29 |
+
{"file_name": "Qiqi_001.png", "text": "Teyvat, Name:Qiqi, Element:Cryo, Weapon:Sword, Region:Liyue, Model type:Short Female, Description:a woman in a blue dress and a hat"},
|
30 |
+
{"file_name": "Candace_001.png", "text": "Teyvat, Name:Candace, Element:Hydro, Weapon:Polearm, Region:Sumeru, Model type:Tall Female, Description:a woman in a costume holding a sword"},
|
31 |
+
{"file_name": "Kaeya_001.png", "text": "Teyvat, Name:Kaeya, Element:Cryo, Weapon:Sword, Region:Mondstadt, Model type:Tall Male, Description:an anime character with blue hair and a sword"},
|
32 |
+
{"file_name": "Yoimiya_001.png", "text": "Teyvat, Name:Yoimiya, Element:Pyro, Weapon:Bow, Region:Inazuma, Model type:Medium Female, Description:a woman with a sword in her hand"},
|
33 |
+
{"file_name": "Amber_001.png", "text": "Teyvat, Name:Amber, Element:Pyro, Weapon:Bow, Region:Mondstadt, Model type:Medium Female, Description:an anime character with long hair and a red outfit"},
|
34 |
+
{"file_name": "Ningguang_001.png", "text": "Teyvat, Name:Ningguang, Element:Geo, Weapon:Catalyst, Region:Liyue, Model type:Tall Female, Description:an anime character with long white hair and long white hair"},
|
35 |
+
{"file_name": "Rosaria_001.png", "text": "Teyvat, Name:Rosaria, Element:Cryo, Weapon:Polearm, Region:Mondstadt, Model type:Tall Female, Description:a woman in a cosplay outfit holding a sword"},
|
36 |
+
{"file_name": "Mona_001.png", "text": "Teyvat, Name:Mona, Element:Hydro, Weapon:Catalyst, Region:Mondstadt, Model type:Medium Female, Description:a woman dressed in a costume and hat"},
|
37 |
+
{"file_name": "Klee_001.png", "text": "Teyvat, Name:Klee, Element:Pyro, Weapon:Catalyst, Region:Mondstadt, Model type:Short Female, Description:a girl in a red outfit holding a stuffed animal"},
|
38 |
+
{"file_name": "Nahida_001.png", "text": "Teyvat, Name:Nahida, Element:Dendro, Weapon:Catalyst, Region:Sumeru, Model type:Short Female, Description:a girl with white hair and green eyes"},
|
39 |
+
{"file_name": "Collei_001.png", "text": "Teyvat, Name:Collei, Element:Dendro, Weapon:Bow, Region:Sumeru, Model type:Medium Female, Description:a girl with green hair holding a sword"},
|
40 |
+
{"file_name": "Sayu_001.png", "text": "Teyvat, Name:Sayu, Element:Anemo, Weapon:Claymore, Region:Inazuma, Model type:Short Female, Description:a woman in a costume with a cat on her head"},
|
41 |
+
{"file_name": "Hu Tao_001.png", "text": "Teyvat, Name:Hu Tao, Element:Pyro, Weapon:Polearm, Region:Liyue, Model type:Medium Female, Description:an anime character with long hair and a top hat"},
|
42 |
+
{"file_name": "Aloy_001.png", "text": "Teyvat, Name:Aloy, Element:Cryo, Weapon:Bow, Region:None, Model type:Medium Female, Description:a woman with long red hair holding a bow and arrow"},
|
43 |
+
{"file_name": "Beidou_001.png", "text": "Teyvat, Name:Beidou, Element:Electro, Weapon:Claymore, Region:Liyue, Model type:Tall Female, Description:a woman in a red dress holding a sword"},
|
44 |
+
{"file_name": "Noelle_001.png", "text": "Teyvat, Name:Noelle, Element:Geo, Weapon:Claymore, Region:Mondstadt, Model type:Medium Female, Description:a woman dressed in a cosplay outfit"},
|
45 |
+
{"file_name": "Diona_001.png", "text": "Teyvat, Name:Diona, Element:Cryo, Weapon:Bow, Region:Mondstadt, Model type:Short Female, Description:an anime character with a sword and a hat"},
|
46 |
+
{"file_name": "Jean_001.png", "text": "Teyvat, Name:Jean, Element:Anemo, Weapon:Sword, Region:Mondstadt, Model type:Tall Female, Description:a woman in a white and blue outfit holding a sword"},
|
47 |
+
{"file_name": "Shikanoin Heizou_001.png", "text": "Teyvat, Name:Shikanoin Heizou, Element:Anemo, Weapon:Catalyst, Region:Inazuma, Model type:Medium Male, Description:a woman in a white shirt and brown pants holding a sword"},
|
48 |
+
{"file_name": "Kaedehara Kazuha_001.png", "text": "Teyvat, Name:Kaedehara Kazuha, Element:Anemo, Weapon:Sword, Region:Inazuma, Model type:Medium Male, Description:a woman with a sword in her hand"},
|
49 |
+
{"file_name": "Keqing_001.png", "text": "Teyvat, Name:Keqing, Element:Electro, Weapon:Sword, Region:Liyue, Model type:Medium Female, Description:an anime character with long hair and purple hair"},
|
50 |
+
{"file_name": "Yelan_001.png", "text": "Teyvat, Name:Yelan, Element:Hydro, Weapon:Bow, Region:Liyue, Model type:Tall Female, Description:a woman in a blue outfit holding a sword"},
|
51 |
+
{"file_name": "Albedo_001.png", "text": "Teyvat, Name:Albedo, Element:Geo, Weapon:Sword, Region:Mondstadt, Model type:Medium Male, Description:an anime character with white hair and blue eyes"},
|
52 |
+
{"file_name": "Lisa_001.png", "text": "Teyvat, Name:Lisa, Element:Electro, Weapon:Catalyst, Region:Mondstadt, Model type:Tall Female, Description:a woman wearing a purple hat and holding a purple rose"},
|
53 |
+
{"file_name": "Barbara_001.png", "text": "Teyvat, Name:Barbara, Element:Hydro, Weapon:Catalyst, Region:Mondstadt, Model type:Medium Female, Description:a woman in a white dress holding a sword"},
|
54 |
+
{"file_name": "Xiao_001.png", "text": "Teyvat, Name:Xiao, Element:Anemo, Weapon:Polearm, Region:Liyue, Model type:Medium Male, Description:an anime character holding a sword and wearing a purple outfit"},
|
55 |
+
{"file_name": "Venti_001.png", "text": "Teyvat, Name:Venti, Element:Anemo, Weapon:Bow, Region:Mondstadt, Model type:Medium Male, Description:a woman in a green outfit holding a harp"},
|
56 |
+
{"file_name": "Dori_001.png", "text": "Teyvat, Name:Dori, Element:Electro, Weapon:Claymore, Region:Sumeru, Model type:Short Female, Description:a woman in a purple dress and hat"},
|
57 |
+
{"file_name": "Razor_001.png", "text": "Teyvat, Name:Razor, Element:Electro, Weapon:Claymore, Region:Mondstadt, Model type:Medium Male, Description:an anime character holding a sword and a sword"},
|
58 |
+
{"file_name": "Layla_001.png", "text": "Teyvat, Name:Layla, Element: Cryo, Weapon:Sword, Region:Sumeru, Model type:Medium Female, Description:a woman in a blue outfit holding a sword"},
|
59 |
+
{"file_name": "Eula_001.png", "text": "Teyvat, Name:Eula, Element:Cryo, Weapon:Claymore, Region:Mondstadt, Model type:Tall Female, Description:an anime character with a sword in her hand"},
|
60 |
+
{"file_name": "Yae Miko_003.png", "text": "Teyvat, Name:Yae Miko, Element:Electro, Weapon:Catalyst, Region:Inazuma, Model type:Tall Female, Description:a woman in a red and white outfit holding a sword"},
|
61 |
+
{"file_name": "Beidou_002.png", "text": "Teyvat, Name:Beidou, Element:Electro, Weapon:Claymore, Region:Liyue, Model type:Tall Female, Description:a woman in a red dress holding a sword"},
|
62 |
+
{"file_name": "Lumine_004.png", "text": "Teyvat, Name:Lumine, Element:None, Weapon:Sword, Region:None, Model type:Medium Female, Description:a woman in a white dress with a sword"},
|
63 |
+
{"file_name": "Rosaria_003.png", "text": "Teyvat, Name:Rosaria, Element:Cryo, Weapon:Polearm, Region:Mondstadt, Model type:Tall Female, Description:a woman with a sword standing in front of a blue background"},
|
64 |
+
{"file_name": "Rosaria_002.png", "text": "Teyvat, Name:Rosaria, Element:Cryo, Weapon:Polearm, Region:Mondstadt, Model type:Tall Female, Description:a woman in a black and red outfit holding a sword"},
|
65 |
+
{"file_name": "Shikanoin Heizou_003.png", "text": "Teyvat, Name:Shikanoin Heizou, Element:Anemo, Weapon:Catalyst, Region:Inazuma, Model type:Medium Male, Description:a woman with a sword is sitting on a bench"},
|
66 |
+
{"file_name": "Razor_004.png", "text": "Teyvat, Name:Razor, Element:Electro, Weapon:Claymore, Region:Mondstadt, Model type:Medium Male, Description:a character from the video game fire emblem"},
|
67 |
+
{"file_name": "Aloy_002.png", "text": "Teyvat, Name:Aloy, Element:Cryo, Weapon:Bow, Region:None, Model type:Medium Female, Description:a woman with a bow and arrow in her hand"},
|
68 |
+
{"file_name": "Yoimiya_003.png", "text": "Teyvat, Name:Yoimiya, Element:Pyro, Weapon:Bow, Region:Inazuma, Model type:Medium Female, Description:a girl with a sword and a firecracker"},
|
69 |
+
{"file_name": "Sayu_003.png", "text": "Teyvat, Name:Sayu, Element:Anemo, Weapon:Claymore, Region:Inazuma, Model type:Short Female, Description:a woman riding on the back of a cow"},
|
70 |
+
{"file_name": "Nilou_004.png", "text": "Teyvat, Name:Nilou, Element:Hydro, Weapon:Sword, Region:Sumeru, Model type:Medium Female, Description:a woman dressed in a costume and holding a sword"},
|
71 |
+
{"file_name": "Lisa_004.png", "text": "Teyvat, Name:Lisa, Element:Electro, Weapon:Catalyst, Region:Mondstadt, Model type:Tall Female, Description:a woman in a purple dress and hat"},
|
72 |
+
{"file_name": "Yun Jin_003.png", "text": "Teyvat, Name:Yun Jin, Element:Geo, Weapon:Polearm, Region:Liyue, Model type:Medium Female, Description:a woman in a costume holding a sword"},
|
73 |
+
{"file_name": "Kuki Shinobu_003.png", "text": "Teyvat, Name:Kuki Shinobu, Element:Electro, Weapon:Sword, Region:Inazuma, Model type:Medium Female, Description:a woman with green hair and purple hair is flying through the air"},
|
74 |
+
{"file_name": "Aether_002.png", "text": "Teyvat, Name:Aether, Element:None, Weapon:Sword, Region:None, Model type:Medium Male, Description:an anime character holding a sword and a sword"},
|
75 |
+
{"file_name": "Tartaglia_003.png", "text": "Teyvat, Name:Tartaglia, Element:Hydro, Weapon:Bow, Region:Snezhnaya, Model type:Tall Male, Description:a woman in a suit is riding a wave"},
|
76 |
+
{"file_name": "Nahida_004.png", "text": "Teyvat, Name:Nahida, Element:Dendro, Weapon:Catalyst, Region:Sumeru, Model type:Short Female, Description:a girl with white hair and a green dress"},
|
77 |
+
{"file_name": "Dori_002.png", "text": "Teyvat, Name:Dori, Element:Electro, Weapon:Claymore, Region:Sumeru, Model type:Short Female, Description:a woman in a purple dress and hat"},
|
78 |
+
{"file_name": "Ganyu_003.png", "text": "Teyvat, Name:Ganyu, Element:Cryo, Weapon:Bow, Region:Liyue, Model type:Medium Female, Description:a woman with a sword in her hand"},
|
79 |
+
{"file_name": "Sucrose_002.png", "text": "Teyvat, Name:Sucrose, Element:Anemo, Weapon:Catalyst, Region:Mondstadt, Model type:Medium Female, Description:a girl in a blue dress with a sword"},
|
80 |
+
{"file_name": "Nahida_002.png", "text": "Teyvat, Name:Nahida, Element:Dendro, Weapon:Catalyst, Region:Sumeru, Model type:Short Female, Description:a girl in a dress with a green background"},
|
81 |
+
{"file_name": "Kaeya_002.png", "text": "Teyvat, Name:Kaeya, Element:Cryo, Weapon:Sword, Region:Mondstadt, Model type:Tall Male, Description:a woman with blue hair sitting on top of a table"},
|
82 |
+
{"file_name": "Sangonomiya Kokomi_004.png", "text": "Teyvat, Name:Sangonomiya Kokomi, Element:Hydro, Weapon:Catalyst, Region:Inazuma, Model type:Medium Female, Description:a woman in a blue and white outfit"},
|
83 |
+
{"file_name": "Xinyan_002.png", "text": "Teyvat, Name:Xinyan, Element:Pyro, Weapon:Claymore, Region:Liyue, Model type:Medium Female, Description:an anime character holding a sword and a sign"},
|
84 |
+
{"file_name": "Barbara_003.png", "text": "Teyvat, Name:Barbara, Element:Hydro, Weapon:Catalyst, Region:Mondstadt, Model type:Medium Female, Description:a anime girl with a blue dress and stars around her"},
|
85 |
+
{"file_name": "Aloy_004.png", "text": "Teyvat, Name:Aloy, Element:Cryo, Weapon:Bow, Region:None, Model type:Medium Female, Description:a woman with red hair wearing a brown and blue outfit"},
|
86 |
+
{"file_name": "Raiden Shogun_002.png", "text": "Teyvat, Name:Raiden Shogun, Element:Electro, Weapon:Polearm, Region:Inazuma, Model type:Tall Female, Description:a woman in a purple outfit holding a sword"},
|
87 |
+
{"file_name": "Yanfei_004.png", "text": "Teyvat, Name:Yanfei, Element:Pyro, Weapon:Catalyst, Region:Liyue, Model type:Medium Female, Description:a woman in a costume with a sword"},
|
88 |
+
{"file_name": "Lumine_002.png", "text": "Teyvat, Name:Lumine, Element:None, Weapon:Sword, Region:None, Model type:Medium Female, Description:a woman in a white dress with a sword"},
|
89 |
+
{"file_name": "Bennett_003.png", "text": "Teyvat, Name:Bennett, Element:Pyro, Weapon:Sword, Region:Mondstadt, Model type:Medium Male, Description:an anime character with a sword and fire"},
|
90 |
+
{"file_name": "Gorou_003.png", "text": "Teyvat, Name:Gorou, Element:Geo, Weapon:Bow, Region:Inazuma, Model type:Medium Male, Description:an image of a woman with a bow and a dog"},
|
91 |
+
{"file_name": "Diona_002.png", "text": "Teyvat, Name:Diona, Element:Cryo, Weapon:Bow, Region:Mondstadt, Model type:Short Female, Description:a girl with pink hair and a sword in her hand"},
|
92 |
+
{"file_name": "Noelle_002.png", "text": "Teyvat, Name:Noelle, Element:Geo, Weapon:Claymore, Region:Mondstadt, Model type:Medium Female, Description:a woman in a dress with a sword"},
|
93 |
+
{"file_name": "Yae Miko_004.png", "text": "Teyvat, Name:Yae Miko, Element:Electro, Weapon:Catalyst, Region:Inazuma, Model type:Tall Female, Description:a woman with pink hair wearing a red and white outfit"},
|
94 |
+
{"file_name": "Zhongli_004.png", "text": "Teyvat, Name:Zhongli, Element:Geo, Weapon:Polearm, Region:Liyue, Model type:Tall Male, Description:a man in a brown and black outfit"},
|
95 |
+
{"file_name": "Collei_003.png", "text": "Teyvat, Name:Collei, Element:Dendro, Weapon:Bow, Region:Sumeru, Model type:Medium Female, Description:a woman in a black dress holding a green object"},
|
96 |
+
{"file_name": "Sucrose_004.png", "text": "Teyvat, Name:Sucrose, Element:Anemo, Weapon:Catalyst, Region:Mondstadt, Model type:Medium Female, Description:a woman in a blue and white outfit"},
|
97 |
+
{"file_name": "Kujou Sara_002.png", "text": "Teyvat, Name:Kujou Sara, Element:Electro, Weapon:Bow, Region:Inazuma, Model type:Tall Female, Description:a woman in a costume holding a sword"},
|
98 |
+
{"file_name": "Yelan_002.png", "text": "Teyvat, Name:Yelan, Element:Hydro, Weapon:Bow, Region:Liyue, Model type:Tall Female, Description:a woman in a blue outfit holding a sword"},
|
99 |
+
{"file_name": "Mona_002.png", "text": "Teyvat, Name:Mona, Element:Hydro, Weapon:Catalyst, Region:Mondstadt, Model type:Medium Female, Description:a woman in a costume with a hat on her head"},
|
100 |
+
{"file_name": "Yanfei_003.png", "text": "Teyvat, Name:Yanfei, Element:Pyro, Weapon:Catalyst, Region:Liyue, Model type:Medium Female, Description:a woman with a sword and a red dress"},
|
101 |
+
{"file_name": "Xiangling_002.png", "text": "Teyvat, Name:Xiangling, Element:Pyro, Weapon:Polearm, Region:Liyue, Model type:Medium Female, Description:an anime character holding a sword and a sword"},
|
102 |
+
{"file_name": "Sucrose_003.png", "text": "Teyvat, Name:Sucrose, Element:Anemo, Weapon:Catalyst, Region:Mondstadt, Model type:Medium Female, Description:an anime character with a sword and wings"},
|
103 |
+
{"file_name": "Zhongli_003.png", "text": "Teyvat, Name:Zhongli, Element:Geo, Weapon:Polearm, Region:Liyue, Model type:Tall Male, Description:an anime character holding a sword in front of a cloud"},
|
104 |
+
{"file_name": "Kamisato Ayato_002.png", "text": "Teyvat, Name:Kamisato Ayato, Element:Hydro, Weapon:Sword, Region:Inazuma, Model type:Tall Male, Description:a woman in a blue and white outfit holding a sword"},
|
105 |
+
{"file_name": "Thoma_002.png", "text": "Teyvat, Name:Thoma, Element:Pyro, Weapon:Polearm, Region:Inazuma, Model type:Tall Male, Description:an anime character with a sword in his hand"},
|
106 |
+
{"file_name": "Hu Tao_004.png", "text": "Teyvat, Name:Hu Tao, Element:Pyro, Weapon:Polearm, Region:Liyue, Model type:Medium Female, Description:a woman in a black outfit and hat"},
|
107 |
+
{"file_name": "Dori_003.png", "text": "Teyvat, Name:Dori, Element:Electro, Weapon:Claymore, Region:Sumeru, Model type:Short Female, Description:a cartoon character riding a horse with a bell"},
|
108 |
+
{"file_name": "Venti_003.png", "text": "Teyvat, Name:Venti, Element:Anemo, Weapon:Bow, Region:Mondstadt, Model type:Medium Male, Description:a woman in a green dress is flying through the air"},
|
109 |
+
{"file_name": "Bennett_004.png", "text": "Teyvat, Name:Bennett, Element:Pyro, Weapon:Sword, Region:Mondstadt, Model type:Medium Male, Description:an anime character with white hair and glasses"},
|
110 |
+
{"file_name": "Diona_003.png", "text": "Teyvat, Name:Diona, Element:Cryo, Weapon:Bow, Region:Mondstadt, Model type:Short Female, Description:a woman in a sailor outfit is running"},
|
111 |
+
{"file_name": "Venti_002.png", "text": "Teyvat, Name:Venti, Element:Anemo, Weapon:Bow, Region:Mondstadt, Model type:Medium Male, Description:a woman in a green outfit holding a teapot"},
|
112 |
+
{"file_name": "Ganyu_002.png", "text": "Teyvat, Name:Ganyu, Element:Cryo, Weapon:Bow, Region:Liyue, Model type:Medium Female, Description:an anime character with blue hair and blue eyes"},
|
113 |
+
{"file_name": "Amber_004.png", "text": "Teyvat, Name:Amber, Element:Pyro, Weapon:Bow, Region:Mondstadt, Model type:Medium Female, Description:a woman dressed in a red outfit and bunny ears"},
|
114 |
+
{"file_name": "Chongyun_003.png", "text": "Teyvat, Name:Chongyun, Element:Cryo, Weapon:Claymore, Region:Liyue, Model type:Medium Male, Description:an anime character with white hair and blue eyes"},
|
115 |
+
{"file_name": "Collei_002.png", "text": "Teyvat, Name:Collei, Element:Dendro, Weapon:Bow, Region:Sumeru, Model type:Medium Female, Description:a girl with green hair is holding a bow"},
|
116 |
+
{"file_name": "Albedo_002.png", "text": "Teyvat, Name:Albedo, Element:Geo, Weapon:Sword, Region:Mondstadt, Model type:Medium Male, Description:an anime character with white hair and blue eyes"},
|
117 |
+
{"file_name": "Tighnari_002.png", "text": "Teyvat, Name:Tighnari, Element:Dendro, Weapon:Bow, Region:Sumeru, Model type:Medium Male, Description:a woman in a costume with a cat ears on her head"},
|
118 |
+
{"file_name": "Gorou_004.png", "text": "Teyvat, Name:Gorou, Element:Geo, Weapon:Bow, Region:Inazuma, Model type:Medium Male, Description:a cartoon character in a costume that looks like a cat"},
|
119 |
+
{"file_name": "Kaeya_004.png", "text": "Teyvat, Name:Kaeya, Element:Cryo, Weapon:Sword, Region:Mondstadt, Model type:Tall Male, Description:a female character in a black outfit with white hair"},
|
120 |
+
{"file_name": "Yelan_004.png", "text": "Teyvat, Name:Yelan, Element:Hydro, Weapon:Bow, Region:Liyue, Model type:Tall Female, Description:a female character in a blue outfit"},
|
121 |
+
{"file_name": "Lisa_003.png", "text": "Teyvat, Name:Lisa, Element:Electro, Weapon:Catalyst, Region:Mondstadt, Model type:Tall Female, Description:a woman in a witches costume holding a lamp"},
|
122 |
+
{"file_name": "Xingqiu_004.png", "text": "Teyvat, Name:Xingqiu, Element:Hydro, Weapon:Sword, Region:Liyue, Model type:Medium Male, Description:an anime character with blue hair wearing a blue outfit"},
|
123 |
+
{"file_name": "Raiden Shogun_003.png", "text": "Teyvat, Name:Raiden Shogun, Element:Electro, Weapon:Polearm, Region:Inazuma, Model type:Tall Female, Description:a woman with a sword standing in front of a purple background"},
|
124 |
+
{"file_name": "Qiqi_003.png", "text": "Teyvat, Name:Qiqi, Element:Cryo, Weapon:Sword, Region:Liyue, Model type:Short Female, Description:a anime character with a blue background"},
|
125 |
+
{"file_name": "Candace_004.png", "text": "Teyvat, Name:Candace, Element:Hydro, Weapon:Polearm, Region:Sumeru, Model type:Tall Female, Description:a woman in a costume with a sword"},
|
126 |
+
{"file_name": "Hu Tao_003.png", "text": "Teyvat, Name:Hu Tao, Element:Pyro, Weapon:Polearm, Region:Liyue, Model type:Medium Female, Description:a woman dressed in a costume and holding a wand"},
|
127 |
+
{"file_name": "Tartaglia_004.png", "text": "Teyvat, Name:Tartaglia, Element:Hydro, Weapon:Bow, Region:Snezhnaya, Model type:Tall Male, Description:a man in armor with a sword"},
|
128 |
+
{"file_name": "Cyno_002.png", "text": "Teyvat, Name:Cyno, Element:Electro, Weapon:Polearm, Region:Sumeru, Model type:Medium Male, Description:a woman in a costume with a sword"},
|
129 |
+
{"file_name": "Chongyun_004.png", "text": "Teyvat, Name:Chongyun, Element:Cryo, Weapon:Claymore, Region:Liyue, Model type:Medium Male, Description:an anime character in a blue and white outfit"},
|
130 |
+
{"file_name": "Kaedehara Kazuha_004.png", "text": "Teyvat, Name:Kaedehara Kazuha, Element:Anemo, Weapon:Sword, Region:Inazuma, Model type:Medium Male, Description:an anime character with white hair and a black outfit"},
|
131 |
+
{"file_name": "Diluc_002.png", "text": "Teyvat, Name:Diluc, Element:Pyro, Weapon:Claymore, Region:Mondstadt, Model type:Tall Male, Description:an anime character with red hair and black clothes"},
|
132 |
+
{"file_name": "Keqing_003.png", "text": "Teyvat, Name:Keqing, Element:Electro, Weapon:Sword, Region:Liyue, Model type:Medium Female, Description:a anime girl with long white hair and blue eyes"},
|
133 |
+
{"file_name": "Arataki Itto_003.png", "text": "Teyvat, Name:Arataki Itto, Element:Geo, Weapon:Claymore, Region:Inazuma, Model type:Tall Male, Description:a couple of anime characters standing next to each other"},
|
134 |
+
{"file_name": "Thoma_004.png", "text": "Teyvat, Name:Thoma, Element:Pyro, Weapon:Polearm, Region:Inazuma, Model type:Tall Male, Description:a man in a red and black outfit"},
|
135 |
+
{"file_name": "Aether_004.png", "text": "Teyvat, Name:Aether, Element:None, Weapon:Sword, Region:None, Model type:Medium Male, Description:an anime character with blonde hair and a brown outfit"},
|
136 |
+
{"file_name": "Shenhe_003.png", "text": "Teyvat, Name:Shenhe, Element:Cryo, Weapon:Polearm, Region:Liyue, Model type:Tall Female, Description:a woman with a sword in her hand"},
|
137 |
+
{"file_name": "Rosaria_004.png", "text": "Teyvat, Name:Rosaria, Element:Cryo, Weapon:Polearm, Region:Mondstadt, Model type:Tall Female, Description:a drawing of a woman with a sword"},
|
138 |
+
{"file_name": "Xiangling_003.png", "text": "Teyvat, Name:Xiangling, Element:Pyro, Weapon:Polearm, Region:Liyue, Model type:Medium Female, Description:a woman with a sword and a teddy bear"},
|
139 |
+
{"file_name": "Albedo_003.png", "text": "Teyvat, Name:Albedo, Element:Geo, Weapon:Sword, Region:Mondstadt, Model type:Medium Male, Description:a woman with a sword standing on a flower"},
|
140 |
+
{"file_name": "Collei_004.png", "text": "Teyvat, Name:Collei, Element:Dendro, Weapon:Bow, Region:Sumeru, Model type:Medium Female, Description:a woman with green hair and a black outfit"},
|
141 |
+
{"file_name": "Diluc_004.png", "text": "Teyvat, Name:Diluc, Element:Pyro, Weapon:Claymore, Region:Mondstadt, Model type:Tall Male, Description:an anime character with red hair and a black outfit"},
|
142 |
+
{"file_name": "Kaedehara Kazuha_002.png", "text": "Teyvat, Name:Kaedehara Kazuha, Element:Anemo, Weapon:Sword, Region:Inazuma, Model type:Medium Male, Description:a woman with a sword in her hand"},
|
143 |
+
{"file_name": "Hu Tao_002.png", "text": "Teyvat, Name:Hu Tao, Element:Pyro, Weapon:Polearm, Region:Liyue, Model type:Medium Female, Description:an anime character with long hair and a hat"},
|
144 |
+
{"file_name": "Jean_004.png", "text": "Teyvat, Name:Jean, Element:Anemo, Weapon:Sword, Region:Mondstadt, Model type:Tall Female, Description:a woman in a white and blue outfit"},
|
145 |
+
{"file_name": "Raiden Shogun_004.png", "text": "Teyvat, Name:Raiden Shogun, Element:Electro, Weapon:Polearm, Region:Inazuma, Model type:Tall Female, Description:a woman in a purple outfit with a sword"},
|
146 |
+
{"file_name": "Shenhe_002.png", "text": "Teyvat, Name:Shenhe, Element:Cryo, Weapon:Polearm, Region:Liyue, Model type:Tall Female, Description:a woman with a sword in her hand"},
|
147 |
+
{"file_name": "Fischl_003.png", "text": "Teyvat, Name:Fischl, Element:Electro, Weapon:Bow, Region:Mondstadt, Model type:Medium Female, Description:a girl with a bird flying in the air"},
|
148 |
+
{"file_name": "Xingqiu_003.png", "text": "Teyvat, Name:Xingqiu, Element:Hydro, Weapon:Sword, Region:Liyue, Model type:Medium Male, Description:a woman with a sword standing in the water"},
|
149 |
+
{"file_name": "Shikanoin Heizou_002.png", "text": "Teyvat, Name:Shikanoin Heizou, Element:Anemo, Weapon:Catalyst, Region:Inazuma, Model type:Medium Male, Description:a woman with red hair is holding a skateboard"},
|
150 |
+
{"file_name": "Venti_004.png", "text": "Teyvat, Name:Venti, Element:Anemo, Weapon:Bow, Region:Mondstadt, Model type:Medium Male, Description:a woman in a green dress and hat"},
|
151 |
+
{"file_name": "Ningguang_003.png", "text": "Teyvat, Name:Ningguang, Element:Geo, Weapon:Catalyst, Region:Liyue, Model type:Tall Female, Description:a woman in a white dress holding a flower"},
|
152 |
+
{"file_name": "Kaedehara Kazuha_003.png", "text": "Teyvat, Name:Kaedehara Kazuha, Element:Anemo, Weapon:Sword, Region:Inazuma, Model type:Medium Male, Description:a woman with a sword in her hand"},
|
153 |
+
{"file_name": "Mona_003.png", "text": "Teyvat, Name:Mona, Element:Hydro, Weapon:Catalyst, Region:Mondstadt, Model type:Medium Female, Description:a woman in a witches costume standing in front of a space filled with stars"},
|
154 |
+
{"file_name": "Klee_004.png", "text": "Teyvat, Name:Klee, Element:Pyro, Weapon:Catalyst, Region:Mondstadt, Model type:Short Female, Description:a drawing of a girl in a red outfit"},
|
155 |
+
{"file_name": "Kamisato Ayato_003.png", "text": "Teyvat, Name:Kamisato Ayato, Element:Hydro, Weapon:Sword, Region:Inazuma, Model type:Tall Male, Description:a woman in a white dress holding a sword"},
|
156 |
+
{"file_name": "Albedo_004.png", "text": "Teyvat, Name:Albedo, Element:Geo, Weapon:Sword, Region:Mondstadt, Model type:Medium Male, Description:a female character in a blue and white outfit"},
|
157 |
+
{"file_name": "Yae Miko_002.png", "text": "Teyvat, Name:Yae Miko, Element:Electro, Weapon:Catalyst, Region:Inazuma, Model type:Tall Female, Description:a woman in a red and white outfit holding a sword"},
|
158 |
+
{"file_name": "Candace_002.png", "text": "Teyvat, Name:Candace, Element:Hydro, Weapon:Polearm, Region:Sumeru, Model type:Tall Female, Description:a woman with a sword in her hand"},
|
159 |
+
{"file_name": "Tartaglia_002.png", "text": "Teyvat, Name:Tartaglia, Element:Hydro, Weapon:Bow, Region:Snezhnaya, Model type:Tall Male, Description:a man in a white and red outfit holding a sword"},
|
160 |
+
{"file_name": "Noelle_004.png", "text": "Teyvat, Name:Noelle, Element:Geo, Weapon:Claymore, Region:Mondstadt, Model type:Medium Female, Description:a woman in a dress with a sword"},
|
161 |
+
{"file_name": "Xiangling_004.png", "text": "Teyvat, Name:Xiangling, Element:Pyro, Weapon:Polearm, Region:Liyue, Model type:Medium Female, Description:a woman with blue hair wearing a brown outfit"},
|
162 |
+
{"file_name": "Yoimiya_004.png", "text": "Teyvat, Name:Yoimiya, Element:Pyro, Weapon:Bow, Region:Inazuma, Model type:Medium Female, Description:a woman in a short skirt and boots"},
|
163 |
+
{"file_name": "Kuki Shinobu_002.png", "text": "Teyvat, Name:Kuki Shinobu, Element:Electro, Weapon:Sword, Region:Inazuma, Model type:Medium Female, Description:a woman in a costume with a sword"},
|
164 |
+
{"file_name": "Xinyan_004.png", "text": "Teyvat, Name:Xinyan, Element:Pyro, Weapon:Claymore, Region:Liyue, Model type:Medium Female, Description:a woman in a costume standing in front of a purple background"},
|
165 |
+
{"file_name": "Eula_002.png", "text": "Teyvat, Name:Eula, Element:Cryo, Weapon:Claymore, Region:Mondstadt, Model type:Tall Female, Description:a woman in a black outfit with a sword"},
|
166 |
+
{"file_name": "Mona_004.png", "text": "Teyvat, Name:Mona, Element:Hydro, Weapon:Catalyst, Region:Mondstadt, Model type:Medium Female, Description:a woman in a purple outfit and hat"},
|
167 |
+
{"file_name": "Beidou_003.png", "text": "Teyvat, Name:Beidou, Element:Electro, Weapon:Claymore, Region:Liyue, Model type:Tall Female, Description:a woman with a sword and a sword in her hand"},
|
168 |
+
{"file_name": "Eula_004.png", "text": "Teyvat, Name:Eula, Element:Cryo, Weapon:Claymore, Region:Mondstadt, Model type:Tall Female, Description:a woman with blue hair and a blue outfit"},
|
169 |
+
{"file_name": "Amber_003.png", "text": "Teyvat, Name:Amber, Element:Pyro, Weapon:Bow, Region:Mondstadt, Model type:Medium Female, Description:a woman with a bow and arrow in her hand"},
|
170 |
+
{"file_name": "Klee_002.png", "text": "Teyvat, Name:Klee, Element:Pyro, Weapon:Catalyst, Region:Mondstadt, Model type:Short Female, Description:a girl in a red and white outfit holding a teddy bear"},
|
171 |
+
{"file_name": "Chongyun_002.png", "text": "Teyvat, Name:Chongyun, Element:Cryo, Weapon:Claymore, Region:Liyue, Model type:Medium Male, Description:an anime character with blue hair and a sword"},
|
172 |
+
{"file_name": "Bennett_002.png", "text": "Teyvat, Name:Bennett, Element:Pyro, Weapon:Sword, Region:Mondstadt, Model type:Medium Male, Description:an anime character with a sword and armor"},
|
173 |
+
{"file_name": "Arataki Itto_002.png", "text": "Teyvat, Name:Arataki Itto, Element:Geo, Weapon:Claymore, Region:Inazuma, Model type:Tall Male, Description:an anime character with a sword in his hand"},
|
174 |
+
{"file_name": "Jean_002.png", "text": "Teyvat, Name:Jean, Element:Anemo, Weapon:Sword, Region:Mondstadt, Model type:Tall Female, Description:a woman in a white and blue outfit holding a sword"},
|
175 |
+
{"file_name": "Kujou Sara_003.png", "text": "Teyvat, Name:Kujou Sara, Element:Electro, Weapon:Bow, Region:Inazuma, Model type:Tall Female, Description:a woman in a costume with a sword"},
|
176 |
+
{"file_name": "Barbara_002.png", "text": "Teyvat, Name:Barbara, Element:Hydro, Weapon:Catalyst, Region:Mondstadt, Model type:Medium Female, Description:a woman in a white dress holding a sword"},
|
177 |
+
{"file_name": "Klee_003.png", "text": "Teyvat, Name:Klee, Element:Pyro, Weapon:Catalyst, Region:Mondstadt, Model type:Short Female, Description:a girl in a red jacket holding a teddy bear"},
|
178 |
+
{"file_name": "Sangonomiya Kokomi_003.png", "text": "Teyvat, Name:Sangonomiya Kokomi, Element:Hydro, Weapon:Catalyst, Region:Inazuma, Model type:Medium Female, Description:a woman in a white dress with blue hair"},
|
179 |
+
{"file_name": "Xinyan_003.png", "text": "Teyvat, Name:Xinyan, Element:Pyro, Weapon:Claymore, Region:Liyue, Model type:Medium Female, Description:a woman with a gun and a sword in her hand"},
|
180 |
+
{"file_name": "Layla_002.png", "text": "Teyvat, Name:Layla, Element: Cryo, Weapon:Sword, Region:Sumeru, Model type:Medium Female, Description:a woman in a blue outfit holding a sword"},
|
181 |
+
{"file_name": "Tighnari_003.png", "text": "Teyvat, Name:Tighnari, Element:Dendro, Weapon:Bow, Region:Sumeru, Model type:Medium Male, Description:an anime character with a green and yellow background"},
|
182 |
+
{"file_name": "Ganyu_004.png", "text": "Teyvat, Name:Ganyu, Element:Cryo, Weapon:Bow, Region:Liyue, Model type:Medium Female, Description:an anime character with blue hair and blue eyes"},
|
183 |
+
{"file_name": "Diluc_003.png", "text": "Teyvat, Name:Diluc, Element:Pyro, Weapon:Claymore, Region:Mondstadt, Model type:Tall Male, Description:an anime character with a sword and wings"},
|
184 |
+
{"file_name": "Amber_002.png", "text": "Teyvat, Name:Amber, Element:Pyro, Weapon:Bow, Region:Mondstadt, Model type:Medium Female, Description:a woman in a red and white outfit"},
|
185 |
+
{"file_name": "Sayu_002.png", "text": "Teyvat, Name:Sayu, Element:Anemo, Weapon:Claymore, Region:Inazuma, Model type:Short Female, Description:an anime character is flying through the air"},
|
186 |
+
{"file_name": "Kujou Sara_004.png", "text": "Teyvat, Name:Kujou Sara, Element:Electro, Weapon:Bow, Region:Inazuma, Model type:Tall Female, Description:a woman in a dress with a bird on her head"},
|
187 |
+
{"file_name": "Nilou_002.png", "text": "Teyvat, Name:Nilou, Element:Hydro, Weapon:Sword, Region:Sumeru, Model type:Medium Female, Description:a woman with red hair wearing a blue dress and holding a sword"},
|
188 |
+
{"file_name": "Eula_003.png", "text": "Teyvat, Name:Eula, Element:Cryo, Weapon:Claymore, Region:Mondstadt, Model type:Tall Female, Description:a woman in a black and white outfit with snowflakes"},
|
189 |
+
{"file_name": "Xiao_003.png", "text": "Teyvat, Name:Xiao, Element:Anemo, Weapon:Polearm, Region:Liyue, Model type:Medium Male, Description:a woman with a sword and a sword in her hand"},
|
190 |
+
{"file_name": "Barbara_004.png", "text": "Teyvat, Name:Barbara, Element:Hydro, Weapon:Catalyst, Region:Mondstadt, Model type:Medium Female, Description:a girl in a white dress and blue shoes"},
|
191 |
+
{"file_name": "Sangonomiya Kokomi_002.png", "text": "Teyvat, Name:Sangonomiya Kokomi, Element:Hydro, Weapon:Catalyst, Region:Inazuma, Model type:Medium Female, Description:a woman in a blue and white outfit holding a blue bird"},
|
192 |
+
{"file_name": "Kaeya_003.png", "text": "Teyvat, Name:Kaeya, Element:Cryo, Weapon:Sword, Region:Mondstadt, Model type:Tall Male, Description:a woman with a sword standing in front of a blue background"},
|
193 |
+
{"file_name": "Nilou_003.png", "text": "Teyvat, Name:Nilou, Element:Hydro, Weapon:Sword, Region:Sumeru, Model type:Medium Female, Description:a woman with red hair and a blue dress is standing in front of a black background"},
|
194 |
+
{"file_name": "Arataki Itto_004.png", "text": "Teyvat, Name:Arataki Itto, Element:Geo, Weapon:Claymore, Region:Inazuma, Model type:Tall Male, Description:a male character in a costume with horns"},
|
195 |
+
{"file_name": "Lisa_002.png", "text": "Teyvat, Name:Lisa, Element:Electro, Weapon:Catalyst, Region:Mondstadt, Model type:Tall Female, Description:a woman dressed in a witch costume"},
|
196 |
+
{"file_name": "Dori_004.png", "text": "Teyvat, Name:Dori, Element:Electro, Weapon:Claymore, Region:Sumeru, Model type:Short Female, Description:a woman in a purple outfit and hat"},
|
197 |
+
{"file_name": "Shenhe_004.png", "text": "Teyvat, Name:Shenhe, Element:Cryo, Weapon:Polearm, Region:Liyue, Model type:Tall Female, Description:a drawing of a woman with white hair and tattoos"},
|
198 |
+
{"file_name": "Cyno_003.png", "text": "Teyvat, Name:Cyno, Element:Electro, Weapon:Polearm, Region:Sumeru, Model type:Medium Male, Description:a woman with a sword standing on a rock"},
|
199 |
+
{"file_name": "Fischl_002.png", "text": "Teyvat, Name:Fischl, Element:Electro, Weapon:Bow, Region:Mondstadt, Model type:Medium Female, Description:an anime character with long blonde hair and a purple outfit"},
|
200 |
+
{"file_name": "Thoma_003.png", "text": "Teyvat, Name:Thoma, Element:Pyro, Weapon:Polearm, Region:Inazuma, Model type:Tall Male, Description:a woman with a sword in her hand"},
|
201 |
+
{"file_name": "Yelan_003.png", "text": "Teyvat, Name:Yelan, Element:Hydro, Weapon:Bow, Region:Liyue, Model type:Tall Female, Description:a woman in a black and blue outfit holding a sword"},
|
202 |
+
{"file_name": "Yoimiya_002.png", "text": "Teyvat, Name:Yoimiya, Element:Pyro, Weapon:Bow, Region:Inazuma, Model type:Medium Female, Description:a girl with a sword in her hand"},
|
203 |
+
{"file_name": "Keqing_004.png", "text": "Teyvat, Name:Keqing, Element:Electro, Weapon:Sword, Region:Liyue, Model type:Medium Female, Description:an anime character wearing a purple dress and cat ears"},
|
204 |
+
{"file_name": "Yun Jin_004.png", "text": "Teyvat, Name:Yun Jin, Element:Geo, Weapon:Polearm, Region:Liyue, Model type:Medium Female, Description:a girl in a dress with a hat and boots"},
|
205 |
+
{"file_name": "Zhongli_002.png", "text": "Teyvat, Name:Zhongli, Element:Geo, Weapon:Polearm, Region:Liyue, Model type:Tall Male, Description:an anime character with a sword in his hand"},
|
206 |
+
{"file_name": "Sayu_004.png", "text": "Teyvat, Name:Sayu, Element:Anemo, Weapon:Claymore, Region:Inazuma, Model type:Short Female, Description:an anime character wearing a cat outfit"},
|
207 |
+
{"file_name": "Aloy_003.png", "text": "Teyvat, Name:Aloy, Element:Cryo, Weapon:Bow, Region:None, Model type:Medium Female, Description:a woman with a bow and arrow in her hand"},
|
208 |
+
{"file_name": "Qiqi_002.png", "text": "Teyvat, Name:Qiqi, Element:Cryo, Weapon:Sword, Region:Liyue, Model type:Short Female, Description:a girl in a blue dress and a hat"},
|
209 |
+
{"file_name": "Razor_003.png", "text": "Teyvat, Name:Razor, Element:Electro, Weapon:Claymore, Region:Mondstadt, Model type:Medium Male, Description:a woman with a sword in her hand"},
|
210 |
+
{"file_name": "Kamisato Ayato_004.png", "text": "Teyvat, Name:Kamisato Ayato, Element:Hydro, Weapon:Sword, Region:Inazuma, Model type:Tall Male, Description:a man in a white and blue outfit"},
|
211 |
+
{"file_name": "Yun Jin_002.png", "text": "Teyvat, Name:Yun Jin, Element:Geo, Weapon:Polearm, Region:Liyue, Model type:Medium Female, Description:a woman in a dress and hat holding a sword"},
|
212 |
+
{"file_name": "Cyno_004.png", "text": "Teyvat, Name:Cyno, Element:Electro, Weapon:Polearm, Region:Sumeru, Model type:Medium Male, Description:a woman in a costume with a sword"},
|
213 |
+
{"file_name": "Shikanoin Heizou_004.png", "text": "Teyvat, Name:Shikanoin Heizou, Element:Anemo, Weapon:Catalyst, Region:Inazuma, Model type:Medium Male, Description:an anime character with red hair and a white shirt"},
|
214 |
+
{"file_name": "Ningguang_002.png", "text": "Teyvat, Name:Ningguang, Element:Geo, Weapon:Catalyst, Region:Liyue, Model type:Tall Female, Description:a woman with long white hair and a sword"},
|
215 |
+
{"file_name": "Noelle_003.png", "text": "Teyvat, Name:Noelle, Element:Geo, Weapon:Claymore, Region:Mondstadt, Model type:Medium Female, Description:a girl with a sword in her hand"},
|
216 |
+
{"file_name": "Keqing_002.png", "text": "Teyvat, Name:Keqing, Element:Electro, Weapon:Sword, Region:Liyue, Model type:Medium Female, Description:an anime character with long hair and a purple dress"},
|
217 |
+
{"file_name": "Candace_003.png", "text": "Teyvat, Name:Candace, Element:Hydro, Weapon:Polearm, Region:Sumeru, Model type:Tall Female, Description:a woman with a sword in a circle of water"},
|
218 |
+
{"file_name": "Yanfei_002.png", "text": "Teyvat, Name:Yanfei, Element:Pyro, Weapon:Catalyst, Region:Liyue, Model type:Medium Female, Description:a woman in a red dress with a sword"},
|
219 |
+
{"file_name": "Qiqi_004.png", "text": "Teyvat, Name:Qiqi, Element:Cryo, Weapon:Sword, Region:Liyue, Model type:Short Female, Description:an anime character with purple hair and a blue outfit"},
|
220 |
+
{"file_name": "Xiao_004.png", "text": "Teyvat, Name:Xiao, Element:Anemo, Weapon:Polearm, Region:Liyue, Model type:Medium Male, Description:an anime character with black hair and blue eyes"},
|
221 |
+
{"file_name": "Kamisato Ayaka_003.png", "text": "Teyvat, Name:Kamisato Ayaka, Element:Cryo, Weapon:Sword, Region:Inazuma, Model type:Medium Female, Description:a anime girl with blue hair and a blue dress"},
|
222 |
+
{"file_name": "Xiao_002.png", "text": "Teyvat, Name:Xiao, Element:Anemo, Weapon:Polearm, Region:Liyue, Model type:Medium Male, Description:an anime character holding a sword and wearing a purple outfit"},
|
223 |
+
{"file_name": "Razor_002.png", "text": "Teyvat, Name:Razor, Element:Electro, Weapon:Claymore, Region:Mondstadt, Model type:Medium Male, Description:an anime character with a sword in her hand"},
|
224 |
+
{"file_name": "Tighnari_004.png", "text": "Teyvat, Name:Tighnari, Element:Dendro, Weapon:Bow, Region:Sumeru, Model type:Medium Male, Description:a person in a costume with a cat ears on"},
|
225 |
+
{"file_name": "Kamisato Ayaka_002.png", "text": "Teyvat, Name:Kamisato Ayaka, Element:Cryo, Weapon:Sword, Region:Inazuma, Model type:Medium Female, Description:a woman in a blue dress holding a fan"},
|
226 |
+
{"file_name": "Kamisato Ayaka_004.png", "text": "Teyvat, Name:Kamisato Ayaka, Element:Cryo, Weapon:Sword, Region:Inazuma, Model type:Medium Female, Description:a woman in a blue dress with a crown on her head"},
|
227 |
+
{"file_name": "Fischl_004.png", "text": "Teyvat, Name:Fischl, Element:Electro, Weapon:Bow, Region:Mondstadt, Model type:Medium Female, Description:a woman in a short skirt and boots"},
|
228 |
+
{"file_name": "Ningguang_004.png", "text": "Teyvat, Name:Ningguang, Element:Geo, Weapon:Catalyst, Region:Liyue, Model type:Tall Female, Description:a woman dressed in a costume with white hair"},
|
229 |
+
{"file_name": "Diona_004.png", "text": "Teyvat, Name:Diona, Element:Cryo, Weapon:Bow, Region:Mondstadt, Model type:Short Female, Description:a woman in a short skirt and a hat"},
|
230 |
+
{"file_name": "Gorou_002.png", "text": "Teyvat, Name:Gorou, Element:Geo, Weapon:Bow, Region:Inazuma, Model type:Medium Male, Description:an anime character with a sword and armor"},
|
231 |
+
{"file_name": "Xingqiu_002.png", "text": "Teyvat, Name:Xingqiu, Element:Hydro, Weapon:Sword, Region:Liyue, Model type:Medium Male, Description:an anime character with blue hair and a black outfit"},
|
232 |
+
{"file_name": "Nahida_003.png", "text": "Teyvat, Name:Nahida, Element:Dendro, Weapon:Catalyst, Region:Sumeru, Model type:Short Female, Description:a girl with an umbrella standing in front of a black background"},
|
233 |
+
{"file_name": "Kuki Shinobu_004.png", "text": "Teyvat, Name:Kuki Shinobu, Element:Electro, Weapon:Sword, Region:Inazuma, Model type:Medium Female, Description:a woman in a costume with green hair"},
|
234 |
+
{"file_name": "Jean_003.png", "text": "Teyvat, Name:Jean, Element:Anemo, Weapon:Sword, Region:Mondstadt, Model type:Tall Female, Description:a girl with a sword standing on a wave"},
|
235 |
+
{"file_name": "Beidou_004.png", "text": "Teyvat, Name:Beidou, Element:Electro, Weapon:Claymore, Region:Liyue, Model type:Tall Female, Description:a woman in a red and black outfit"}
|
236 |
+
]
|