├── .env.example ├── .gitignore ├── README-CN.md ├── README.md ├── config.js ├── findKing.js ├── getWinRate.js ├── goldDogLogs └── delete_me.json ├── goldDogs.txt ├── package.json ├── trashDogLogs └── delete_me.json ├── trashDogs.txt └── utils ├── Loading.js ├── banner.js └── utils.js /.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fox493/findKing/HEAD/.env.example -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | yarn.lock 3 | .env -------------------------------------------------------------------------------- /README-CN.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fox493/findKing/HEAD/README-CN.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fox493/findKing/HEAD/README.md -------------------------------------------------------------------------------- /config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fox493/findKing/HEAD/config.js -------------------------------------------------------------------------------- /findKing.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fox493/findKing/HEAD/findKing.js -------------------------------------------------------------------------------- /getWinRate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fox493/findKing/HEAD/getWinRate.js -------------------------------------------------------------------------------- /goldDogLogs/delete_me.json: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /goldDogs.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fox493/findKing/HEAD/package.json -------------------------------------------------------------------------------- /trashDogLogs/delete_me.json: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /trashDogs.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /utils/Loading.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fox493/findKing/HEAD/utils/Loading.js -------------------------------------------------------------------------------- /utils/banner.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fox493/findKing/HEAD/utils/banner.js -------------------------------------------------------------------------------- /utils/utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fox493/findKing/HEAD/utils/utils.js --------------------------------------------------------------------------------