├── .env-template ├── .gitignore ├── .nvmrc ├── .travis.yml ├── LICENSE ├── Pokemon ├── PokeDex.json └── PokeMoves.json ├── Procfile ├── README.md ├── __tests__ └── library │ ├── configuration.test.js │ └── isColor.test.js ├── bot.js ├── commands ├── fun │ ├── 8ball.js │ ├── flip.js │ ├── owofy.js │ ├── poke.js │ ├── rate.js │ ├── roll.js │ ├── slap.js │ └── vote.js ├── images │ ├── dog.js │ ├── fluff.js │ ├── meme.js │ └── smug.js ├── info │ ├── channel.js │ ├── info.js │ ├── osu.js │ ├── pkmn.js │ ├── roles.js │ ├── serverinfo.js │ ├── uptime.js │ └── whois.js ├── mod │ ├── ban.js │ ├── eval.js │ ├── kick.js │ ├── rem.js │ ├── rule.js │ ├── say.js │ └── send.js └── utility │ ├── addrole.js │ ├── avatar.js │ ├── bug.js │ ├── changelog.js │ ├── help.js │ ├── invite.js │ ├── learn.js │ ├── ping.js │ ├── removerole.js │ ├── snipe.js │ └── translate.js ├── events ├── disconnect.js ├── guildCreate.js ├── guildDelete.js ├── guildMemberAdd.js ├── guildMemberRemove.js ├── message.js ├── messageDelete.js └── ready.js ├── index.html ├── jest.config.js ├── library ├── configuration.js └── isColor.js ├── package.json └── utils.js /.env-template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Academy-Of-Animu/Coding-Yabe-Sei/HEAD/.env-template -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Academy-Of-Animu/Coding-Yabe-Sei/HEAD/.gitignore -------------------------------------------------------------------------------- /.nvmrc: -------------------------------------------------------------------------------- 1 | lts/* -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- 1 | language: node_js -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Academy-Of-Animu/Coding-Yabe-Sei/HEAD/LICENSE -------------------------------------------------------------------------------- /Pokemon/PokeDex.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Academy-Of-Animu/Coding-Yabe-Sei/HEAD/Pokemon/PokeDex.json -------------------------------------------------------------------------------- /Pokemon/PokeMoves.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Academy-Of-Animu/Coding-Yabe-Sei/HEAD/Pokemon/PokeMoves.json -------------------------------------------------------------------------------- /Procfile: -------------------------------------------------------------------------------- 1 | worker: npm start 2 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Academy-Of-Animu/Coding-Yabe-Sei/HEAD/README.md -------------------------------------------------------------------------------- /__tests__/library/configuration.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Academy-Of-Animu/Coding-Yabe-Sei/HEAD/__tests__/library/configuration.test.js -------------------------------------------------------------------------------- /__tests__/library/isColor.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Academy-Of-Animu/Coding-Yabe-Sei/HEAD/__tests__/library/isColor.test.js -------------------------------------------------------------------------------- /bot.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Academy-Of-Animu/Coding-Yabe-Sei/HEAD/bot.js -------------------------------------------------------------------------------- /commands/fun/8ball.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Academy-Of-Animu/Coding-Yabe-Sei/HEAD/commands/fun/8ball.js -------------------------------------------------------------------------------- /commands/fun/flip.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Academy-Of-Animu/Coding-Yabe-Sei/HEAD/commands/fun/flip.js -------------------------------------------------------------------------------- /commands/fun/owofy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Academy-Of-Animu/Coding-Yabe-Sei/HEAD/commands/fun/owofy.js -------------------------------------------------------------------------------- /commands/fun/poke.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Academy-Of-Animu/Coding-Yabe-Sei/HEAD/commands/fun/poke.js -------------------------------------------------------------------------------- /commands/fun/rate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Academy-Of-Animu/Coding-Yabe-Sei/HEAD/commands/fun/rate.js -------------------------------------------------------------------------------- /commands/fun/roll.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Academy-Of-Animu/Coding-Yabe-Sei/HEAD/commands/fun/roll.js -------------------------------------------------------------------------------- /commands/fun/slap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Academy-Of-Animu/Coding-Yabe-Sei/HEAD/commands/fun/slap.js -------------------------------------------------------------------------------- /commands/fun/vote.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Academy-Of-Animu/Coding-Yabe-Sei/HEAD/commands/fun/vote.js -------------------------------------------------------------------------------- /commands/images/dog.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Academy-Of-Animu/Coding-Yabe-Sei/HEAD/commands/images/dog.js -------------------------------------------------------------------------------- /commands/images/fluff.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Academy-Of-Animu/Coding-Yabe-Sei/HEAD/commands/images/fluff.js -------------------------------------------------------------------------------- /commands/images/meme.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Academy-Of-Animu/Coding-Yabe-Sei/HEAD/commands/images/meme.js -------------------------------------------------------------------------------- /commands/images/smug.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Academy-Of-Animu/Coding-Yabe-Sei/HEAD/commands/images/smug.js -------------------------------------------------------------------------------- /commands/info/channel.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Academy-Of-Animu/Coding-Yabe-Sei/HEAD/commands/info/channel.js -------------------------------------------------------------------------------- /commands/info/info.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Academy-Of-Animu/Coding-Yabe-Sei/HEAD/commands/info/info.js -------------------------------------------------------------------------------- /commands/info/osu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Academy-Of-Animu/Coding-Yabe-Sei/HEAD/commands/info/osu.js -------------------------------------------------------------------------------- /commands/info/pkmn.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Academy-Of-Animu/Coding-Yabe-Sei/HEAD/commands/info/pkmn.js -------------------------------------------------------------------------------- /commands/info/roles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Academy-Of-Animu/Coding-Yabe-Sei/HEAD/commands/info/roles.js -------------------------------------------------------------------------------- /commands/info/serverinfo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Academy-Of-Animu/Coding-Yabe-Sei/HEAD/commands/info/serverinfo.js -------------------------------------------------------------------------------- /commands/info/uptime.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Academy-Of-Animu/Coding-Yabe-Sei/HEAD/commands/info/uptime.js -------------------------------------------------------------------------------- /commands/info/whois.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Academy-Of-Animu/Coding-Yabe-Sei/HEAD/commands/info/whois.js -------------------------------------------------------------------------------- /commands/mod/ban.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Academy-Of-Animu/Coding-Yabe-Sei/HEAD/commands/mod/ban.js -------------------------------------------------------------------------------- /commands/mod/eval.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Academy-Of-Animu/Coding-Yabe-Sei/HEAD/commands/mod/eval.js -------------------------------------------------------------------------------- /commands/mod/kick.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Academy-Of-Animu/Coding-Yabe-Sei/HEAD/commands/mod/kick.js -------------------------------------------------------------------------------- /commands/mod/rem.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Academy-Of-Animu/Coding-Yabe-Sei/HEAD/commands/mod/rem.js -------------------------------------------------------------------------------- /commands/mod/rule.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Academy-Of-Animu/Coding-Yabe-Sei/HEAD/commands/mod/rule.js -------------------------------------------------------------------------------- /commands/mod/say.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Academy-Of-Animu/Coding-Yabe-Sei/HEAD/commands/mod/say.js -------------------------------------------------------------------------------- /commands/mod/send.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Academy-Of-Animu/Coding-Yabe-Sei/HEAD/commands/mod/send.js -------------------------------------------------------------------------------- /commands/utility/addrole.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Academy-Of-Animu/Coding-Yabe-Sei/HEAD/commands/utility/addrole.js -------------------------------------------------------------------------------- /commands/utility/avatar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Academy-Of-Animu/Coding-Yabe-Sei/HEAD/commands/utility/avatar.js -------------------------------------------------------------------------------- /commands/utility/bug.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Academy-Of-Animu/Coding-Yabe-Sei/HEAD/commands/utility/bug.js -------------------------------------------------------------------------------- /commands/utility/changelog.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Academy-Of-Animu/Coding-Yabe-Sei/HEAD/commands/utility/changelog.js -------------------------------------------------------------------------------- /commands/utility/help.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Academy-Of-Animu/Coding-Yabe-Sei/HEAD/commands/utility/help.js -------------------------------------------------------------------------------- /commands/utility/invite.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Academy-Of-Animu/Coding-Yabe-Sei/HEAD/commands/utility/invite.js -------------------------------------------------------------------------------- /commands/utility/learn.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Academy-Of-Animu/Coding-Yabe-Sei/HEAD/commands/utility/learn.js -------------------------------------------------------------------------------- /commands/utility/ping.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Academy-Of-Animu/Coding-Yabe-Sei/HEAD/commands/utility/ping.js -------------------------------------------------------------------------------- /commands/utility/removerole.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Academy-Of-Animu/Coding-Yabe-Sei/HEAD/commands/utility/removerole.js -------------------------------------------------------------------------------- /commands/utility/snipe.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Academy-Of-Animu/Coding-Yabe-Sei/HEAD/commands/utility/snipe.js -------------------------------------------------------------------------------- /commands/utility/translate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Academy-Of-Animu/Coding-Yabe-Sei/HEAD/commands/utility/translate.js -------------------------------------------------------------------------------- /events/disconnect.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Academy-Of-Animu/Coding-Yabe-Sei/HEAD/events/disconnect.js -------------------------------------------------------------------------------- /events/guildCreate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Academy-Of-Animu/Coding-Yabe-Sei/HEAD/events/guildCreate.js -------------------------------------------------------------------------------- /events/guildDelete.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Academy-Of-Animu/Coding-Yabe-Sei/HEAD/events/guildDelete.js -------------------------------------------------------------------------------- /events/guildMemberAdd.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Academy-Of-Animu/Coding-Yabe-Sei/HEAD/events/guildMemberAdd.js -------------------------------------------------------------------------------- /events/guildMemberRemove.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Academy-Of-Animu/Coding-Yabe-Sei/HEAD/events/guildMemberRemove.js -------------------------------------------------------------------------------- /events/message.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Academy-Of-Animu/Coding-Yabe-Sei/HEAD/events/message.js -------------------------------------------------------------------------------- /events/messageDelete.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Academy-Of-Animu/Coding-Yabe-Sei/HEAD/events/messageDelete.js -------------------------------------------------------------------------------- /events/ready.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Academy-Of-Animu/Coding-Yabe-Sei/HEAD/events/ready.js -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Academy-Of-Animu/Coding-Yabe-Sei/HEAD/index.html -------------------------------------------------------------------------------- /jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Academy-Of-Animu/Coding-Yabe-Sei/HEAD/jest.config.js -------------------------------------------------------------------------------- /library/configuration.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Academy-Of-Animu/Coding-Yabe-Sei/HEAD/library/configuration.js -------------------------------------------------------------------------------- /library/isColor.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Academy-Of-Animu/Coding-Yabe-Sei/HEAD/library/isColor.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Academy-Of-Animu/Coding-Yabe-Sei/HEAD/package.json -------------------------------------------------------------------------------- /utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Academy-Of-Animu/Coding-Yabe-Sei/HEAD/utils.js --------------------------------------------------------------------------------