├── .github └── workflows │ ├── build.yml │ └── lint.yml ├── .gitignore ├── .prettierignore ├── .prettierrc ├── COMMANDS.md ├── LICENSE ├── README.md ├── RELEASE_NOTES.md ├── eslint.config.mjs ├── logs └── .gitignore ├── nest-cli.json ├── package.json ├── public ├── background.html ├── blunder-alerts.html ├── css │ ├── blunder-alerts.css │ └── main.css ├── full-screen.html ├── gifs │ ├── .gitignore │ └── 404.gif ├── images.html ├── images │ ├── .gitignore │ ├── bg │ │ └── space.webp │ ├── crowns │ │ ├── birthday.png │ │ ├── halloween.png │ │ ├── heart.png │ │ ├── jester.png │ │ ├── madhatter.png │ │ ├── royal.png │ │ ├── squid.png │ │ └── tophat.png │ ├── cursors │ │ └── blunder.cur │ ├── edits │ │ └── nate.png │ ├── kings │ │ ├── cool.png │ │ └── secret_trophy.png │ ├── opponents │ │ ├── blunderbot.png │ │ ├── cheesemate.png │ │ ├── ding.png │ │ ├── fabi.png │ │ ├── giri.png │ │ ├── gotham.png │ │ ├── kasparov.png │ │ ├── keymer.png │ │ ├── kramnik.png │ │ ├── levon.png │ │ ├── rosen.png │ │ ├── secret_pie.png │ │ └── vishy.png │ ├── other │ │ ├── No_sign.svg │ │ ├── blank.png │ │ ├── blunderbot.png │ │ └── brown.svg │ ├── themes │ │ ├── flipped │ │ │ ├── black │ │ │ │ ├── bishop.png │ │ │ │ ├── crown.png │ │ │ │ ├── king.png │ │ │ │ ├── knight.png │ │ │ │ ├── pawn.png │ │ │ │ ├── queen.png │ │ │ │ └── rook.png │ │ │ ├── board.png │ │ │ └── white │ │ │ │ ├── bishop.png │ │ │ │ ├── crown.png │ │ │ │ ├── king.png │ │ │ │ ├── knight.png │ │ │ │ ├── pawn.png │ │ │ │ ├── queen.png │ │ │ │ └── rook.png │ │ ├── normal │ │ │ ├── black │ │ │ │ ├── bishop.png │ │ │ │ ├── crown.png │ │ │ │ ├── king.png │ │ │ │ ├── knight.png │ │ │ │ ├── pawn.png │ │ │ │ ├── queen.png │ │ │ │ └── rook.png │ │ │ ├── board.png │ │ │ └── white │ │ │ │ ├── bishop.png │ │ │ │ ├── crown.png │ │ │ │ ├── king.png │ │ │ │ ├── knight.png │ │ │ │ ├── pawn.png │ │ │ │ ├── queen.png │ │ │ │ └── rook.png │ │ └── xmas │ │ │ ├── black │ │ │ ├── crown.png │ │ │ └── pawn.png │ │ │ └── white │ │ │ ├── crown.png │ │ │ └── pawn.png │ └── trophies │ │ ├── 1stplace.png │ │ ├── 2ndplace.png │ │ └── 3rdplace.png ├── index.html ├── manifest.json ├── scripts │ ├── arena-setup.js │ ├── blunderbot_menu.js │ ├── index.js │ ├── socket.io.min.js │ ├── soundboard.js │ └── utils.js └── sounds │ ├── .gitignore │ └── soundboard │ ├── blunders.mp3 │ ├── borat-great-success.mp3 │ ├── dairyqueen.mp3 │ ├── every-russian-schoolboy.mp3 │ ├── hans-first-of-all.mp3 │ ├── hans-idiot-like-me.mp3 │ ├── less-talk-more-play.mp3 │ ├── naka-dirty-tricks.mp3 │ ├── naka-ha-i-tricked-him.mp3 │ ├── naka-i-dont-need-a-queen.mp3 │ └── thank-you-game.mp3 ├── src ├── app.controller.ts ├── app.gateway.ts ├── app.module.ts ├── app.service.ts ├── bluesky │ ├── bluesky.module.ts │ └── bluesky.service.ts ├── browser │ ├── browser.module.ts │ └── browser.service.ts ├── command-overrides │ ├── README.md │ ├── commands │ │ └── .gitkeep │ ├── mod-commands │ │ └── .gitkeep │ └── owner-commands │ │ └── .gitkeep ├── command │ ├── command.module.ts │ ├── command.service.ts │ ├── command.types.d.ts │ ├── commands │ │ ├── 8ball.ts │ │ ├── apod.ts │ │ ├── arena.ts │ │ ├── background.ts │ │ ├── bbb.ts │ │ ├── birthdays.ts │ │ ├── blunder.ts │ │ ├── challenge.ts │ │ ├── chat.ts │ │ ├── crown.ts │ │ ├── cursor.ts │ │ ├── dadjoke.ts │ │ ├── daily.ts │ │ ├── define.ts │ │ ├── first.ts │ │ ├── followage.ts │ │ ├── follows.ts │ │ ├── game.ts │ │ ├── gif.ts │ │ ├── help.ts │ │ ├── highlight.ts │ │ ├── image.ts │ │ ├── king.ts │ │ ├── opening.ts │ │ ├── opponent.ts │ │ ├── personality.ts │ │ ├── puzzle.ts │ │ ├── queue.ts │ │ ├── quote.ts │ │ ├── random.ts │ │ ├── rating.ts │ │ ├── redsox.ts │ │ ├── shorts.ts │ │ ├── song.ts │ │ ├── songrequest.ts │ │ ├── subscribers.ts │ │ ├── title.ts │ │ ├── titles.ts │ │ ├── today.ts │ │ ├── translate.ts │ │ ├── trivia.ts │ │ ├── tts.ts │ │ ├── uptime.ts │ │ ├── vchat.ts │ │ ├── version.ts │ │ └── wordle.ts │ ├── mod-commands │ │ ├── accept.ts │ │ ├── add.ts │ │ ├── delete.ts │ │ ├── emote.ts │ │ ├── gpredict.ts │ │ ├── poll.ts │ │ ├── shoutout.ts │ │ ├── skipsong.ts │ │ └── violators.ts │ └── owner-commands │ │ ├── alert.ts │ │ ├── autochat.ts │ │ ├── autoshoutout.ts │ │ ├── buy.ts │ │ ├── cban.ts │ │ ├── commentary.ts │ │ ├── commercial.ts │ │ ├── confetti.ts │ │ ├── discordspeak.ts │ │ ├── end.ts │ │ ├── heartrate.ts │ │ ├── kill.ts │ │ ├── live.ts │ │ ├── onbits.ts │ │ ├── onraids.ts │ │ ├── onsubs.ts │ │ ├── opp-rating.ts │ │ ├── race.ts │ │ ├── recap.ts │ │ ├── redirect.ts │ │ ├── resetlimits.ts │ │ ├── restart.ts │ │ ├── shape.ts │ │ ├── shortslist.ts │ │ ├── skeet.ts │ │ ├── socket.ts │ │ ├── sound.ts │ │ ├── suggest.ts │ │ ├── theme.ts │ │ ├── toggle.ts │ │ ├── twitchspeak.ts │ │ └── voice.ts ├── config │ ├── config.sample.ts │ ├── config.service.ts │ └── config.types.d.ts ├── configV2 │ ├── configV2.controller.ts │ ├── configV2.module.ts │ ├── configV2.service.ts │ └── configV2.types.d.ts ├── data │ ├── gm-birthdays.ts │ ├── puzzle-openings.ts │ └── shapes.ts ├── discord │ ├── discord.controller.ts │ ├── discord.module.ts │ ├── discord.service.ts │ └── discord.types.d.ts ├── enums.ts ├── giphy │ ├── giphy.module.ts │ └── giphy.service.ts ├── lichess │ ├── lichess.module.ts │ ├── lichess.service.ts │ └── lichess.types.d.ts ├── main.ts ├── migrations │ ├── 1706904428601-StoredCommandTable.ts │ ├── 1707404925602-ConfigTable.ts │ ├── 1707404925669-AddColumnsToConfigTable.ts │ └── 1707404925779-AddBlueskyDropTwitterInConfigTable.ts ├── models │ ├── base.entity.ts │ ├── config │ │ ├── config.entity.ts │ │ ├── config.service.ts │ │ └── config.types.d.ts │ ├── entity.decorator.ts │ ├── entity.exception.ts │ ├── entity.module.ts │ └── stored-command │ │ ├── stored-command.entity.ts │ │ ├── stored-command.service.ts │ │ └── stored-command.types.d.ts ├── openai │ ├── openai.controller.ts │ ├── openai.module.ts │ ├── openai.service.ts │ └── openai.types.d.ts ├── spotify │ ├── spotify.controller.ts │ ├── spotify.module.ts │ ├── spotify.service.ts │ └── spotify.types.d.ts ├── twitch │ ├── twitch.controller.ts │ ├── twitch.eventsub.ts │ ├── twitch.gateway.ts │ ├── twitch.module.ts │ ├── twitch.service.ts │ └── twitch.types.d.ts ├── types.d.ts └── utils │ ├── FunctionQueue.ts │ ├── constants.ts │ ├── dev-certs │ ├── localhost.crt │ └── localhost.key │ ├── logs.ts │ ├── migration-utils.ts │ └── utils.ts ├── tools ├── blunder-report │ ├── README.md │ ├── analyze.py │ ├── report.py │ └── requirements.txt ├── image-to-grid │ ├── image-to-grid.py │ └── requirements.txt ├── kings-list │ └── generate-gallery.py ├── resize-image │ ├── requirements.txt │ └── resize-image.py └── speedhole │ └── zerkin.py ├── tsconfig.build.json └── tsconfig.json /.github/workflows/build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NateBrady23/blunderbot/HEAD/.github/workflows/build.yml -------------------------------------------------------------------------------- /.github/workflows/lint.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NateBrady23/blunderbot/HEAD/.github/workflows/lint.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NateBrady23/blunderbot/HEAD/.gitignore -------------------------------------------------------------------------------- /.prettierignore: -------------------------------------------------------------------------------- 1 | public/scripts/socket.io.min.js 2 | RELEASE_NOTES.md 3 | -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NateBrady23/blunderbot/HEAD/.prettierrc -------------------------------------------------------------------------------- /COMMANDS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NateBrady23/blunderbot/HEAD/COMMANDS.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NateBrady23/blunderbot/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NateBrady23/blunderbot/HEAD/README.md -------------------------------------------------------------------------------- /RELEASE_NOTES.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NateBrady23/blunderbot/HEAD/RELEASE_NOTES.md -------------------------------------------------------------------------------- /eslint.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NateBrady23/blunderbot/HEAD/eslint.config.mjs -------------------------------------------------------------------------------- /logs/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore -------------------------------------------------------------------------------- /nest-cli.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NateBrady23/blunderbot/HEAD/nest-cli.json -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NateBrady23/blunderbot/HEAD/package.json -------------------------------------------------------------------------------- /public/background.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NateBrady23/blunderbot/HEAD/public/background.html -------------------------------------------------------------------------------- /public/blunder-alerts.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NateBrady23/blunderbot/HEAD/public/blunder-alerts.html -------------------------------------------------------------------------------- /public/css/blunder-alerts.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NateBrady23/blunderbot/HEAD/public/css/blunder-alerts.css -------------------------------------------------------------------------------- /public/css/main.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NateBrady23/blunderbot/HEAD/public/css/main.css -------------------------------------------------------------------------------- /public/full-screen.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NateBrady23/blunderbot/HEAD/public/full-screen.html -------------------------------------------------------------------------------- /public/gifs/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /public/gifs/404.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NateBrady23/blunderbot/HEAD/public/gifs/404.gif -------------------------------------------------------------------------------- /public/images.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NateBrady23/blunderbot/HEAD/public/images.html -------------------------------------------------------------------------------- /public/images/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /public/images/bg/space.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NateBrady23/blunderbot/HEAD/public/images/bg/space.webp -------------------------------------------------------------------------------- /public/images/crowns/birthday.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NateBrady23/blunderbot/HEAD/public/images/crowns/birthday.png -------------------------------------------------------------------------------- /public/images/crowns/halloween.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NateBrady23/blunderbot/HEAD/public/images/crowns/halloween.png -------------------------------------------------------------------------------- /public/images/crowns/heart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NateBrady23/blunderbot/HEAD/public/images/crowns/heart.png -------------------------------------------------------------------------------- /public/images/crowns/jester.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NateBrady23/blunderbot/HEAD/public/images/crowns/jester.png -------------------------------------------------------------------------------- /public/images/crowns/madhatter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NateBrady23/blunderbot/HEAD/public/images/crowns/madhatter.png -------------------------------------------------------------------------------- /public/images/crowns/royal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NateBrady23/blunderbot/HEAD/public/images/crowns/royal.png -------------------------------------------------------------------------------- /public/images/crowns/squid.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NateBrady23/blunderbot/HEAD/public/images/crowns/squid.png -------------------------------------------------------------------------------- /public/images/crowns/tophat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NateBrady23/blunderbot/HEAD/public/images/crowns/tophat.png -------------------------------------------------------------------------------- /public/images/cursors/blunder.cur: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NateBrady23/blunderbot/HEAD/public/images/cursors/blunder.cur -------------------------------------------------------------------------------- /public/images/edits/nate.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NateBrady23/blunderbot/HEAD/public/images/edits/nate.png -------------------------------------------------------------------------------- /public/images/kings/cool.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NateBrady23/blunderbot/HEAD/public/images/kings/cool.png -------------------------------------------------------------------------------- /public/images/kings/secret_trophy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NateBrady23/blunderbot/HEAD/public/images/kings/secret_trophy.png -------------------------------------------------------------------------------- /public/images/opponents/blunderbot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NateBrady23/blunderbot/HEAD/public/images/opponents/blunderbot.png -------------------------------------------------------------------------------- /public/images/opponents/cheesemate.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NateBrady23/blunderbot/HEAD/public/images/opponents/cheesemate.png -------------------------------------------------------------------------------- /public/images/opponents/ding.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NateBrady23/blunderbot/HEAD/public/images/opponents/ding.png -------------------------------------------------------------------------------- /public/images/opponents/fabi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NateBrady23/blunderbot/HEAD/public/images/opponents/fabi.png -------------------------------------------------------------------------------- /public/images/opponents/giri.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NateBrady23/blunderbot/HEAD/public/images/opponents/giri.png -------------------------------------------------------------------------------- /public/images/opponents/gotham.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NateBrady23/blunderbot/HEAD/public/images/opponents/gotham.png -------------------------------------------------------------------------------- /public/images/opponents/kasparov.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NateBrady23/blunderbot/HEAD/public/images/opponents/kasparov.png -------------------------------------------------------------------------------- /public/images/opponents/keymer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NateBrady23/blunderbot/HEAD/public/images/opponents/keymer.png -------------------------------------------------------------------------------- /public/images/opponents/kramnik.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NateBrady23/blunderbot/HEAD/public/images/opponents/kramnik.png -------------------------------------------------------------------------------- /public/images/opponents/levon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NateBrady23/blunderbot/HEAD/public/images/opponents/levon.png -------------------------------------------------------------------------------- /public/images/opponents/rosen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NateBrady23/blunderbot/HEAD/public/images/opponents/rosen.png -------------------------------------------------------------------------------- /public/images/opponents/secret_pie.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NateBrady23/blunderbot/HEAD/public/images/opponents/secret_pie.png -------------------------------------------------------------------------------- /public/images/opponents/vishy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NateBrady23/blunderbot/HEAD/public/images/opponents/vishy.png -------------------------------------------------------------------------------- /public/images/other/No_sign.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NateBrady23/blunderbot/HEAD/public/images/other/No_sign.svg -------------------------------------------------------------------------------- /public/images/other/blank.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NateBrady23/blunderbot/HEAD/public/images/other/blank.png -------------------------------------------------------------------------------- /public/images/other/blunderbot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NateBrady23/blunderbot/HEAD/public/images/other/blunderbot.png -------------------------------------------------------------------------------- /public/images/other/brown.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NateBrady23/blunderbot/HEAD/public/images/other/brown.svg -------------------------------------------------------------------------------- /public/images/themes/flipped/black/bishop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NateBrady23/blunderbot/HEAD/public/images/themes/flipped/black/bishop.png -------------------------------------------------------------------------------- /public/images/themes/flipped/black/crown.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NateBrady23/blunderbot/HEAD/public/images/themes/flipped/black/crown.png -------------------------------------------------------------------------------- /public/images/themes/flipped/black/king.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NateBrady23/blunderbot/HEAD/public/images/themes/flipped/black/king.png -------------------------------------------------------------------------------- /public/images/themes/flipped/black/knight.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NateBrady23/blunderbot/HEAD/public/images/themes/flipped/black/knight.png -------------------------------------------------------------------------------- /public/images/themes/flipped/black/pawn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NateBrady23/blunderbot/HEAD/public/images/themes/flipped/black/pawn.png -------------------------------------------------------------------------------- /public/images/themes/flipped/black/queen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NateBrady23/blunderbot/HEAD/public/images/themes/flipped/black/queen.png -------------------------------------------------------------------------------- /public/images/themes/flipped/black/rook.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NateBrady23/blunderbot/HEAD/public/images/themes/flipped/black/rook.png -------------------------------------------------------------------------------- /public/images/themes/flipped/board.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NateBrady23/blunderbot/HEAD/public/images/themes/flipped/board.png -------------------------------------------------------------------------------- /public/images/themes/flipped/white/bishop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NateBrady23/blunderbot/HEAD/public/images/themes/flipped/white/bishop.png -------------------------------------------------------------------------------- /public/images/themes/flipped/white/crown.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NateBrady23/blunderbot/HEAD/public/images/themes/flipped/white/crown.png -------------------------------------------------------------------------------- /public/images/themes/flipped/white/king.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NateBrady23/blunderbot/HEAD/public/images/themes/flipped/white/king.png -------------------------------------------------------------------------------- /public/images/themes/flipped/white/knight.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NateBrady23/blunderbot/HEAD/public/images/themes/flipped/white/knight.png -------------------------------------------------------------------------------- /public/images/themes/flipped/white/pawn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NateBrady23/blunderbot/HEAD/public/images/themes/flipped/white/pawn.png -------------------------------------------------------------------------------- /public/images/themes/flipped/white/queen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NateBrady23/blunderbot/HEAD/public/images/themes/flipped/white/queen.png -------------------------------------------------------------------------------- /public/images/themes/flipped/white/rook.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NateBrady23/blunderbot/HEAD/public/images/themes/flipped/white/rook.png -------------------------------------------------------------------------------- /public/images/themes/normal/black/bishop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NateBrady23/blunderbot/HEAD/public/images/themes/normal/black/bishop.png -------------------------------------------------------------------------------- /public/images/themes/normal/black/crown.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NateBrady23/blunderbot/HEAD/public/images/themes/normal/black/crown.png -------------------------------------------------------------------------------- /public/images/themes/normal/black/king.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NateBrady23/blunderbot/HEAD/public/images/themes/normal/black/king.png -------------------------------------------------------------------------------- /public/images/themes/normal/black/knight.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NateBrady23/blunderbot/HEAD/public/images/themes/normal/black/knight.png -------------------------------------------------------------------------------- /public/images/themes/normal/black/pawn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NateBrady23/blunderbot/HEAD/public/images/themes/normal/black/pawn.png -------------------------------------------------------------------------------- /public/images/themes/normal/black/queen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NateBrady23/blunderbot/HEAD/public/images/themes/normal/black/queen.png -------------------------------------------------------------------------------- /public/images/themes/normal/black/rook.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NateBrady23/blunderbot/HEAD/public/images/themes/normal/black/rook.png -------------------------------------------------------------------------------- /public/images/themes/normal/board.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NateBrady23/blunderbot/HEAD/public/images/themes/normal/board.png -------------------------------------------------------------------------------- /public/images/themes/normal/white/bishop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NateBrady23/blunderbot/HEAD/public/images/themes/normal/white/bishop.png -------------------------------------------------------------------------------- /public/images/themes/normal/white/crown.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NateBrady23/blunderbot/HEAD/public/images/themes/normal/white/crown.png -------------------------------------------------------------------------------- /public/images/themes/normal/white/king.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NateBrady23/blunderbot/HEAD/public/images/themes/normal/white/king.png -------------------------------------------------------------------------------- /public/images/themes/normal/white/knight.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NateBrady23/blunderbot/HEAD/public/images/themes/normal/white/knight.png -------------------------------------------------------------------------------- /public/images/themes/normal/white/pawn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NateBrady23/blunderbot/HEAD/public/images/themes/normal/white/pawn.png -------------------------------------------------------------------------------- /public/images/themes/normal/white/queen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NateBrady23/blunderbot/HEAD/public/images/themes/normal/white/queen.png -------------------------------------------------------------------------------- /public/images/themes/normal/white/rook.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NateBrady23/blunderbot/HEAD/public/images/themes/normal/white/rook.png -------------------------------------------------------------------------------- /public/images/themes/xmas/black/crown.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NateBrady23/blunderbot/HEAD/public/images/themes/xmas/black/crown.png -------------------------------------------------------------------------------- /public/images/themes/xmas/black/pawn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NateBrady23/blunderbot/HEAD/public/images/themes/xmas/black/pawn.png -------------------------------------------------------------------------------- /public/images/themes/xmas/white/crown.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NateBrady23/blunderbot/HEAD/public/images/themes/xmas/white/crown.png -------------------------------------------------------------------------------- /public/images/themes/xmas/white/pawn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NateBrady23/blunderbot/HEAD/public/images/themes/xmas/white/pawn.png -------------------------------------------------------------------------------- /public/images/trophies/1stplace.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NateBrady23/blunderbot/HEAD/public/images/trophies/1stplace.png -------------------------------------------------------------------------------- /public/images/trophies/2ndplace.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NateBrady23/blunderbot/HEAD/public/images/trophies/2ndplace.png -------------------------------------------------------------------------------- /public/images/trophies/3rdplace.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NateBrady23/blunderbot/HEAD/public/images/trophies/3rdplace.png -------------------------------------------------------------------------------- /public/index.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NateBrady23/blunderbot/HEAD/public/manifest.json -------------------------------------------------------------------------------- /public/scripts/arena-setup.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NateBrady23/blunderbot/HEAD/public/scripts/arena-setup.js -------------------------------------------------------------------------------- /public/scripts/blunderbot_menu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NateBrady23/blunderbot/HEAD/public/scripts/blunderbot_menu.js -------------------------------------------------------------------------------- /public/scripts/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NateBrady23/blunderbot/HEAD/public/scripts/index.js -------------------------------------------------------------------------------- /public/scripts/socket.io.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NateBrady23/blunderbot/HEAD/public/scripts/socket.io.min.js -------------------------------------------------------------------------------- /public/scripts/soundboard.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NateBrady23/blunderbot/HEAD/public/scripts/soundboard.js -------------------------------------------------------------------------------- /public/scripts/utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NateBrady23/blunderbot/HEAD/public/scripts/utils.js -------------------------------------------------------------------------------- /public/sounds/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /public/sounds/soundboard/blunders.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NateBrady23/blunderbot/HEAD/public/sounds/soundboard/blunders.mp3 -------------------------------------------------------------------------------- /public/sounds/soundboard/borat-great-success.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NateBrady23/blunderbot/HEAD/public/sounds/soundboard/borat-great-success.mp3 -------------------------------------------------------------------------------- /public/sounds/soundboard/dairyqueen.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NateBrady23/blunderbot/HEAD/public/sounds/soundboard/dairyqueen.mp3 -------------------------------------------------------------------------------- /public/sounds/soundboard/every-russian-schoolboy.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NateBrady23/blunderbot/HEAD/public/sounds/soundboard/every-russian-schoolboy.mp3 -------------------------------------------------------------------------------- /public/sounds/soundboard/hans-first-of-all.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NateBrady23/blunderbot/HEAD/public/sounds/soundboard/hans-first-of-all.mp3 -------------------------------------------------------------------------------- /public/sounds/soundboard/hans-idiot-like-me.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NateBrady23/blunderbot/HEAD/public/sounds/soundboard/hans-idiot-like-me.mp3 -------------------------------------------------------------------------------- /public/sounds/soundboard/less-talk-more-play.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NateBrady23/blunderbot/HEAD/public/sounds/soundboard/less-talk-more-play.mp3 -------------------------------------------------------------------------------- /public/sounds/soundboard/naka-dirty-tricks.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NateBrady23/blunderbot/HEAD/public/sounds/soundboard/naka-dirty-tricks.mp3 -------------------------------------------------------------------------------- /public/sounds/soundboard/naka-ha-i-tricked-him.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NateBrady23/blunderbot/HEAD/public/sounds/soundboard/naka-ha-i-tricked-him.mp3 -------------------------------------------------------------------------------- /public/sounds/soundboard/naka-i-dont-need-a-queen.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NateBrady23/blunderbot/HEAD/public/sounds/soundboard/naka-i-dont-need-a-queen.mp3 -------------------------------------------------------------------------------- /public/sounds/soundboard/thank-you-game.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NateBrady23/blunderbot/HEAD/public/sounds/soundboard/thank-you-game.mp3 -------------------------------------------------------------------------------- /src/app.controller.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NateBrady23/blunderbot/HEAD/src/app.controller.ts -------------------------------------------------------------------------------- /src/app.gateway.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NateBrady23/blunderbot/HEAD/src/app.gateway.ts -------------------------------------------------------------------------------- /src/app.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NateBrady23/blunderbot/HEAD/src/app.module.ts -------------------------------------------------------------------------------- /src/app.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NateBrady23/blunderbot/HEAD/src/app.service.ts -------------------------------------------------------------------------------- /src/bluesky/bluesky.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NateBrady23/blunderbot/HEAD/src/bluesky/bluesky.module.ts -------------------------------------------------------------------------------- /src/bluesky/bluesky.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NateBrady23/blunderbot/HEAD/src/bluesky/bluesky.service.ts -------------------------------------------------------------------------------- /src/browser/browser.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NateBrady23/blunderbot/HEAD/src/browser/browser.module.ts -------------------------------------------------------------------------------- /src/browser/browser.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NateBrady23/blunderbot/HEAD/src/browser/browser.service.ts -------------------------------------------------------------------------------- /src/command-overrides/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NateBrady23/blunderbot/HEAD/src/command-overrides/README.md -------------------------------------------------------------------------------- /src/command-overrides/commands/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/command-overrides/mod-commands/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/command-overrides/owner-commands/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/command/command.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NateBrady23/blunderbot/HEAD/src/command/command.module.ts -------------------------------------------------------------------------------- /src/command/command.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NateBrady23/blunderbot/HEAD/src/command/command.service.ts -------------------------------------------------------------------------------- /src/command/command.types.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NateBrady23/blunderbot/HEAD/src/command/command.types.d.ts -------------------------------------------------------------------------------- /src/command/commands/8ball.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NateBrady23/blunderbot/HEAD/src/command/commands/8ball.ts -------------------------------------------------------------------------------- /src/command/commands/apod.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NateBrady23/blunderbot/HEAD/src/command/commands/apod.ts -------------------------------------------------------------------------------- /src/command/commands/arena.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NateBrady23/blunderbot/HEAD/src/command/commands/arena.ts -------------------------------------------------------------------------------- /src/command/commands/background.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NateBrady23/blunderbot/HEAD/src/command/commands/background.ts -------------------------------------------------------------------------------- /src/command/commands/bbb.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NateBrady23/blunderbot/HEAD/src/command/commands/bbb.ts -------------------------------------------------------------------------------- /src/command/commands/birthdays.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NateBrady23/blunderbot/HEAD/src/command/commands/birthdays.ts -------------------------------------------------------------------------------- /src/command/commands/blunder.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NateBrady23/blunderbot/HEAD/src/command/commands/blunder.ts -------------------------------------------------------------------------------- /src/command/commands/challenge.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NateBrady23/blunderbot/HEAD/src/command/commands/challenge.ts -------------------------------------------------------------------------------- /src/command/commands/chat.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NateBrady23/blunderbot/HEAD/src/command/commands/chat.ts -------------------------------------------------------------------------------- /src/command/commands/crown.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NateBrady23/blunderbot/HEAD/src/command/commands/crown.ts -------------------------------------------------------------------------------- /src/command/commands/cursor.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NateBrady23/blunderbot/HEAD/src/command/commands/cursor.ts -------------------------------------------------------------------------------- /src/command/commands/dadjoke.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NateBrady23/blunderbot/HEAD/src/command/commands/dadjoke.ts -------------------------------------------------------------------------------- /src/command/commands/daily.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NateBrady23/blunderbot/HEAD/src/command/commands/daily.ts -------------------------------------------------------------------------------- /src/command/commands/define.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NateBrady23/blunderbot/HEAD/src/command/commands/define.ts -------------------------------------------------------------------------------- /src/command/commands/first.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NateBrady23/blunderbot/HEAD/src/command/commands/first.ts -------------------------------------------------------------------------------- /src/command/commands/followage.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NateBrady23/blunderbot/HEAD/src/command/commands/followage.ts -------------------------------------------------------------------------------- /src/command/commands/follows.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NateBrady23/blunderbot/HEAD/src/command/commands/follows.ts -------------------------------------------------------------------------------- /src/command/commands/game.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NateBrady23/blunderbot/HEAD/src/command/commands/game.ts -------------------------------------------------------------------------------- /src/command/commands/gif.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NateBrady23/blunderbot/HEAD/src/command/commands/gif.ts -------------------------------------------------------------------------------- /src/command/commands/help.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NateBrady23/blunderbot/HEAD/src/command/commands/help.ts -------------------------------------------------------------------------------- /src/command/commands/highlight.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NateBrady23/blunderbot/HEAD/src/command/commands/highlight.ts -------------------------------------------------------------------------------- /src/command/commands/image.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NateBrady23/blunderbot/HEAD/src/command/commands/image.ts -------------------------------------------------------------------------------- /src/command/commands/king.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NateBrady23/blunderbot/HEAD/src/command/commands/king.ts -------------------------------------------------------------------------------- /src/command/commands/opening.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NateBrady23/blunderbot/HEAD/src/command/commands/opening.ts -------------------------------------------------------------------------------- /src/command/commands/opponent.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NateBrady23/blunderbot/HEAD/src/command/commands/opponent.ts -------------------------------------------------------------------------------- /src/command/commands/personality.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NateBrady23/blunderbot/HEAD/src/command/commands/personality.ts -------------------------------------------------------------------------------- /src/command/commands/puzzle.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NateBrady23/blunderbot/HEAD/src/command/commands/puzzle.ts -------------------------------------------------------------------------------- /src/command/commands/queue.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NateBrady23/blunderbot/HEAD/src/command/commands/queue.ts -------------------------------------------------------------------------------- /src/command/commands/quote.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NateBrady23/blunderbot/HEAD/src/command/commands/quote.ts -------------------------------------------------------------------------------- /src/command/commands/random.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NateBrady23/blunderbot/HEAD/src/command/commands/random.ts -------------------------------------------------------------------------------- /src/command/commands/rating.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NateBrady23/blunderbot/HEAD/src/command/commands/rating.ts -------------------------------------------------------------------------------- /src/command/commands/redsox.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NateBrady23/blunderbot/HEAD/src/command/commands/redsox.ts -------------------------------------------------------------------------------- /src/command/commands/shorts.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NateBrady23/blunderbot/HEAD/src/command/commands/shorts.ts -------------------------------------------------------------------------------- /src/command/commands/song.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NateBrady23/blunderbot/HEAD/src/command/commands/song.ts -------------------------------------------------------------------------------- /src/command/commands/songrequest.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NateBrady23/blunderbot/HEAD/src/command/commands/songrequest.ts -------------------------------------------------------------------------------- /src/command/commands/subscribers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NateBrady23/blunderbot/HEAD/src/command/commands/subscribers.ts -------------------------------------------------------------------------------- /src/command/commands/title.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NateBrady23/blunderbot/HEAD/src/command/commands/title.ts -------------------------------------------------------------------------------- /src/command/commands/titles.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NateBrady23/blunderbot/HEAD/src/command/commands/titles.ts -------------------------------------------------------------------------------- /src/command/commands/today.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NateBrady23/blunderbot/HEAD/src/command/commands/today.ts -------------------------------------------------------------------------------- /src/command/commands/translate.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NateBrady23/blunderbot/HEAD/src/command/commands/translate.ts -------------------------------------------------------------------------------- /src/command/commands/trivia.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NateBrady23/blunderbot/HEAD/src/command/commands/trivia.ts -------------------------------------------------------------------------------- /src/command/commands/tts.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NateBrady23/blunderbot/HEAD/src/command/commands/tts.ts -------------------------------------------------------------------------------- /src/command/commands/uptime.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NateBrady23/blunderbot/HEAD/src/command/commands/uptime.ts -------------------------------------------------------------------------------- /src/command/commands/vchat.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NateBrady23/blunderbot/HEAD/src/command/commands/vchat.ts -------------------------------------------------------------------------------- /src/command/commands/version.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NateBrady23/blunderbot/HEAD/src/command/commands/version.ts -------------------------------------------------------------------------------- /src/command/commands/wordle.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NateBrady23/blunderbot/HEAD/src/command/commands/wordle.ts -------------------------------------------------------------------------------- /src/command/mod-commands/accept.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NateBrady23/blunderbot/HEAD/src/command/mod-commands/accept.ts -------------------------------------------------------------------------------- /src/command/mod-commands/add.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NateBrady23/blunderbot/HEAD/src/command/mod-commands/add.ts -------------------------------------------------------------------------------- /src/command/mod-commands/delete.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NateBrady23/blunderbot/HEAD/src/command/mod-commands/delete.ts -------------------------------------------------------------------------------- /src/command/mod-commands/emote.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NateBrady23/blunderbot/HEAD/src/command/mod-commands/emote.ts -------------------------------------------------------------------------------- /src/command/mod-commands/gpredict.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NateBrady23/blunderbot/HEAD/src/command/mod-commands/gpredict.ts -------------------------------------------------------------------------------- /src/command/mod-commands/poll.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NateBrady23/blunderbot/HEAD/src/command/mod-commands/poll.ts -------------------------------------------------------------------------------- /src/command/mod-commands/shoutout.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NateBrady23/blunderbot/HEAD/src/command/mod-commands/shoutout.ts -------------------------------------------------------------------------------- /src/command/mod-commands/skipsong.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NateBrady23/blunderbot/HEAD/src/command/mod-commands/skipsong.ts -------------------------------------------------------------------------------- /src/command/mod-commands/violators.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NateBrady23/blunderbot/HEAD/src/command/mod-commands/violators.ts -------------------------------------------------------------------------------- /src/command/owner-commands/alert.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NateBrady23/blunderbot/HEAD/src/command/owner-commands/alert.ts -------------------------------------------------------------------------------- /src/command/owner-commands/autochat.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NateBrady23/blunderbot/HEAD/src/command/owner-commands/autochat.ts -------------------------------------------------------------------------------- /src/command/owner-commands/autoshoutout.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NateBrady23/blunderbot/HEAD/src/command/owner-commands/autoshoutout.ts -------------------------------------------------------------------------------- /src/command/owner-commands/buy.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NateBrady23/blunderbot/HEAD/src/command/owner-commands/buy.ts -------------------------------------------------------------------------------- /src/command/owner-commands/cban.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NateBrady23/blunderbot/HEAD/src/command/owner-commands/cban.ts -------------------------------------------------------------------------------- /src/command/owner-commands/commentary.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NateBrady23/blunderbot/HEAD/src/command/owner-commands/commentary.ts -------------------------------------------------------------------------------- /src/command/owner-commands/commercial.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NateBrady23/blunderbot/HEAD/src/command/owner-commands/commercial.ts -------------------------------------------------------------------------------- /src/command/owner-commands/confetti.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NateBrady23/blunderbot/HEAD/src/command/owner-commands/confetti.ts -------------------------------------------------------------------------------- /src/command/owner-commands/discordspeak.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NateBrady23/blunderbot/HEAD/src/command/owner-commands/discordspeak.ts -------------------------------------------------------------------------------- /src/command/owner-commands/end.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NateBrady23/blunderbot/HEAD/src/command/owner-commands/end.ts -------------------------------------------------------------------------------- /src/command/owner-commands/heartrate.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NateBrady23/blunderbot/HEAD/src/command/owner-commands/heartrate.ts -------------------------------------------------------------------------------- /src/command/owner-commands/kill.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NateBrady23/blunderbot/HEAD/src/command/owner-commands/kill.ts -------------------------------------------------------------------------------- /src/command/owner-commands/live.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NateBrady23/blunderbot/HEAD/src/command/owner-commands/live.ts -------------------------------------------------------------------------------- /src/command/owner-commands/onbits.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NateBrady23/blunderbot/HEAD/src/command/owner-commands/onbits.ts -------------------------------------------------------------------------------- /src/command/owner-commands/onraids.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NateBrady23/blunderbot/HEAD/src/command/owner-commands/onraids.ts -------------------------------------------------------------------------------- /src/command/owner-commands/onsubs.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NateBrady23/blunderbot/HEAD/src/command/owner-commands/onsubs.ts -------------------------------------------------------------------------------- /src/command/owner-commands/opp-rating.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NateBrady23/blunderbot/HEAD/src/command/owner-commands/opp-rating.ts -------------------------------------------------------------------------------- /src/command/owner-commands/race.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NateBrady23/blunderbot/HEAD/src/command/owner-commands/race.ts -------------------------------------------------------------------------------- /src/command/owner-commands/recap.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NateBrady23/blunderbot/HEAD/src/command/owner-commands/recap.ts -------------------------------------------------------------------------------- /src/command/owner-commands/redirect.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NateBrady23/blunderbot/HEAD/src/command/owner-commands/redirect.ts -------------------------------------------------------------------------------- /src/command/owner-commands/resetlimits.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NateBrady23/blunderbot/HEAD/src/command/owner-commands/resetlimits.ts -------------------------------------------------------------------------------- /src/command/owner-commands/restart.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NateBrady23/blunderbot/HEAD/src/command/owner-commands/restart.ts -------------------------------------------------------------------------------- /src/command/owner-commands/shape.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NateBrady23/blunderbot/HEAD/src/command/owner-commands/shape.ts -------------------------------------------------------------------------------- /src/command/owner-commands/shortslist.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NateBrady23/blunderbot/HEAD/src/command/owner-commands/shortslist.ts -------------------------------------------------------------------------------- /src/command/owner-commands/skeet.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NateBrady23/blunderbot/HEAD/src/command/owner-commands/skeet.ts -------------------------------------------------------------------------------- /src/command/owner-commands/socket.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NateBrady23/blunderbot/HEAD/src/command/owner-commands/socket.ts -------------------------------------------------------------------------------- /src/command/owner-commands/sound.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NateBrady23/blunderbot/HEAD/src/command/owner-commands/sound.ts -------------------------------------------------------------------------------- /src/command/owner-commands/suggest.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NateBrady23/blunderbot/HEAD/src/command/owner-commands/suggest.ts -------------------------------------------------------------------------------- /src/command/owner-commands/theme.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NateBrady23/blunderbot/HEAD/src/command/owner-commands/theme.ts -------------------------------------------------------------------------------- /src/command/owner-commands/toggle.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NateBrady23/blunderbot/HEAD/src/command/owner-commands/toggle.ts -------------------------------------------------------------------------------- /src/command/owner-commands/twitchspeak.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NateBrady23/blunderbot/HEAD/src/command/owner-commands/twitchspeak.ts -------------------------------------------------------------------------------- /src/command/owner-commands/voice.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NateBrady23/blunderbot/HEAD/src/command/owner-commands/voice.ts -------------------------------------------------------------------------------- /src/config/config.sample.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NateBrady23/blunderbot/HEAD/src/config/config.sample.ts -------------------------------------------------------------------------------- /src/config/config.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NateBrady23/blunderbot/HEAD/src/config/config.service.ts -------------------------------------------------------------------------------- /src/config/config.types.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NateBrady23/blunderbot/HEAD/src/config/config.types.d.ts -------------------------------------------------------------------------------- /src/configV2/configV2.controller.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NateBrady23/blunderbot/HEAD/src/configV2/configV2.controller.ts -------------------------------------------------------------------------------- /src/configV2/configV2.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NateBrady23/blunderbot/HEAD/src/configV2/configV2.module.ts -------------------------------------------------------------------------------- /src/configV2/configV2.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NateBrady23/blunderbot/HEAD/src/configV2/configV2.service.ts -------------------------------------------------------------------------------- /src/configV2/configV2.types.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NateBrady23/blunderbot/HEAD/src/configV2/configV2.types.d.ts -------------------------------------------------------------------------------- /src/data/gm-birthdays.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NateBrady23/blunderbot/HEAD/src/data/gm-birthdays.ts -------------------------------------------------------------------------------- /src/data/puzzle-openings.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NateBrady23/blunderbot/HEAD/src/data/puzzle-openings.ts -------------------------------------------------------------------------------- /src/data/shapes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NateBrady23/blunderbot/HEAD/src/data/shapes.ts -------------------------------------------------------------------------------- /src/discord/discord.controller.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NateBrady23/blunderbot/HEAD/src/discord/discord.controller.ts -------------------------------------------------------------------------------- /src/discord/discord.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NateBrady23/blunderbot/HEAD/src/discord/discord.module.ts -------------------------------------------------------------------------------- /src/discord/discord.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NateBrady23/blunderbot/HEAD/src/discord/discord.service.ts -------------------------------------------------------------------------------- /src/discord/discord.types.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NateBrady23/blunderbot/HEAD/src/discord/discord.types.d.ts -------------------------------------------------------------------------------- /src/enums.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NateBrady23/blunderbot/HEAD/src/enums.ts -------------------------------------------------------------------------------- /src/giphy/giphy.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NateBrady23/blunderbot/HEAD/src/giphy/giphy.module.ts -------------------------------------------------------------------------------- /src/giphy/giphy.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NateBrady23/blunderbot/HEAD/src/giphy/giphy.service.ts -------------------------------------------------------------------------------- /src/lichess/lichess.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NateBrady23/blunderbot/HEAD/src/lichess/lichess.module.ts -------------------------------------------------------------------------------- /src/lichess/lichess.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NateBrady23/blunderbot/HEAD/src/lichess/lichess.service.ts -------------------------------------------------------------------------------- /src/lichess/lichess.types.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NateBrady23/blunderbot/HEAD/src/lichess/lichess.types.d.ts -------------------------------------------------------------------------------- /src/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NateBrady23/blunderbot/HEAD/src/main.ts -------------------------------------------------------------------------------- /src/migrations/1706904428601-StoredCommandTable.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NateBrady23/blunderbot/HEAD/src/migrations/1706904428601-StoredCommandTable.ts -------------------------------------------------------------------------------- /src/migrations/1707404925602-ConfigTable.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NateBrady23/blunderbot/HEAD/src/migrations/1707404925602-ConfigTable.ts -------------------------------------------------------------------------------- /src/migrations/1707404925669-AddColumnsToConfigTable.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NateBrady23/blunderbot/HEAD/src/migrations/1707404925669-AddColumnsToConfigTable.ts -------------------------------------------------------------------------------- /src/migrations/1707404925779-AddBlueskyDropTwitterInConfigTable.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NateBrady23/blunderbot/HEAD/src/migrations/1707404925779-AddBlueskyDropTwitterInConfigTable.ts -------------------------------------------------------------------------------- /src/models/base.entity.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NateBrady23/blunderbot/HEAD/src/models/base.entity.ts -------------------------------------------------------------------------------- /src/models/config/config.entity.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NateBrady23/blunderbot/HEAD/src/models/config/config.entity.ts -------------------------------------------------------------------------------- /src/models/config/config.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NateBrady23/blunderbot/HEAD/src/models/config/config.service.ts -------------------------------------------------------------------------------- /src/models/config/config.types.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NateBrady23/blunderbot/HEAD/src/models/config/config.types.d.ts -------------------------------------------------------------------------------- /src/models/entity.decorator.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NateBrady23/blunderbot/HEAD/src/models/entity.decorator.ts -------------------------------------------------------------------------------- /src/models/entity.exception.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NateBrady23/blunderbot/HEAD/src/models/entity.exception.ts -------------------------------------------------------------------------------- /src/models/entity.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NateBrady23/blunderbot/HEAD/src/models/entity.module.ts -------------------------------------------------------------------------------- /src/models/stored-command/stored-command.entity.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NateBrady23/blunderbot/HEAD/src/models/stored-command/stored-command.entity.ts -------------------------------------------------------------------------------- /src/models/stored-command/stored-command.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NateBrady23/blunderbot/HEAD/src/models/stored-command/stored-command.service.ts -------------------------------------------------------------------------------- /src/models/stored-command/stored-command.types.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NateBrady23/blunderbot/HEAD/src/models/stored-command/stored-command.types.d.ts -------------------------------------------------------------------------------- /src/openai/openai.controller.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NateBrady23/blunderbot/HEAD/src/openai/openai.controller.ts -------------------------------------------------------------------------------- /src/openai/openai.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NateBrady23/blunderbot/HEAD/src/openai/openai.module.ts -------------------------------------------------------------------------------- /src/openai/openai.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NateBrady23/blunderbot/HEAD/src/openai/openai.service.ts -------------------------------------------------------------------------------- /src/openai/openai.types.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NateBrady23/blunderbot/HEAD/src/openai/openai.types.d.ts -------------------------------------------------------------------------------- /src/spotify/spotify.controller.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NateBrady23/blunderbot/HEAD/src/spotify/spotify.controller.ts -------------------------------------------------------------------------------- /src/spotify/spotify.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NateBrady23/blunderbot/HEAD/src/spotify/spotify.module.ts -------------------------------------------------------------------------------- /src/spotify/spotify.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NateBrady23/blunderbot/HEAD/src/spotify/spotify.service.ts -------------------------------------------------------------------------------- /src/spotify/spotify.types.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NateBrady23/blunderbot/HEAD/src/spotify/spotify.types.d.ts -------------------------------------------------------------------------------- /src/twitch/twitch.controller.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NateBrady23/blunderbot/HEAD/src/twitch/twitch.controller.ts -------------------------------------------------------------------------------- /src/twitch/twitch.eventsub.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NateBrady23/blunderbot/HEAD/src/twitch/twitch.eventsub.ts -------------------------------------------------------------------------------- /src/twitch/twitch.gateway.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NateBrady23/blunderbot/HEAD/src/twitch/twitch.gateway.ts -------------------------------------------------------------------------------- /src/twitch/twitch.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NateBrady23/blunderbot/HEAD/src/twitch/twitch.module.ts -------------------------------------------------------------------------------- /src/twitch/twitch.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NateBrady23/blunderbot/HEAD/src/twitch/twitch.service.ts -------------------------------------------------------------------------------- /src/twitch/twitch.types.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NateBrady23/blunderbot/HEAD/src/twitch/twitch.types.d.ts -------------------------------------------------------------------------------- /src/types.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NateBrady23/blunderbot/HEAD/src/types.d.ts -------------------------------------------------------------------------------- /src/utils/FunctionQueue.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NateBrady23/blunderbot/HEAD/src/utils/FunctionQueue.ts -------------------------------------------------------------------------------- /src/utils/constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NateBrady23/blunderbot/HEAD/src/utils/constants.ts -------------------------------------------------------------------------------- /src/utils/dev-certs/localhost.crt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NateBrady23/blunderbot/HEAD/src/utils/dev-certs/localhost.crt -------------------------------------------------------------------------------- /src/utils/dev-certs/localhost.key: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NateBrady23/blunderbot/HEAD/src/utils/dev-certs/localhost.key -------------------------------------------------------------------------------- /src/utils/logs.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NateBrady23/blunderbot/HEAD/src/utils/logs.ts -------------------------------------------------------------------------------- /src/utils/migration-utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NateBrady23/blunderbot/HEAD/src/utils/migration-utils.ts -------------------------------------------------------------------------------- /src/utils/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NateBrady23/blunderbot/HEAD/src/utils/utils.ts -------------------------------------------------------------------------------- /tools/blunder-report/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NateBrady23/blunderbot/HEAD/tools/blunder-report/README.md -------------------------------------------------------------------------------- /tools/blunder-report/analyze.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NateBrady23/blunderbot/HEAD/tools/blunder-report/analyze.py -------------------------------------------------------------------------------- /tools/blunder-report/report.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NateBrady23/blunderbot/HEAD/tools/blunder-report/report.py -------------------------------------------------------------------------------- /tools/blunder-report/requirements.txt: -------------------------------------------------------------------------------- 1 | berserk 2 | chess 3 | tabulate 4 | -------------------------------------------------------------------------------- /tools/image-to-grid/image-to-grid.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NateBrady23/blunderbot/HEAD/tools/image-to-grid/image-to-grid.py -------------------------------------------------------------------------------- /tools/image-to-grid/requirements.txt: -------------------------------------------------------------------------------- 1 | Pillow>=9.0.0 2 | numpy>=1.21.0 3 | -------------------------------------------------------------------------------- /tools/kings-list/generate-gallery.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NateBrady23/blunderbot/HEAD/tools/kings-list/generate-gallery.py -------------------------------------------------------------------------------- /tools/resize-image/requirements.txt: -------------------------------------------------------------------------------- 1 | Pillow>=9.0.0 2 | -------------------------------------------------------------------------------- /tools/resize-image/resize-image.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NateBrady23/blunderbot/HEAD/tools/resize-image/resize-image.py -------------------------------------------------------------------------------- /tools/speedhole/zerkin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NateBrady23/blunderbot/HEAD/tools/speedhole/zerkin.py -------------------------------------------------------------------------------- /tsconfig.build.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NateBrady23/blunderbot/HEAD/tsconfig.build.json -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NateBrady23/blunderbot/HEAD/tsconfig.json --------------------------------------------------------------------------------