├── .gitignore ├── LICENSE ├── README.md ├── botmanage └── set_block.py ├── calendar ├── calendar.py └── event.py ├── generator ├── config.json ├── data.json ├── diary.png ├── diary_data.json ├── generator.py └── jichou.jpg ├── picfinder └── picfinder.py └── traceanime └── traceanime.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcrbot/cappuccilo_plugins/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcrbot/cappuccilo_plugins/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcrbot/cappuccilo_plugins/HEAD/README.md -------------------------------------------------------------------------------- /botmanage/set_block.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcrbot/cappuccilo_plugins/HEAD/botmanage/set_block.py -------------------------------------------------------------------------------- /calendar/calendar.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcrbot/cappuccilo_plugins/HEAD/calendar/calendar.py -------------------------------------------------------------------------------- /calendar/event.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcrbot/cappuccilo_plugins/HEAD/calendar/event.py -------------------------------------------------------------------------------- /generator/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcrbot/cappuccilo_plugins/HEAD/generator/config.json -------------------------------------------------------------------------------- /generator/data.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcrbot/cappuccilo_plugins/HEAD/generator/data.json -------------------------------------------------------------------------------- /generator/diary.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcrbot/cappuccilo_plugins/HEAD/generator/diary.png -------------------------------------------------------------------------------- /generator/diary_data.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcrbot/cappuccilo_plugins/HEAD/generator/diary_data.json -------------------------------------------------------------------------------- /generator/generator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcrbot/cappuccilo_plugins/HEAD/generator/generator.py -------------------------------------------------------------------------------- /generator/jichou.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcrbot/cappuccilo_plugins/HEAD/generator/jichou.jpg -------------------------------------------------------------------------------- /picfinder/picfinder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcrbot/cappuccilo_plugins/HEAD/picfinder/picfinder.py -------------------------------------------------------------------------------- /traceanime/traceanime.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcrbot/cappuccilo_plugins/HEAD/traceanime/traceanime.py --------------------------------------------------------------------------------