├── .env ├── .gitignore ├── LICENSE ├── README.md ├── nonebot_plugin_cocdicer ├── __init__.py ├── cards.py ├── dices.py ├── investigator.py ├── madness.py ├── messages.py ├── san_check.py └── util.py ├── pyproject.toml ├── test └── bot.py └── uv.lock /.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abrahum/nonebot_plugin_cocdicer/HEAD/.env -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | __pycache__ 2 | dist/ 3 | .venv/ 4 | *.egg-info/ -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abrahum/nonebot_plugin_cocdicer/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abrahum/nonebot_plugin_cocdicer/HEAD/README.md -------------------------------------------------------------------------------- /nonebot_plugin_cocdicer/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abrahum/nonebot_plugin_cocdicer/HEAD/nonebot_plugin_cocdicer/__init__.py -------------------------------------------------------------------------------- /nonebot_plugin_cocdicer/cards.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abrahum/nonebot_plugin_cocdicer/HEAD/nonebot_plugin_cocdicer/cards.py -------------------------------------------------------------------------------- /nonebot_plugin_cocdicer/dices.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abrahum/nonebot_plugin_cocdicer/HEAD/nonebot_plugin_cocdicer/dices.py -------------------------------------------------------------------------------- /nonebot_plugin_cocdicer/investigator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abrahum/nonebot_plugin_cocdicer/HEAD/nonebot_plugin_cocdicer/investigator.py -------------------------------------------------------------------------------- /nonebot_plugin_cocdicer/madness.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abrahum/nonebot_plugin_cocdicer/HEAD/nonebot_plugin_cocdicer/madness.py -------------------------------------------------------------------------------- /nonebot_plugin_cocdicer/messages.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abrahum/nonebot_plugin_cocdicer/HEAD/nonebot_plugin_cocdicer/messages.py -------------------------------------------------------------------------------- /nonebot_plugin_cocdicer/san_check.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abrahum/nonebot_plugin_cocdicer/HEAD/nonebot_plugin_cocdicer/san_check.py -------------------------------------------------------------------------------- /nonebot_plugin_cocdicer/util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abrahum/nonebot_plugin_cocdicer/HEAD/nonebot_plugin_cocdicer/util.py -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abrahum/nonebot_plugin_cocdicer/HEAD/pyproject.toml -------------------------------------------------------------------------------- /test/bot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abrahum/nonebot_plugin_cocdicer/HEAD/test/bot.py -------------------------------------------------------------------------------- /uv.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abrahum/nonebot_plugin_cocdicer/HEAD/uv.lock --------------------------------------------------------------------------------