├── .env ├── .env.dev ├── .env.prod ├── .gitignore ├── README.md ├── bot.py ├── pyproject.toml ├── requirements.txt ├── runBot.bat ├── src └── plugins │ ├── __pycache__ │ ├── MapBonusMusic.xml │ ├── common.cpython-39.pyc │ └── tools.cpython-39.pyc │ ├── common.py │ ├── maimai │ ├── B40generator.py │ ├── B50generator.py │ ├── __pycache__ │ │ ├── B40generator.cpython-39.pyc │ │ ├── B50generator.cpython-39.pyc │ │ ├── MapColor.xml │ │ ├── functions.cpython-39.pyc │ │ ├── maimaiDX.cpython-39.pyc │ │ └── music.cpython-39.pyc │ ├── functions.py │ ├── maimaiDX.py │ └── music.py │ └── tools.py └── tatus /.env: -------------------------------------------------------------------------------- 1 | ENVIRONMENT=dev 2 | -------------------------------------------------------------------------------- /.env.dev: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HCskia/fu-Bot/HEAD/.env.dev -------------------------------------------------------------------------------- /.env.prod: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .git/ 2 | .idea/ 3 | src/static -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HCskia/fu-Bot/HEAD/README.md -------------------------------------------------------------------------------- /bot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HCskia/fu-Bot/HEAD/bot.py -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HCskia/fu-Bot/HEAD/pyproject.toml -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HCskia/fu-Bot/HEAD/requirements.txt -------------------------------------------------------------------------------- /runBot.bat: -------------------------------------------------------------------------------- 1 | nb run -------------------------------------------------------------------------------- /src/plugins/__pycache__/MapBonusMusic.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HCskia/fu-Bot/HEAD/src/plugins/__pycache__/MapBonusMusic.xml -------------------------------------------------------------------------------- /src/plugins/__pycache__/common.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HCskia/fu-Bot/HEAD/src/plugins/__pycache__/common.cpython-39.pyc -------------------------------------------------------------------------------- /src/plugins/__pycache__/tools.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HCskia/fu-Bot/HEAD/src/plugins/__pycache__/tools.cpython-39.pyc -------------------------------------------------------------------------------- /src/plugins/common.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HCskia/fu-Bot/HEAD/src/plugins/common.py -------------------------------------------------------------------------------- /src/plugins/maimai/B40generator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HCskia/fu-Bot/HEAD/src/plugins/maimai/B40generator.py -------------------------------------------------------------------------------- /src/plugins/maimai/B50generator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HCskia/fu-Bot/HEAD/src/plugins/maimai/B50generator.py -------------------------------------------------------------------------------- /src/plugins/maimai/__pycache__/B40generator.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HCskia/fu-Bot/HEAD/src/plugins/maimai/__pycache__/B40generator.cpython-39.pyc -------------------------------------------------------------------------------- /src/plugins/maimai/__pycache__/B50generator.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HCskia/fu-Bot/HEAD/src/plugins/maimai/__pycache__/B50generator.cpython-39.pyc -------------------------------------------------------------------------------- /src/plugins/maimai/__pycache__/MapColor.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HCskia/fu-Bot/HEAD/src/plugins/maimai/__pycache__/MapColor.xml -------------------------------------------------------------------------------- /src/plugins/maimai/__pycache__/functions.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HCskia/fu-Bot/HEAD/src/plugins/maimai/__pycache__/functions.cpython-39.pyc -------------------------------------------------------------------------------- /src/plugins/maimai/__pycache__/maimaiDX.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HCskia/fu-Bot/HEAD/src/plugins/maimai/__pycache__/maimaiDX.cpython-39.pyc -------------------------------------------------------------------------------- /src/plugins/maimai/__pycache__/music.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HCskia/fu-Bot/HEAD/src/plugins/maimai/__pycache__/music.cpython-39.pyc -------------------------------------------------------------------------------- /src/plugins/maimai/functions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HCskia/fu-Bot/HEAD/src/plugins/maimai/functions.py -------------------------------------------------------------------------------- /src/plugins/maimai/maimaiDX.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HCskia/fu-Bot/HEAD/src/plugins/maimai/maimaiDX.py -------------------------------------------------------------------------------- /src/plugins/maimai/music.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HCskia/fu-Bot/HEAD/src/plugins/maimai/music.py -------------------------------------------------------------------------------- /src/plugins/tools.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HCskia/fu-Bot/HEAD/src/plugins/tools.py -------------------------------------------------------------------------------- /tatus: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HCskia/fu-Bot/HEAD/tatus --------------------------------------------------------------------------------