├── .gitignore ├── .idea └── workspace.xml ├── LICENSE ├── README.md ├── docs ├── 0.png ├── 2.png ├── 3.png ├── 5.png ├── 6.png ├── CM85@[6TG%%SEZ5$T}H5A73.png ├── azur.png ├── fgo.png ├── genshin.png ├── genshin_up_reload.png ├── prc.png ├── prts_up_reload.png ├── reload_pretty_pool.png └── yys.png ├── draw_card ├── __init__.py ├── build_image.py ├── config.py ├── count_manager.py ├── handles │ ├── azur_handle.py │ ├── ba_handle.py │ ├── base_handle.py │ ├── fgo_handle.py │ ├── genshin_handle.py │ ├── guardian_handle.py │ ├── onmyoji_handle.py │ ├── pcr_handle.py │ ├── pretty_handle.py │ └── prts_handle.py ├── resources │ └── fonts │ │ ├── gorga.otf │ │ └── msyh.ttf └── util.py ├── pyproject.toml └── requirements.txt /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HibiKier/nonebot_plugin_gamedraw/HEAD/.gitignore -------------------------------------------------------------------------------- /.idea/workspace.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HibiKier/nonebot_plugin_gamedraw/HEAD/.idea/workspace.xml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HibiKier/nonebot_plugin_gamedraw/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HibiKier/nonebot_plugin_gamedraw/HEAD/README.md -------------------------------------------------------------------------------- /docs/0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HibiKier/nonebot_plugin_gamedraw/HEAD/docs/0.png -------------------------------------------------------------------------------- /docs/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HibiKier/nonebot_plugin_gamedraw/HEAD/docs/2.png -------------------------------------------------------------------------------- /docs/3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HibiKier/nonebot_plugin_gamedraw/HEAD/docs/3.png -------------------------------------------------------------------------------- /docs/5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HibiKier/nonebot_plugin_gamedraw/HEAD/docs/5.png -------------------------------------------------------------------------------- /docs/6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HibiKier/nonebot_plugin_gamedraw/HEAD/docs/6.png -------------------------------------------------------------------------------- /docs/CM85@[6TG%%SEZ5$T}H5A73.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HibiKier/nonebot_plugin_gamedraw/HEAD/docs/CM85@[6TG%%SEZ5$T}H5A73.png -------------------------------------------------------------------------------- /docs/azur.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HibiKier/nonebot_plugin_gamedraw/HEAD/docs/azur.png -------------------------------------------------------------------------------- /docs/fgo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HibiKier/nonebot_plugin_gamedraw/HEAD/docs/fgo.png -------------------------------------------------------------------------------- /docs/genshin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HibiKier/nonebot_plugin_gamedraw/HEAD/docs/genshin.png -------------------------------------------------------------------------------- /docs/genshin_up_reload.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HibiKier/nonebot_plugin_gamedraw/HEAD/docs/genshin_up_reload.png -------------------------------------------------------------------------------- /docs/prc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HibiKier/nonebot_plugin_gamedraw/HEAD/docs/prc.png -------------------------------------------------------------------------------- /docs/prts_up_reload.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HibiKier/nonebot_plugin_gamedraw/HEAD/docs/prts_up_reload.png -------------------------------------------------------------------------------- /docs/reload_pretty_pool.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HibiKier/nonebot_plugin_gamedraw/HEAD/docs/reload_pretty_pool.png -------------------------------------------------------------------------------- /docs/yys.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HibiKier/nonebot_plugin_gamedraw/HEAD/docs/yys.png -------------------------------------------------------------------------------- /draw_card/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HibiKier/nonebot_plugin_gamedraw/HEAD/draw_card/__init__.py -------------------------------------------------------------------------------- /draw_card/build_image.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HibiKier/nonebot_plugin_gamedraw/HEAD/draw_card/build_image.py -------------------------------------------------------------------------------- /draw_card/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HibiKier/nonebot_plugin_gamedraw/HEAD/draw_card/config.py -------------------------------------------------------------------------------- /draw_card/count_manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HibiKier/nonebot_plugin_gamedraw/HEAD/draw_card/count_manager.py -------------------------------------------------------------------------------- /draw_card/handles/azur_handle.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HibiKier/nonebot_plugin_gamedraw/HEAD/draw_card/handles/azur_handle.py -------------------------------------------------------------------------------- /draw_card/handles/ba_handle.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HibiKier/nonebot_plugin_gamedraw/HEAD/draw_card/handles/ba_handle.py -------------------------------------------------------------------------------- /draw_card/handles/base_handle.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HibiKier/nonebot_plugin_gamedraw/HEAD/draw_card/handles/base_handle.py -------------------------------------------------------------------------------- /draw_card/handles/fgo_handle.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HibiKier/nonebot_plugin_gamedraw/HEAD/draw_card/handles/fgo_handle.py -------------------------------------------------------------------------------- /draw_card/handles/genshin_handle.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HibiKier/nonebot_plugin_gamedraw/HEAD/draw_card/handles/genshin_handle.py -------------------------------------------------------------------------------- /draw_card/handles/guardian_handle.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HibiKier/nonebot_plugin_gamedraw/HEAD/draw_card/handles/guardian_handle.py -------------------------------------------------------------------------------- /draw_card/handles/onmyoji_handle.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HibiKier/nonebot_plugin_gamedraw/HEAD/draw_card/handles/onmyoji_handle.py -------------------------------------------------------------------------------- /draw_card/handles/pcr_handle.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HibiKier/nonebot_plugin_gamedraw/HEAD/draw_card/handles/pcr_handle.py -------------------------------------------------------------------------------- /draw_card/handles/pretty_handle.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HibiKier/nonebot_plugin_gamedraw/HEAD/draw_card/handles/pretty_handle.py -------------------------------------------------------------------------------- /draw_card/handles/prts_handle.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HibiKier/nonebot_plugin_gamedraw/HEAD/draw_card/handles/prts_handle.py -------------------------------------------------------------------------------- /draw_card/resources/fonts/gorga.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HibiKier/nonebot_plugin_gamedraw/HEAD/draw_card/resources/fonts/gorga.otf -------------------------------------------------------------------------------- /draw_card/resources/fonts/msyh.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HibiKier/nonebot_plugin_gamedraw/HEAD/draw_card/resources/fonts/msyh.ttf -------------------------------------------------------------------------------- /draw_card/util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HibiKier/nonebot_plugin_gamedraw/HEAD/draw_card/util.py -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HibiKier/nonebot_plugin_gamedraw/HEAD/pyproject.toml -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HibiKier/nonebot_plugin_gamedraw/HEAD/requirements.txt --------------------------------------------------------------------------------