├── .gitignore ├── .vscode ├── launch.json └── tasks.json ├── README.md ├── clientinfo.json ├── package.json ├── src ├── ErrorHandler.ts.example ├── FateBot.ts ├── Random.ts ├── fate-biligame-client │ ├── FateClient.d.ts │ ├── FateClient.ts │ ├── FateClientInfo.ts │ └── index.ts └── index.ts ├── tsconfig.json └── users.json.example /.gitignore: -------------------------------------------------------------------------------- 1 | /users.json 2 | /dist/* 3 | node_modules -------------------------------------------------------------------------------- /.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brian9206/fgo-biligame-bot/HEAD/.vscode/launch.json -------------------------------------------------------------------------------- /.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brian9206/fgo-biligame-bot/HEAD/.vscode/tasks.json -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brian9206/fgo-biligame-bot/HEAD/README.md -------------------------------------------------------------------------------- /clientinfo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brian9206/fgo-biligame-bot/HEAD/clientinfo.json -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brian9206/fgo-biligame-bot/HEAD/package.json -------------------------------------------------------------------------------- /src/ErrorHandler.ts.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brian9206/fgo-biligame-bot/HEAD/src/ErrorHandler.ts.example -------------------------------------------------------------------------------- /src/FateBot.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brian9206/fgo-biligame-bot/HEAD/src/FateBot.ts -------------------------------------------------------------------------------- /src/Random.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brian9206/fgo-biligame-bot/HEAD/src/Random.ts -------------------------------------------------------------------------------- /src/fate-biligame-client/FateClient.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brian9206/fgo-biligame-bot/HEAD/src/fate-biligame-client/FateClient.d.ts -------------------------------------------------------------------------------- /src/fate-biligame-client/FateClient.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brian9206/fgo-biligame-bot/HEAD/src/fate-biligame-client/FateClient.ts -------------------------------------------------------------------------------- /src/fate-biligame-client/FateClientInfo.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brian9206/fgo-biligame-bot/HEAD/src/fate-biligame-client/FateClientInfo.ts -------------------------------------------------------------------------------- /src/fate-biligame-client/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brian9206/fgo-biligame-bot/HEAD/src/fate-biligame-client/index.ts -------------------------------------------------------------------------------- /src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brian9206/fgo-biligame-bot/HEAD/src/index.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brian9206/fgo-biligame-bot/HEAD/tsconfig.json -------------------------------------------------------------------------------- /users.json.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brian9206/fgo-biligame-bot/HEAD/users.json.example --------------------------------------------------------------------------------