├── .github └── workflows │ └── crystal.yml ├── .gitignore ├── .tool-versions ├── LICENSE ├── README.md ├── commands.md ├── config.json ├── docs ├── .editorconfig ├── .eslintrc.js ├── .gitignore ├── .prettierrc ├── assets │ ├── commands.json │ ├── data.json │ ├── transitions.css │ └── variables.scss ├── components │ ├── Commands.vue │ └── Showcase.vue ├── jsconfig.json ├── layouts │ ├── default.vue │ └── error.vue ├── nuxt.config.js ├── package.json ├── pages │ ├── commands.vue │ └── index.vue ├── plugins │ └── discord-msg.js ├── static │ ├── avi.jpg │ └── favicons │ │ ├── android-chrome-192x192.png │ │ ├── android-chrome-384x384.png │ │ ├── apple-touch-icon.png │ │ ├── browserconfig.xml │ │ ├── favicon-16x16.png │ │ ├── favicon-32x32.png │ │ ├── favicon.ico │ │ ├── mstile-150x150.png │ │ ├── safari-pinned-tab.svg │ │ └── site.webmanifest ├── vercel.json └── yarn.lock ├── renovate.json ├── shard.yml └── src ├── Granz.cr ├── bot_lists └── bots_on_discord.cr ├── commands ├── collector.cr ├── fun │ ├── bird.cr │ ├── cat.cr │ ├── choose.cr │ ├── coffee.cr │ ├── dog.cr │ ├── fox.cr │ ├── norris.cr │ ├── okbyemom.cr │ ├── rate.cr │ ├── shiba.cr │ ├── trump.cr │ └── yesno.cr ├── gaming │ ├── amiibo.cr │ ├── mcskin.cr │ ├── mcstatus.cr │ ├── mcuuid.cr │ └── tstatus.cr ├── nsfw │ └── bara.cr ├── roleplay │ ├── baka.cr │ ├── feed.cr │ ├── hug.cr │ ├── kiss.cr │ ├── pat.cr │ ├── poke.cr │ ├── shoot.cr │ └── smug.cr └── utilities │ ├── avatar.cr │ ├── eval.cr │ ├── help.cr │ ├── info.cr │ ├── ip.cr │ ├── ping.cr │ ├── qrcode.cr │ ├── restart.cr │ ├── uptime.cr │ └── whois.cr ├── functions ├── message_awaitmanager.cr ├── min_max_arg.cr └── prefix.cr ├── images └── okbyemom.png └── page_gen.cr /.github/workflows/crystal.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeopJr/Granz-cr/HEAD/.github/workflows/crystal.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | lib/ 2 | shard.lock 3 | .env 4 | -------------------------------------------------------------------------------- /.tool-versions: -------------------------------------------------------------------------------- 1 | crystal 0.34.0 2 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeopJr/Granz-cr/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeopJr/Granz-cr/HEAD/README.md -------------------------------------------------------------------------------- /commands.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeopJr/Granz-cr/HEAD/commands.md -------------------------------------------------------------------------------- /config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeopJr/Granz-cr/HEAD/config.json -------------------------------------------------------------------------------- /docs/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeopJr/Granz-cr/HEAD/docs/.editorconfig -------------------------------------------------------------------------------- /docs/.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeopJr/Granz-cr/HEAD/docs/.eslintrc.js -------------------------------------------------------------------------------- /docs/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeopJr/Granz-cr/HEAD/docs/.gitignore -------------------------------------------------------------------------------- /docs/.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeopJr/Granz-cr/HEAD/docs/.prettierrc -------------------------------------------------------------------------------- /docs/assets/commands.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeopJr/Granz-cr/HEAD/docs/assets/commands.json -------------------------------------------------------------------------------- /docs/assets/data.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeopJr/Granz-cr/HEAD/docs/assets/data.json -------------------------------------------------------------------------------- /docs/assets/transitions.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeopJr/Granz-cr/HEAD/docs/assets/transitions.css -------------------------------------------------------------------------------- /docs/assets/variables.scss: -------------------------------------------------------------------------------- 1 | $grid-breakpoints: ( 2 | 'xl': 12000px - 24px 3 | ); 4 | -------------------------------------------------------------------------------- /docs/components/Commands.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeopJr/Granz-cr/HEAD/docs/components/Commands.vue -------------------------------------------------------------------------------- /docs/components/Showcase.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeopJr/Granz-cr/HEAD/docs/components/Showcase.vue -------------------------------------------------------------------------------- /docs/jsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeopJr/Granz-cr/HEAD/docs/jsconfig.json -------------------------------------------------------------------------------- /docs/layouts/default.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeopJr/Granz-cr/HEAD/docs/layouts/default.vue -------------------------------------------------------------------------------- /docs/layouts/error.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeopJr/Granz-cr/HEAD/docs/layouts/error.vue -------------------------------------------------------------------------------- /docs/nuxt.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeopJr/Granz-cr/HEAD/docs/nuxt.config.js -------------------------------------------------------------------------------- /docs/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeopJr/Granz-cr/HEAD/docs/package.json -------------------------------------------------------------------------------- /docs/pages/commands.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeopJr/Granz-cr/HEAD/docs/pages/commands.vue -------------------------------------------------------------------------------- /docs/pages/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeopJr/Granz-cr/HEAD/docs/pages/index.vue -------------------------------------------------------------------------------- /docs/plugins/discord-msg.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeopJr/Granz-cr/HEAD/docs/plugins/discord-msg.js -------------------------------------------------------------------------------- /docs/static/avi.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeopJr/Granz-cr/HEAD/docs/static/avi.jpg -------------------------------------------------------------------------------- /docs/static/favicons/android-chrome-192x192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeopJr/Granz-cr/HEAD/docs/static/favicons/android-chrome-192x192.png -------------------------------------------------------------------------------- /docs/static/favicons/android-chrome-384x384.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeopJr/Granz-cr/HEAD/docs/static/favicons/android-chrome-384x384.png -------------------------------------------------------------------------------- /docs/static/favicons/apple-touch-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeopJr/Granz-cr/HEAD/docs/static/favicons/apple-touch-icon.png -------------------------------------------------------------------------------- /docs/static/favicons/browserconfig.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeopJr/Granz-cr/HEAD/docs/static/favicons/browserconfig.xml -------------------------------------------------------------------------------- /docs/static/favicons/favicon-16x16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeopJr/Granz-cr/HEAD/docs/static/favicons/favicon-16x16.png -------------------------------------------------------------------------------- /docs/static/favicons/favicon-32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeopJr/Granz-cr/HEAD/docs/static/favicons/favicon-32x32.png -------------------------------------------------------------------------------- /docs/static/favicons/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeopJr/Granz-cr/HEAD/docs/static/favicons/favicon.ico -------------------------------------------------------------------------------- /docs/static/favicons/mstile-150x150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeopJr/Granz-cr/HEAD/docs/static/favicons/mstile-150x150.png -------------------------------------------------------------------------------- /docs/static/favicons/safari-pinned-tab.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeopJr/Granz-cr/HEAD/docs/static/favicons/safari-pinned-tab.svg -------------------------------------------------------------------------------- /docs/static/favicons/site.webmanifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeopJr/Granz-cr/HEAD/docs/static/favicons/site.webmanifest -------------------------------------------------------------------------------- /docs/vercel.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeopJr/Granz-cr/HEAD/docs/vercel.json -------------------------------------------------------------------------------- /docs/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeopJr/Granz-cr/HEAD/docs/yarn.lock -------------------------------------------------------------------------------- /renovate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeopJr/Granz-cr/HEAD/renovate.json -------------------------------------------------------------------------------- /shard.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeopJr/Granz-cr/HEAD/shard.yml -------------------------------------------------------------------------------- /src/Granz.cr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeopJr/Granz-cr/HEAD/src/Granz.cr -------------------------------------------------------------------------------- /src/bot_lists/bots_on_discord.cr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeopJr/Granz-cr/HEAD/src/bot_lists/bots_on_discord.cr -------------------------------------------------------------------------------- /src/commands/collector.cr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeopJr/Granz-cr/HEAD/src/commands/collector.cr -------------------------------------------------------------------------------- /src/commands/fun/bird.cr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeopJr/Granz-cr/HEAD/src/commands/fun/bird.cr -------------------------------------------------------------------------------- /src/commands/fun/cat.cr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeopJr/Granz-cr/HEAD/src/commands/fun/cat.cr -------------------------------------------------------------------------------- /src/commands/fun/choose.cr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeopJr/Granz-cr/HEAD/src/commands/fun/choose.cr -------------------------------------------------------------------------------- /src/commands/fun/coffee.cr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeopJr/Granz-cr/HEAD/src/commands/fun/coffee.cr -------------------------------------------------------------------------------- /src/commands/fun/dog.cr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeopJr/Granz-cr/HEAD/src/commands/fun/dog.cr -------------------------------------------------------------------------------- /src/commands/fun/fox.cr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeopJr/Granz-cr/HEAD/src/commands/fun/fox.cr -------------------------------------------------------------------------------- /src/commands/fun/norris.cr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeopJr/Granz-cr/HEAD/src/commands/fun/norris.cr -------------------------------------------------------------------------------- /src/commands/fun/okbyemom.cr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeopJr/Granz-cr/HEAD/src/commands/fun/okbyemom.cr -------------------------------------------------------------------------------- /src/commands/fun/rate.cr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeopJr/Granz-cr/HEAD/src/commands/fun/rate.cr -------------------------------------------------------------------------------- /src/commands/fun/shiba.cr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeopJr/Granz-cr/HEAD/src/commands/fun/shiba.cr -------------------------------------------------------------------------------- /src/commands/fun/trump.cr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeopJr/Granz-cr/HEAD/src/commands/fun/trump.cr -------------------------------------------------------------------------------- /src/commands/fun/yesno.cr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeopJr/Granz-cr/HEAD/src/commands/fun/yesno.cr -------------------------------------------------------------------------------- /src/commands/gaming/amiibo.cr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeopJr/Granz-cr/HEAD/src/commands/gaming/amiibo.cr -------------------------------------------------------------------------------- /src/commands/gaming/mcskin.cr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeopJr/Granz-cr/HEAD/src/commands/gaming/mcskin.cr -------------------------------------------------------------------------------- /src/commands/gaming/mcstatus.cr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeopJr/Granz-cr/HEAD/src/commands/gaming/mcstatus.cr -------------------------------------------------------------------------------- /src/commands/gaming/mcuuid.cr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeopJr/Granz-cr/HEAD/src/commands/gaming/mcuuid.cr -------------------------------------------------------------------------------- /src/commands/gaming/tstatus.cr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeopJr/Granz-cr/HEAD/src/commands/gaming/tstatus.cr -------------------------------------------------------------------------------- /src/commands/nsfw/bara.cr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeopJr/Granz-cr/HEAD/src/commands/nsfw/bara.cr -------------------------------------------------------------------------------- /src/commands/roleplay/baka.cr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeopJr/Granz-cr/HEAD/src/commands/roleplay/baka.cr -------------------------------------------------------------------------------- /src/commands/roleplay/feed.cr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeopJr/Granz-cr/HEAD/src/commands/roleplay/feed.cr -------------------------------------------------------------------------------- /src/commands/roleplay/hug.cr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeopJr/Granz-cr/HEAD/src/commands/roleplay/hug.cr -------------------------------------------------------------------------------- /src/commands/roleplay/kiss.cr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeopJr/Granz-cr/HEAD/src/commands/roleplay/kiss.cr -------------------------------------------------------------------------------- /src/commands/roleplay/pat.cr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeopJr/Granz-cr/HEAD/src/commands/roleplay/pat.cr -------------------------------------------------------------------------------- /src/commands/roleplay/poke.cr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeopJr/Granz-cr/HEAD/src/commands/roleplay/poke.cr -------------------------------------------------------------------------------- /src/commands/roleplay/shoot.cr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeopJr/Granz-cr/HEAD/src/commands/roleplay/shoot.cr -------------------------------------------------------------------------------- /src/commands/roleplay/smug.cr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeopJr/Granz-cr/HEAD/src/commands/roleplay/smug.cr -------------------------------------------------------------------------------- /src/commands/utilities/avatar.cr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeopJr/Granz-cr/HEAD/src/commands/utilities/avatar.cr -------------------------------------------------------------------------------- /src/commands/utilities/eval.cr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeopJr/Granz-cr/HEAD/src/commands/utilities/eval.cr -------------------------------------------------------------------------------- /src/commands/utilities/help.cr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeopJr/Granz-cr/HEAD/src/commands/utilities/help.cr -------------------------------------------------------------------------------- /src/commands/utilities/info.cr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeopJr/Granz-cr/HEAD/src/commands/utilities/info.cr -------------------------------------------------------------------------------- /src/commands/utilities/ip.cr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeopJr/Granz-cr/HEAD/src/commands/utilities/ip.cr -------------------------------------------------------------------------------- /src/commands/utilities/ping.cr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeopJr/Granz-cr/HEAD/src/commands/utilities/ping.cr -------------------------------------------------------------------------------- /src/commands/utilities/qrcode.cr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeopJr/Granz-cr/HEAD/src/commands/utilities/qrcode.cr -------------------------------------------------------------------------------- /src/commands/utilities/restart.cr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeopJr/Granz-cr/HEAD/src/commands/utilities/restart.cr -------------------------------------------------------------------------------- /src/commands/utilities/uptime.cr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeopJr/Granz-cr/HEAD/src/commands/utilities/uptime.cr -------------------------------------------------------------------------------- /src/commands/utilities/whois.cr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeopJr/Granz-cr/HEAD/src/commands/utilities/whois.cr -------------------------------------------------------------------------------- /src/functions/message_awaitmanager.cr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeopJr/Granz-cr/HEAD/src/functions/message_awaitmanager.cr -------------------------------------------------------------------------------- /src/functions/min_max_arg.cr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeopJr/Granz-cr/HEAD/src/functions/min_max_arg.cr -------------------------------------------------------------------------------- /src/functions/prefix.cr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeopJr/Granz-cr/HEAD/src/functions/prefix.cr -------------------------------------------------------------------------------- /src/images/okbyemom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeopJr/Granz-cr/HEAD/src/images/okbyemom.png -------------------------------------------------------------------------------- /src/page_gen.cr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeopJr/Granz-cr/HEAD/src/page_gen.cr --------------------------------------------------------------------------------