├── .github ├── CODEOWNERS ├── CONTRIBUTING.md ├── FUNDING.yml ├── ISSUE_TEMPLATE │ ├── bug_report.md │ └── feature_request.md ├── SECURITY.md └── SUPPORT.md ├── .gitignore ├── CONTRIBUTING.md ├── LICENSE ├── Languages.json ├── README.md ├── commands ├── help.js ├── homepage.js ├── insult.js └── language.js ├── config.json ├── deploy-commands.js ├── index.js └── package.json /.github/CODEOWNERS: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /.github/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvilInsultGenerator/discord-bot/HEAD/.github/CONTRIBUTING.md -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | custom: ["https://evilinsult.com/donate/"] 2 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvilInsultGenerator/discord-bot/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvilInsultGenerator/discord-bot/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvilInsultGenerator/discord-bot/HEAD/.github/SECURITY.md -------------------------------------------------------------------------------- /.github/SUPPORT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvilInsultGenerator/discord-bot/HEAD/.github/SUPPORT.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvilInsultGenerator/discord-bot/HEAD/.gitignore -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvilInsultGenerator/discord-bot/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvilInsultGenerator/discord-bot/HEAD/LICENSE -------------------------------------------------------------------------------- /Languages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvilInsultGenerator/discord-bot/HEAD/Languages.json -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvilInsultGenerator/discord-bot/HEAD/README.md -------------------------------------------------------------------------------- /commands/help.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvilInsultGenerator/discord-bot/HEAD/commands/help.js -------------------------------------------------------------------------------- /commands/homepage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvilInsultGenerator/discord-bot/HEAD/commands/homepage.js -------------------------------------------------------------------------------- /commands/insult.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvilInsultGenerator/discord-bot/HEAD/commands/insult.js -------------------------------------------------------------------------------- /commands/language.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvilInsultGenerator/discord-bot/HEAD/commands/language.js -------------------------------------------------------------------------------- /config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvilInsultGenerator/discord-bot/HEAD/config.json -------------------------------------------------------------------------------- /deploy-commands.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvilInsultGenerator/discord-bot/HEAD/deploy-commands.js -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvilInsultGenerator/discord-bot/HEAD/index.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvilInsultGenerator/discord-bot/HEAD/package.json --------------------------------------------------------------------------------