├── README.md ├── files ├── answer.json ├── design.json ├── hash.json ├── history.json ├── info.json ├── money.json ├── msgCount.json ├── reply.json ├── userData.json ├── valid_words.txt └── word_bank.txt ├── games ├── bomber.py ├── chess.py ├── countryKill.py ├── dryEye.py ├── poker.py ├── richup │ ├── __init__.py │ ├── board.py │ ├── const.py │ ├── core.py │ ├── player.py │ └── trade.py ├── snakeLadder.py ├── truth.py ├── uno.py └── wordle.py ├── main.py ├── money ├── __init__.py ├── bank.py ├── blackjack.py ├── oddEven.py └── zhaJinHua.py ├── remake.py ├── requirements.txt └── static.py /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kroos372/awaya/HEAD/README.md -------------------------------------------------------------------------------- /files/answer.json: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /files/design.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kroos372/awaya/HEAD/files/design.json -------------------------------------------------------------------------------- /files/hash.json: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /files/history.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kroos372/awaya/HEAD/files/history.json -------------------------------------------------------------------------------- /files/info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kroos372/awaya/HEAD/files/info.json -------------------------------------------------------------------------------- /files/money.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kroos372/awaya/HEAD/files/money.json -------------------------------------------------------------------------------- /files/msgCount.json: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /files/reply.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kroos372/awaya/HEAD/files/reply.json -------------------------------------------------------------------------------- /files/userData.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kroos372/awaya/HEAD/files/userData.json -------------------------------------------------------------------------------- /files/valid_words.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kroos372/awaya/HEAD/files/valid_words.txt -------------------------------------------------------------------------------- /files/word_bank.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kroos372/awaya/HEAD/files/word_bank.txt -------------------------------------------------------------------------------- /games/bomber.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kroos372/awaya/HEAD/games/bomber.py -------------------------------------------------------------------------------- /games/chess.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kroos372/awaya/HEAD/games/chess.py -------------------------------------------------------------------------------- /games/countryKill.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kroos372/awaya/HEAD/games/countryKill.py -------------------------------------------------------------------------------- /games/dryEye.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kroos372/awaya/HEAD/games/dryEye.py -------------------------------------------------------------------------------- /games/poker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kroos372/awaya/HEAD/games/poker.py -------------------------------------------------------------------------------- /games/richup/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kroos372/awaya/HEAD/games/richup/__init__.py -------------------------------------------------------------------------------- /games/richup/board.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kroos372/awaya/HEAD/games/richup/board.py -------------------------------------------------------------------------------- /games/richup/const.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kroos372/awaya/HEAD/games/richup/const.py -------------------------------------------------------------------------------- /games/richup/core.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kroos372/awaya/HEAD/games/richup/core.py -------------------------------------------------------------------------------- /games/richup/player.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kroos372/awaya/HEAD/games/richup/player.py -------------------------------------------------------------------------------- /games/richup/trade.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kroos372/awaya/HEAD/games/richup/trade.py -------------------------------------------------------------------------------- /games/snakeLadder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kroos372/awaya/HEAD/games/snakeLadder.py -------------------------------------------------------------------------------- /games/truth.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kroos372/awaya/HEAD/games/truth.py -------------------------------------------------------------------------------- /games/uno.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kroos372/awaya/HEAD/games/uno.py -------------------------------------------------------------------------------- /games/wordle.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kroos372/awaya/HEAD/games/wordle.py -------------------------------------------------------------------------------- /main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kroos372/awaya/HEAD/main.py -------------------------------------------------------------------------------- /money/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kroos372/awaya/HEAD/money/__init__.py -------------------------------------------------------------------------------- /money/bank.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kroos372/awaya/HEAD/money/bank.py -------------------------------------------------------------------------------- /money/blackjack.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kroos372/awaya/HEAD/money/blackjack.py -------------------------------------------------------------------------------- /money/oddEven.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kroos372/awaya/HEAD/money/oddEven.py -------------------------------------------------------------------------------- /money/zhaJinHua.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kroos372/awaya/HEAD/money/zhaJinHua.py -------------------------------------------------------------------------------- /remake.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kroos372/awaya/HEAD/remake.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | websocket-client 2 | requests 3 | numpy -------------------------------------------------------------------------------- /static.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kroos372/awaya/HEAD/static.py --------------------------------------------------------------------------------