├── .gitignore ├── LICENSE ├── README.md ├── _conf_schema.json ├── draw.py ├── logo.png ├── main.py ├── metadata.yaml ├── requirements.txt ├── resource ├── NotoColorEmoji.ttf └── 可爱字体.ttf └── utils.py /.gitignore: -------------------------------------------------------------------------------- 1 | __pycache__/ 2 | library.py 3 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhalslar/astrbot_plugin_box/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhalslar/astrbot_plugin_box/HEAD/README.md -------------------------------------------------------------------------------- /_conf_schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhalslar/astrbot_plugin_box/HEAD/_conf_schema.json -------------------------------------------------------------------------------- /draw.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhalslar/astrbot_plugin_box/HEAD/draw.py -------------------------------------------------------------------------------- /logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhalslar/astrbot_plugin_box/HEAD/logo.png -------------------------------------------------------------------------------- /main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhalslar/astrbot_plugin_box/HEAD/main.py -------------------------------------------------------------------------------- /metadata.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhalslar/astrbot_plugin_box/HEAD/metadata.yaml -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | emoji 2 | Pillow 3 | zhdate 4 | -------------------------------------------------------------------------------- /resource/NotoColorEmoji.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhalslar/astrbot_plugin_box/HEAD/resource/NotoColorEmoji.ttf -------------------------------------------------------------------------------- /resource/可爱字体.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhalslar/astrbot_plugin_box/HEAD/resource/可爱字体.ttf -------------------------------------------------------------------------------- /utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhalslar/astrbot_plugin_box/HEAD/utils.py --------------------------------------------------------------------------------