├── .env ├── .gitignore ├── LICENSE ├── README.md ├── bot.py ├── requirements.txt └── src ├── libraries ├── globalMessage.py ├── guessManage.py ├── image.py ├── permissionManage.py ├── raiseCard.py ├── searchManage.py ├── sendAction.py └── tool.py ├── plugins ├── cardPieChart.py ├── daily.py ├── funFunction.py ├── guess_card.py ├── help.py ├── increaseRefuse.py ├── myCardSearch.py ├── ocg.py ├── priceSearch.py ├── public.py └── raise.py └── static ├── background.png ├── card.jpg ├── card2.jpg ├── daily_kapai.png ├── daily_xilie.png ├── msyh.ttc ├── pie_back.png └── qmzl.ttf /.env: -------------------------------------------------------------------------------- 1 | ENVIRONMENT=prod 2 | COMMAND_START=["", "."] 3 | PORT=10219 -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireinsect/ocg-bot/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireinsect/ocg-bot/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireinsect/ocg-bot/HEAD/README.md -------------------------------------------------------------------------------- /bot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireinsect/ocg-bot/HEAD/bot.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireinsect/ocg-bot/HEAD/requirements.txt -------------------------------------------------------------------------------- /src/libraries/globalMessage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireinsect/ocg-bot/HEAD/src/libraries/globalMessage.py -------------------------------------------------------------------------------- /src/libraries/guessManage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireinsect/ocg-bot/HEAD/src/libraries/guessManage.py -------------------------------------------------------------------------------- /src/libraries/image.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireinsect/ocg-bot/HEAD/src/libraries/image.py -------------------------------------------------------------------------------- /src/libraries/permissionManage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireinsect/ocg-bot/HEAD/src/libraries/permissionManage.py -------------------------------------------------------------------------------- /src/libraries/raiseCard.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireinsect/ocg-bot/HEAD/src/libraries/raiseCard.py -------------------------------------------------------------------------------- /src/libraries/searchManage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireinsect/ocg-bot/HEAD/src/libraries/searchManage.py -------------------------------------------------------------------------------- /src/libraries/sendAction.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireinsect/ocg-bot/HEAD/src/libraries/sendAction.py -------------------------------------------------------------------------------- /src/libraries/tool.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireinsect/ocg-bot/HEAD/src/libraries/tool.py -------------------------------------------------------------------------------- /src/plugins/cardPieChart.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireinsect/ocg-bot/HEAD/src/plugins/cardPieChart.py -------------------------------------------------------------------------------- /src/plugins/daily.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireinsect/ocg-bot/HEAD/src/plugins/daily.py -------------------------------------------------------------------------------- /src/plugins/funFunction.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireinsect/ocg-bot/HEAD/src/plugins/funFunction.py -------------------------------------------------------------------------------- /src/plugins/guess_card.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireinsect/ocg-bot/HEAD/src/plugins/guess_card.py -------------------------------------------------------------------------------- /src/plugins/help.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireinsect/ocg-bot/HEAD/src/plugins/help.py -------------------------------------------------------------------------------- /src/plugins/increaseRefuse.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireinsect/ocg-bot/HEAD/src/plugins/increaseRefuse.py -------------------------------------------------------------------------------- /src/plugins/myCardSearch.py: -------------------------------------------------------------------------------- 1 | import requests 2 | 3 | -------------------------------------------------------------------------------- /src/plugins/ocg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireinsect/ocg-bot/HEAD/src/plugins/ocg.py -------------------------------------------------------------------------------- /src/plugins/priceSearch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireinsect/ocg-bot/HEAD/src/plugins/priceSearch.py -------------------------------------------------------------------------------- /src/plugins/public.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireinsect/ocg-bot/HEAD/src/plugins/public.py -------------------------------------------------------------------------------- /src/plugins/raise.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireinsect/ocg-bot/HEAD/src/plugins/raise.py -------------------------------------------------------------------------------- /src/static/background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireinsect/ocg-bot/HEAD/src/static/background.png -------------------------------------------------------------------------------- /src/static/card.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireinsect/ocg-bot/HEAD/src/static/card.jpg -------------------------------------------------------------------------------- /src/static/card2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireinsect/ocg-bot/HEAD/src/static/card2.jpg -------------------------------------------------------------------------------- /src/static/daily_kapai.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireinsect/ocg-bot/HEAD/src/static/daily_kapai.png -------------------------------------------------------------------------------- /src/static/daily_xilie.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireinsect/ocg-bot/HEAD/src/static/daily_xilie.png -------------------------------------------------------------------------------- /src/static/msyh.ttc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireinsect/ocg-bot/HEAD/src/static/msyh.ttc -------------------------------------------------------------------------------- /src/static/pie_back.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireinsect/ocg-bot/HEAD/src/static/pie_back.png -------------------------------------------------------------------------------- /src/static/qmzl.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireinsect/ocg-bot/HEAD/src/static/qmzl.ttf --------------------------------------------------------------------------------