Datasets:
fix script
Browse files- Teyvat.py +21 -20
- data/metadata.json +236 -0
- data/metadata.jsonl +0 -236
Teyvat.py
CHANGED
|
@@ -1,4 +1,4 @@
|
|
| 1 |
-
# Copyright 2022
|
| 2 |
# MIT License
|
| 3 |
"""Loading script for Teyvat."""
|
| 4 |
|
|
@@ -23,13 +23,14 @@ _VERSION = datasets.Version("0.0.1")
|
|
| 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 |
"datasets/Fazzie/Teyvat",
|
| 28 |
-
filename="data/"
|
| 29 |
),
|
| 30 |
-
"metadata":hf_hub_url(
|
| 31 |
"datasets/Fazzie/Teyvat",
|
| 32 |
-
filename="data/metadata.
|
| 33 |
)
|
| 34 |
}
|
| 35 |
|
|
@@ -74,40 +75,40 @@ class Teyvat(datasets.GeneratorBasedBuilder):
|
|
| 74 |
urls = _URLS
|
| 75 |
|
| 76 |
# Also download the data
|
| 77 |
-
data_path = dl_manager.download(urls["
|
| 78 |
meta_data_path = dl_manager.download(urls["metadata"])
|
|
|
|
|
|
|
| 79 |
return [
|
| 80 |
datasets.SplitGenerator(
|
| 81 |
name=datasets.Split.TRAIN,
|
| 82 |
# These kwargs will be passed to _generate_examples
|
| 83 |
gen_kwargs={
|
| 84 |
-
"
|
| 85 |
-
meta_data_path: meta_data_path
|
| 86 |
},
|
| 87 |
),
|
| 88 |
]
|
| 89 |
|
| 90 |
-
def _generate_examples(self,
|
| 91 |
# This method handles input defined in _split_generators to yield
|
| 92 |
# (key, example) tuples from the dataset.
|
| 93 |
# The `key` is for legacy reasons (tfds) and is not important in itself,
|
| 94 |
# but must be unique for each example.
|
| 95 |
|
| 96 |
# Load the metadata parquet file if the config is text_only
|
|
|
|
|
|
|
| 97 |
|
| 98 |
-
|
| 99 |
-
json_data = load(open(meta_data_path, "r", encoding="utf8"))
|
| 100 |
-
|
| 101 |
-
for image in json_data:
|
| 102 |
image_path = image["file_name"]
|
| 103 |
text = image["text"]
|
| 104 |
|
| 105 |
|
| 106 |
|
| 107 |
-
|
| 108 |
-
|
| 109 |
-
|
| 110 |
-
|
| 111 |
-
|
| 112 |
-
|
| 113 |
-
|
|
|
|
| 1 |
+
# Copyright 2022 Fazzie
|
| 2 |
# MIT License
|
| 3 |
"""Loading script for Teyvat."""
|
| 4 |
|
|
|
|
| 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 |
"datasets/Fazzie/Teyvat",
|
| 29 |
+
filename="data/*.png",
|
| 30 |
),
|
| 31 |
+
"metadata" :hf_hub_url(
|
| 32 |
"datasets/Fazzie/Teyvat",
|
| 33 |
+
filename="data/metadata.json",
|
| 34 |
)
|
| 35 |
}
|
| 36 |
|
|
|
|
| 75 |
urls = _URLS
|
| 76 |
|
| 77 |
# Also download the data
|
| 78 |
+
data_path = dl_manager.download(urls["data"])
|
| 79 |
meta_data_path = dl_manager.download(urls["metadata"])
|
| 80 |
+
# meta_data_path = "data/metadata.json"
|
| 81 |
+
# meta_data_path = join(data_path, "metadata.json")
|
| 82 |
return [
|
| 83 |
datasets.SplitGenerator(
|
| 84 |
name=datasets.Split.TRAIN,
|
| 85 |
# These kwargs will be passed to _generate_examples
|
| 86 |
gen_kwargs={
|
| 87 |
+
"meta_data_path": meta_data_path
|
|
|
|
| 88 |
},
|
| 89 |
),
|
| 90 |
]
|
| 91 |
|
| 92 |
+
def _generate_examples(self, meta_data_path):
|
| 93 |
# This method handles input defined in _split_generators to yield
|
| 94 |
# (key, example) tuples from the dataset.
|
| 95 |
# The `key` is for legacy reasons (tfds) and is not important in itself,
|
| 96 |
# but must be unique for each example.
|
| 97 |
|
| 98 |
# Load the metadata parquet file if the config is text_only
|
| 99 |
+
print("Loading metadata...", meta_data_path)
|
| 100 |
+
data = load(open(meta_data_path, "r", encoding="utf8"))
|
| 101 |
|
| 102 |
+
for image in data:
|
|
|
|
|
|
|
|
|
|
| 103 |
image_path = image["file_name"]
|
| 104 |
text = image["text"]
|
| 105 |
|
| 106 |
|
| 107 |
|
| 108 |
+
yield image_path, {
|
| 109 |
+
"image": {
|
| 110 |
+
"path": image_path,
|
| 111 |
+
"bytes": open(image_path, "rb").read(),
|
| 112 |
+
},
|
| 113 |
+
"text": text,
|
| 114 |
+
}
|
data/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 |
+
]
|
data/metadata.jsonl
DELETED
|
@@ -1,236 +0,0 @@
|
|
| 1 |
-
{"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"}
|
| 2 |
-
{"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"}
|
| 3 |
-
{"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"}
|
| 4 |
-
{"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"}
|
| 5 |
-
{"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"}
|
| 6 |
-
{"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"}
|
| 7 |
-
{"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"}
|
| 8 |
-
{"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"}
|
| 9 |
-
{"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"}
|
| 10 |
-
{"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"}
|
| 11 |
-
{"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"}
|
| 12 |
-
{"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"}
|
| 13 |
-
{"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"}
|
| 14 |
-
{"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"}
|
| 15 |
-
{"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"}
|
| 16 |
-
{"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"}
|
| 17 |
-
{"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"}
|
| 18 |
-
{"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"}
|
| 19 |
-
{"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"}
|
| 20 |
-
{"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"}
|
| 21 |
-
{"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"}
|
| 22 |
-
{"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"}
|
| 23 |
-
{"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"}
|
| 24 |
-
{"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"}
|
| 25 |
-
{"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"}
|
| 26 |
-
{"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"}
|
| 27 |
-
{"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"}
|
| 28 |
-
{"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"}
|
| 29 |
-
{"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"}
|
| 30 |
-
{"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"}
|
| 31 |
-
{"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"}
|
| 32 |
-
{"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"}
|
| 33 |
-
{"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"}
|
| 34 |
-
{"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"}
|
| 35 |
-
{"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"}
|
| 36 |
-
{"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"}
|
| 37 |
-
{"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"}
|
| 38 |
-
{"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"}
|
| 39 |
-
{"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"}
|
| 40 |
-
{"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"}
|
| 41 |
-
{"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"}
|
| 42 |
-
{"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"}
|
| 43 |
-
{"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"}
|
| 44 |
-
{"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"}
|
| 45 |
-
{"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"}
|
| 46 |
-
{"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"}
|
| 47 |
-
{"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"}
|
| 48 |
-
{"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"}
|
| 49 |
-
{"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"}
|
| 50 |
-
{"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"}
|
| 51 |
-
{"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"}
|
| 52 |
-
{"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"}
|
| 53 |
-
{"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"}
|
| 54 |
-
{"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"}
|
| 55 |
-
{"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"}
|
| 56 |
-
{"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"}
|
| 57 |
-
{"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"}
|
| 58 |
-
{"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"}
|
| 59 |
-
{"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"}
|
| 60 |
-
{"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"}
|
| 61 |
-
{"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"}
|
| 62 |
-
{"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"}
|
| 63 |
-
{"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"}
|
| 64 |
-
{"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"}
|
| 65 |
-
{"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"}
|
| 66 |
-
{"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"}
|
| 67 |
-
{"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"}
|
| 68 |
-
{"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"}
|
| 69 |
-
{"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"}
|
| 70 |
-
{"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"}
|
| 71 |
-
{"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"}
|
| 72 |
-
{"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"}
|
| 73 |
-
{"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"}
|
| 74 |
-
{"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"}
|
| 75 |
-
{"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"}
|
| 76 |
-
{"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"}
|
| 77 |
-
{"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"}
|
| 78 |
-
{"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"}
|
| 79 |
-
{"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"}
|
| 80 |
-
{"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"}
|
| 81 |
-
{"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"}
|
| 82 |
-
{"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"}
|
| 83 |
-
{"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"}
|
| 84 |
-
{"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"}
|
| 85 |
-
{"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"}
|
| 86 |
-
{"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"}
|
| 87 |
-
{"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"}
|
| 88 |
-
{"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"}
|
| 89 |
-
{"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"}
|
| 90 |
-
{"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"}
|
| 91 |
-
{"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"}
|
| 92 |
-
{"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"}
|
| 93 |
-
{"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"}
|
| 94 |
-
{"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"}
|
| 95 |
-
{"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"}
|
| 96 |
-
{"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"}
|
| 97 |
-
{"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"}
|
| 98 |
-
{"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"}
|
| 99 |
-
{"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"}
|
| 100 |
-
{"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"}
|
| 101 |
-
{"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"}
|
| 102 |
-
{"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"}
|
| 103 |
-
{"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"}
|
| 104 |
-
{"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"}
|
| 105 |
-
{"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"}
|
| 106 |
-
{"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"}
|
| 107 |
-
{"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"}
|
| 108 |
-
{"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"}
|
| 109 |
-
{"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"}
|
| 110 |
-
{"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"}
|
| 111 |
-
{"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"}
|
| 112 |
-
{"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"}
|
| 113 |
-
{"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"}
|
| 114 |
-
{"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"}
|
| 115 |
-
{"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"}
|
| 116 |
-
{"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"}
|
| 117 |
-
{"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"}
|
| 118 |
-
{"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"}
|
| 119 |
-
{"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"}
|
| 120 |
-
{"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"}
|
| 121 |
-
{"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"}
|
| 122 |
-
{"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"}
|
| 123 |
-
{"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"}
|
| 124 |
-
{"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"}
|
| 125 |
-
{"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"}
|
| 126 |
-
{"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"}
|
| 127 |
-
{"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"}
|
| 128 |
-
{"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"}
|
| 129 |
-
{"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"}
|
| 130 |
-
{"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"}
|
| 131 |
-
{"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"}
|
| 132 |
-
{"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"}
|
| 133 |
-
{"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"}
|
| 134 |
-
{"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"}
|
| 135 |
-
{"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"}
|
| 136 |
-
{"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"}
|
| 137 |
-
{"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"}
|
| 138 |
-
{"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"}
|
| 139 |
-
{"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"}
|
| 140 |
-
{"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"}
|
| 141 |
-
{"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"}
|
| 142 |
-
{"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"}
|
| 143 |
-
{"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"}
|
| 144 |
-
{"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"}
|
| 145 |
-
{"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"}
|
| 146 |
-
{"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"}
|
| 147 |
-
{"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"}
|
| 148 |
-
{"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"}
|
| 149 |
-
{"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"}
|
| 150 |
-
{"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"}
|
| 151 |
-
{"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"}
|
| 152 |
-
{"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"}
|
| 153 |
-
{"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"}
|
| 154 |
-
{"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"}
|
| 155 |
-
{"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"}
|
| 156 |
-
{"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"}
|
| 157 |
-
{"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"}
|
| 158 |
-
{"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"}
|
| 159 |
-
{"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"}
|
| 160 |
-
{"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"}
|
| 161 |
-
{"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"}
|
| 162 |
-
{"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"}
|
| 163 |
-
{"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"}
|
| 164 |
-
{"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"}
|
| 165 |
-
{"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"}
|
| 166 |
-
{"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"}
|
| 167 |
-
{"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"}
|
| 168 |
-
{"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"}
|
| 169 |
-
{"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"}
|
| 170 |
-
{"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"}
|
| 171 |
-
{"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"}
|
| 172 |
-
{"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"}
|
| 173 |
-
{"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"}
|
| 174 |
-
{"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"}
|
| 175 |
-
{"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"}
|
| 176 |
-
{"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"}
|
| 177 |
-
{"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"}
|
| 178 |
-
{"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"}
|
| 179 |
-
{"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"}
|
| 180 |
-
{"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"}
|
| 181 |
-
{"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"}
|
| 182 |
-
{"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"}
|
| 183 |
-
{"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"}
|
| 184 |
-
{"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"}
|
| 185 |
-
{"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"}
|
| 186 |
-
{"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"}
|
| 187 |
-
{"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"}
|
| 188 |
-
{"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"}
|
| 189 |
-
{"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"}
|
| 190 |
-
{"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"}
|
| 191 |
-
{"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"}
|
| 192 |
-
{"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"}
|
| 193 |
-
{"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"}
|
| 194 |
-
{"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"}
|
| 195 |
-
{"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"}
|
| 196 |
-
{"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"}
|
| 197 |
-
{"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"}
|
| 198 |
-
{"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"}
|
| 199 |
-
{"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"}
|
| 200 |
-
{"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"}
|
| 201 |
-
{"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"}
|
| 202 |
-
{"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"}
|
| 203 |
-
{"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"}
|
| 204 |
-
{"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"}
|
| 205 |
-
{"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"}
|
| 206 |
-
{"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"}
|
| 207 |
-
{"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"}
|
| 208 |
-
{"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"}
|
| 209 |
-
{"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"}
|
| 210 |
-
{"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"}
|
| 211 |
-
{"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"}
|
| 212 |
-
{"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"}
|
| 213 |
-
{"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"}
|
| 214 |
-
{"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"}
|
| 215 |
-
{"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"}
|
| 216 |
-
{"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"}
|
| 217 |
-
{"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"}
|
| 218 |
-
{"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"}
|
| 219 |
-
{"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"}
|
| 220 |
-
{"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"}
|
| 221 |
-
{"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"}
|
| 222 |
-
{"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"}
|
| 223 |
-
{"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"}
|
| 224 |
-
{"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"}
|
| 225 |
-
{"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"}
|
| 226 |
-
{"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"}
|
| 227 |
-
{"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"}
|
| 228 |
-
{"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"}
|
| 229 |
-
{"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"}
|
| 230 |
-
{"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"}
|
| 231 |
-
{"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"}
|
| 232 |
-
{"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"}
|
| 233 |
-
{"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"}
|
| 234 |
-
{"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"}
|
| 235 |
-
|
| 236 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|