├── .gitignore ├── CHANGELOG.md ├── LICENSE ├── README.md ├── __init__.py ├── almanac ├── __init__.py ├── almanac.py ├── assets │ ├── almanac_list.json │ ├── back.png │ ├── config.json │ ├── lots_bg.png │ ├── lots_list.json │ └── 汉仪文黑.ttf ├── draw_lots.py ├── group_list.json └── tweaks.py ├── artifact_collect ├── Artifact.py ├── __init__.py ├── artifact_list.json ├── artifact_property.json ├── icon │ ├── 0.png │ ├── 1.png │ ├── 14001_0.png │ ├── 14001_1.png │ ├── 14001_2.png │ ├── 14001_3.png │ ├── 14001_4.png │ ├── 14002_0.png │ ├── 14002_1.png │ ├── 14002_2.png │ ├── 14002_3.png │ ├── 14002_4.png │ ├── 14003_0.png │ ├── 14003_1.png │ ├── 14003_2.png │ ├── 14003_3.png │ ├── 14003_4.png │ ├── 14004_0.png │ ├── 14004_1.png │ ├── 14004_2.png │ ├── 14004_3.png │ ├── 14004_4.png │ ├── 14005_0.png │ ├── 14005_1.png │ ├── 14005_2.png │ ├── 14005_3.png │ ├── 14005_4.png │ ├── 14006_0.png │ ├── 14006_1.png │ ├── 14006_2.png │ ├── 14006_3.png │ ├── 14006_4.png │ ├── 15001_0.png │ ├── 15001_1.png │ ├── 15001_2.png │ ├── 15001_3.png │ ├── 15001_4.png │ ├── 15002_0.png │ ├── 15002_1.png │ ├── 15002_2.png │ ├── 15002_3.png │ ├── 15002_4.png │ ├── 15003_0.png │ ├── 15003_1.png │ ├── 15003_2.png │ ├── 15003_3.png │ ├── 15003_4.png │ ├── 15004_0.png │ ├── 15004_1.png │ ├── 15004_2.png │ ├── 15004_3.png │ ├── 15004_4.png │ ├── 15005_0.png │ ├── 15005_1.png │ ├── 15005_2.png │ ├── 15005_3.png │ ├── 15005_4.png │ ├── 15006_0.png │ ├── 15006_1.png │ ├── 15006_2.png │ ├── 15006_3.png │ ├── 15006_4.png │ ├── 15007_0.png │ ├── 15007_1.png │ ├── 15007_2.png │ ├── 15007_3.png │ ├── 15007_4.png │ ├── 15008_0.png │ ├── 15008_1.png │ ├── 15008_2.png │ ├── 15008_3.png │ ├── 15008_4.png │ ├── 15017_0.png │ ├── 15017_1.png │ ├── 15017_2.png │ ├── 15017_3.png │ ├── 15017_4.png │ ├── 15018_0.png │ ├── 15018_1.png │ ├── 15018_2.png │ ├── 15018_3.png │ ├── 15018_4.png │ ├── 15019_0.png │ ├── 15019_1.png │ ├── 15019_2.png │ ├── 15019_3.png │ ├── 15019_4.png │ ├── 15020_0.png │ ├── 15020_1.png │ ├── 15020_2.png │ ├── 15020_3.png │ ├── 15020_4.png │ ├── 15021_0.png │ ├── 15021_1.png │ ├── 15021_2.png │ ├── 15021_3.png │ ├── 15021_4.png │ ├── 15022_0.png │ ├── 15022_1.png │ ├── 15022_2.png │ ├── 15022_3.png │ ├── 15022_4.png │ ├── 15023_0.png │ ├── 15023_1.png │ ├── 15023_2.png │ ├── 15023_3.png │ ├── 15023_4.png │ ├── 15024_0.png │ ├── 15024_1.png │ ├── 15024_2.png │ ├── 15024_3.png │ ├── 15024_4.png │ ├── 2.png │ ├── 3.png │ ├── 4.png │ └── background.png ├── json_rw.py ├── property_list.json └── zh-cn.ttf ├── artifact_rate ├── __init__.py └── artifact_eval.py ├── config.py ├── gacha ├── __init__.py ├── gacha.py ├── icon │ ├── 1_star.png │ ├── 1_star_bg.png │ ├── 2_star.png │ ├── 2_star_bg.png │ ├── 3_star.png │ ├── 3_star_bg.png │ ├── 4_star.png │ ├── 4_star_bg.png │ ├── 5_star.png │ ├── 5_star_bg.png │ ├── anemo.png │ ├── cryo.png │ ├── default.png │ ├── dendro.png │ ├── electro.png │ ├── geo.png │ ├── hydro.png │ └── pyro.png └── pool_data.py ├── material_remind ├── __init__.py └── icon │ ├── 武器突破材料_周一周四.png │ ├── 武器突破材料_周三周六.png │ ├── 武器突破材料_周二周五.png │ ├── 角色天赋材料_周一周四.png │ ├── 角色天赋材料_周三周六.png │ └── 角色天赋材料_周二周五.png ├── qiu_qiu_translation ├── __init__.py ├── qiu_qiu_dictionary.json └── qiu_qiu_translation.py └── query_resource_points ├── __init__.py ├── icon ├── 0.png ├── box.png └── box_alpha.png └── query_resource_points.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/H-K-Y/Genshin_Impact_bot/HEAD/.gitignore -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/H-K-Y/Genshin_Impact_bot/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/H-K-Y/Genshin_Impact_bot/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/H-K-Y/Genshin_Impact_bot/HEAD/README.md -------------------------------------------------------------------------------- /__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/H-K-Y/Genshin_Impact_bot/HEAD/__init__.py -------------------------------------------------------------------------------- /almanac/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/H-K-Y/Genshin_Impact_bot/HEAD/almanac/__init__.py -------------------------------------------------------------------------------- /almanac/almanac.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/H-K-Y/Genshin_Impact_bot/HEAD/almanac/almanac.py -------------------------------------------------------------------------------- /almanac/assets/almanac_list.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/H-K-Y/Genshin_Impact_bot/HEAD/almanac/assets/almanac_list.json -------------------------------------------------------------------------------- /almanac/assets/back.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/H-K-Y/Genshin_Impact_bot/HEAD/almanac/assets/back.png -------------------------------------------------------------------------------- /almanac/assets/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/H-K-Y/Genshin_Impact_bot/HEAD/almanac/assets/config.json -------------------------------------------------------------------------------- /almanac/assets/lots_bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/H-K-Y/Genshin_Impact_bot/HEAD/almanac/assets/lots_bg.png -------------------------------------------------------------------------------- /almanac/assets/lots_list.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/H-K-Y/Genshin_Impact_bot/HEAD/almanac/assets/lots_list.json -------------------------------------------------------------------------------- /almanac/assets/汉仪文黑.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/H-K-Y/Genshin_Impact_bot/HEAD/almanac/assets/汉仪文黑.ttf -------------------------------------------------------------------------------- /almanac/draw_lots.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/H-K-Y/Genshin_Impact_bot/HEAD/almanac/draw_lots.py -------------------------------------------------------------------------------- /almanac/group_list.json: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /almanac/tweaks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/H-K-Y/Genshin_Impact_bot/HEAD/almanac/tweaks.py -------------------------------------------------------------------------------- /artifact_collect/Artifact.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/H-K-Y/Genshin_Impact_bot/HEAD/artifact_collect/Artifact.py -------------------------------------------------------------------------------- /artifact_collect/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/H-K-Y/Genshin_Impact_bot/HEAD/artifact_collect/__init__.py -------------------------------------------------------------------------------- /artifact_collect/artifact_list.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/H-K-Y/Genshin_Impact_bot/HEAD/artifact_collect/artifact_list.json -------------------------------------------------------------------------------- /artifact_collect/artifact_property.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/H-K-Y/Genshin_Impact_bot/HEAD/artifact_collect/artifact_property.json -------------------------------------------------------------------------------- /artifact_collect/icon/0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/H-K-Y/Genshin_Impact_bot/HEAD/artifact_collect/icon/0.png -------------------------------------------------------------------------------- /artifact_collect/icon/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/H-K-Y/Genshin_Impact_bot/HEAD/artifact_collect/icon/1.png -------------------------------------------------------------------------------- /artifact_collect/icon/14001_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/H-K-Y/Genshin_Impact_bot/HEAD/artifact_collect/icon/14001_0.png -------------------------------------------------------------------------------- /artifact_collect/icon/14001_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/H-K-Y/Genshin_Impact_bot/HEAD/artifact_collect/icon/14001_1.png -------------------------------------------------------------------------------- /artifact_collect/icon/14001_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/H-K-Y/Genshin_Impact_bot/HEAD/artifact_collect/icon/14001_2.png -------------------------------------------------------------------------------- /artifact_collect/icon/14001_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/H-K-Y/Genshin_Impact_bot/HEAD/artifact_collect/icon/14001_3.png -------------------------------------------------------------------------------- /artifact_collect/icon/14001_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/H-K-Y/Genshin_Impact_bot/HEAD/artifact_collect/icon/14001_4.png -------------------------------------------------------------------------------- /artifact_collect/icon/14002_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/H-K-Y/Genshin_Impact_bot/HEAD/artifact_collect/icon/14002_0.png -------------------------------------------------------------------------------- /artifact_collect/icon/14002_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/H-K-Y/Genshin_Impact_bot/HEAD/artifact_collect/icon/14002_1.png -------------------------------------------------------------------------------- /artifact_collect/icon/14002_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/H-K-Y/Genshin_Impact_bot/HEAD/artifact_collect/icon/14002_2.png -------------------------------------------------------------------------------- /artifact_collect/icon/14002_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/H-K-Y/Genshin_Impact_bot/HEAD/artifact_collect/icon/14002_3.png -------------------------------------------------------------------------------- /artifact_collect/icon/14002_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/H-K-Y/Genshin_Impact_bot/HEAD/artifact_collect/icon/14002_4.png -------------------------------------------------------------------------------- /artifact_collect/icon/14003_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/H-K-Y/Genshin_Impact_bot/HEAD/artifact_collect/icon/14003_0.png -------------------------------------------------------------------------------- /artifact_collect/icon/14003_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/H-K-Y/Genshin_Impact_bot/HEAD/artifact_collect/icon/14003_1.png -------------------------------------------------------------------------------- /artifact_collect/icon/14003_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/H-K-Y/Genshin_Impact_bot/HEAD/artifact_collect/icon/14003_2.png -------------------------------------------------------------------------------- /artifact_collect/icon/14003_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/H-K-Y/Genshin_Impact_bot/HEAD/artifact_collect/icon/14003_3.png -------------------------------------------------------------------------------- /artifact_collect/icon/14003_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/H-K-Y/Genshin_Impact_bot/HEAD/artifact_collect/icon/14003_4.png -------------------------------------------------------------------------------- /artifact_collect/icon/14004_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/H-K-Y/Genshin_Impact_bot/HEAD/artifact_collect/icon/14004_0.png -------------------------------------------------------------------------------- /artifact_collect/icon/14004_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/H-K-Y/Genshin_Impact_bot/HEAD/artifact_collect/icon/14004_1.png -------------------------------------------------------------------------------- /artifact_collect/icon/14004_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/H-K-Y/Genshin_Impact_bot/HEAD/artifact_collect/icon/14004_2.png -------------------------------------------------------------------------------- /artifact_collect/icon/14004_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/H-K-Y/Genshin_Impact_bot/HEAD/artifact_collect/icon/14004_3.png -------------------------------------------------------------------------------- /artifact_collect/icon/14004_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/H-K-Y/Genshin_Impact_bot/HEAD/artifact_collect/icon/14004_4.png -------------------------------------------------------------------------------- /artifact_collect/icon/14005_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/H-K-Y/Genshin_Impact_bot/HEAD/artifact_collect/icon/14005_0.png -------------------------------------------------------------------------------- /artifact_collect/icon/14005_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/H-K-Y/Genshin_Impact_bot/HEAD/artifact_collect/icon/14005_1.png -------------------------------------------------------------------------------- /artifact_collect/icon/14005_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/H-K-Y/Genshin_Impact_bot/HEAD/artifact_collect/icon/14005_2.png -------------------------------------------------------------------------------- /artifact_collect/icon/14005_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/H-K-Y/Genshin_Impact_bot/HEAD/artifact_collect/icon/14005_3.png -------------------------------------------------------------------------------- /artifact_collect/icon/14005_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/H-K-Y/Genshin_Impact_bot/HEAD/artifact_collect/icon/14005_4.png -------------------------------------------------------------------------------- /artifact_collect/icon/14006_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/H-K-Y/Genshin_Impact_bot/HEAD/artifact_collect/icon/14006_0.png -------------------------------------------------------------------------------- /artifact_collect/icon/14006_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/H-K-Y/Genshin_Impact_bot/HEAD/artifact_collect/icon/14006_1.png -------------------------------------------------------------------------------- /artifact_collect/icon/14006_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/H-K-Y/Genshin_Impact_bot/HEAD/artifact_collect/icon/14006_2.png -------------------------------------------------------------------------------- /artifact_collect/icon/14006_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/H-K-Y/Genshin_Impact_bot/HEAD/artifact_collect/icon/14006_3.png -------------------------------------------------------------------------------- /artifact_collect/icon/14006_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/H-K-Y/Genshin_Impact_bot/HEAD/artifact_collect/icon/14006_4.png -------------------------------------------------------------------------------- /artifact_collect/icon/15001_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/H-K-Y/Genshin_Impact_bot/HEAD/artifact_collect/icon/15001_0.png -------------------------------------------------------------------------------- /artifact_collect/icon/15001_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/H-K-Y/Genshin_Impact_bot/HEAD/artifact_collect/icon/15001_1.png -------------------------------------------------------------------------------- /artifact_collect/icon/15001_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/H-K-Y/Genshin_Impact_bot/HEAD/artifact_collect/icon/15001_2.png -------------------------------------------------------------------------------- /artifact_collect/icon/15001_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/H-K-Y/Genshin_Impact_bot/HEAD/artifact_collect/icon/15001_3.png -------------------------------------------------------------------------------- /artifact_collect/icon/15001_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/H-K-Y/Genshin_Impact_bot/HEAD/artifact_collect/icon/15001_4.png -------------------------------------------------------------------------------- /artifact_collect/icon/15002_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/H-K-Y/Genshin_Impact_bot/HEAD/artifact_collect/icon/15002_0.png -------------------------------------------------------------------------------- /artifact_collect/icon/15002_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/H-K-Y/Genshin_Impact_bot/HEAD/artifact_collect/icon/15002_1.png -------------------------------------------------------------------------------- /artifact_collect/icon/15002_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/H-K-Y/Genshin_Impact_bot/HEAD/artifact_collect/icon/15002_2.png -------------------------------------------------------------------------------- /artifact_collect/icon/15002_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/H-K-Y/Genshin_Impact_bot/HEAD/artifact_collect/icon/15002_3.png -------------------------------------------------------------------------------- /artifact_collect/icon/15002_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/H-K-Y/Genshin_Impact_bot/HEAD/artifact_collect/icon/15002_4.png -------------------------------------------------------------------------------- /artifact_collect/icon/15003_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/H-K-Y/Genshin_Impact_bot/HEAD/artifact_collect/icon/15003_0.png -------------------------------------------------------------------------------- /artifact_collect/icon/15003_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/H-K-Y/Genshin_Impact_bot/HEAD/artifact_collect/icon/15003_1.png -------------------------------------------------------------------------------- /artifact_collect/icon/15003_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/H-K-Y/Genshin_Impact_bot/HEAD/artifact_collect/icon/15003_2.png -------------------------------------------------------------------------------- /artifact_collect/icon/15003_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/H-K-Y/Genshin_Impact_bot/HEAD/artifact_collect/icon/15003_3.png -------------------------------------------------------------------------------- /artifact_collect/icon/15003_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/H-K-Y/Genshin_Impact_bot/HEAD/artifact_collect/icon/15003_4.png -------------------------------------------------------------------------------- /artifact_collect/icon/15004_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/H-K-Y/Genshin_Impact_bot/HEAD/artifact_collect/icon/15004_0.png -------------------------------------------------------------------------------- /artifact_collect/icon/15004_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/H-K-Y/Genshin_Impact_bot/HEAD/artifact_collect/icon/15004_1.png -------------------------------------------------------------------------------- /artifact_collect/icon/15004_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/H-K-Y/Genshin_Impact_bot/HEAD/artifact_collect/icon/15004_2.png -------------------------------------------------------------------------------- /artifact_collect/icon/15004_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/H-K-Y/Genshin_Impact_bot/HEAD/artifact_collect/icon/15004_3.png -------------------------------------------------------------------------------- /artifact_collect/icon/15004_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/H-K-Y/Genshin_Impact_bot/HEAD/artifact_collect/icon/15004_4.png -------------------------------------------------------------------------------- /artifact_collect/icon/15005_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/H-K-Y/Genshin_Impact_bot/HEAD/artifact_collect/icon/15005_0.png -------------------------------------------------------------------------------- /artifact_collect/icon/15005_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/H-K-Y/Genshin_Impact_bot/HEAD/artifact_collect/icon/15005_1.png -------------------------------------------------------------------------------- /artifact_collect/icon/15005_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/H-K-Y/Genshin_Impact_bot/HEAD/artifact_collect/icon/15005_2.png -------------------------------------------------------------------------------- /artifact_collect/icon/15005_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/H-K-Y/Genshin_Impact_bot/HEAD/artifact_collect/icon/15005_3.png -------------------------------------------------------------------------------- /artifact_collect/icon/15005_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/H-K-Y/Genshin_Impact_bot/HEAD/artifact_collect/icon/15005_4.png -------------------------------------------------------------------------------- /artifact_collect/icon/15006_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/H-K-Y/Genshin_Impact_bot/HEAD/artifact_collect/icon/15006_0.png -------------------------------------------------------------------------------- /artifact_collect/icon/15006_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/H-K-Y/Genshin_Impact_bot/HEAD/artifact_collect/icon/15006_1.png -------------------------------------------------------------------------------- /artifact_collect/icon/15006_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/H-K-Y/Genshin_Impact_bot/HEAD/artifact_collect/icon/15006_2.png -------------------------------------------------------------------------------- /artifact_collect/icon/15006_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/H-K-Y/Genshin_Impact_bot/HEAD/artifact_collect/icon/15006_3.png -------------------------------------------------------------------------------- /artifact_collect/icon/15006_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/H-K-Y/Genshin_Impact_bot/HEAD/artifact_collect/icon/15006_4.png -------------------------------------------------------------------------------- /artifact_collect/icon/15007_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/H-K-Y/Genshin_Impact_bot/HEAD/artifact_collect/icon/15007_0.png -------------------------------------------------------------------------------- /artifact_collect/icon/15007_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/H-K-Y/Genshin_Impact_bot/HEAD/artifact_collect/icon/15007_1.png -------------------------------------------------------------------------------- /artifact_collect/icon/15007_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/H-K-Y/Genshin_Impact_bot/HEAD/artifact_collect/icon/15007_2.png -------------------------------------------------------------------------------- /artifact_collect/icon/15007_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/H-K-Y/Genshin_Impact_bot/HEAD/artifact_collect/icon/15007_3.png -------------------------------------------------------------------------------- /artifact_collect/icon/15007_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/H-K-Y/Genshin_Impact_bot/HEAD/artifact_collect/icon/15007_4.png -------------------------------------------------------------------------------- /artifact_collect/icon/15008_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/H-K-Y/Genshin_Impact_bot/HEAD/artifact_collect/icon/15008_0.png -------------------------------------------------------------------------------- /artifact_collect/icon/15008_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/H-K-Y/Genshin_Impact_bot/HEAD/artifact_collect/icon/15008_1.png -------------------------------------------------------------------------------- /artifact_collect/icon/15008_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/H-K-Y/Genshin_Impact_bot/HEAD/artifact_collect/icon/15008_2.png -------------------------------------------------------------------------------- /artifact_collect/icon/15008_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/H-K-Y/Genshin_Impact_bot/HEAD/artifact_collect/icon/15008_3.png -------------------------------------------------------------------------------- /artifact_collect/icon/15008_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/H-K-Y/Genshin_Impact_bot/HEAD/artifact_collect/icon/15008_4.png -------------------------------------------------------------------------------- /artifact_collect/icon/15017_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/H-K-Y/Genshin_Impact_bot/HEAD/artifact_collect/icon/15017_0.png -------------------------------------------------------------------------------- /artifact_collect/icon/15017_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/H-K-Y/Genshin_Impact_bot/HEAD/artifact_collect/icon/15017_1.png -------------------------------------------------------------------------------- /artifact_collect/icon/15017_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/H-K-Y/Genshin_Impact_bot/HEAD/artifact_collect/icon/15017_2.png -------------------------------------------------------------------------------- /artifact_collect/icon/15017_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/H-K-Y/Genshin_Impact_bot/HEAD/artifact_collect/icon/15017_3.png -------------------------------------------------------------------------------- /artifact_collect/icon/15017_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/H-K-Y/Genshin_Impact_bot/HEAD/artifact_collect/icon/15017_4.png -------------------------------------------------------------------------------- /artifact_collect/icon/15018_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/H-K-Y/Genshin_Impact_bot/HEAD/artifact_collect/icon/15018_0.png -------------------------------------------------------------------------------- /artifact_collect/icon/15018_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/H-K-Y/Genshin_Impact_bot/HEAD/artifact_collect/icon/15018_1.png -------------------------------------------------------------------------------- /artifact_collect/icon/15018_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/H-K-Y/Genshin_Impact_bot/HEAD/artifact_collect/icon/15018_2.png -------------------------------------------------------------------------------- /artifact_collect/icon/15018_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/H-K-Y/Genshin_Impact_bot/HEAD/artifact_collect/icon/15018_3.png -------------------------------------------------------------------------------- /artifact_collect/icon/15018_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/H-K-Y/Genshin_Impact_bot/HEAD/artifact_collect/icon/15018_4.png -------------------------------------------------------------------------------- /artifact_collect/icon/15019_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/H-K-Y/Genshin_Impact_bot/HEAD/artifact_collect/icon/15019_0.png -------------------------------------------------------------------------------- /artifact_collect/icon/15019_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/H-K-Y/Genshin_Impact_bot/HEAD/artifact_collect/icon/15019_1.png -------------------------------------------------------------------------------- /artifact_collect/icon/15019_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/H-K-Y/Genshin_Impact_bot/HEAD/artifact_collect/icon/15019_2.png -------------------------------------------------------------------------------- /artifact_collect/icon/15019_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/H-K-Y/Genshin_Impact_bot/HEAD/artifact_collect/icon/15019_3.png -------------------------------------------------------------------------------- /artifact_collect/icon/15019_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/H-K-Y/Genshin_Impact_bot/HEAD/artifact_collect/icon/15019_4.png -------------------------------------------------------------------------------- /artifact_collect/icon/15020_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/H-K-Y/Genshin_Impact_bot/HEAD/artifact_collect/icon/15020_0.png -------------------------------------------------------------------------------- /artifact_collect/icon/15020_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/H-K-Y/Genshin_Impact_bot/HEAD/artifact_collect/icon/15020_1.png -------------------------------------------------------------------------------- /artifact_collect/icon/15020_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/H-K-Y/Genshin_Impact_bot/HEAD/artifact_collect/icon/15020_2.png -------------------------------------------------------------------------------- /artifact_collect/icon/15020_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/H-K-Y/Genshin_Impact_bot/HEAD/artifact_collect/icon/15020_3.png -------------------------------------------------------------------------------- /artifact_collect/icon/15020_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/H-K-Y/Genshin_Impact_bot/HEAD/artifact_collect/icon/15020_4.png -------------------------------------------------------------------------------- /artifact_collect/icon/15021_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/H-K-Y/Genshin_Impact_bot/HEAD/artifact_collect/icon/15021_0.png -------------------------------------------------------------------------------- /artifact_collect/icon/15021_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/H-K-Y/Genshin_Impact_bot/HEAD/artifact_collect/icon/15021_1.png -------------------------------------------------------------------------------- /artifact_collect/icon/15021_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/H-K-Y/Genshin_Impact_bot/HEAD/artifact_collect/icon/15021_2.png -------------------------------------------------------------------------------- /artifact_collect/icon/15021_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/H-K-Y/Genshin_Impact_bot/HEAD/artifact_collect/icon/15021_3.png -------------------------------------------------------------------------------- /artifact_collect/icon/15021_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/H-K-Y/Genshin_Impact_bot/HEAD/artifact_collect/icon/15021_4.png -------------------------------------------------------------------------------- /artifact_collect/icon/15022_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/H-K-Y/Genshin_Impact_bot/HEAD/artifact_collect/icon/15022_0.png -------------------------------------------------------------------------------- /artifact_collect/icon/15022_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/H-K-Y/Genshin_Impact_bot/HEAD/artifact_collect/icon/15022_1.png -------------------------------------------------------------------------------- /artifact_collect/icon/15022_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/H-K-Y/Genshin_Impact_bot/HEAD/artifact_collect/icon/15022_2.png -------------------------------------------------------------------------------- /artifact_collect/icon/15022_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/H-K-Y/Genshin_Impact_bot/HEAD/artifact_collect/icon/15022_3.png -------------------------------------------------------------------------------- /artifact_collect/icon/15022_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/H-K-Y/Genshin_Impact_bot/HEAD/artifact_collect/icon/15022_4.png -------------------------------------------------------------------------------- /artifact_collect/icon/15023_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/H-K-Y/Genshin_Impact_bot/HEAD/artifact_collect/icon/15023_0.png -------------------------------------------------------------------------------- /artifact_collect/icon/15023_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/H-K-Y/Genshin_Impact_bot/HEAD/artifact_collect/icon/15023_1.png -------------------------------------------------------------------------------- /artifact_collect/icon/15023_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/H-K-Y/Genshin_Impact_bot/HEAD/artifact_collect/icon/15023_2.png -------------------------------------------------------------------------------- /artifact_collect/icon/15023_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/H-K-Y/Genshin_Impact_bot/HEAD/artifact_collect/icon/15023_3.png -------------------------------------------------------------------------------- /artifact_collect/icon/15023_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/H-K-Y/Genshin_Impact_bot/HEAD/artifact_collect/icon/15023_4.png -------------------------------------------------------------------------------- /artifact_collect/icon/15024_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/H-K-Y/Genshin_Impact_bot/HEAD/artifact_collect/icon/15024_0.png -------------------------------------------------------------------------------- /artifact_collect/icon/15024_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/H-K-Y/Genshin_Impact_bot/HEAD/artifact_collect/icon/15024_1.png -------------------------------------------------------------------------------- /artifact_collect/icon/15024_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/H-K-Y/Genshin_Impact_bot/HEAD/artifact_collect/icon/15024_2.png -------------------------------------------------------------------------------- /artifact_collect/icon/15024_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/H-K-Y/Genshin_Impact_bot/HEAD/artifact_collect/icon/15024_3.png -------------------------------------------------------------------------------- /artifact_collect/icon/15024_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/H-K-Y/Genshin_Impact_bot/HEAD/artifact_collect/icon/15024_4.png -------------------------------------------------------------------------------- /artifact_collect/icon/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/H-K-Y/Genshin_Impact_bot/HEAD/artifact_collect/icon/2.png -------------------------------------------------------------------------------- /artifact_collect/icon/3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/H-K-Y/Genshin_Impact_bot/HEAD/artifact_collect/icon/3.png -------------------------------------------------------------------------------- /artifact_collect/icon/4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/H-K-Y/Genshin_Impact_bot/HEAD/artifact_collect/icon/4.png -------------------------------------------------------------------------------- /artifact_collect/icon/background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/H-K-Y/Genshin_Impact_bot/HEAD/artifact_collect/icon/background.png -------------------------------------------------------------------------------- /artifact_collect/json_rw.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/H-K-Y/Genshin_Impact_bot/HEAD/artifact_collect/json_rw.py -------------------------------------------------------------------------------- /artifact_collect/property_list.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/H-K-Y/Genshin_Impact_bot/HEAD/artifact_collect/property_list.json -------------------------------------------------------------------------------- /artifact_collect/zh-cn.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/H-K-Y/Genshin_Impact_bot/HEAD/artifact_collect/zh-cn.ttf -------------------------------------------------------------------------------- /artifact_rate/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/H-K-Y/Genshin_Impact_bot/HEAD/artifact_rate/__init__.py -------------------------------------------------------------------------------- /artifact_rate/artifact_eval.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/H-K-Y/Genshin_Impact_bot/HEAD/artifact_rate/artifact_eval.py -------------------------------------------------------------------------------- /config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/H-K-Y/Genshin_Impact_bot/HEAD/config.py -------------------------------------------------------------------------------- /gacha/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/H-K-Y/Genshin_Impact_bot/HEAD/gacha/__init__.py -------------------------------------------------------------------------------- /gacha/gacha.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/H-K-Y/Genshin_Impact_bot/HEAD/gacha/gacha.py -------------------------------------------------------------------------------- /gacha/icon/1_star.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/H-K-Y/Genshin_Impact_bot/HEAD/gacha/icon/1_star.png -------------------------------------------------------------------------------- /gacha/icon/1_star_bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/H-K-Y/Genshin_Impact_bot/HEAD/gacha/icon/1_star_bg.png -------------------------------------------------------------------------------- /gacha/icon/2_star.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/H-K-Y/Genshin_Impact_bot/HEAD/gacha/icon/2_star.png -------------------------------------------------------------------------------- /gacha/icon/2_star_bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/H-K-Y/Genshin_Impact_bot/HEAD/gacha/icon/2_star_bg.png -------------------------------------------------------------------------------- /gacha/icon/3_star.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/H-K-Y/Genshin_Impact_bot/HEAD/gacha/icon/3_star.png -------------------------------------------------------------------------------- /gacha/icon/3_star_bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/H-K-Y/Genshin_Impact_bot/HEAD/gacha/icon/3_star_bg.png -------------------------------------------------------------------------------- /gacha/icon/4_star.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/H-K-Y/Genshin_Impact_bot/HEAD/gacha/icon/4_star.png -------------------------------------------------------------------------------- /gacha/icon/4_star_bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/H-K-Y/Genshin_Impact_bot/HEAD/gacha/icon/4_star_bg.png -------------------------------------------------------------------------------- /gacha/icon/5_star.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/H-K-Y/Genshin_Impact_bot/HEAD/gacha/icon/5_star.png -------------------------------------------------------------------------------- /gacha/icon/5_star_bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/H-K-Y/Genshin_Impact_bot/HEAD/gacha/icon/5_star_bg.png -------------------------------------------------------------------------------- /gacha/icon/anemo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/H-K-Y/Genshin_Impact_bot/HEAD/gacha/icon/anemo.png -------------------------------------------------------------------------------- /gacha/icon/cryo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/H-K-Y/Genshin_Impact_bot/HEAD/gacha/icon/cryo.png -------------------------------------------------------------------------------- /gacha/icon/default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/H-K-Y/Genshin_Impact_bot/HEAD/gacha/icon/default.png -------------------------------------------------------------------------------- /gacha/icon/dendro.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/H-K-Y/Genshin_Impact_bot/HEAD/gacha/icon/dendro.png -------------------------------------------------------------------------------- /gacha/icon/electro.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/H-K-Y/Genshin_Impact_bot/HEAD/gacha/icon/electro.png -------------------------------------------------------------------------------- /gacha/icon/geo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/H-K-Y/Genshin_Impact_bot/HEAD/gacha/icon/geo.png -------------------------------------------------------------------------------- /gacha/icon/hydro.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/H-K-Y/Genshin_Impact_bot/HEAD/gacha/icon/hydro.png -------------------------------------------------------------------------------- /gacha/icon/pyro.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/H-K-Y/Genshin_Impact_bot/HEAD/gacha/icon/pyro.png -------------------------------------------------------------------------------- /gacha/pool_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/H-K-Y/Genshin_Impact_bot/HEAD/gacha/pool_data.py -------------------------------------------------------------------------------- /material_remind/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/H-K-Y/Genshin_Impact_bot/HEAD/material_remind/__init__.py -------------------------------------------------------------------------------- /material_remind/icon/武器突破材料_周一周四.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/H-K-Y/Genshin_Impact_bot/HEAD/material_remind/icon/武器突破材料_周一周四.png -------------------------------------------------------------------------------- /material_remind/icon/武器突破材料_周三周六.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/H-K-Y/Genshin_Impact_bot/HEAD/material_remind/icon/武器突破材料_周三周六.png -------------------------------------------------------------------------------- /material_remind/icon/武器突破材料_周二周五.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/H-K-Y/Genshin_Impact_bot/HEAD/material_remind/icon/武器突破材料_周二周五.png -------------------------------------------------------------------------------- /material_remind/icon/角色天赋材料_周一周四.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/H-K-Y/Genshin_Impact_bot/HEAD/material_remind/icon/角色天赋材料_周一周四.png -------------------------------------------------------------------------------- /material_remind/icon/角色天赋材料_周三周六.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/H-K-Y/Genshin_Impact_bot/HEAD/material_remind/icon/角色天赋材料_周三周六.png -------------------------------------------------------------------------------- /material_remind/icon/角色天赋材料_周二周五.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/H-K-Y/Genshin_Impact_bot/HEAD/material_remind/icon/角色天赋材料_周二周五.png -------------------------------------------------------------------------------- /qiu_qiu_translation/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/H-K-Y/Genshin_Impact_bot/HEAD/qiu_qiu_translation/__init__.py -------------------------------------------------------------------------------- /qiu_qiu_translation/qiu_qiu_dictionary.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/H-K-Y/Genshin_Impact_bot/HEAD/qiu_qiu_translation/qiu_qiu_dictionary.json -------------------------------------------------------------------------------- /qiu_qiu_translation/qiu_qiu_translation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/H-K-Y/Genshin_Impact_bot/HEAD/qiu_qiu_translation/qiu_qiu_translation.py -------------------------------------------------------------------------------- /query_resource_points/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/H-K-Y/Genshin_Impact_bot/HEAD/query_resource_points/__init__.py -------------------------------------------------------------------------------- /query_resource_points/icon/0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/H-K-Y/Genshin_Impact_bot/HEAD/query_resource_points/icon/0.png -------------------------------------------------------------------------------- /query_resource_points/icon/box.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/H-K-Y/Genshin_Impact_bot/HEAD/query_resource_points/icon/box.png -------------------------------------------------------------------------------- /query_resource_points/icon/box_alpha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/H-K-Y/Genshin_Impact_bot/HEAD/query_resource_points/icon/box_alpha.png -------------------------------------------------------------------------------- /query_resource_points/query_resource_points.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/H-K-Y/Genshin_Impact_bot/HEAD/query_resource_points/query_resource_points.py --------------------------------------------------------------------------------