├── .dependabot └── config.yml ├── .env.sample ├── .eslintignore ├── .eslintrc ├── .gitignore ├── Dockerfile ├── LICENSE.MD ├── Procfile ├── assets ├── breathe.gif ├── breathe2.gif ├── combochart.png ├── logo.png └── mascot.png ├── bot.ts ├── command-system.ts ├── commands ├── about.ts ├── analysis.ts ├── avatar.ts ├── badtrip.ts ├── bobross.ts ├── breathe.ts ├── breathe2.ts ├── cocoa.ts ├── combochart.ts ├── combos.ts ├── dxmcalc.ts ├── effectinfo.ts ├── effects.ts ├── gtoke.ts ├── help.ts ├── hrt.ts ├── index.ts ├── info.ts ├── invitelink.ts ├── ketaminecalc.ts ├── mascot.ts ├── psychtolerance.ts ├── randomtdc.ts ├── role.ts ├── roles.ts └── sei.ts ├── include ├── combos.ts ├── customs.js ├── dxmcalc.ts ├── helpers.ts ├── ketaminecalc.ts ├── roles.ts └── sanitize-substance-name.ts ├── package.json ├── queries ├── effects.js └── info.ts ├── readme.md ├── simulate.ts └── tsconfig.json /.dependabot/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dosebotredux/DosebotRedux/HEAD/.dependabot/config.yml -------------------------------------------------------------------------------- /.env.sample: -------------------------------------------------------------------------------- 1 | DISCORD_API_TOKEN= 2 | 3 | -------------------------------------------------------------------------------- /.eslintignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | dist 3 | -------------------------------------------------------------------------------- /.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dosebotredux/DosebotRedux/HEAD/.eslintrc -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dosebotredux/DosebotRedux/HEAD/.gitignore -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dosebotredux/DosebotRedux/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE.MD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dosebotredux/DosebotRedux/HEAD/LICENSE.MD -------------------------------------------------------------------------------- /Procfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dosebotredux/DosebotRedux/HEAD/Procfile -------------------------------------------------------------------------------- /assets/breathe.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dosebotredux/DosebotRedux/HEAD/assets/breathe.gif -------------------------------------------------------------------------------- /assets/breathe2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dosebotredux/DosebotRedux/HEAD/assets/breathe2.gif -------------------------------------------------------------------------------- /assets/combochart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dosebotredux/DosebotRedux/HEAD/assets/combochart.png -------------------------------------------------------------------------------- /assets/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dosebotredux/DosebotRedux/HEAD/assets/logo.png -------------------------------------------------------------------------------- /assets/mascot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dosebotredux/DosebotRedux/HEAD/assets/mascot.png -------------------------------------------------------------------------------- /bot.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dosebotredux/DosebotRedux/HEAD/bot.ts -------------------------------------------------------------------------------- /command-system.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dosebotredux/DosebotRedux/HEAD/command-system.ts -------------------------------------------------------------------------------- /commands/about.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dosebotredux/DosebotRedux/HEAD/commands/about.ts -------------------------------------------------------------------------------- /commands/analysis.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dosebotredux/DosebotRedux/HEAD/commands/analysis.ts -------------------------------------------------------------------------------- /commands/avatar.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dosebotredux/DosebotRedux/HEAD/commands/avatar.ts -------------------------------------------------------------------------------- /commands/badtrip.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dosebotredux/DosebotRedux/HEAD/commands/badtrip.ts -------------------------------------------------------------------------------- /commands/bobross.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dosebotredux/DosebotRedux/HEAD/commands/bobross.ts -------------------------------------------------------------------------------- /commands/breathe.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dosebotredux/DosebotRedux/HEAD/commands/breathe.ts -------------------------------------------------------------------------------- /commands/breathe2.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dosebotredux/DosebotRedux/HEAD/commands/breathe2.ts -------------------------------------------------------------------------------- /commands/cocoa.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dosebotredux/DosebotRedux/HEAD/commands/cocoa.ts -------------------------------------------------------------------------------- /commands/combochart.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dosebotredux/DosebotRedux/HEAD/commands/combochart.ts -------------------------------------------------------------------------------- /commands/combos.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dosebotredux/DosebotRedux/HEAD/commands/combos.ts -------------------------------------------------------------------------------- /commands/dxmcalc.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dosebotredux/DosebotRedux/HEAD/commands/dxmcalc.ts -------------------------------------------------------------------------------- /commands/effectinfo.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dosebotredux/DosebotRedux/HEAD/commands/effectinfo.ts -------------------------------------------------------------------------------- /commands/effects.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dosebotredux/DosebotRedux/HEAD/commands/effects.ts -------------------------------------------------------------------------------- /commands/gtoke.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dosebotredux/DosebotRedux/HEAD/commands/gtoke.ts -------------------------------------------------------------------------------- /commands/help.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dosebotredux/DosebotRedux/HEAD/commands/help.ts -------------------------------------------------------------------------------- /commands/hrt.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dosebotredux/DosebotRedux/HEAD/commands/hrt.ts -------------------------------------------------------------------------------- /commands/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dosebotredux/DosebotRedux/HEAD/commands/index.ts -------------------------------------------------------------------------------- /commands/info.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dosebotredux/DosebotRedux/HEAD/commands/info.ts -------------------------------------------------------------------------------- /commands/invitelink.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dosebotredux/DosebotRedux/HEAD/commands/invitelink.ts -------------------------------------------------------------------------------- /commands/ketaminecalc.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dosebotredux/DosebotRedux/HEAD/commands/ketaminecalc.ts -------------------------------------------------------------------------------- /commands/mascot.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dosebotredux/DosebotRedux/HEAD/commands/mascot.ts -------------------------------------------------------------------------------- /commands/psychtolerance.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dosebotredux/DosebotRedux/HEAD/commands/psychtolerance.ts -------------------------------------------------------------------------------- /commands/randomtdc.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dosebotredux/DosebotRedux/HEAD/commands/randomtdc.ts -------------------------------------------------------------------------------- /commands/role.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dosebotredux/DosebotRedux/HEAD/commands/role.ts -------------------------------------------------------------------------------- /commands/roles.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dosebotredux/DosebotRedux/HEAD/commands/roles.ts -------------------------------------------------------------------------------- /commands/sei.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dosebotredux/DosebotRedux/HEAD/commands/sei.ts -------------------------------------------------------------------------------- /include/combos.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dosebotredux/DosebotRedux/HEAD/include/combos.ts -------------------------------------------------------------------------------- /include/customs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dosebotredux/DosebotRedux/HEAD/include/customs.js -------------------------------------------------------------------------------- /include/dxmcalc.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dosebotredux/DosebotRedux/HEAD/include/dxmcalc.ts -------------------------------------------------------------------------------- /include/helpers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dosebotredux/DosebotRedux/HEAD/include/helpers.ts -------------------------------------------------------------------------------- /include/ketaminecalc.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dosebotredux/DosebotRedux/HEAD/include/ketaminecalc.ts -------------------------------------------------------------------------------- /include/roles.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dosebotredux/DosebotRedux/HEAD/include/roles.ts -------------------------------------------------------------------------------- /include/sanitize-substance-name.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dosebotredux/DosebotRedux/HEAD/include/sanitize-substance-name.ts -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dosebotredux/DosebotRedux/HEAD/package.json -------------------------------------------------------------------------------- /queries/effects.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dosebotredux/DosebotRedux/HEAD/queries/effects.js -------------------------------------------------------------------------------- /queries/info.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dosebotredux/DosebotRedux/HEAD/queries/info.ts -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dosebotredux/DosebotRedux/HEAD/readme.md -------------------------------------------------------------------------------- /simulate.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dosebotredux/DosebotRedux/HEAD/simulate.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dosebotredux/DosebotRedux/HEAD/tsconfig.json --------------------------------------------------------------------------------