├── .github └── dependabot.yml ├── .gitignore ├── .replit ├── .vscode └── launch.json ├── LICENSE ├── README.MD ├── adventures ├── brazil.json ├── space.json ├── vacation.json └── west.json ├── config.json ├── index.js ├── package.json ├── replit.nix ├── tokens.txt ├── trivia.json └── website ├── bal.html └── index.html /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TahaGorme/slashy/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | yarn.lock 3 | config.json 4 | tokens.txt 5 | -------------------------------------------------------------------------------- /.replit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TahaGorme/slashy/HEAD/.replit -------------------------------------------------------------------------------- /.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TahaGorme/slashy/HEAD/.vscode/launch.json -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TahaGorme/slashy/HEAD/LICENSE -------------------------------------------------------------------------------- /README.MD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TahaGorme/slashy/HEAD/README.MD -------------------------------------------------------------------------------- /adventures/brazil.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TahaGorme/slashy/HEAD/adventures/brazil.json -------------------------------------------------------------------------------- /adventures/space.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TahaGorme/slashy/HEAD/adventures/space.json -------------------------------------------------------------------------------- /adventures/vacation.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TahaGorme/slashy/HEAD/adventures/vacation.json -------------------------------------------------------------------------------- /adventures/west.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TahaGorme/slashy/HEAD/adventures/west.json -------------------------------------------------------------------------------- /config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TahaGorme/slashy/HEAD/config.json -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TahaGorme/slashy/HEAD/index.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TahaGorme/slashy/HEAD/package.json -------------------------------------------------------------------------------- /replit.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TahaGorme/slashy/HEAD/replit.nix -------------------------------------------------------------------------------- /tokens.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /trivia.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TahaGorme/slashy/HEAD/trivia.json -------------------------------------------------------------------------------- /website/bal.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TahaGorme/slashy/HEAD/website/bal.html -------------------------------------------------------------------------------- /website/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TahaGorme/slashy/HEAD/website/index.html --------------------------------------------------------------------------------