├── .env.example ├── .gitignore ├── .replit ├── LICENCE ├── README.md ├── config.json ├── index.js ├── package.json └── src ├── app.js ├── assets └── json │ ├── badgelist.json │ └── mafia.json ├── commands ├── economy │ ├── badge.js │ ├── balance.js │ ├── coinflip.js │ ├── daily.js │ ├── dice.js │ ├── module.json │ └── rep.js ├── process │ ├── eval.js │ ├── exec.js │ ├── filesize.js │ ├── module.json │ ├── reload.js │ └── save.js ├── social │ ├── divorce.js │ ├── marry.js │ ├── module.json │ ├── profile.js │ └── setinfo.js └── util │ ├── anime.js │ ├── choose.js │ ├── help.js │ ├── manga.js │ ├── module.json │ ├── osu.js │ ├── ping.js │ └── stats.js ├── events ├── message.js └── ready.js ├── handle ├── Client.js ├── base64.js ├── command.js ├── cooldownAns.json ├── events.js ├── module.js ├── template.js └── util.js └── main.js /.env.example: -------------------------------------------------------------------------------- 1 | TOKEN=your-bot-token -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SharifPoetra/yatogami/HEAD/.gitignore -------------------------------------------------------------------------------- /.replit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SharifPoetra/yatogami/HEAD/.replit -------------------------------------------------------------------------------- /LICENCE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SharifPoetra/yatogami/HEAD/LICENCE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SharifPoetra/yatogami/HEAD/README.md -------------------------------------------------------------------------------- /config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SharifPoetra/yatogami/HEAD/config.json -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- 1 | module.exports = require('./src/main'); -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SharifPoetra/yatogami/HEAD/package.json -------------------------------------------------------------------------------- /src/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SharifPoetra/yatogami/HEAD/src/app.js -------------------------------------------------------------------------------- /src/assets/json/badgelist.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SharifPoetra/yatogami/HEAD/src/assets/json/badgelist.json -------------------------------------------------------------------------------- /src/assets/json/mafia.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SharifPoetra/yatogami/HEAD/src/assets/json/mafia.json -------------------------------------------------------------------------------- /src/commands/economy/badge.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SharifPoetra/yatogami/HEAD/src/commands/economy/badge.js -------------------------------------------------------------------------------- /src/commands/economy/balance.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SharifPoetra/yatogami/HEAD/src/commands/economy/balance.js -------------------------------------------------------------------------------- /src/commands/economy/coinflip.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SharifPoetra/yatogami/HEAD/src/commands/economy/coinflip.js -------------------------------------------------------------------------------- /src/commands/economy/daily.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SharifPoetra/yatogami/HEAD/src/commands/economy/daily.js -------------------------------------------------------------------------------- /src/commands/economy/dice.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SharifPoetra/yatogami/HEAD/src/commands/economy/dice.js -------------------------------------------------------------------------------- /src/commands/economy/module.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SharifPoetra/yatogami/HEAD/src/commands/economy/module.json -------------------------------------------------------------------------------- /src/commands/economy/rep.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SharifPoetra/yatogami/HEAD/src/commands/economy/rep.js -------------------------------------------------------------------------------- /src/commands/process/eval.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SharifPoetra/yatogami/HEAD/src/commands/process/eval.js -------------------------------------------------------------------------------- /src/commands/process/exec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SharifPoetra/yatogami/HEAD/src/commands/process/exec.js -------------------------------------------------------------------------------- /src/commands/process/filesize.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SharifPoetra/yatogami/HEAD/src/commands/process/filesize.js -------------------------------------------------------------------------------- /src/commands/process/module.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SharifPoetra/yatogami/HEAD/src/commands/process/module.json -------------------------------------------------------------------------------- /src/commands/process/reload.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SharifPoetra/yatogami/HEAD/src/commands/process/reload.js -------------------------------------------------------------------------------- /src/commands/process/save.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SharifPoetra/yatogami/HEAD/src/commands/process/save.js -------------------------------------------------------------------------------- /src/commands/social/divorce.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SharifPoetra/yatogami/HEAD/src/commands/social/divorce.js -------------------------------------------------------------------------------- /src/commands/social/marry.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SharifPoetra/yatogami/HEAD/src/commands/social/marry.js -------------------------------------------------------------------------------- /src/commands/social/module.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SharifPoetra/yatogami/HEAD/src/commands/social/module.json -------------------------------------------------------------------------------- /src/commands/social/profile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SharifPoetra/yatogami/HEAD/src/commands/social/profile.js -------------------------------------------------------------------------------- /src/commands/social/setinfo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SharifPoetra/yatogami/HEAD/src/commands/social/setinfo.js -------------------------------------------------------------------------------- /src/commands/util/anime.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SharifPoetra/yatogami/HEAD/src/commands/util/anime.js -------------------------------------------------------------------------------- /src/commands/util/choose.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SharifPoetra/yatogami/HEAD/src/commands/util/choose.js -------------------------------------------------------------------------------- /src/commands/util/help.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SharifPoetra/yatogami/HEAD/src/commands/util/help.js -------------------------------------------------------------------------------- /src/commands/util/manga.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SharifPoetra/yatogami/HEAD/src/commands/util/manga.js -------------------------------------------------------------------------------- /src/commands/util/module.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SharifPoetra/yatogami/HEAD/src/commands/util/module.json -------------------------------------------------------------------------------- /src/commands/util/osu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SharifPoetra/yatogami/HEAD/src/commands/util/osu.js -------------------------------------------------------------------------------- /src/commands/util/ping.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SharifPoetra/yatogami/HEAD/src/commands/util/ping.js -------------------------------------------------------------------------------- /src/commands/util/stats.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SharifPoetra/yatogami/HEAD/src/commands/util/stats.js -------------------------------------------------------------------------------- /src/events/message.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SharifPoetra/yatogami/HEAD/src/events/message.js -------------------------------------------------------------------------------- /src/events/ready.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SharifPoetra/yatogami/HEAD/src/events/ready.js -------------------------------------------------------------------------------- /src/handle/Client.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SharifPoetra/yatogami/HEAD/src/handle/Client.js -------------------------------------------------------------------------------- /src/handle/base64.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SharifPoetra/yatogami/HEAD/src/handle/base64.js -------------------------------------------------------------------------------- /src/handle/command.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SharifPoetra/yatogami/HEAD/src/handle/command.js -------------------------------------------------------------------------------- /src/handle/cooldownAns.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SharifPoetra/yatogami/HEAD/src/handle/cooldownAns.json -------------------------------------------------------------------------------- /src/handle/events.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SharifPoetra/yatogami/HEAD/src/handle/events.js -------------------------------------------------------------------------------- /src/handle/module.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SharifPoetra/yatogami/HEAD/src/handle/module.js -------------------------------------------------------------------------------- /src/handle/template.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SharifPoetra/yatogami/HEAD/src/handle/template.js -------------------------------------------------------------------------------- /src/handle/util.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SharifPoetra/yatogami/HEAD/src/handle/util.js -------------------------------------------------------------------------------- /src/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SharifPoetra/yatogami/HEAD/src/main.js --------------------------------------------------------------------------------