├── .eslintrc.json ├── .gitignore ├── .travis.yml ├── LICENSE ├── README.md ├── config.json.example ├── kaado.js ├── package.json └── src ├── commands ├── economy │ ├── adjust.js │ ├── balance.js │ ├── daily.js │ └── gift.js ├── games │ ├── poker.js │ └── slots.js ├── general │ ├── help.js │ ├── ping.js │ └── prefix.js └── owner │ ├── destroy.js │ ├── eval.js │ └── reload.js ├── games └── PokerGame.js ├── inhibitors ├── embeds.js └── sending.js ├── listeners ├── client │ ├── disconnect.js │ ├── ready.js │ └── reconnecting.js ├── commandHandler │ ├── commandBlocked.js │ ├── commandStarted.js │ └── error.js └── process │ └── unhandledRejection.js ├── models ├── guilds.js └── users.js ├── struct ├── Card.js ├── Database.js ├── Deck.js ├── Game.js ├── GameHandler.js └── KaadoClient.js └── util ├── Extensions.js └── Logger.js /.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Computer1/kaado/HEAD/.eslintrc.json -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Computer1/kaado/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Computer1/kaado/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Computer1/kaado/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Computer1/kaado/HEAD/README.md -------------------------------------------------------------------------------- /config.json.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Computer1/kaado/HEAD/config.json.example -------------------------------------------------------------------------------- /kaado.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Computer1/kaado/HEAD/kaado.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Computer1/kaado/HEAD/package.json -------------------------------------------------------------------------------- /src/commands/economy/adjust.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Computer1/kaado/HEAD/src/commands/economy/adjust.js -------------------------------------------------------------------------------- /src/commands/economy/balance.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Computer1/kaado/HEAD/src/commands/economy/balance.js -------------------------------------------------------------------------------- /src/commands/economy/daily.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Computer1/kaado/HEAD/src/commands/economy/daily.js -------------------------------------------------------------------------------- /src/commands/economy/gift.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Computer1/kaado/HEAD/src/commands/economy/gift.js -------------------------------------------------------------------------------- /src/commands/games/poker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Computer1/kaado/HEAD/src/commands/games/poker.js -------------------------------------------------------------------------------- /src/commands/games/slots.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Computer1/kaado/HEAD/src/commands/games/slots.js -------------------------------------------------------------------------------- /src/commands/general/help.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Computer1/kaado/HEAD/src/commands/general/help.js -------------------------------------------------------------------------------- /src/commands/general/ping.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Computer1/kaado/HEAD/src/commands/general/ping.js -------------------------------------------------------------------------------- /src/commands/general/prefix.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Computer1/kaado/HEAD/src/commands/general/prefix.js -------------------------------------------------------------------------------- /src/commands/owner/destroy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Computer1/kaado/HEAD/src/commands/owner/destroy.js -------------------------------------------------------------------------------- /src/commands/owner/eval.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Computer1/kaado/HEAD/src/commands/owner/eval.js -------------------------------------------------------------------------------- /src/commands/owner/reload.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Computer1/kaado/HEAD/src/commands/owner/reload.js -------------------------------------------------------------------------------- /src/games/PokerGame.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Computer1/kaado/HEAD/src/games/PokerGame.js -------------------------------------------------------------------------------- /src/inhibitors/embeds.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Computer1/kaado/HEAD/src/inhibitors/embeds.js -------------------------------------------------------------------------------- /src/inhibitors/sending.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Computer1/kaado/HEAD/src/inhibitors/sending.js -------------------------------------------------------------------------------- /src/listeners/client/disconnect.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Computer1/kaado/HEAD/src/listeners/client/disconnect.js -------------------------------------------------------------------------------- /src/listeners/client/ready.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Computer1/kaado/HEAD/src/listeners/client/ready.js -------------------------------------------------------------------------------- /src/listeners/client/reconnecting.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Computer1/kaado/HEAD/src/listeners/client/reconnecting.js -------------------------------------------------------------------------------- /src/listeners/commandHandler/commandBlocked.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Computer1/kaado/HEAD/src/listeners/commandHandler/commandBlocked.js -------------------------------------------------------------------------------- /src/listeners/commandHandler/commandStarted.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Computer1/kaado/HEAD/src/listeners/commandHandler/commandStarted.js -------------------------------------------------------------------------------- /src/listeners/commandHandler/error.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Computer1/kaado/HEAD/src/listeners/commandHandler/error.js -------------------------------------------------------------------------------- /src/listeners/process/unhandledRejection.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Computer1/kaado/HEAD/src/listeners/process/unhandledRejection.js -------------------------------------------------------------------------------- /src/models/guilds.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Computer1/kaado/HEAD/src/models/guilds.js -------------------------------------------------------------------------------- /src/models/users.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Computer1/kaado/HEAD/src/models/users.js -------------------------------------------------------------------------------- /src/struct/Card.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Computer1/kaado/HEAD/src/struct/Card.js -------------------------------------------------------------------------------- /src/struct/Database.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Computer1/kaado/HEAD/src/struct/Database.js -------------------------------------------------------------------------------- /src/struct/Deck.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Computer1/kaado/HEAD/src/struct/Deck.js -------------------------------------------------------------------------------- /src/struct/Game.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Computer1/kaado/HEAD/src/struct/Game.js -------------------------------------------------------------------------------- /src/struct/GameHandler.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Computer1/kaado/HEAD/src/struct/GameHandler.js -------------------------------------------------------------------------------- /src/struct/KaadoClient.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Computer1/kaado/HEAD/src/struct/KaadoClient.js -------------------------------------------------------------------------------- /src/util/Extensions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Computer1/kaado/HEAD/src/util/Extensions.js -------------------------------------------------------------------------------- /src/util/Logger.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Computer1/kaado/HEAD/src/util/Logger.js --------------------------------------------------------------------------------