├── .gitattributes ├── .github ├── ISSUE_TEMPLATE │ ├── bug_report.md │ └── feature_request.md └── workflows │ ├── deploy-production.yml │ ├── deploy-staging.yml │ └── deploy.yml ├── .gitignore ├── .npmrc ├── LICENSE ├── README.md ├── assets ├── fonts │ └── SF-Pro-Display-Bold.otf └── images │ ├── card-backs │ ├── ace-of-spades.png │ ├── golden-ticket.png │ ├── island.png │ ├── mona-lisa.png │ ├── pride.png │ ├── starry-night.png │ └── unicorn.png │ ├── icons │ ├── logo-icon-black.png │ └── logo-icon-white.png │ └── invite_link.png ├── bot.js ├── commands ├── dev │ ├── blank.js │ ├── button.js │ ├── credit.js │ ├── debug.js │ ├── downtime.js │ ├── eval.js │ ├── giveaway.js │ ├── gold.js │ ├── modal.js │ ├── phrase.js │ ├── uptime.js │ └── wipe.js ├── economy │ ├── balance.js │ ├── daily.js │ ├── donate.js │ ├── inventory.js │ └── shop.js ├── fun │ ├── draw.js │ ├── gamelist.js │ ├── info.js │ └── play.js ├── info │ ├── help.js │ ├── invite.js │ ├── ping.js │ └── status.js └── mod │ ├── fakevote.js │ ├── forcestop.js │ ├── host.js │ ├── matchup.js │ ├── setstreak.js │ ├── storedinfo.js │ └── wipe.js ├── config ├── client.js ├── options.js ├── states.js └── types.js ├── deployment ├── deleteSlashCommands.js └── slashCommands.js ├── discord_mod.js ├── docs ├── gamebot │ ├── 2.0.0 │ │ ├── Game.html │ │ ├── discord_mod.js.html │ │ ├── fonts │ │ │ ├── OpenSans-Bold-webfont.eot │ │ │ ├── OpenSans-Bold-webfont.svg │ │ │ ├── OpenSans-Bold-webfont.woff │ │ │ ├── OpenSans-BoldItalic-webfont.eot │ │ │ ├── OpenSans-BoldItalic-webfont.svg │ │ │ ├── OpenSans-BoldItalic-webfont.woff │ │ │ ├── OpenSans-Italic-webfont.eot │ │ │ ├── OpenSans-Italic-webfont.svg │ │ │ ├── OpenSans-Italic-webfont.woff │ │ │ ├── OpenSans-Light-webfont.eot │ │ │ ├── OpenSans-Light-webfont.svg │ │ │ ├── OpenSans-Light-webfont.woff │ │ │ ├── OpenSans-LightItalic-webfont.eot │ │ │ ├── OpenSans-LightItalic-webfont.svg │ │ │ ├── OpenSans-LightItalic-webfont.woff │ │ │ ├── OpenSans-Regular-webfont.eot │ │ │ ├── OpenSans-Regular-webfont.svg │ │ │ ├── OpenSans-Regular-webfont.woff │ │ │ ├── OpenSans-Semibold-webfont.eot │ │ │ ├── OpenSans-Semibold-webfont.svg │ │ │ ├── OpenSans-Semibold-webfont.ttf │ │ │ ├── OpenSans-Semibold-webfont.woff │ │ │ ├── OpenSans-SemiboldItalic-webfont.eot │ │ │ ├── OpenSans-SemiboldItalic-webfont.svg │ │ │ ├── OpenSans-SemiboldItalic-webfont.ttf │ │ │ └── OpenSans-SemiboldItalic-webfont.woff │ │ ├── games_Game.js.html │ │ ├── global.html │ │ ├── index.html │ │ ├── scripts │ │ │ ├── linenumber.js │ │ │ └── prettify │ │ │ │ ├── Apache-License-2.0.txt │ │ │ │ ├── lang-css.js │ │ │ │ └── prettify.js │ │ ├── styles │ │ │ ├── jsdoc-default.css │ │ │ ├── prettify-jsdoc.css │ │ │ └── prettify-tomorrow.css │ │ ├── tutorial-creating_a_game.html │ │ └── tutorial-getting_started.html │ ├── 2.1.1 │ │ ├── Game.html │ │ ├── GamebotError.js.html │ │ ├── Logger.js.html │ │ ├── WebUIClient.html │ │ ├── WebUIClient.js.html │ │ ├── WebUIManager.js.html │ │ ├── cryptography.js.html │ │ ├── discord_mod.js.html │ │ ├── fonts │ │ │ ├── OpenSans-Bold-webfont.eot │ │ │ ├── OpenSans-Bold-webfont.svg │ │ │ ├── OpenSans-Bold-webfont.woff │ │ │ ├── OpenSans-BoldItalic-webfont.eot │ │ │ ├── OpenSans-BoldItalic-webfont.svg │ │ │ ├── OpenSans-BoldItalic-webfont.woff │ │ │ ├── OpenSans-Italic-webfont.eot │ │ │ ├── OpenSans-Italic-webfont.svg │ │ │ ├── OpenSans-Italic-webfont.woff │ │ │ ├── OpenSans-Light-webfont.eot │ │ │ ├── OpenSans-Light-webfont.svg │ │ │ ├── OpenSans-Light-webfont.woff │ │ │ ├── OpenSans-LightItalic-webfont.eot │ │ │ ├── OpenSans-LightItalic-webfont.svg │ │ │ ├── OpenSans-LightItalic-webfont.woff │ │ │ ├── OpenSans-Regular-webfont.eot │ │ │ ├── OpenSans-Regular-webfont.svg │ │ │ ├── OpenSans-Regular-webfont.woff │ │ │ ├── OpenSans-Semibold-webfont.eot │ │ │ ├── OpenSans-Semibold-webfont.svg │ │ │ ├── OpenSans-Semibold-webfont.ttf │ │ │ ├── OpenSans-Semibold-webfont.woff │ │ │ ├── OpenSans-SemiboldItalic-webfont.eot │ │ │ ├── OpenSans-SemiboldItalic-webfont.svg │ │ │ ├── OpenSans-SemiboldItalic-webfont.ttf │ │ │ └── OpenSans-SemiboldItalic-webfont.woff │ │ ├── games_Game.js.html │ │ ├── global.html │ │ ├── index.html │ │ ├── module.exports.html │ │ ├── module.exports_module.exports.html │ │ ├── module.html#.exports │ │ ├── scripts │ │ │ ├── linenumber.js │ │ │ └── prettify │ │ │ │ ├── Apache-License-2.0.txt │ │ │ │ ├── lang-css.js │ │ │ │ └── prettify.js │ │ ├── styles │ │ │ ├── jsdoc-default.css │ │ │ ├── prettify-jsdoc.css │ │ │ └── prettify-tomorrow.css │ │ ├── tutorial-creating_a_game.html │ │ ├── tutorial-getting_started.html │ │ └── util_WebUIClient.js.html │ ├── 2.1.2 │ │ ├── Game.html │ │ ├── WebUIClient.html │ │ ├── discord_mod.js.html │ │ ├── fonts │ │ │ ├── OpenSans-Bold-webfont.eot │ │ │ ├── OpenSans-Bold-webfont.svg │ │ │ ├── OpenSans-Bold-webfont.woff │ │ │ ├── OpenSans-BoldItalic-webfont.eot │ │ │ ├── OpenSans-BoldItalic-webfont.svg │ │ │ ├── OpenSans-BoldItalic-webfont.woff │ │ │ ├── OpenSans-Italic-webfont.eot │ │ │ ├── OpenSans-Italic-webfont.svg │ │ │ ├── OpenSans-Italic-webfont.woff │ │ │ ├── OpenSans-Light-webfont.eot │ │ │ ├── OpenSans-Light-webfont.svg │ │ │ ├── OpenSans-Light-webfont.woff │ │ │ ├── OpenSans-LightItalic-webfont.eot │ │ │ ├── OpenSans-LightItalic-webfont.svg │ │ │ ├── OpenSans-LightItalic-webfont.woff │ │ │ ├── OpenSans-Regular-webfont.eot │ │ │ ├── OpenSans-Regular-webfont.svg │ │ │ ├── OpenSans-Regular-webfont.woff │ │ │ ├── OpenSans-Semibold-webfont.eot │ │ │ ├── OpenSans-Semibold-webfont.svg │ │ │ ├── OpenSans-Semibold-webfont.ttf │ │ │ ├── OpenSans-Semibold-webfont.woff │ │ │ ├── OpenSans-SemiboldItalic-webfont.eot │ │ │ ├── OpenSans-SemiboldItalic-webfont.svg │ │ │ ├── OpenSans-SemiboldItalic-webfont.ttf │ │ │ └── OpenSans-SemiboldItalic-webfont.woff │ │ ├── games_Game.js.html │ │ ├── global.html │ │ ├── index.html │ │ ├── scripts │ │ │ ├── linenumber.js │ │ │ └── prettify │ │ │ │ ├── Apache-License-2.0.txt │ │ │ │ ├── lang-css.js │ │ │ │ └── prettify.js │ │ ├── styles │ │ │ ├── jsdoc-default.css │ │ │ ├── prettify-jsdoc.css │ │ │ └── prettify-tomorrow.css │ │ ├── tutorial-creating_a_game.html │ │ ├── tutorial-getting_started.html │ │ └── util_WebUIClient.js.html │ ├── 2.2.0 │ │ ├── Game.html │ │ ├── WebUIClient.html │ │ ├── discord_mod.js.html │ │ ├── fonts │ │ │ ├── OpenSans-Bold-webfont.eot │ │ │ ├── OpenSans-Bold-webfont.svg │ │ │ ├── OpenSans-Bold-webfont.woff │ │ │ ├── OpenSans-BoldItalic-webfont.eot │ │ │ ├── OpenSans-BoldItalic-webfont.svg │ │ │ ├── OpenSans-BoldItalic-webfont.woff │ │ │ ├── OpenSans-Italic-webfont.eot │ │ │ ├── OpenSans-Italic-webfont.svg │ │ │ ├── OpenSans-Italic-webfont.woff │ │ │ ├── OpenSans-Light-webfont.eot │ │ │ ├── OpenSans-Light-webfont.svg │ │ │ ├── OpenSans-Light-webfont.woff │ │ │ ├── OpenSans-LightItalic-webfont.eot │ │ │ ├── OpenSans-LightItalic-webfont.svg │ │ │ ├── OpenSans-LightItalic-webfont.woff │ │ │ ├── OpenSans-Regular-webfont.eot │ │ │ ├── OpenSans-Regular-webfont.svg │ │ │ ├── OpenSans-Regular-webfont.woff │ │ │ ├── OpenSans-Semibold-webfont.eot │ │ │ ├── OpenSans-Semibold-webfont.svg │ │ │ ├── OpenSans-Semibold-webfont.ttf │ │ │ ├── OpenSans-Semibold-webfont.woff │ │ │ ├── OpenSans-SemiboldItalic-webfont.eot │ │ │ ├── OpenSans-SemiboldItalic-webfont.svg │ │ │ ├── OpenSans-SemiboldItalic-webfont.ttf │ │ │ └── OpenSans-SemiboldItalic-webfont.woff │ │ ├── games_Game.js.html │ │ ├── global.html │ │ ├── index.html │ │ ├── scripts │ │ │ ├── linenumber.js │ │ │ └── prettify │ │ │ │ ├── Apache-License-2.0.txt │ │ │ │ ├── lang-css.js │ │ │ │ └── prettify.js │ │ ├── styles │ │ │ ├── jsdoc-default.css │ │ │ ├── prettify-jsdoc.css │ │ │ └── prettify-tomorrow.css │ │ ├── tutorial-creating_a_game.html │ │ ├── tutorial-getting_started.html │ │ └── util_WebUIClient.js.html │ └── 3.0.0 │ │ ├── WebUIClient.html │ │ ├── discord_mod.js.html │ │ ├── fonts │ │ ├── OpenSans-Bold-webfont.eot │ │ ├── OpenSans-Bold-webfont.svg │ │ ├── OpenSans-Bold-webfont.woff │ │ ├── OpenSans-BoldItalic-webfont.eot │ │ ├── OpenSans-BoldItalic-webfont.svg │ │ ├── OpenSans-BoldItalic-webfont.woff │ │ ├── OpenSans-Italic-webfont.eot │ │ ├── OpenSans-Italic-webfont.svg │ │ ├── OpenSans-Italic-webfont.woff │ │ ├── OpenSans-Light-webfont.eot │ │ ├── OpenSans-Light-webfont.svg │ │ ├── OpenSans-Light-webfont.woff │ │ ├── OpenSans-LightItalic-webfont.eot │ │ ├── OpenSans-LightItalic-webfont.svg │ │ ├── OpenSans-LightItalic-webfont.woff │ │ ├── OpenSans-Regular-webfont.eot │ │ ├── OpenSans-Regular-webfont.svg │ │ ├── OpenSans-Regular-webfont.woff │ │ ├── OpenSans-Semibold-webfont.eot │ │ ├── OpenSans-Semibold-webfont.svg │ │ ├── OpenSans-Semibold-webfont.ttf │ │ ├── OpenSans-Semibold-webfont.woff │ │ ├── OpenSans-SemiboldItalic-webfont.eot │ │ ├── OpenSans-SemiboldItalic-webfont.svg │ │ ├── OpenSans-SemiboldItalic-webfont.ttf │ │ └── OpenSans-SemiboldItalic-webfont.woff │ │ ├── games_Game.js.html │ │ ├── games__Game_classes_Game.js.html │ │ ├── global.html │ │ ├── index.html │ │ ├── module.exports.html │ │ ├── module.exports_module.exports.html │ │ ├── scripts │ │ ├── linenumber.js │ │ └── prettify │ │ │ ├── Apache-License-2.0.txt │ │ │ ├── lang-css.js │ │ │ └── prettify.js │ │ ├── styles │ │ ├── jsdoc-default.css │ │ ├── prettify-jsdoc.css │ │ └── prettify-tomorrow.css │ │ ├── tutorial-creating_a_game.html │ │ ├── tutorial-getting_started.html │ │ ├── types_DatabaseClient.js.html │ │ ├── types_GamebotError.js.html │ │ ├── types_Logger.js.html │ │ ├── types_OAuth2Client.js.html │ │ ├── types_ShopGenerator.js.html │ │ ├── types_WebUIClient.js.html │ │ ├── types_WebUIManager.js.html │ │ ├── types_auth_OAuth2Client.js.html │ │ ├── types_command_BaseCommand.js.html │ │ ├── types_command_BotCommand.js.html │ │ ├── types_command_CommandHandler.js.html │ │ ├── types_command_GameCommand.js.html │ │ ├── types_cryptography.js.html │ │ ├── types_database_DatabaseClient.js.html │ │ ├── types_database_ShopGenerator.js.html │ │ ├── types_database_SubscriptionManager.js.html │ │ ├── types_error_GamebotError.js.html │ │ ├── types_games_GameManager.js.html │ │ ├── types_log_Logger.js.html │ │ ├── types_util_cryptography.js.html │ │ ├── types_webui_WebUIClient.js.html │ │ └── types_webui_WebUIManager.js.html └── tutorials │ ├── creating_a_game.md │ ├── getting_started.md │ └── tutorials.json ├── events ├── client │ ├── error.js │ ├── guildCreate.js │ ├── guildDelete.js │ ├── interactionCreate.js │ ├── messageCreate.js │ └── shardError.js ├── process │ ├── beforeExit.js │ ├── uncaughtException.js │ └── unhandledRejection.js └── rest │ └── rateLimited.js ├── gameData ├── CardsAgainstHumanity │ ├── 00s │ │ ├── black.md.txt │ │ ├── metadata.json │ │ └── white.md.txt │ ├── 90s │ │ ├── black.html.txt │ │ ├── black.md.txt │ │ ├── metadata.json │ │ ├── white.html.txt │ │ └── white.md.txt │ ├── Base │ │ ├── black.html.txt │ │ ├── black.md.txt │ │ ├── metadata.json │ │ ├── white.html.txt │ │ └── white.md.txt │ ├── BaseUK │ │ ├── black.md.txt │ │ ├── metadata.json │ │ └── white.md.txt │ ├── Box │ │ ├── black.html.txt │ │ ├── black.md.txt │ │ ├── metadata.json │ │ ├── white.html.txt │ │ └── white.md.txt │ ├── CAHe1 │ │ ├── black.html.txt │ │ ├── black.md.txt │ │ ├── metadata.json │ │ ├── white.html.txt │ │ └── white.md.txt │ ├── CAHe2 │ │ ├── black.html.txt │ │ ├── black.md.txt │ │ ├── metadata.json │ │ ├── white.html.txt │ │ └── white.md.txt │ ├── CAHe3 │ │ ├── black.html.txt │ │ ├── black.md.txt │ │ ├── metadata.json │ │ ├── white.html.txt │ │ └── white.md.txt │ ├── CAHe4 │ │ ├── black.html.txt │ │ ├── black.md.txt │ │ ├── metadata.json │ │ ├── white.html.txt │ │ └── white.md.txt │ ├── CAHe5 │ │ ├── black.html.txt │ │ ├── black.md.txt │ │ ├── metadata.json │ │ ├── white.html.txt │ │ └── white.md.txt │ ├── CAHe6 │ │ ├── black.html.txt │ │ ├── black.md.txt │ │ ├── metadata.json │ │ ├── white.html.txt │ │ └── white.md.txt │ ├── CAHgrognards │ │ ├── black.html.txt │ │ ├── black.md.txt │ │ ├── metadata.json │ │ ├── white.html.txt │ │ └── white.md.txt │ ├── Canadian │ │ ├── black.html.txt │ │ ├── black.md.txt │ │ ├── metadata.json │ │ ├── white.html.txt │ │ └── white.md.txt │ ├── GOT │ │ ├── black.html.txt │ │ ├── black.md.txt │ │ ├── metadata.json │ │ ├── white.html.txt │ │ └── white.md.txt │ ├── HACK │ │ ├── black.html.txt │ │ ├── black.md.txt │ │ ├── metadata.json │ │ ├── white.html.txt │ │ └── white.md.txt │ ├── HOCAH │ │ ├── black.html.txt │ │ ├── black.md.txt │ │ ├── metadata.json │ │ ├── white.html.txt │ │ └── white.md.txt │ ├── Image1 │ │ ├── black.html.txt │ │ ├── black.md.txt │ │ ├── metadata.json │ │ ├── white.html.txt │ │ └── white.md.txt │ ├── NSFH │ │ ├── black.html.txt │ │ ├── black.md.txt │ │ ├── metadata.json │ │ ├── white.html.txt │ │ └── white.md.txt │ ├── PAX2015 │ │ ├── black.html.txt │ │ ├── black.md.txt │ │ ├── metadata.json │ │ ├── white.html.txt │ │ └── white.md.txt │ ├── PAXE2013 │ │ ├── black.html.txt │ │ ├── black.md.txt │ │ ├── metadata.json │ │ ├── white.html.txt │ │ └── white.md.txt │ ├── PAXE2014 │ │ ├── black.html.txt │ │ ├── black.md.txt │ │ ├── metadata.json │ │ ├── white.html.txt │ │ └── white.md.txt │ ├── PAXEP2014 │ │ ├── black.html.txt │ │ ├── black.md.txt │ │ ├── metadata.json │ │ ├── white.html.txt │ │ └── white.md.txt │ ├── PAXP2013 │ │ ├── black.html.txt │ │ ├── black.md.txt │ │ ├── metadata.json │ │ ├── white.html.txt │ │ └── white.md.txt │ ├── PAXPP2014 │ │ ├── black.html.txt │ │ ├── black.md.txt │ │ ├── metadata.json │ │ ├── white.html.txt │ │ └── white.md.txt │ ├── ai │ │ ├── black.html.txt │ │ ├── black.md.txt │ │ ├── metadata.json │ │ ├── white.html.txt │ │ └── white.md.txt │ ├── apples │ │ ├── black.html.txt │ │ ├── black.md.txt │ │ ├── metadata.json │ │ ├── white.html.txt │ │ └── white.md.txt │ ├── ass │ │ ├── black.md.txt │ │ ├── metadata.json │ │ └── white.md.txt │ ├── c-admin │ │ ├── black.html.txt │ │ ├── black.md.txt │ │ ├── metadata.json │ │ ├── white.html.txt │ │ └── white.md.txt │ ├── c-anime │ │ ├── black.html.txt │ │ ├── black.md.txt │ │ ├── metadata.json │ │ ├── white.html.txt │ │ └── white.md.txt │ ├── c-antisocial │ │ ├── black.html.txt │ │ ├── black.md.txt │ │ ├── metadata.json │ │ ├── white.html.txt │ │ └── white.md.txt │ ├── c-derps │ │ ├── black.html.txt │ │ ├── black.md.txt │ │ ├── metadata.json │ │ ├── white.html.txt │ │ └── white.md.txt │ ├── c-doctorwho │ │ ├── black.html.txt │ │ ├── black.md.txt │ │ ├── metadata.json │ │ ├── white.html.txt │ │ └── white.md.txt │ ├── c-equinity │ │ ├── black.html.txt │ │ ├── black.md.txt │ │ ├── metadata.json │ │ ├── white.html.txt │ │ └── white.md.txt │ ├── c-eurovision │ │ ├── black.html.txt │ │ ├── black.md.txt │ │ ├── metadata.json │ │ ├── white.html.txt │ │ └── white.md.txt │ ├── c-fim │ │ ├── black.html.txt │ │ ├── black.md.txt │ │ ├── metadata.json │ │ ├── white.html.txt │ │ └── white.md.txt │ ├── c-gamegrumps │ │ ├── black.html.txt │ │ ├── black.md.txt │ │ ├── metadata.json │ │ ├── white.html.txt │ │ └── white.md.txt │ ├── c-golby │ │ ├── black.html.txt │ │ ├── black.md.txt │ │ ├── metadata.json │ │ ├── white.html.txt │ │ └── white.md.txt │ ├── c-guywglasses │ │ ├── black.html.txt │ │ ├── black.md.txt │ │ ├── metadata.json │ │ ├── white.html.txt │ │ └── white.md.txt │ ├── c-homestuck │ │ ├── black.html.txt │ │ ├── black.md.txt │ │ ├── metadata.json │ │ ├── white.html.txt │ │ └── white.md.txt │ ├── c-imgur │ │ ├── black.html.txt │ │ ├── black.md.txt │ │ ├── metadata.json │ │ ├── white.html.txt │ │ └── white.md.txt │ ├── c-khaos │ │ ├── black.html.txt │ │ ├── black.md.txt │ │ ├── metadata.json │ │ ├── white.html.txt │ │ └── white.md.txt │ ├── c-ladies │ │ ├── black.html.txt │ │ ├── black.md.txt │ │ ├── metadata.json │ │ ├── white.html.txt │ │ └── white.md.txt │ ├── c-mrman │ │ ├── black.html.txt │ │ ├── black.md.txt │ │ ├── metadata.json │ │ ├── white.html.txt │ │ └── white.md.txt │ ├── c-neindy │ │ ├── black.html.txt │ │ ├── black.md.txt │ │ ├── metadata.json │ │ ├── white.html.txt │ │ └── white.md.txt │ ├── c-nobilis │ │ ├── black.html.txt │ │ ├── black.md.txt │ │ ├── metadata.json │ │ ├── white.html.txt │ │ └── white.md.txt │ ├── c-northernlion │ │ ├── black.html.txt │ │ ├── black.md.txt │ │ ├── metadata.json │ │ ├── white.html.txt │ │ └── white.md.txt │ ├── c-prtg │ │ ├── black.md.txt │ │ ├── metadata.json │ │ └── white.md.txt │ ├── c-ragingpsyfag │ │ ├── black.html.txt │ │ ├── black.md.txt │ │ ├── metadata.json │ │ ├── white.html.txt │ │ └── white.md.txt │ ├── c-rpanons │ │ ├── black.html.txt │ │ ├── black.md.txt │ │ ├── metadata.json │ │ ├── white.html.txt │ │ └── white.md.txt │ ├── c-rt │ │ ├── black.html.txt │ │ ├── black.md.txt │ │ ├── metadata.json │ │ ├── white.html.txt │ │ └── white.md.txt │ ├── c-socialgamer │ │ ├── black.html.txt │ │ ├── black.md.txt │ │ ├── metadata.json │ │ ├── white.html.txt │ │ └── white.md.txt │ ├── c-sodomydog │ │ ├── black.html.txt │ │ ├── black.md.txt │ │ ├── metadata.json │ │ ├── white.html.txt │ │ └── white.md.txt │ ├── c-stupid │ │ ├── black.html.txt │ │ ├── black.md.txt │ │ ├── metadata.json │ │ ├── white.html.txt │ │ └── white.md.txt │ ├── c-tg │ │ ├── black.html.txt │ │ ├── black.md.txt │ │ ├── metadata.json │ │ ├── white.html.txt │ │ └── white.md.txt │ ├── c-vainglory │ │ ├── black.html.txt │ │ ├── black.md.txt │ │ ├── metadata.json │ │ ├── white.html.txt │ │ └── white.md.txt │ ├── c-vewysewious │ │ ├── black.html.txt │ │ ├── black.md.txt │ │ ├── metadata.json │ │ ├── white.html.txt │ │ └── white.md.txt │ ├── c-vidya │ │ ├── black.html.txt │ │ ├── black.md.txt │ │ ├── metadata.json │ │ ├── white.html.txt │ │ └── white.md.txt │ ├── c-xkcd │ │ ├── black.html.txt │ │ ├── black.md.txt │ │ ├── metadata.json │ │ ├── white.html.txt │ │ └── white.md.txt │ ├── clam │ │ ├── black.md.txt │ │ ├── metadata.json │ │ └── white.md.txt │ ├── climate │ │ ├── black.md.txt │ │ ├── metadata.json │ │ └── white.md.txt │ ├── crabs │ │ ├── black.html.txt │ │ ├── black.md.txt │ │ ├── metadata.json │ │ ├── white.html.txt │ │ └── white.md.txt │ ├── family-glow │ │ ├── black.md.txt │ │ ├── metadata.json │ │ └── white.md.txt │ ├── family-kids │ │ ├── black.md.txt │ │ ├── metadata.json │ │ └── white.md.txt │ ├── family │ │ ├── black.md.txt │ │ ├── metadata.json │ │ └── white.md.txt │ ├── fantasy │ │ ├── black.html.txt │ │ ├── black.md.txt │ │ ├── metadata.json │ │ ├── white.html.txt │ │ └── white.md.txt │ ├── food │ │ ├── black.html.txt │ │ ├── black.md.txt │ │ ├── metadata.json │ │ ├── white.html.txt │ │ └── white.md.txt │ ├── greenbox │ │ ├── black.html.txt │ │ ├── black.md.txt │ │ ├── metadata.json │ │ ├── white.html.txt │ │ └── white.md.txt │ ├── hillary │ │ ├── black.html.txt │ │ ├── black.md.txt │ │ ├── metadata.json │ │ ├── white.html.txt │ │ └── white.md.txt │ ├── human │ │ ├── black.html.txt │ │ ├── black.md.txt │ │ ├── metadata.json │ │ ├── white.html.txt │ │ └── white.md.txt │ ├── matrimony │ │ ├── black.html.txt │ │ ├── black.md.txt │ │ ├── metadata.json │ │ ├── white.html.txt │ │ └── white.md.txt │ ├── misprint │ │ ├── black.html.txt │ │ ├── black.md.txt │ │ ├── metadata.json │ │ ├── white.html.txt │ │ └── white.md.txt │ ├── period │ │ ├── black.html.txt │ │ ├── black.md.txt │ │ ├── metadata.json │ │ ├── white.html.txt │ │ └── white.md.txt │ ├── reject │ │ ├── black.html.txt │ │ ├── black.md.txt │ │ ├── metadata.json │ │ ├── white.html.txt │ │ └── white.md.txt │ ├── reject2 │ │ ├── black.html.txt │ │ ├── black.md.txt │ │ ├── metadata.json │ │ ├── white.html.txt │ │ └── white.md.txt │ ├── science │ │ ├── black.html.txt │ │ ├── black.md.txt │ │ ├── metadata.json │ │ ├── white.html.txt │ │ └── white.md.txt │ ├── test │ │ ├── black.md.txt │ │ ├── metadata.json │ │ └── white.md.txt │ ├── theater │ │ ├── black.md.txt │ │ ├── metadata.json │ │ └── white.md.txt │ ├── trumpbag │ │ ├── black.html.txt │ │ ├── black.md.txt │ │ ├── metadata.json │ │ ├── white.html.txt │ │ └── white.md.txt │ ├── trumpvote │ │ ├── black.html.txt │ │ ├── black.md.txt │ │ ├── metadata.json │ │ ├── white.html.txt │ │ └── white.md.txt │ ├── weed │ │ ├── black.html.txt │ │ ├── black.md.txt │ │ ├── metadata.json │ │ ├── white.html.txt │ │ └── white.md.txt │ ├── www │ │ ├── black.html.txt │ │ ├── black.md.txt │ │ ├── metadata.json │ │ ├── white.html.txt │ │ └── white.md.txt │ ├── xmas2012 │ │ ├── black.html.txt │ │ ├── black.md.txt │ │ ├── metadata.json │ │ ├── white.html.txt │ │ └── white.md.txt │ └── xmas2013 │ │ ├── black.html.txt │ │ ├── black.md.txt │ │ ├── metadata.json │ │ ├── white.html.txt │ │ └── white.md.txt └── WordGames │ ├── Collins_Scrabble_Dictionary.txt │ └── Common_Words.txt ├── games ├── Anagrams │ ├── classes │ │ └── Anagrams.js │ ├── main.js │ └── metadata.js ├── Cards Against Humanity Family Edition │ ├── classes │ │ └── CardsAgainstHumanityFamily.js │ ├── main.js │ └── metadata.js ├── Cards Against Humanity │ ├── assets │ │ └── cards.js │ ├── classes │ │ ├── BlackCard.js │ │ ├── CAHDeck.js │ │ └── CardsAgainstHumanity.js │ ├── main.js │ └── metadata.js ├── Chess │ ├── assets │ │ ├── boards │ │ │ ├── Antique Oak.jpg │ │ │ ├── Basic.jpg │ │ │ ├── Blue Canvas.jpg │ │ │ ├── Blue Marble.jpg │ │ │ ├── Candy Flavored.jpg │ │ │ ├── Emerald.jpg │ │ │ ├── Faux Wood.jpg │ │ │ ├── Gold Standard.jpg │ │ │ ├── Green Plastic.jpg │ │ │ ├── Industrial Strength.jpg │ │ │ ├── Metal.jpg │ │ │ ├── Modern Maple.jpg │ │ │ ├── Neo.jpg │ │ │ ├── Newspaper.jpg │ │ │ ├── Pink Standard.jpg │ │ │ ├── Simple Brown.jpg │ │ │ ├── Simple Green.jpg │ │ │ ├── Simple Purple.jpg │ │ │ ├── Simple Yellow.jpg │ │ │ └── Textured Lavender.jpg │ │ ├── border │ │ │ ├── black-border.jpg │ │ │ └── white-border.jpg │ │ ├── pieces-3d │ │ │ ├── Basic │ │ │ │ ├── Black-Bishop-Flipped.png │ │ │ │ ├── Black-Bishop.png │ │ │ │ ├── Black-King.png │ │ │ │ ├── Black-Knight-Flipped.png │ │ │ │ ├── Black-Knight.png │ │ │ │ ├── Black-Pawn.png │ │ │ │ ├── Black-Queen.png │ │ │ │ ├── Black-Rook.png │ │ │ │ ├── White-Bishop-Flipped.png │ │ │ │ ├── White-Bishop.png │ │ │ │ ├── White-King.png │ │ │ │ ├── White-Knight-Flipped.png │ │ │ │ ├── White-Knight.png │ │ │ │ ├── White-Pawn.png │ │ │ │ ├── White-Queen.png │ │ │ │ └── White-Rook.png │ │ │ ├── CubesAndPi │ │ │ │ ├── Black-Bishop-Flipped.png │ │ │ │ ├── Black-Bishop.png │ │ │ │ ├── Black-King.png │ │ │ │ ├── Black-Knight-Flipped.png │ │ │ │ ├── Black-Knight.png │ │ │ │ ├── Black-Pawn.png │ │ │ │ ├── Black-Queen.png │ │ │ │ ├── Black-Rook.png │ │ │ │ ├── White-Bishop-Flipped.png │ │ │ │ ├── White-Bishop.png │ │ │ │ ├── White-King.png │ │ │ │ ├── White-Knight-Flipped.png │ │ │ │ ├── White-Knight.png │ │ │ │ ├── White-Pawn.png │ │ │ │ ├── White-Queen.png │ │ │ │ └── White-Rook.png │ │ │ ├── Experimental │ │ │ │ ├── Black-Bishop-Flipped.png │ │ │ │ ├── Black-Bishop.png │ │ │ │ ├── Black-King.png │ │ │ │ ├── Black-Knight-Flipped.png │ │ │ │ ├── Black-Knight.png │ │ │ │ ├── Black-Pawn.png │ │ │ │ ├── Black-Queen.png │ │ │ │ ├── Black-Rook.png │ │ │ │ ├── White-Bishop-Flipped.png │ │ │ │ ├── White-Bishop.png │ │ │ │ ├── White-King.png │ │ │ │ ├── White-Knight-Flipped.png │ │ │ │ ├── White-Knight.png │ │ │ │ ├── White-Pawn.png │ │ │ │ ├── White-Queen.png │ │ │ │ └── White-Rook.png │ │ │ ├── Glass │ │ │ │ ├── Black-Bishop-Flipped.png │ │ │ │ ├── Black-Bishop.png │ │ │ │ ├── Black-King.png │ │ │ │ ├── Black-Knight-Flipped.png │ │ │ │ ├── Black-Knight.png │ │ │ │ ├── Black-Pawn.png │ │ │ │ ├── Black-Queen.png │ │ │ │ ├── Black-Rook.png │ │ │ │ ├── White-Bishop-Flipped.png │ │ │ │ ├── White-Bishop.png │ │ │ │ ├── White-King.png │ │ │ │ ├── White-Knight-Flipped.png │ │ │ │ ├── White-Knight.png │ │ │ │ ├── White-Pawn.png │ │ │ │ ├── White-Queen.png │ │ │ │ └── White-Rook.png │ │ │ ├── Metal │ │ │ │ ├── Black-Bishop-Flipped.png │ │ │ │ ├── Black-Bishop.png │ │ │ │ ├── Black-King.png │ │ │ │ ├── Black-Knight-Flipped.png │ │ │ │ ├── Black-Knight.png │ │ │ │ ├── Black-Pawn.png │ │ │ │ ├── Black-Queen.png │ │ │ │ ├── Black-Rook.png │ │ │ │ ├── White-Bishop-Flipped.png │ │ │ │ ├── White-Bishop.png │ │ │ │ ├── White-King.png │ │ │ │ ├── White-Knight-Flipped.png │ │ │ │ ├── White-Knight.png │ │ │ │ ├── White-Pawn.png │ │ │ │ ├── White-Queen.png │ │ │ │ └── White-Rook.png │ │ │ ├── ModernJade │ │ │ │ ├── Black-Bishop-Flipped.png │ │ │ │ ├── Black-Bishop.png │ │ │ │ ├── Black-King.png │ │ │ │ ├── Black-Knight-Flipped.png │ │ │ │ ├── Black-Knight.png │ │ │ │ ├── Black-Pawn.png │ │ │ │ ├── Black-Queen.png │ │ │ │ ├── Black-Rook.png │ │ │ │ ├── White-Bishop-Flipped.png │ │ │ │ ├── White-Bishop.png │ │ │ │ ├── White-King.png │ │ │ │ ├── White-Knight-Flipped.png │ │ │ │ ├── White-Knight.png │ │ │ │ ├── White-Pawn.png │ │ │ │ ├── White-Queen.png │ │ │ │ └── White-Rook.png │ │ │ ├── ModernWood │ │ │ │ ├── Black-Bishop-Flipped.png │ │ │ │ ├── Black-Bishop.png │ │ │ │ ├── Black-King.png │ │ │ │ ├── Black-Knight-Flipped.png │ │ │ │ ├── Black-Knight.png │ │ │ │ ├── Black-Pawn.png │ │ │ │ ├── Black-Queen.png │ │ │ │ ├── Black-Rook.png │ │ │ │ ├── White-Bishop-Flipped.png │ │ │ │ ├── White-Bishop.png │ │ │ │ ├── White-King.png │ │ │ │ ├── White-Knight-Flipped.png │ │ │ │ ├── White-Knight.png │ │ │ │ ├── White-Pawn.png │ │ │ │ ├── White-Queen.png │ │ │ │ └── White-Rook.png │ │ │ ├── RedVBlue │ │ │ │ ├── Black-Bishop-Flipped.png │ │ │ │ ├── Black-Bishop.png │ │ │ │ ├── Black-King.png │ │ │ │ ├── Black-Knight-Flipped.png │ │ │ │ ├── Black-Knight.png │ │ │ │ ├── Black-Pawn.png │ │ │ │ ├── Black-Queen.png │ │ │ │ ├── Black-Rook.png │ │ │ │ ├── White-Bishop-Flipped.png │ │ │ │ ├── White-Bishop.png │ │ │ │ ├── White-King.png │ │ │ │ ├── White-Knight-Flipped.png │ │ │ │ ├── White-Knight.png │ │ │ │ ├── White-Pawn.png │ │ │ │ ├── White-Queen.png │ │ │ │ └── White-Rook.png │ │ │ ├── Staunton │ │ │ │ ├── Black-Bishop.png │ │ │ │ ├── Black-King.png │ │ │ │ ├── Black-Knight.png │ │ │ │ ├── Black-Pawn.png │ │ │ │ ├── Black-Queen.png │ │ │ │ ├── Black-Rook.png │ │ │ │ ├── White-Bishop.png │ │ │ │ ├── White-King.png │ │ │ │ ├── White-Knight-Preview.png │ │ │ │ ├── White-Knight.png │ │ │ │ ├── White-Pawn.png │ │ │ │ ├── White-Queen.png │ │ │ │ └── White-Rook.png │ │ │ ├── Trimmed │ │ │ │ ├── Black-Bishop-Flipped.png │ │ │ │ ├── Black-Bishop.png │ │ │ │ ├── Black-King.png │ │ │ │ ├── Black-Knight-Flipped.png │ │ │ │ ├── Black-Knight.png │ │ │ │ ├── Black-Pawn.png │ │ │ │ ├── Black-Queen.png │ │ │ │ ├── Black-Rook.png │ │ │ │ ├── White-Bishop-Flipped.png │ │ │ │ ├── White-Bishop.png │ │ │ │ ├── White-King.png │ │ │ │ ├── White-Knight-Flipped.png │ │ │ │ ├── White-Knight.png │ │ │ │ ├── White-Pawn.png │ │ │ │ ├── White-Queen.png │ │ │ │ └── White-Rook.png │ │ │ └── Wood │ │ │ │ ├── Black-Bishop-Flipped.png │ │ │ │ ├── Black-Bishop.png │ │ │ │ ├── Black-King.png │ │ │ │ ├── Black-Knight-Flipped.png │ │ │ │ ├── Black-Knight.png │ │ │ │ ├── Black-Pawn.png │ │ │ │ ├── Black-Queen.png │ │ │ │ ├── Black-Rook.png │ │ │ │ ├── White-Bishop-Flipped.png │ │ │ │ ├── White-Bishop.png │ │ │ │ ├── White-King.png │ │ │ │ ├── White-Knight-Flipped.png │ │ │ │ ├── White-Knight.png │ │ │ │ ├── White-Pawn.png │ │ │ │ ├── White-Queen.png │ │ │ │ └── White-Rook.png │ │ └── pieces │ │ │ ├── alpha │ │ │ ├── black_bishop.png │ │ │ ├── black_king.png │ │ │ ├── black_knight.png │ │ │ ├── black_pawn.png │ │ │ ├── black_queen.png │ │ │ ├── black_rook.png │ │ │ ├── white_bishop.png │ │ │ ├── white_king.png │ │ │ ├── white_knight.png │ │ │ ├── white_pawn.png │ │ │ ├── white_queen.png │ │ │ └── white_rook.png │ │ │ ├── basic │ │ │ ├── black_bishop.png │ │ │ ├── black_king.png │ │ │ ├── black_knight.png │ │ │ ├── black_pawn.png │ │ │ ├── black_queen.png │ │ │ ├── black_rook.png │ │ │ ├── white_bishop.png │ │ │ ├── white_king.png │ │ │ ├── white_knight.png │ │ │ ├── white_pawn.png │ │ │ ├── white_queen.png │ │ │ └── white_rook.png │ │ │ ├── california │ │ │ ├── black_bishop.png │ │ │ ├── black_king.png │ │ │ ├── black_knight.png │ │ │ ├── black_pawn.png │ │ │ ├── black_queen.png │ │ │ ├── black_rook.png │ │ │ ├── white_bishop.png │ │ │ ├── white_king.png │ │ │ ├── white_knight.png │ │ │ ├── white_pawn.png │ │ │ ├── white_queen.png │ │ │ └── white_rook.png │ │ │ ├── cardinal │ │ │ ├── black_bishop.png │ │ │ ├── black_king.png │ │ │ ├── black_knight.png │ │ │ ├── black_pawn.png │ │ │ ├── black_queen.png │ │ │ ├── black_rook.png │ │ │ ├── white_bishop.png │ │ │ ├── white_king.png │ │ │ ├── white_knight.png │ │ │ ├── white_pawn.png │ │ │ ├── white_queen.png │ │ │ └── white_rook.png │ │ │ ├── check.png │ │ │ ├── chess7 │ │ │ ├── black_bishop.png │ │ │ ├── black_king.png │ │ │ ├── black_knight.png │ │ │ ├── black_pawn.png │ │ │ ├── black_queen.png │ │ │ ├── black_rook.png │ │ │ ├── white_bishop.png │ │ │ ├── white_king.png │ │ │ ├── white_knight.png │ │ │ ├── white_pawn.png │ │ │ ├── white_queen.png │ │ │ └── white_rook.png │ │ │ ├── chessnut │ │ │ ├── black_bishop.png │ │ │ ├── black_king.png │ │ │ ├── black_knight.png │ │ │ ├── black_pawn.png │ │ │ ├── black_queen.png │ │ │ ├── black_rook.png │ │ │ ├── white_bishop.png │ │ │ ├── white_king.png │ │ │ ├── white_knight.png │ │ │ ├── white_pawn.png │ │ │ ├── white_queen.png │ │ │ └── white_rook.png │ │ │ ├── companion │ │ │ ├── black_bishop.png │ │ │ ├── black_king.png │ │ │ ├── black_knight.png │ │ │ ├── black_pawn.png │ │ │ ├── black_queen.png │ │ │ ├── black_rook.png │ │ │ ├── white_bishop.png │ │ │ ├── white_king.png │ │ │ ├── white_knight.png │ │ │ ├── white_pawn.png │ │ │ ├── white_queen.png │ │ │ └── white_rook.png │ │ │ ├── dubrovny │ │ │ ├── black_bishop.png │ │ │ ├── black_king.png │ │ │ ├── black_knight.png │ │ │ ├── black_pawn.png │ │ │ ├── black_queen.png │ │ │ ├── black_rook.png │ │ │ ├── white_bishop.png │ │ │ ├── white_king.png │ │ │ ├── white_knight.png │ │ │ ├── white_pawn.png │ │ │ ├── white_queen.png │ │ │ └── white_rook.png │ │ │ ├── fantasy │ │ │ ├── black_bishop.png │ │ │ ├── black_king.png │ │ │ ├── black_knight.png │ │ │ ├── black_pawn.png │ │ │ ├── black_queen.png │ │ │ ├── black_rook.png │ │ │ ├── white_bishop.png │ │ │ ├── white_king.png │ │ │ ├── white_knight.png │ │ │ ├── white_pawn.png │ │ │ ├── white_queen.png │ │ │ └── white_rook.png │ │ │ ├── fresca │ │ │ ├── black_bishop.png │ │ │ ├── black_king.png │ │ │ ├── black_knight.png │ │ │ ├── black_pawn.png │ │ │ ├── black_queen.png │ │ │ ├── black_rook.png │ │ │ ├── white_bishop.png │ │ │ ├── white_king.png │ │ │ ├── white_knight.png │ │ │ ├── white_pawn.png │ │ │ ├── white_queen.png │ │ │ └── white_rook.png │ │ │ ├── gioco │ │ │ ├── black_bishop.png │ │ │ ├── black_king.png │ │ │ ├── black_knight.png │ │ │ ├── black_pawn.png │ │ │ ├── black_queen.png │ │ │ ├── black_rook.png │ │ │ ├── white_bishop.png │ │ │ ├── white_king.png │ │ │ ├── white_knight.png │ │ │ ├── white_pawn.png │ │ │ ├── white_queen.png │ │ │ └── white_rook.png │ │ │ ├── governor │ │ │ ├── black_bishop.png │ │ │ ├── black_king.png │ │ │ ├── black_knight.png │ │ │ ├── black_pawn.png │ │ │ ├── black_queen.png │ │ │ ├── black_rook.png │ │ │ ├── white_bishop.png │ │ │ ├── white_king.png │ │ │ ├── white_knight.png │ │ │ ├── white_pawn.png │ │ │ ├── white_queen.png │ │ │ └── white_rook.png │ │ │ ├── icpieces │ │ │ ├── black_bishop.png │ │ │ ├── black_king.png │ │ │ ├── black_knight.png │ │ │ ├── black_pawn.png │ │ │ ├── black_queen.png │ │ │ ├── black_rook.png │ │ │ ├── white_bishop.png │ │ │ ├── white_king.png │ │ │ ├── white_knight.png │ │ │ ├── white_pawn.png │ │ │ ├── white_queen.png │ │ │ └── white_rook.png │ │ │ ├── kosal │ │ │ ├── black_bishop.png │ │ │ ├── black_king.png │ │ │ ├── black_knight.png │ │ │ ├── black_pawn.png │ │ │ ├── black_queen.png │ │ │ ├── black_rook.png │ │ │ ├── white_bishop.png │ │ │ ├── white_king.png │ │ │ ├── white_knight.png │ │ │ ├── white_pawn.png │ │ │ ├── white_queen.png │ │ │ └── white_rook.png │ │ │ ├── leipzig │ │ │ ├── black_bishop.png │ │ │ ├── black_king.png │ │ │ ├── black_knight.png │ │ │ ├── black_pawn.png │ │ │ ├── black_queen.png │ │ │ ├── black_rook.png │ │ │ ├── white_bishop.png │ │ │ ├── white_king.png │ │ │ ├── white_knight.png │ │ │ ├── white_pawn.png │ │ │ ├── white_queen.png │ │ │ └── white_rook.png │ │ │ ├── letter │ │ │ ├── black_bishop.png │ │ │ ├── black_king.png │ │ │ ├── black_knight.png │ │ │ ├── black_pawn.png │ │ │ ├── black_queen.png │ │ │ ├── black_rook.png │ │ │ ├── white_bishop.png │ │ │ ├── white_king.png │ │ │ ├── white_knight.png │ │ │ ├── white_pawn.png │ │ │ ├── white_queen.png │ │ │ └── white_rook.png │ │ │ ├── maestro │ │ │ ├── black_bishop.png │ │ │ ├── black_king.png │ │ │ ├── black_knight.png │ │ │ ├── black_pawn.png │ │ │ ├── black_queen.png │ │ │ ├── black_rook.png │ │ │ ├── white_bishop.png │ │ │ ├── white_king.png │ │ │ ├── white_knight.png │ │ │ ├── white_pawn.png │ │ │ ├── white_queen.png │ │ │ └── white_rook.png │ │ │ ├── merida │ │ │ ├── black_bishop.png │ │ │ ├── black_king.png │ │ │ ├── black_knight.png │ │ │ ├── black_pawn.png │ │ │ ├── black_queen.png │ │ │ ├── black_rook.png │ │ │ ├── white_bishop.png │ │ │ ├── white_king.png │ │ │ ├── white_knight.png │ │ │ ├── white_pawn.png │ │ │ ├── white_queen.png │ │ │ └── white_rook.png │ │ │ ├── pirouetti │ │ │ ├── black_bishop.png │ │ │ ├── black_king.png │ │ │ ├── black_knight.png │ │ │ ├── black_pawn.png │ │ │ ├── black_queen.png │ │ │ ├── black_rook.png │ │ │ ├── white_bishop.png │ │ │ ├── white_king.png │ │ │ ├── white_knight.png │ │ │ ├── white_pawn.png │ │ │ ├── white_queen.png │ │ │ └── white_rook.png │ │ │ ├── pixel │ │ │ ├── black_bishop.png │ │ │ ├── black_king.png │ │ │ ├── black_knight.png │ │ │ ├── black_pawn.png │ │ │ ├── black_queen.png │ │ │ ├── black_rook.png │ │ │ ├── white_bishop.png │ │ │ ├── white_king.png │ │ │ ├── white_knight.png │ │ │ ├── white_pawn.png │ │ │ ├── white_queen.png │ │ │ └── white_rook.png │ │ │ ├── riohacha │ │ │ ├── black_bishop.png │ │ │ ├── black_king.png │ │ │ ├── black_knight.png │ │ │ ├── black_pawn.png │ │ │ ├── black_queen.png │ │ │ ├── black_rook.png │ │ │ ├── white_bishop.png │ │ │ ├── white_king.png │ │ │ ├── white_knight.png │ │ │ ├── white_pawn.png │ │ │ ├── white_queen.png │ │ │ └── white_rook.png │ │ │ ├── shapes │ │ │ ├── black_bishop.png │ │ │ ├── black_king.png │ │ │ ├── black_knight.png │ │ │ ├── black_pawn.png │ │ │ ├── black_queen.png │ │ │ ├── black_rook.png │ │ │ ├── white_bishop.png │ │ │ ├── white_king.png │ │ │ ├── white_knight.png │ │ │ ├── white_pawn.png │ │ │ ├── white_queen.png │ │ │ └── white_rook.png │ │ │ ├── spatial │ │ │ ├── black_bishop.png │ │ │ ├── black_king.png │ │ │ ├── black_knight.png │ │ │ ├── black_pawn.png │ │ │ ├── black_queen.png │ │ │ ├── black_rook.png │ │ │ ├── white_bishop.png │ │ │ ├── white_king.png │ │ │ ├── white_knight.png │ │ │ ├── white_pawn.png │ │ │ ├── white_queen.png │ │ │ └── white_rook.png │ │ │ ├── staunty │ │ │ ├── black_bishop.png │ │ │ ├── black_king.png │ │ │ ├── black_knight.png │ │ │ ├── black_pawn.png │ │ │ ├── black_queen.png │ │ │ ├── black_rook.png │ │ │ ├── white_bishop.png │ │ │ ├── white_king.png │ │ │ ├── white_knight.png │ │ │ ├── white_pawn.png │ │ │ ├── white_queen.png │ │ │ └── white_rook.png │ │ │ └── tatiana │ │ │ ├── black_bishop.png │ │ │ ├── black_king.png │ │ │ ├── black_knight.png │ │ │ ├── black_pawn.png │ │ │ ├── black_queen.png │ │ │ ├── black_rook.png │ │ │ ├── white_bishop.png │ │ │ ├── white_king.png │ │ │ ├── white_knight.png │ │ │ ├── white_pawn.png │ │ │ ├── white_queen.png │ │ │ └── white_rook.png │ ├── classes │ │ ├── Chess.js │ │ └── LichessAPI.js │ ├── commands │ │ ├── movehelp.js │ │ └── resign.js │ ├── main.js │ └── metadata.js ├── Connect Four │ ├── classes │ │ └── ConnectFour.js │ ├── main.js │ └── metadata.js ├── Othello │ ├── assets │ │ ├── boards │ │ │ ├── Antique Oak.jpg │ │ │ ├── Basic.jpg │ │ │ ├── Blue Canvas.jpg │ │ │ ├── Blue Marble.jpg │ │ │ ├── Candy Flavored.jpg │ │ │ ├── Emerald.jpg │ │ │ ├── Faux Wood.jpg │ │ │ ├── Gold Standard.jpg │ │ │ ├── Green Plastic.jpg │ │ │ ├── Industrial Strength.jpg │ │ │ ├── Metal.jpg │ │ │ ├── Modern Maple.jpg │ │ │ ├── Neo.jpg │ │ │ ├── Newspaper.jpg │ │ │ ├── Pink Standard.jpg │ │ │ ├── Simple Brown.jpg │ │ │ ├── Simple Green.jpg │ │ │ ├── Simple Purple.jpg │ │ │ ├── Simple Yellow.jpg │ │ │ └── Textured Lavender.jpg │ │ └── border │ │ │ ├── border.jpg │ │ │ └── white-border.jpg │ ├── classes │ │ └── Othello.js │ ├── commands │ │ ├── movehelp.js │ │ └── resign.js │ ├── main.js │ └── metadata.js ├── Poker │ ├── classes │ │ ├── CardDeck.js │ │ └── Poker.js │ ├── main.js │ └── metadata.js ├── Survey Says │ ├── assets │ │ ├── data.enc │ │ ├── less.png │ │ └── more.png │ ├── classes │ │ └── SurveySays.js │ ├── main.js │ └── metadata.js ├── Wisecracks │ ├── assets │ │ ├── promptsNSFW.txt │ │ └── promptsSFW.txt │ ├── classes │ │ ├── PromptList.js │ │ └── Wisecracks.js │ ├── main.js │ └── metadata.js └── _Game │ ├── classes │ └── Game.js │ ├── commands │ ├── add.js │ ├── end.js │ ├── evalg.js │ ├── game.js │ ├── kick.js │ ├── leader.js │ └── leave.js │ └── main.js ├── package.json ├── scripts ├── clientSetup.js ├── logger.js └── processSetup.js ├── server.js ├── shrinkwrap.yaml ├── test ├── cases │ ├── api.test.js │ ├── commands.test.js │ └── games.test.js ├── classes │ ├── DummyAccount.js │ ├── TestBot.js │ └── test.js └── index.test.js └── types ├── auth ├── OAuth2Client.js └── Requester.js ├── command ├── BaseCommand.js ├── BotCommand.js ├── CommandHandler.js └── GameCommand.js ├── database ├── DatabaseClient.js ├── RewardsManager.js ├── ShopGenerator.js └── SubscriptionManager.js ├── error └── GamebotError.js ├── games ├── GameManager.js ├── Tournament.js └── TournamentManager.js ├── log └── Metrics.js ├── util ├── cryptography.js └── games.js └── webui ├── WebUIClient.js └── WebUIManager.js /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroclutch/gamebot/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroclutch/gamebot/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroclutch/gamebot/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/workflows/deploy-production.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroclutch/gamebot/HEAD/.github/workflows/deploy-production.yml -------------------------------------------------------------------------------- /.github/workflows/deploy-staging.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroclutch/gamebot/HEAD/.github/workflows/deploy-staging.yml -------------------------------------------------------------------------------- /.github/workflows/deploy.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroclutch/gamebot/HEAD/.github/workflows/deploy.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroclutch/gamebot/HEAD/.gitignore -------------------------------------------------------------------------------- /.npmrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroclutch/gamebot/HEAD/.npmrc -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroclutch/gamebot/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroclutch/gamebot/HEAD/README.md -------------------------------------------------------------------------------- /assets/fonts/SF-Pro-Display-Bold.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroclutch/gamebot/HEAD/assets/fonts/SF-Pro-Display-Bold.otf -------------------------------------------------------------------------------- /assets/images/card-backs/ace-of-spades.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroclutch/gamebot/HEAD/assets/images/card-backs/ace-of-spades.png -------------------------------------------------------------------------------- /assets/images/card-backs/golden-ticket.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroclutch/gamebot/HEAD/assets/images/card-backs/golden-ticket.png -------------------------------------------------------------------------------- /assets/images/card-backs/island.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroclutch/gamebot/HEAD/assets/images/card-backs/island.png -------------------------------------------------------------------------------- /assets/images/card-backs/mona-lisa.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroclutch/gamebot/HEAD/assets/images/card-backs/mona-lisa.png -------------------------------------------------------------------------------- /assets/images/card-backs/pride.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroclutch/gamebot/HEAD/assets/images/card-backs/pride.png -------------------------------------------------------------------------------- /assets/images/card-backs/starry-night.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroclutch/gamebot/HEAD/assets/images/card-backs/starry-night.png -------------------------------------------------------------------------------- /assets/images/card-backs/unicorn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroclutch/gamebot/HEAD/assets/images/card-backs/unicorn.png -------------------------------------------------------------------------------- /assets/images/icons/logo-icon-black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroclutch/gamebot/HEAD/assets/images/icons/logo-icon-black.png -------------------------------------------------------------------------------- /assets/images/icons/logo-icon-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroclutch/gamebot/HEAD/assets/images/icons/logo-icon-white.png -------------------------------------------------------------------------------- /assets/images/invite_link.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroclutch/gamebot/HEAD/assets/images/invite_link.png -------------------------------------------------------------------------------- /bot.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroclutch/gamebot/HEAD/bot.js -------------------------------------------------------------------------------- /commands/dev/blank.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroclutch/gamebot/HEAD/commands/dev/blank.js -------------------------------------------------------------------------------- /commands/dev/button.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroclutch/gamebot/HEAD/commands/dev/button.js -------------------------------------------------------------------------------- /commands/dev/credit.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroclutch/gamebot/HEAD/commands/dev/credit.js -------------------------------------------------------------------------------- /commands/dev/debug.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroclutch/gamebot/HEAD/commands/dev/debug.js -------------------------------------------------------------------------------- /commands/dev/downtime.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroclutch/gamebot/HEAD/commands/dev/downtime.js -------------------------------------------------------------------------------- /commands/dev/eval.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroclutch/gamebot/HEAD/commands/dev/eval.js -------------------------------------------------------------------------------- /commands/dev/giveaway.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroclutch/gamebot/HEAD/commands/dev/giveaway.js -------------------------------------------------------------------------------- /commands/dev/gold.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroclutch/gamebot/HEAD/commands/dev/gold.js -------------------------------------------------------------------------------- /commands/dev/modal.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroclutch/gamebot/HEAD/commands/dev/modal.js -------------------------------------------------------------------------------- /commands/dev/phrase.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroclutch/gamebot/HEAD/commands/dev/phrase.js -------------------------------------------------------------------------------- /commands/dev/uptime.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroclutch/gamebot/HEAD/commands/dev/uptime.js -------------------------------------------------------------------------------- /commands/dev/wipe.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroclutch/gamebot/HEAD/commands/dev/wipe.js -------------------------------------------------------------------------------- /commands/economy/balance.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroclutch/gamebot/HEAD/commands/economy/balance.js -------------------------------------------------------------------------------- /commands/economy/daily.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroclutch/gamebot/HEAD/commands/economy/daily.js -------------------------------------------------------------------------------- /commands/economy/donate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroclutch/gamebot/HEAD/commands/economy/donate.js -------------------------------------------------------------------------------- /commands/economy/inventory.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroclutch/gamebot/HEAD/commands/economy/inventory.js -------------------------------------------------------------------------------- /commands/economy/shop.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroclutch/gamebot/HEAD/commands/economy/shop.js -------------------------------------------------------------------------------- /commands/fun/draw.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroclutch/gamebot/HEAD/commands/fun/draw.js -------------------------------------------------------------------------------- /commands/fun/gamelist.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroclutch/gamebot/HEAD/commands/fun/gamelist.js -------------------------------------------------------------------------------- /commands/fun/info.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroclutch/gamebot/HEAD/commands/fun/info.js -------------------------------------------------------------------------------- /commands/fun/play.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroclutch/gamebot/HEAD/commands/fun/play.js -------------------------------------------------------------------------------- /commands/info/help.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroclutch/gamebot/HEAD/commands/info/help.js -------------------------------------------------------------------------------- /commands/info/invite.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroclutch/gamebot/HEAD/commands/info/invite.js -------------------------------------------------------------------------------- /commands/info/ping.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroclutch/gamebot/HEAD/commands/info/ping.js -------------------------------------------------------------------------------- /commands/info/status.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroclutch/gamebot/HEAD/commands/info/status.js -------------------------------------------------------------------------------- /commands/mod/fakevote.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroclutch/gamebot/HEAD/commands/mod/fakevote.js -------------------------------------------------------------------------------- /commands/mod/forcestop.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroclutch/gamebot/HEAD/commands/mod/forcestop.js -------------------------------------------------------------------------------- /commands/mod/host.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroclutch/gamebot/HEAD/commands/mod/host.js -------------------------------------------------------------------------------- /commands/mod/matchup.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroclutch/gamebot/HEAD/commands/mod/matchup.js -------------------------------------------------------------------------------- /commands/mod/setstreak.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroclutch/gamebot/HEAD/commands/mod/setstreak.js -------------------------------------------------------------------------------- /commands/mod/storedinfo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroclutch/gamebot/HEAD/commands/mod/storedinfo.js -------------------------------------------------------------------------------- /commands/mod/wipe.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroclutch/gamebot/HEAD/commands/mod/wipe.js -------------------------------------------------------------------------------- /config/client.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroclutch/gamebot/HEAD/config/client.js -------------------------------------------------------------------------------- /config/options.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroclutch/gamebot/HEAD/config/options.js -------------------------------------------------------------------------------- /config/states.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroclutch/gamebot/HEAD/config/states.js -------------------------------------------------------------------------------- /config/types.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroclutch/gamebot/HEAD/config/types.js -------------------------------------------------------------------------------- /deployment/deleteSlashCommands.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroclutch/gamebot/HEAD/deployment/deleteSlashCommands.js -------------------------------------------------------------------------------- /deployment/slashCommands.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroclutch/gamebot/HEAD/deployment/slashCommands.js -------------------------------------------------------------------------------- /discord_mod.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroclutch/gamebot/HEAD/discord_mod.js -------------------------------------------------------------------------------- /docs/gamebot/2.0.0/Game.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroclutch/gamebot/HEAD/docs/gamebot/2.0.0/Game.html -------------------------------------------------------------------------------- /docs/gamebot/2.0.0/discord_mod.js.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroclutch/gamebot/HEAD/docs/gamebot/2.0.0/discord_mod.js.html -------------------------------------------------------------------------------- /docs/gamebot/2.0.0/fonts/OpenSans-Bold-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroclutch/gamebot/HEAD/docs/gamebot/2.0.0/fonts/OpenSans-Bold-webfont.eot -------------------------------------------------------------------------------- /docs/gamebot/2.0.0/fonts/OpenSans-Bold-webfont.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroclutch/gamebot/HEAD/docs/gamebot/2.0.0/fonts/OpenSans-Bold-webfont.svg -------------------------------------------------------------------------------- /docs/gamebot/2.0.0/fonts/OpenSans-Bold-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroclutch/gamebot/HEAD/docs/gamebot/2.0.0/fonts/OpenSans-Bold-webfont.woff -------------------------------------------------------------------------------- /docs/gamebot/2.0.0/fonts/OpenSans-Italic-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroclutch/gamebot/HEAD/docs/gamebot/2.0.0/fonts/OpenSans-Italic-webfont.eot -------------------------------------------------------------------------------- /docs/gamebot/2.0.0/fonts/OpenSans-Italic-webfont.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroclutch/gamebot/HEAD/docs/gamebot/2.0.0/fonts/OpenSans-Italic-webfont.svg -------------------------------------------------------------------------------- /docs/gamebot/2.0.0/fonts/OpenSans-Light-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroclutch/gamebot/HEAD/docs/gamebot/2.0.0/fonts/OpenSans-Light-webfont.eot -------------------------------------------------------------------------------- /docs/gamebot/2.0.0/fonts/OpenSans-Light-webfont.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroclutch/gamebot/HEAD/docs/gamebot/2.0.0/fonts/OpenSans-Light-webfont.svg -------------------------------------------------------------------------------- /docs/gamebot/2.0.0/fonts/OpenSans-Light-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroclutch/gamebot/HEAD/docs/gamebot/2.0.0/fonts/OpenSans-Light-webfont.woff -------------------------------------------------------------------------------- /docs/gamebot/2.0.0/games_Game.js.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroclutch/gamebot/HEAD/docs/gamebot/2.0.0/games_Game.js.html -------------------------------------------------------------------------------- /docs/gamebot/2.0.0/global.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroclutch/gamebot/HEAD/docs/gamebot/2.0.0/global.html -------------------------------------------------------------------------------- /docs/gamebot/2.0.0/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroclutch/gamebot/HEAD/docs/gamebot/2.0.0/index.html -------------------------------------------------------------------------------- /docs/gamebot/2.0.0/scripts/linenumber.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroclutch/gamebot/HEAD/docs/gamebot/2.0.0/scripts/linenumber.js -------------------------------------------------------------------------------- /docs/gamebot/2.0.0/scripts/prettify/lang-css.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroclutch/gamebot/HEAD/docs/gamebot/2.0.0/scripts/prettify/lang-css.js -------------------------------------------------------------------------------- /docs/gamebot/2.0.0/scripts/prettify/prettify.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroclutch/gamebot/HEAD/docs/gamebot/2.0.0/scripts/prettify/prettify.js -------------------------------------------------------------------------------- /docs/gamebot/2.0.0/styles/jsdoc-default.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroclutch/gamebot/HEAD/docs/gamebot/2.0.0/styles/jsdoc-default.css -------------------------------------------------------------------------------- /docs/gamebot/2.0.0/styles/prettify-jsdoc.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroclutch/gamebot/HEAD/docs/gamebot/2.0.0/styles/prettify-jsdoc.css -------------------------------------------------------------------------------- /docs/gamebot/2.0.0/styles/prettify-tomorrow.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroclutch/gamebot/HEAD/docs/gamebot/2.0.0/styles/prettify-tomorrow.css -------------------------------------------------------------------------------- /docs/gamebot/2.0.0/tutorial-creating_a_game.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroclutch/gamebot/HEAD/docs/gamebot/2.0.0/tutorial-creating_a_game.html -------------------------------------------------------------------------------- /docs/gamebot/2.0.0/tutorial-getting_started.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroclutch/gamebot/HEAD/docs/gamebot/2.0.0/tutorial-getting_started.html -------------------------------------------------------------------------------- /docs/gamebot/2.1.1/Game.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroclutch/gamebot/HEAD/docs/gamebot/2.1.1/Game.html -------------------------------------------------------------------------------- /docs/gamebot/2.1.1/GamebotError.js.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroclutch/gamebot/HEAD/docs/gamebot/2.1.1/GamebotError.js.html -------------------------------------------------------------------------------- /docs/gamebot/2.1.1/Logger.js.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroclutch/gamebot/HEAD/docs/gamebot/2.1.1/Logger.js.html -------------------------------------------------------------------------------- /docs/gamebot/2.1.1/WebUIClient.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroclutch/gamebot/HEAD/docs/gamebot/2.1.1/WebUIClient.html -------------------------------------------------------------------------------- /docs/gamebot/2.1.1/WebUIClient.js.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroclutch/gamebot/HEAD/docs/gamebot/2.1.1/WebUIClient.js.html -------------------------------------------------------------------------------- /docs/gamebot/2.1.1/WebUIManager.js.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroclutch/gamebot/HEAD/docs/gamebot/2.1.1/WebUIManager.js.html -------------------------------------------------------------------------------- /docs/gamebot/2.1.1/cryptography.js.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroclutch/gamebot/HEAD/docs/gamebot/2.1.1/cryptography.js.html -------------------------------------------------------------------------------- /docs/gamebot/2.1.1/discord_mod.js.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroclutch/gamebot/HEAD/docs/gamebot/2.1.1/discord_mod.js.html -------------------------------------------------------------------------------- /docs/gamebot/2.1.1/fonts/OpenSans-Bold-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroclutch/gamebot/HEAD/docs/gamebot/2.1.1/fonts/OpenSans-Bold-webfont.eot -------------------------------------------------------------------------------- /docs/gamebot/2.1.1/fonts/OpenSans-Bold-webfont.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroclutch/gamebot/HEAD/docs/gamebot/2.1.1/fonts/OpenSans-Bold-webfont.svg -------------------------------------------------------------------------------- /docs/gamebot/2.1.1/fonts/OpenSans-Bold-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroclutch/gamebot/HEAD/docs/gamebot/2.1.1/fonts/OpenSans-Bold-webfont.woff -------------------------------------------------------------------------------- /docs/gamebot/2.1.1/fonts/OpenSans-Italic-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroclutch/gamebot/HEAD/docs/gamebot/2.1.1/fonts/OpenSans-Italic-webfont.eot -------------------------------------------------------------------------------- /docs/gamebot/2.1.1/fonts/OpenSans-Italic-webfont.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroclutch/gamebot/HEAD/docs/gamebot/2.1.1/fonts/OpenSans-Italic-webfont.svg -------------------------------------------------------------------------------- /docs/gamebot/2.1.1/fonts/OpenSans-Light-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroclutch/gamebot/HEAD/docs/gamebot/2.1.1/fonts/OpenSans-Light-webfont.eot -------------------------------------------------------------------------------- /docs/gamebot/2.1.1/fonts/OpenSans-Light-webfont.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroclutch/gamebot/HEAD/docs/gamebot/2.1.1/fonts/OpenSans-Light-webfont.svg -------------------------------------------------------------------------------- /docs/gamebot/2.1.1/fonts/OpenSans-Light-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroclutch/gamebot/HEAD/docs/gamebot/2.1.1/fonts/OpenSans-Light-webfont.woff -------------------------------------------------------------------------------- /docs/gamebot/2.1.1/games_Game.js.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroclutch/gamebot/HEAD/docs/gamebot/2.1.1/games_Game.js.html -------------------------------------------------------------------------------- /docs/gamebot/2.1.1/global.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroclutch/gamebot/HEAD/docs/gamebot/2.1.1/global.html -------------------------------------------------------------------------------- /docs/gamebot/2.1.1/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroclutch/gamebot/HEAD/docs/gamebot/2.1.1/index.html -------------------------------------------------------------------------------- /docs/gamebot/2.1.1/module.exports.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroclutch/gamebot/HEAD/docs/gamebot/2.1.1/module.exports.html -------------------------------------------------------------------------------- /docs/gamebot/2.1.1/module.html#.exports: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroclutch/gamebot/HEAD/docs/gamebot/2.1.1/module.html#.exports -------------------------------------------------------------------------------- /docs/gamebot/2.1.1/scripts/linenumber.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroclutch/gamebot/HEAD/docs/gamebot/2.1.1/scripts/linenumber.js -------------------------------------------------------------------------------- /docs/gamebot/2.1.1/scripts/prettify/lang-css.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroclutch/gamebot/HEAD/docs/gamebot/2.1.1/scripts/prettify/lang-css.js -------------------------------------------------------------------------------- /docs/gamebot/2.1.1/scripts/prettify/prettify.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroclutch/gamebot/HEAD/docs/gamebot/2.1.1/scripts/prettify/prettify.js -------------------------------------------------------------------------------- /docs/gamebot/2.1.1/styles/jsdoc-default.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroclutch/gamebot/HEAD/docs/gamebot/2.1.1/styles/jsdoc-default.css -------------------------------------------------------------------------------- /docs/gamebot/2.1.1/styles/prettify-jsdoc.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroclutch/gamebot/HEAD/docs/gamebot/2.1.1/styles/prettify-jsdoc.css -------------------------------------------------------------------------------- /docs/gamebot/2.1.1/styles/prettify-tomorrow.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroclutch/gamebot/HEAD/docs/gamebot/2.1.1/styles/prettify-tomorrow.css -------------------------------------------------------------------------------- /docs/gamebot/2.1.1/tutorial-creating_a_game.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroclutch/gamebot/HEAD/docs/gamebot/2.1.1/tutorial-creating_a_game.html -------------------------------------------------------------------------------- /docs/gamebot/2.1.1/tutorial-getting_started.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroclutch/gamebot/HEAD/docs/gamebot/2.1.1/tutorial-getting_started.html -------------------------------------------------------------------------------- /docs/gamebot/2.1.1/util_WebUIClient.js.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroclutch/gamebot/HEAD/docs/gamebot/2.1.1/util_WebUIClient.js.html -------------------------------------------------------------------------------- /docs/gamebot/2.1.2/Game.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroclutch/gamebot/HEAD/docs/gamebot/2.1.2/Game.html -------------------------------------------------------------------------------- /docs/gamebot/2.1.2/WebUIClient.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroclutch/gamebot/HEAD/docs/gamebot/2.1.2/WebUIClient.html -------------------------------------------------------------------------------- /docs/gamebot/2.1.2/discord_mod.js.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroclutch/gamebot/HEAD/docs/gamebot/2.1.2/discord_mod.js.html -------------------------------------------------------------------------------- /docs/gamebot/2.1.2/fonts/OpenSans-Bold-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroclutch/gamebot/HEAD/docs/gamebot/2.1.2/fonts/OpenSans-Bold-webfont.eot -------------------------------------------------------------------------------- /docs/gamebot/2.1.2/fonts/OpenSans-Bold-webfont.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroclutch/gamebot/HEAD/docs/gamebot/2.1.2/fonts/OpenSans-Bold-webfont.svg -------------------------------------------------------------------------------- /docs/gamebot/2.1.2/fonts/OpenSans-Bold-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroclutch/gamebot/HEAD/docs/gamebot/2.1.2/fonts/OpenSans-Bold-webfont.woff -------------------------------------------------------------------------------- /docs/gamebot/2.1.2/fonts/OpenSans-Italic-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroclutch/gamebot/HEAD/docs/gamebot/2.1.2/fonts/OpenSans-Italic-webfont.eot -------------------------------------------------------------------------------- /docs/gamebot/2.1.2/fonts/OpenSans-Italic-webfont.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroclutch/gamebot/HEAD/docs/gamebot/2.1.2/fonts/OpenSans-Italic-webfont.svg -------------------------------------------------------------------------------- /docs/gamebot/2.1.2/fonts/OpenSans-Light-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroclutch/gamebot/HEAD/docs/gamebot/2.1.2/fonts/OpenSans-Light-webfont.eot -------------------------------------------------------------------------------- /docs/gamebot/2.1.2/fonts/OpenSans-Light-webfont.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroclutch/gamebot/HEAD/docs/gamebot/2.1.2/fonts/OpenSans-Light-webfont.svg -------------------------------------------------------------------------------- /docs/gamebot/2.1.2/fonts/OpenSans-Light-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroclutch/gamebot/HEAD/docs/gamebot/2.1.2/fonts/OpenSans-Light-webfont.woff -------------------------------------------------------------------------------- /docs/gamebot/2.1.2/games_Game.js.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroclutch/gamebot/HEAD/docs/gamebot/2.1.2/games_Game.js.html -------------------------------------------------------------------------------- /docs/gamebot/2.1.2/global.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroclutch/gamebot/HEAD/docs/gamebot/2.1.2/global.html -------------------------------------------------------------------------------- /docs/gamebot/2.1.2/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroclutch/gamebot/HEAD/docs/gamebot/2.1.2/index.html -------------------------------------------------------------------------------- /docs/gamebot/2.1.2/scripts/linenumber.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroclutch/gamebot/HEAD/docs/gamebot/2.1.2/scripts/linenumber.js -------------------------------------------------------------------------------- /docs/gamebot/2.1.2/scripts/prettify/lang-css.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroclutch/gamebot/HEAD/docs/gamebot/2.1.2/scripts/prettify/lang-css.js -------------------------------------------------------------------------------- /docs/gamebot/2.1.2/scripts/prettify/prettify.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroclutch/gamebot/HEAD/docs/gamebot/2.1.2/scripts/prettify/prettify.js -------------------------------------------------------------------------------- /docs/gamebot/2.1.2/styles/jsdoc-default.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroclutch/gamebot/HEAD/docs/gamebot/2.1.2/styles/jsdoc-default.css -------------------------------------------------------------------------------- /docs/gamebot/2.1.2/styles/prettify-jsdoc.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroclutch/gamebot/HEAD/docs/gamebot/2.1.2/styles/prettify-jsdoc.css -------------------------------------------------------------------------------- /docs/gamebot/2.1.2/styles/prettify-tomorrow.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroclutch/gamebot/HEAD/docs/gamebot/2.1.2/styles/prettify-tomorrow.css -------------------------------------------------------------------------------- /docs/gamebot/2.1.2/tutorial-creating_a_game.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroclutch/gamebot/HEAD/docs/gamebot/2.1.2/tutorial-creating_a_game.html -------------------------------------------------------------------------------- /docs/gamebot/2.1.2/tutorial-getting_started.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroclutch/gamebot/HEAD/docs/gamebot/2.1.2/tutorial-getting_started.html -------------------------------------------------------------------------------- /docs/gamebot/2.1.2/util_WebUIClient.js.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroclutch/gamebot/HEAD/docs/gamebot/2.1.2/util_WebUIClient.js.html -------------------------------------------------------------------------------- /docs/gamebot/2.2.0/Game.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroclutch/gamebot/HEAD/docs/gamebot/2.2.0/Game.html -------------------------------------------------------------------------------- /docs/gamebot/2.2.0/WebUIClient.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroclutch/gamebot/HEAD/docs/gamebot/2.2.0/WebUIClient.html -------------------------------------------------------------------------------- /docs/gamebot/2.2.0/discord_mod.js.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroclutch/gamebot/HEAD/docs/gamebot/2.2.0/discord_mod.js.html -------------------------------------------------------------------------------- /docs/gamebot/2.2.0/fonts/OpenSans-Bold-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroclutch/gamebot/HEAD/docs/gamebot/2.2.0/fonts/OpenSans-Bold-webfont.eot -------------------------------------------------------------------------------- /docs/gamebot/2.2.0/fonts/OpenSans-Bold-webfont.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroclutch/gamebot/HEAD/docs/gamebot/2.2.0/fonts/OpenSans-Bold-webfont.svg -------------------------------------------------------------------------------- /docs/gamebot/2.2.0/fonts/OpenSans-Bold-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroclutch/gamebot/HEAD/docs/gamebot/2.2.0/fonts/OpenSans-Bold-webfont.woff -------------------------------------------------------------------------------- /docs/gamebot/2.2.0/fonts/OpenSans-Italic-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroclutch/gamebot/HEAD/docs/gamebot/2.2.0/fonts/OpenSans-Italic-webfont.eot -------------------------------------------------------------------------------- /docs/gamebot/2.2.0/fonts/OpenSans-Italic-webfont.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroclutch/gamebot/HEAD/docs/gamebot/2.2.0/fonts/OpenSans-Italic-webfont.svg -------------------------------------------------------------------------------- /docs/gamebot/2.2.0/fonts/OpenSans-Light-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroclutch/gamebot/HEAD/docs/gamebot/2.2.0/fonts/OpenSans-Light-webfont.eot -------------------------------------------------------------------------------- /docs/gamebot/2.2.0/fonts/OpenSans-Light-webfont.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroclutch/gamebot/HEAD/docs/gamebot/2.2.0/fonts/OpenSans-Light-webfont.svg -------------------------------------------------------------------------------- /docs/gamebot/2.2.0/fonts/OpenSans-Light-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroclutch/gamebot/HEAD/docs/gamebot/2.2.0/fonts/OpenSans-Light-webfont.woff -------------------------------------------------------------------------------- /docs/gamebot/2.2.0/games_Game.js.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroclutch/gamebot/HEAD/docs/gamebot/2.2.0/games_Game.js.html -------------------------------------------------------------------------------- /docs/gamebot/2.2.0/global.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroclutch/gamebot/HEAD/docs/gamebot/2.2.0/global.html -------------------------------------------------------------------------------- /docs/gamebot/2.2.0/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroclutch/gamebot/HEAD/docs/gamebot/2.2.0/index.html -------------------------------------------------------------------------------- /docs/gamebot/2.2.0/scripts/linenumber.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroclutch/gamebot/HEAD/docs/gamebot/2.2.0/scripts/linenumber.js -------------------------------------------------------------------------------- /docs/gamebot/2.2.0/scripts/prettify/lang-css.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroclutch/gamebot/HEAD/docs/gamebot/2.2.0/scripts/prettify/lang-css.js -------------------------------------------------------------------------------- /docs/gamebot/2.2.0/scripts/prettify/prettify.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroclutch/gamebot/HEAD/docs/gamebot/2.2.0/scripts/prettify/prettify.js -------------------------------------------------------------------------------- /docs/gamebot/2.2.0/styles/jsdoc-default.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroclutch/gamebot/HEAD/docs/gamebot/2.2.0/styles/jsdoc-default.css -------------------------------------------------------------------------------- /docs/gamebot/2.2.0/styles/prettify-jsdoc.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroclutch/gamebot/HEAD/docs/gamebot/2.2.0/styles/prettify-jsdoc.css -------------------------------------------------------------------------------- /docs/gamebot/2.2.0/styles/prettify-tomorrow.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroclutch/gamebot/HEAD/docs/gamebot/2.2.0/styles/prettify-tomorrow.css -------------------------------------------------------------------------------- /docs/gamebot/2.2.0/tutorial-creating_a_game.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroclutch/gamebot/HEAD/docs/gamebot/2.2.0/tutorial-creating_a_game.html -------------------------------------------------------------------------------- /docs/gamebot/2.2.0/tutorial-getting_started.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroclutch/gamebot/HEAD/docs/gamebot/2.2.0/tutorial-getting_started.html -------------------------------------------------------------------------------- /docs/gamebot/2.2.0/util_WebUIClient.js.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroclutch/gamebot/HEAD/docs/gamebot/2.2.0/util_WebUIClient.js.html -------------------------------------------------------------------------------- /docs/gamebot/3.0.0/WebUIClient.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroclutch/gamebot/HEAD/docs/gamebot/3.0.0/WebUIClient.html -------------------------------------------------------------------------------- /docs/gamebot/3.0.0/discord_mod.js.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroclutch/gamebot/HEAD/docs/gamebot/3.0.0/discord_mod.js.html -------------------------------------------------------------------------------- /docs/gamebot/3.0.0/fonts/OpenSans-Bold-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroclutch/gamebot/HEAD/docs/gamebot/3.0.0/fonts/OpenSans-Bold-webfont.eot -------------------------------------------------------------------------------- /docs/gamebot/3.0.0/fonts/OpenSans-Bold-webfont.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroclutch/gamebot/HEAD/docs/gamebot/3.0.0/fonts/OpenSans-Bold-webfont.svg -------------------------------------------------------------------------------- /docs/gamebot/3.0.0/fonts/OpenSans-Bold-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroclutch/gamebot/HEAD/docs/gamebot/3.0.0/fonts/OpenSans-Bold-webfont.woff -------------------------------------------------------------------------------- /docs/gamebot/3.0.0/fonts/OpenSans-Italic-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroclutch/gamebot/HEAD/docs/gamebot/3.0.0/fonts/OpenSans-Italic-webfont.eot -------------------------------------------------------------------------------- /docs/gamebot/3.0.0/fonts/OpenSans-Italic-webfont.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroclutch/gamebot/HEAD/docs/gamebot/3.0.0/fonts/OpenSans-Italic-webfont.svg -------------------------------------------------------------------------------- /docs/gamebot/3.0.0/fonts/OpenSans-Light-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroclutch/gamebot/HEAD/docs/gamebot/3.0.0/fonts/OpenSans-Light-webfont.eot -------------------------------------------------------------------------------- /docs/gamebot/3.0.0/fonts/OpenSans-Light-webfont.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroclutch/gamebot/HEAD/docs/gamebot/3.0.0/fonts/OpenSans-Light-webfont.svg -------------------------------------------------------------------------------- /docs/gamebot/3.0.0/fonts/OpenSans-Light-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroclutch/gamebot/HEAD/docs/gamebot/3.0.0/fonts/OpenSans-Light-webfont.woff -------------------------------------------------------------------------------- /docs/gamebot/3.0.0/games_Game.js.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroclutch/gamebot/HEAD/docs/gamebot/3.0.0/games_Game.js.html -------------------------------------------------------------------------------- /docs/gamebot/3.0.0/games__Game_classes_Game.js.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroclutch/gamebot/HEAD/docs/gamebot/3.0.0/games__Game_classes_Game.js.html -------------------------------------------------------------------------------- /docs/gamebot/3.0.0/global.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroclutch/gamebot/HEAD/docs/gamebot/3.0.0/global.html -------------------------------------------------------------------------------- /docs/gamebot/3.0.0/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroclutch/gamebot/HEAD/docs/gamebot/3.0.0/index.html -------------------------------------------------------------------------------- /docs/gamebot/3.0.0/module.exports.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroclutch/gamebot/HEAD/docs/gamebot/3.0.0/module.exports.html -------------------------------------------------------------------------------- /docs/gamebot/3.0.0/scripts/linenumber.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroclutch/gamebot/HEAD/docs/gamebot/3.0.0/scripts/linenumber.js -------------------------------------------------------------------------------- /docs/gamebot/3.0.0/scripts/prettify/lang-css.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroclutch/gamebot/HEAD/docs/gamebot/3.0.0/scripts/prettify/lang-css.js -------------------------------------------------------------------------------- /docs/gamebot/3.0.0/scripts/prettify/prettify.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroclutch/gamebot/HEAD/docs/gamebot/3.0.0/scripts/prettify/prettify.js -------------------------------------------------------------------------------- /docs/gamebot/3.0.0/styles/jsdoc-default.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroclutch/gamebot/HEAD/docs/gamebot/3.0.0/styles/jsdoc-default.css -------------------------------------------------------------------------------- /docs/gamebot/3.0.0/styles/prettify-jsdoc.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroclutch/gamebot/HEAD/docs/gamebot/3.0.0/styles/prettify-jsdoc.css -------------------------------------------------------------------------------- /docs/gamebot/3.0.0/styles/prettify-tomorrow.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroclutch/gamebot/HEAD/docs/gamebot/3.0.0/styles/prettify-tomorrow.css -------------------------------------------------------------------------------- /docs/gamebot/3.0.0/tutorial-creating_a_game.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroclutch/gamebot/HEAD/docs/gamebot/3.0.0/tutorial-creating_a_game.html -------------------------------------------------------------------------------- /docs/gamebot/3.0.0/tutorial-getting_started.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroclutch/gamebot/HEAD/docs/gamebot/3.0.0/tutorial-getting_started.html -------------------------------------------------------------------------------- /docs/gamebot/3.0.0/types_DatabaseClient.js.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroclutch/gamebot/HEAD/docs/gamebot/3.0.0/types_DatabaseClient.js.html -------------------------------------------------------------------------------- /docs/gamebot/3.0.0/types_GamebotError.js.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroclutch/gamebot/HEAD/docs/gamebot/3.0.0/types_GamebotError.js.html -------------------------------------------------------------------------------- /docs/gamebot/3.0.0/types_Logger.js.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroclutch/gamebot/HEAD/docs/gamebot/3.0.0/types_Logger.js.html -------------------------------------------------------------------------------- /docs/gamebot/3.0.0/types_OAuth2Client.js.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroclutch/gamebot/HEAD/docs/gamebot/3.0.0/types_OAuth2Client.js.html -------------------------------------------------------------------------------- /docs/gamebot/3.0.0/types_ShopGenerator.js.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroclutch/gamebot/HEAD/docs/gamebot/3.0.0/types_ShopGenerator.js.html -------------------------------------------------------------------------------- /docs/gamebot/3.0.0/types_WebUIClient.js.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroclutch/gamebot/HEAD/docs/gamebot/3.0.0/types_WebUIClient.js.html -------------------------------------------------------------------------------- /docs/gamebot/3.0.0/types_WebUIManager.js.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroclutch/gamebot/HEAD/docs/gamebot/3.0.0/types_WebUIManager.js.html -------------------------------------------------------------------------------- /docs/gamebot/3.0.0/types_auth_OAuth2Client.js.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroclutch/gamebot/HEAD/docs/gamebot/3.0.0/types_auth_OAuth2Client.js.html -------------------------------------------------------------------------------- /docs/gamebot/3.0.0/types_command_BaseCommand.js.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroclutch/gamebot/HEAD/docs/gamebot/3.0.0/types_command_BaseCommand.js.html -------------------------------------------------------------------------------- /docs/gamebot/3.0.0/types_command_BotCommand.js.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroclutch/gamebot/HEAD/docs/gamebot/3.0.0/types_command_BotCommand.js.html -------------------------------------------------------------------------------- /docs/gamebot/3.0.0/types_command_GameCommand.js.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroclutch/gamebot/HEAD/docs/gamebot/3.0.0/types_command_GameCommand.js.html -------------------------------------------------------------------------------- /docs/gamebot/3.0.0/types_cryptography.js.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroclutch/gamebot/HEAD/docs/gamebot/3.0.0/types_cryptography.js.html -------------------------------------------------------------------------------- /docs/gamebot/3.0.0/types_error_GamebotError.js.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroclutch/gamebot/HEAD/docs/gamebot/3.0.0/types_error_GamebotError.js.html -------------------------------------------------------------------------------- /docs/gamebot/3.0.0/types_games_GameManager.js.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroclutch/gamebot/HEAD/docs/gamebot/3.0.0/types_games_GameManager.js.html -------------------------------------------------------------------------------- /docs/gamebot/3.0.0/types_log_Logger.js.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroclutch/gamebot/HEAD/docs/gamebot/3.0.0/types_log_Logger.js.html -------------------------------------------------------------------------------- /docs/gamebot/3.0.0/types_util_cryptography.js.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroclutch/gamebot/HEAD/docs/gamebot/3.0.0/types_util_cryptography.js.html -------------------------------------------------------------------------------- /docs/gamebot/3.0.0/types_webui_WebUIClient.js.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroclutch/gamebot/HEAD/docs/gamebot/3.0.0/types_webui_WebUIClient.js.html -------------------------------------------------------------------------------- /docs/gamebot/3.0.0/types_webui_WebUIManager.js.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroclutch/gamebot/HEAD/docs/gamebot/3.0.0/types_webui_WebUIManager.js.html -------------------------------------------------------------------------------- /docs/tutorials/creating_a_game.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroclutch/gamebot/HEAD/docs/tutorials/creating_a_game.md -------------------------------------------------------------------------------- /docs/tutorials/getting_started.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroclutch/gamebot/HEAD/docs/tutorials/getting_started.md -------------------------------------------------------------------------------- /docs/tutorials/tutorials.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroclutch/gamebot/HEAD/docs/tutorials/tutorials.json -------------------------------------------------------------------------------- /events/client/error.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroclutch/gamebot/HEAD/events/client/error.js -------------------------------------------------------------------------------- /events/client/guildCreate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroclutch/gamebot/HEAD/events/client/guildCreate.js -------------------------------------------------------------------------------- /events/client/guildDelete.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroclutch/gamebot/HEAD/events/client/guildDelete.js -------------------------------------------------------------------------------- /events/client/interactionCreate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroclutch/gamebot/HEAD/events/client/interactionCreate.js -------------------------------------------------------------------------------- /events/client/messageCreate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroclutch/gamebot/HEAD/events/client/messageCreate.js -------------------------------------------------------------------------------- /events/client/shardError.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroclutch/gamebot/HEAD/events/client/shardError.js -------------------------------------------------------------------------------- /events/process/beforeExit.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroclutch/gamebot/HEAD/events/process/beforeExit.js -------------------------------------------------------------------------------- /events/process/uncaughtException.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroclutch/gamebot/HEAD/events/process/uncaughtException.js -------------------------------------------------------------------------------- /events/process/unhandledRejection.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroclutch/gamebot/HEAD/events/process/unhandledRejection.js -------------------------------------------------------------------------------- /events/rest/rateLimited.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroclutch/gamebot/HEAD/events/rest/rateLimited.js -------------------------------------------------------------------------------- /gameData/CardsAgainstHumanity/00s/black.md.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroclutch/gamebot/HEAD/gameData/CardsAgainstHumanity/00s/black.md.txt -------------------------------------------------------------------------------- /gameData/CardsAgainstHumanity/00s/metadata.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroclutch/gamebot/HEAD/gameData/CardsAgainstHumanity/00s/metadata.json -------------------------------------------------------------------------------- /gameData/CardsAgainstHumanity/00s/white.md.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroclutch/gamebot/HEAD/gameData/CardsAgainstHumanity/00s/white.md.txt -------------------------------------------------------------------------------- /gameData/CardsAgainstHumanity/90s/black.html.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroclutch/gamebot/HEAD/gameData/CardsAgainstHumanity/90s/black.html.txt -------------------------------------------------------------------------------- /gameData/CardsAgainstHumanity/90s/black.md.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroclutch/gamebot/HEAD/gameData/CardsAgainstHumanity/90s/black.md.txt -------------------------------------------------------------------------------- /gameData/CardsAgainstHumanity/90s/metadata.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroclutch/gamebot/HEAD/gameData/CardsAgainstHumanity/90s/metadata.json -------------------------------------------------------------------------------- /gameData/CardsAgainstHumanity/90s/white.html.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroclutch/gamebot/HEAD/gameData/CardsAgainstHumanity/90s/white.html.txt -------------------------------------------------------------------------------- /gameData/CardsAgainstHumanity/90s/white.md.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroclutch/gamebot/HEAD/gameData/CardsAgainstHumanity/90s/white.md.txt -------------------------------------------------------------------------------- /gameData/CardsAgainstHumanity/Base/black.html.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroclutch/gamebot/HEAD/gameData/CardsAgainstHumanity/Base/black.html.txt -------------------------------------------------------------------------------- /gameData/CardsAgainstHumanity/Base/black.md.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroclutch/gamebot/HEAD/gameData/CardsAgainstHumanity/Base/black.md.txt -------------------------------------------------------------------------------- /gameData/CardsAgainstHumanity/Base/metadata.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroclutch/gamebot/HEAD/gameData/CardsAgainstHumanity/Base/metadata.json -------------------------------------------------------------------------------- /gameData/CardsAgainstHumanity/Base/white.html.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroclutch/gamebot/HEAD/gameData/CardsAgainstHumanity/Base/white.html.txt -------------------------------------------------------------------------------- /gameData/CardsAgainstHumanity/Base/white.md.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroclutch/gamebot/HEAD/gameData/CardsAgainstHumanity/Base/white.md.txt -------------------------------------------------------------------------------- /gameData/CardsAgainstHumanity/BaseUK/black.md.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroclutch/gamebot/HEAD/gameData/CardsAgainstHumanity/BaseUK/black.md.txt -------------------------------------------------------------------------------- /gameData/CardsAgainstHumanity/BaseUK/metadata.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroclutch/gamebot/HEAD/gameData/CardsAgainstHumanity/BaseUK/metadata.json -------------------------------------------------------------------------------- /gameData/CardsAgainstHumanity/BaseUK/white.md.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroclutch/gamebot/HEAD/gameData/CardsAgainstHumanity/BaseUK/white.md.txt -------------------------------------------------------------------------------- /gameData/CardsAgainstHumanity/Box/black.html.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /gameData/CardsAgainstHumanity/Box/black.md.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /gameData/CardsAgainstHumanity/Box/metadata.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroclutch/gamebot/HEAD/gameData/CardsAgainstHumanity/Box/metadata.json -------------------------------------------------------------------------------- /gameData/CardsAgainstHumanity/Box/white.html.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroclutch/gamebot/HEAD/gameData/CardsAgainstHumanity/Box/white.html.txt -------------------------------------------------------------------------------- /gameData/CardsAgainstHumanity/Box/white.md.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroclutch/gamebot/HEAD/gameData/CardsAgainstHumanity/Box/white.md.txt -------------------------------------------------------------------------------- /gameData/CardsAgainstHumanity/CAHe1/black.html.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroclutch/gamebot/HEAD/gameData/CardsAgainstHumanity/CAHe1/black.html.txt -------------------------------------------------------------------------------- /gameData/CardsAgainstHumanity/CAHe1/black.md.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroclutch/gamebot/HEAD/gameData/CardsAgainstHumanity/CAHe1/black.md.txt -------------------------------------------------------------------------------- /gameData/CardsAgainstHumanity/CAHe1/metadata.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroclutch/gamebot/HEAD/gameData/CardsAgainstHumanity/CAHe1/metadata.json -------------------------------------------------------------------------------- /gameData/CardsAgainstHumanity/CAHe1/white.html.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroclutch/gamebot/HEAD/gameData/CardsAgainstHumanity/CAHe1/white.html.txt -------------------------------------------------------------------------------- /gameData/CardsAgainstHumanity/CAHe1/white.md.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroclutch/gamebot/HEAD/gameData/CardsAgainstHumanity/CAHe1/white.md.txt -------------------------------------------------------------------------------- /gameData/CardsAgainstHumanity/CAHe2/black.html.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroclutch/gamebot/HEAD/gameData/CardsAgainstHumanity/CAHe2/black.html.txt -------------------------------------------------------------------------------- /gameData/CardsAgainstHumanity/CAHe2/black.md.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroclutch/gamebot/HEAD/gameData/CardsAgainstHumanity/CAHe2/black.md.txt -------------------------------------------------------------------------------- /gameData/CardsAgainstHumanity/CAHe2/metadata.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroclutch/gamebot/HEAD/gameData/CardsAgainstHumanity/CAHe2/metadata.json -------------------------------------------------------------------------------- /gameData/CardsAgainstHumanity/CAHe2/white.html.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroclutch/gamebot/HEAD/gameData/CardsAgainstHumanity/CAHe2/white.html.txt -------------------------------------------------------------------------------- /gameData/CardsAgainstHumanity/CAHe2/white.md.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroclutch/gamebot/HEAD/gameData/CardsAgainstHumanity/CAHe2/white.md.txt -------------------------------------------------------------------------------- /gameData/CardsAgainstHumanity/CAHe3/black.html.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroclutch/gamebot/HEAD/gameData/CardsAgainstHumanity/CAHe3/black.html.txt -------------------------------------------------------------------------------- /gameData/CardsAgainstHumanity/CAHe3/black.md.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroclutch/gamebot/HEAD/gameData/CardsAgainstHumanity/CAHe3/black.md.txt -------------------------------------------------------------------------------- /gameData/CardsAgainstHumanity/CAHe3/metadata.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroclutch/gamebot/HEAD/gameData/CardsAgainstHumanity/CAHe3/metadata.json -------------------------------------------------------------------------------- /gameData/CardsAgainstHumanity/CAHe3/white.html.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroclutch/gamebot/HEAD/gameData/CardsAgainstHumanity/CAHe3/white.html.txt -------------------------------------------------------------------------------- /gameData/CardsAgainstHumanity/CAHe3/white.md.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroclutch/gamebot/HEAD/gameData/CardsAgainstHumanity/CAHe3/white.md.txt -------------------------------------------------------------------------------- /gameData/CardsAgainstHumanity/CAHe4/black.html.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroclutch/gamebot/HEAD/gameData/CardsAgainstHumanity/CAHe4/black.html.txt -------------------------------------------------------------------------------- /gameData/CardsAgainstHumanity/CAHe4/black.md.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroclutch/gamebot/HEAD/gameData/CardsAgainstHumanity/CAHe4/black.md.txt -------------------------------------------------------------------------------- /gameData/CardsAgainstHumanity/CAHe4/metadata.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroclutch/gamebot/HEAD/gameData/CardsAgainstHumanity/CAHe4/metadata.json -------------------------------------------------------------------------------- /gameData/CardsAgainstHumanity/CAHe4/white.html.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroclutch/gamebot/HEAD/gameData/CardsAgainstHumanity/CAHe4/white.html.txt -------------------------------------------------------------------------------- /gameData/CardsAgainstHumanity/CAHe4/white.md.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroclutch/gamebot/HEAD/gameData/CardsAgainstHumanity/CAHe4/white.md.txt -------------------------------------------------------------------------------- /gameData/CardsAgainstHumanity/CAHe5/black.html.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroclutch/gamebot/HEAD/gameData/CardsAgainstHumanity/CAHe5/black.html.txt -------------------------------------------------------------------------------- /gameData/CardsAgainstHumanity/CAHe5/black.md.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroclutch/gamebot/HEAD/gameData/CardsAgainstHumanity/CAHe5/black.md.txt -------------------------------------------------------------------------------- /gameData/CardsAgainstHumanity/CAHe5/metadata.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroclutch/gamebot/HEAD/gameData/CardsAgainstHumanity/CAHe5/metadata.json -------------------------------------------------------------------------------- /gameData/CardsAgainstHumanity/CAHe5/white.html.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroclutch/gamebot/HEAD/gameData/CardsAgainstHumanity/CAHe5/white.html.txt -------------------------------------------------------------------------------- /gameData/CardsAgainstHumanity/CAHe5/white.md.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroclutch/gamebot/HEAD/gameData/CardsAgainstHumanity/CAHe5/white.md.txt -------------------------------------------------------------------------------- /gameData/CardsAgainstHumanity/CAHe6/black.html.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroclutch/gamebot/HEAD/gameData/CardsAgainstHumanity/CAHe6/black.html.txt -------------------------------------------------------------------------------- /gameData/CardsAgainstHumanity/CAHe6/black.md.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroclutch/gamebot/HEAD/gameData/CardsAgainstHumanity/CAHe6/black.md.txt -------------------------------------------------------------------------------- /gameData/CardsAgainstHumanity/CAHe6/metadata.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroclutch/gamebot/HEAD/gameData/CardsAgainstHumanity/CAHe6/metadata.json -------------------------------------------------------------------------------- /gameData/CardsAgainstHumanity/CAHe6/white.html.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroclutch/gamebot/HEAD/gameData/CardsAgainstHumanity/CAHe6/white.html.txt -------------------------------------------------------------------------------- /gameData/CardsAgainstHumanity/CAHe6/white.md.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroclutch/gamebot/HEAD/gameData/CardsAgainstHumanity/CAHe6/white.md.txt -------------------------------------------------------------------------------- /gameData/CardsAgainstHumanity/Canadian/black.md.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroclutch/gamebot/HEAD/gameData/CardsAgainstHumanity/Canadian/black.md.txt -------------------------------------------------------------------------------- /gameData/CardsAgainstHumanity/Canadian/metadata.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroclutch/gamebot/HEAD/gameData/CardsAgainstHumanity/Canadian/metadata.json -------------------------------------------------------------------------------- /gameData/CardsAgainstHumanity/Canadian/white.md.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroclutch/gamebot/HEAD/gameData/CardsAgainstHumanity/Canadian/white.md.txt -------------------------------------------------------------------------------- /gameData/CardsAgainstHumanity/GOT/black.html.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroclutch/gamebot/HEAD/gameData/CardsAgainstHumanity/GOT/black.html.txt -------------------------------------------------------------------------------- /gameData/CardsAgainstHumanity/GOT/black.md.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroclutch/gamebot/HEAD/gameData/CardsAgainstHumanity/GOT/black.md.txt -------------------------------------------------------------------------------- /gameData/CardsAgainstHumanity/GOT/metadata.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroclutch/gamebot/HEAD/gameData/CardsAgainstHumanity/GOT/metadata.json -------------------------------------------------------------------------------- /gameData/CardsAgainstHumanity/GOT/white.html.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroclutch/gamebot/HEAD/gameData/CardsAgainstHumanity/GOT/white.html.txt -------------------------------------------------------------------------------- /gameData/CardsAgainstHumanity/GOT/white.md.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroclutch/gamebot/HEAD/gameData/CardsAgainstHumanity/GOT/white.md.txt -------------------------------------------------------------------------------- /gameData/CardsAgainstHumanity/HACK/black.html.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroclutch/gamebot/HEAD/gameData/CardsAgainstHumanity/HACK/black.html.txt -------------------------------------------------------------------------------- /gameData/CardsAgainstHumanity/HACK/black.md.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroclutch/gamebot/HEAD/gameData/CardsAgainstHumanity/HACK/black.md.txt -------------------------------------------------------------------------------- /gameData/CardsAgainstHumanity/HACK/metadata.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroclutch/gamebot/HEAD/gameData/CardsAgainstHumanity/HACK/metadata.json -------------------------------------------------------------------------------- /gameData/CardsAgainstHumanity/HACK/white.html.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroclutch/gamebot/HEAD/gameData/CardsAgainstHumanity/HACK/white.html.txt -------------------------------------------------------------------------------- /gameData/CardsAgainstHumanity/HACK/white.md.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroclutch/gamebot/HEAD/gameData/CardsAgainstHumanity/HACK/white.md.txt -------------------------------------------------------------------------------- /gameData/CardsAgainstHumanity/HOCAH/black.html.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroclutch/gamebot/HEAD/gameData/CardsAgainstHumanity/HOCAH/black.html.txt -------------------------------------------------------------------------------- /gameData/CardsAgainstHumanity/HOCAH/black.md.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroclutch/gamebot/HEAD/gameData/CardsAgainstHumanity/HOCAH/black.md.txt -------------------------------------------------------------------------------- /gameData/CardsAgainstHumanity/HOCAH/metadata.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroclutch/gamebot/HEAD/gameData/CardsAgainstHumanity/HOCAH/metadata.json -------------------------------------------------------------------------------- /gameData/CardsAgainstHumanity/HOCAH/white.html.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroclutch/gamebot/HEAD/gameData/CardsAgainstHumanity/HOCAH/white.html.txt -------------------------------------------------------------------------------- /gameData/CardsAgainstHumanity/HOCAH/white.md.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroclutch/gamebot/HEAD/gameData/CardsAgainstHumanity/HOCAH/white.md.txt -------------------------------------------------------------------------------- /gameData/CardsAgainstHumanity/Image1/black.html.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroclutch/gamebot/HEAD/gameData/CardsAgainstHumanity/Image1/black.html.txt -------------------------------------------------------------------------------- /gameData/CardsAgainstHumanity/Image1/black.md.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroclutch/gamebot/HEAD/gameData/CardsAgainstHumanity/Image1/black.md.txt -------------------------------------------------------------------------------- /gameData/CardsAgainstHumanity/Image1/metadata.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroclutch/gamebot/HEAD/gameData/CardsAgainstHumanity/Image1/metadata.json -------------------------------------------------------------------------------- /gameData/CardsAgainstHumanity/Image1/white.html.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroclutch/gamebot/HEAD/gameData/CardsAgainstHumanity/Image1/white.html.txt -------------------------------------------------------------------------------- /gameData/CardsAgainstHumanity/Image1/white.md.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroclutch/gamebot/HEAD/gameData/CardsAgainstHumanity/Image1/white.md.txt -------------------------------------------------------------------------------- /gameData/CardsAgainstHumanity/NSFH/black.html.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroclutch/gamebot/HEAD/gameData/CardsAgainstHumanity/NSFH/black.html.txt -------------------------------------------------------------------------------- /gameData/CardsAgainstHumanity/NSFH/black.md.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroclutch/gamebot/HEAD/gameData/CardsAgainstHumanity/NSFH/black.md.txt -------------------------------------------------------------------------------- /gameData/CardsAgainstHumanity/NSFH/metadata.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroclutch/gamebot/HEAD/gameData/CardsAgainstHumanity/NSFH/metadata.json -------------------------------------------------------------------------------- /gameData/CardsAgainstHumanity/NSFH/white.html.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroclutch/gamebot/HEAD/gameData/CardsAgainstHumanity/NSFH/white.html.txt -------------------------------------------------------------------------------- /gameData/CardsAgainstHumanity/NSFH/white.md.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroclutch/gamebot/HEAD/gameData/CardsAgainstHumanity/NSFH/white.md.txt -------------------------------------------------------------------------------- /gameData/CardsAgainstHumanity/PAX2015/black.html.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroclutch/gamebot/HEAD/gameData/CardsAgainstHumanity/PAX2015/black.html.txt -------------------------------------------------------------------------------- /gameData/CardsAgainstHumanity/PAX2015/black.md.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroclutch/gamebot/HEAD/gameData/CardsAgainstHumanity/PAX2015/black.md.txt -------------------------------------------------------------------------------- /gameData/CardsAgainstHumanity/PAX2015/metadata.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroclutch/gamebot/HEAD/gameData/CardsAgainstHumanity/PAX2015/metadata.json -------------------------------------------------------------------------------- /gameData/CardsAgainstHumanity/PAX2015/white.html.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroclutch/gamebot/HEAD/gameData/CardsAgainstHumanity/PAX2015/white.html.txt -------------------------------------------------------------------------------- /gameData/CardsAgainstHumanity/PAX2015/white.md.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroclutch/gamebot/HEAD/gameData/CardsAgainstHumanity/PAX2015/white.md.txt -------------------------------------------------------------------------------- /gameData/CardsAgainstHumanity/PAXE2013/black.md.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroclutch/gamebot/HEAD/gameData/CardsAgainstHumanity/PAXE2013/black.md.txt -------------------------------------------------------------------------------- /gameData/CardsAgainstHumanity/PAXE2013/metadata.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroclutch/gamebot/HEAD/gameData/CardsAgainstHumanity/PAXE2013/metadata.json -------------------------------------------------------------------------------- /gameData/CardsAgainstHumanity/PAXE2013/white.md.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroclutch/gamebot/HEAD/gameData/CardsAgainstHumanity/PAXE2013/white.md.txt -------------------------------------------------------------------------------- /gameData/CardsAgainstHumanity/PAXE2014/black.md.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroclutch/gamebot/HEAD/gameData/CardsAgainstHumanity/PAXE2014/black.md.txt -------------------------------------------------------------------------------- /gameData/CardsAgainstHumanity/PAXE2014/metadata.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroclutch/gamebot/HEAD/gameData/CardsAgainstHumanity/PAXE2014/metadata.json -------------------------------------------------------------------------------- /gameData/CardsAgainstHumanity/PAXE2014/white.md.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroclutch/gamebot/HEAD/gameData/CardsAgainstHumanity/PAXE2014/white.md.txt -------------------------------------------------------------------------------- /gameData/CardsAgainstHumanity/PAXEP2014/black.md.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroclutch/gamebot/HEAD/gameData/CardsAgainstHumanity/PAXEP2014/black.md.txt -------------------------------------------------------------------------------- /gameData/CardsAgainstHumanity/PAXEP2014/white.md.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroclutch/gamebot/HEAD/gameData/CardsAgainstHumanity/PAXEP2014/white.md.txt -------------------------------------------------------------------------------- /gameData/CardsAgainstHumanity/PAXP2013/black.md.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroclutch/gamebot/HEAD/gameData/CardsAgainstHumanity/PAXP2013/black.md.txt -------------------------------------------------------------------------------- /gameData/CardsAgainstHumanity/PAXP2013/metadata.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroclutch/gamebot/HEAD/gameData/CardsAgainstHumanity/PAXP2013/metadata.json -------------------------------------------------------------------------------- /gameData/CardsAgainstHumanity/PAXP2013/white.md.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroclutch/gamebot/HEAD/gameData/CardsAgainstHumanity/PAXP2013/white.md.txt -------------------------------------------------------------------------------- /gameData/CardsAgainstHumanity/PAXPP2014/black.md.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroclutch/gamebot/HEAD/gameData/CardsAgainstHumanity/PAXPP2014/black.md.txt -------------------------------------------------------------------------------- /gameData/CardsAgainstHumanity/PAXPP2014/white.md.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroclutch/gamebot/HEAD/gameData/CardsAgainstHumanity/PAXPP2014/white.md.txt -------------------------------------------------------------------------------- /gameData/CardsAgainstHumanity/ai/black.html.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /gameData/CardsAgainstHumanity/ai/black.md.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /gameData/CardsAgainstHumanity/ai/metadata.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroclutch/gamebot/HEAD/gameData/CardsAgainstHumanity/ai/metadata.json -------------------------------------------------------------------------------- /gameData/CardsAgainstHumanity/ai/white.html.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroclutch/gamebot/HEAD/gameData/CardsAgainstHumanity/ai/white.html.txt -------------------------------------------------------------------------------- /gameData/CardsAgainstHumanity/ai/white.md.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroclutch/gamebot/HEAD/gameData/CardsAgainstHumanity/ai/white.md.txt -------------------------------------------------------------------------------- /gameData/CardsAgainstHumanity/apples/black.html.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroclutch/gamebot/HEAD/gameData/CardsAgainstHumanity/apples/black.html.txt -------------------------------------------------------------------------------- /gameData/CardsAgainstHumanity/apples/black.md.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroclutch/gamebot/HEAD/gameData/CardsAgainstHumanity/apples/black.md.txt -------------------------------------------------------------------------------- /gameData/CardsAgainstHumanity/apples/metadata.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroclutch/gamebot/HEAD/gameData/CardsAgainstHumanity/apples/metadata.json -------------------------------------------------------------------------------- /gameData/CardsAgainstHumanity/apples/white.html.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroclutch/gamebot/HEAD/gameData/CardsAgainstHumanity/apples/white.html.txt -------------------------------------------------------------------------------- /gameData/CardsAgainstHumanity/apples/white.md.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroclutch/gamebot/HEAD/gameData/CardsAgainstHumanity/apples/white.md.txt -------------------------------------------------------------------------------- /gameData/CardsAgainstHumanity/ass/black.md.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroclutch/gamebot/HEAD/gameData/CardsAgainstHumanity/ass/black.md.txt -------------------------------------------------------------------------------- /gameData/CardsAgainstHumanity/ass/metadata.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroclutch/gamebot/HEAD/gameData/CardsAgainstHumanity/ass/metadata.json -------------------------------------------------------------------------------- /gameData/CardsAgainstHumanity/ass/white.md.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroclutch/gamebot/HEAD/gameData/CardsAgainstHumanity/ass/white.md.txt -------------------------------------------------------------------------------- /gameData/CardsAgainstHumanity/c-admin/black.html.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroclutch/gamebot/HEAD/gameData/CardsAgainstHumanity/c-admin/black.html.txt -------------------------------------------------------------------------------- /gameData/CardsAgainstHumanity/c-admin/black.md.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroclutch/gamebot/HEAD/gameData/CardsAgainstHumanity/c-admin/black.md.txt -------------------------------------------------------------------------------- /gameData/CardsAgainstHumanity/c-admin/metadata.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroclutch/gamebot/HEAD/gameData/CardsAgainstHumanity/c-admin/metadata.json -------------------------------------------------------------------------------- /gameData/CardsAgainstHumanity/c-admin/white.html.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroclutch/gamebot/HEAD/gameData/CardsAgainstHumanity/c-admin/white.html.txt -------------------------------------------------------------------------------- /gameData/CardsAgainstHumanity/c-admin/white.md.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroclutch/gamebot/HEAD/gameData/CardsAgainstHumanity/c-admin/white.md.txt -------------------------------------------------------------------------------- /gameData/CardsAgainstHumanity/c-anime/black.html.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroclutch/gamebot/HEAD/gameData/CardsAgainstHumanity/c-anime/black.html.txt -------------------------------------------------------------------------------- /gameData/CardsAgainstHumanity/c-anime/black.md.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroclutch/gamebot/HEAD/gameData/CardsAgainstHumanity/c-anime/black.md.txt -------------------------------------------------------------------------------- /gameData/CardsAgainstHumanity/c-anime/metadata.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroclutch/gamebot/HEAD/gameData/CardsAgainstHumanity/c-anime/metadata.json -------------------------------------------------------------------------------- /gameData/CardsAgainstHumanity/c-anime/white.html.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroclutch/gamebot/HEAD/gameData/CardsAgainstHumanity/c-anime/white.html.txt -------------------------------------------------------------------------------- /gameData/CardsAgainstHumanity/c-anime/white.md.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroclutch/gamebot/HEAD/gameData/CardsAgainstHumanity/c-anime/white.md.txt -------------------------------------------------------------------------------- /gameData/CardsAgainstHumanity/c-derps/black.html.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroclutch/gamebot/HEAD/gameData/CardsAgainstHumanity/c-derps/black.html.txt -------------------------------------------------------------------------------- /gameData/CardsAgainstHumanity/c-derps/black.md.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroclutch/gamebot/HEAD/gameData/CardsAgainstHumanity/c-derps/black.md.txt -------------------------------------------------------------------------------- /gameData/CardsAgainstHumanity/c-derps/metadata.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroclutch/gamebot/HEAD/gameData/CardsAgainstHumanity/c-derps/metadata.json -------------------------------------------------------------------------------- /gameData/CardsAgainstHumanity/c-derps/white.html.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroclutch/gamebot/HEAD/gameData/CardsAgainstHumanity/c-derps/white.html.txt -------------------------------------------------------------------------------- /gameData/CardsAgainstHumanity/c-derps/white.md.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroclutch/gamebot/HEAD/gameData/CardsAgainstHumanity/c-derps/white.md.txt -------------------------------------------------------------------------------- /gameData/CardsAgainstHumanity/c-fim/black.html.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroclutch/gamebot/HEAD/gameData/CardsAgainstHumanity/c-fim/black.html.txt -------------------------------------------------------------------------------- /gameData/CardsAgainstHumanity/c-fim/black.md.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroclutch/gamebot/HEAD/gameData/CardsAgainstHumanity/c-fim/black.md.txt -------------------------------------------------------------------------------- /gameData/CardsAgainstHumanity/c-fim/metadata.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroclutch/gamebot/HEAD/gameData/CardsAgainstHumanity/c-fim/metadata.json -------------------------------------------------------------------------------- /gameData/CardsAgainstHumanity/c-fim/white.html.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroclutch/gamebot/HEAD/gameData/CardsAgainstHumanity/c-fim/white.html.txt -------------------------------------------------------------------------------- /gameData/CardsAgainstHumanity/c-fim/white.md.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroclutch/gamebot/HEAD/gameData/CardsAgainstHumanity/c-fim/white.md.txt -------------------------------------------------------------------------------- /gameData/CardsAgainstHumanity/c-golby/black.html.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroclutch/gamebot/HEAD/gameData/CardsAgainstHumanity/c-golby/black.html.txt -------------------------------------------------------------------------------- /gameData/CardsAgainstHumanity/c-golby/black.md.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroclutch/gamebot/HEAD/gameData/CardsAgainstHumanity/c-golby/black.md.txt -------------------------------------------------------------------------------- /gameData/CardsAgainstHumanity/c-golby/metadata.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroclutch/gamebot/HEAD/gameData/CardsAgainstHumanity/c-golby/metadata.json -------------------------------------------------------------------------------- /gameData/CardsAgainstHumanity/c-golby/white.html.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroclutch/gamebot/HEAD/gameData/CardsAgainstHumanity/c-golby/white.html.txt -------------------------------------------------------------------------------- /gameData/CardsAgainstHumanity/c-golby/white.md.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroclutch/gamebot/HEAD/gameData/CardsAgainstHumanity/c-golby/white.md.txt -------------------------------------------------------------------------------- /gameData/CardsAgainstHumanity/c-imgur/black.html.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroclutch/gamebot/HEAD/gameData/CardsAgainstHumanity/c-imgur/black.html.txt -------------------------------------------------------------------------------- /gameData/CardsAgainstHumanity/c-imgur/black.md.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroclutch/gamebot/HEAD/gameData/CardsAgainstHumanity/c-imgur/black.md.txt -------------------------------------------------------------------------------- /gameData/CardsAgainstHumanity/c-imgur/metadata.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroclutch/gamebot/HEAD/gameData/CardsAgainstHumanity/c-imgur/metadata.json -------------------------------------------------------------------------------- /gameData/CardsAgainstHumanity/c-imgur/white.html.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroclutch/gamebot/HEAD/gameData/CardsAgainstHumanity/c-imgur/white.html.txt -------------------------------------------------------------------------------- /gameData/CardsAgainstHumanity/c-imgur/white.md.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroclutch/gamebot/HEAD/gameData/CardsAgainstHumanity/c-imgur/white.md.txt -------------------------------------------------------------------------------- /gameData/CardsAgainstHumanity/c-khaos/black.html.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroclutch/gamebot/HEAD/gameData/CardsAgainstHumanity/c-khaos/black.html.txt -------------------------------------------------------------------------------- /gameData/CardsAgainstHumanity/c-khaos/black.md.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroclutch/gamebot/HEAD/gameData/CardsAgainstHumanity/c-khaos/black.md.txt -------------------------------------------------------------------------------- /gameData/CardsAgainstHumanity/c-khaos/metadata.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroclutch/gamebot/HEAD/gameData/CardsAgainstHumanity/c-khaos/metadata.json -------------------------------------------------------------------------------- /gameData/CardsAgainstHumanity/c-khaos/white.html.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroclutch/gamebot/HEAD/gameData/CardsAgainstHumanity/c-khaos/white.html.txt -------------------------------------------------------------------------------- /gameData/CardsAgainstHumanity/c-khaos/white.md.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroclutch/gamebot/HEAD/gameData/CardsAgainstHumanity/c-khaos/white.md.txt -------------------------------------------------------------------------------- /gameData/CardsAgainstHumanity/c-ladies/black.md.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroclutch/gamebot/HEAD/gameData/CardsAgainstHumanity/c-ladies/black.md.txt -------------------------------------------------------------------------------- /gameData/CardsAgainstHumanity/c-ladies/metadata.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroclutch/gamebot/HEAD/gameData/CardsAgainstHumanity/c-ladies/metadata.json -------------------------------------------------------------------------------- /gameData/CardsAgainstHumanity/c-ladies/white.md.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroclutch/gamebot/HEAD/gameData/CardsAgainstHumanity/c-ladies/white.md.txt -------------------------------------------------------------------------------- /gameData/CardsAgainstHumanity/c-mrman/black.html.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroclutch/gamebot/HEAD/gameData/CardsAgainstHumanity/c-mrman/black.html.txt -------------------------------------------------------------------------------- /gameData/CardsAgainstHumanity/c-mrman/black.md.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroclutch/gamebot/HEAD/gameData/CardsAgainstHumanity/c-mrman/black.md.txt -------------------------------------------------------------------------------- /gameData/CardsAgainstHumanity/c-mrman/metadata.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroclutch/gamebot/HEAD/gameData/CardsAgainstHumanity/c-mrman/metadata.json -------------------------------------------------------------------------------- /gameData/CardsAgainstHumanity/c-mrman/white.html.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroclutch/gamebot/HEAD/gameData/CardsAgainstHumanity/c-mrman/white.html.txt -------------------------------------------------------------------------------- /gameData/CardsAgainstHumanity/c-mrman/white.md.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroclutch/gamebot/HEAD/gameData/CardsAgainstHumanity/c-mrman/white.md.txt -------------------------------------------------------------------------------- /gameData/CardsAgainstHumanity/c-neindy/black.md.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroclutch/gamebot/HEAD/gameData/CardsAgainstHumanity/c-neindy/black.md.txt -------------------------------------------------------------------------------- /gameData/CardsAgainstHumanity/c-neindy/metadata.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroclutch/gamebot/HEAD/gameData/CardsAgainstHumanity/c-neindy/metadata.json -------------------------------------------------------------------------------- /gameData/CardsAgainstHumanity/c-neindy/white.md.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroclutch/gamebot/HEAD/gameData/CardsAgainstHumanity/c-neindy/white.md.txt -------------------------------------------------------------------------------- /gameData/CardsAgainstHumanity/c-nobilis/black.md.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroclutch/gamebot/HEAD/gameData/CardsAgainstHumanity/c-nobilis/black.md.txt -------------------------------------------------------------------------------- /gameData/CardsAgainstHumanity/c-nobilis/white.md.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroclutch/gamebot/HEAD/gameData/CardsAgainstHumanity/c-nobilis/white.md.txt -------------------------------------------------------------------------------- /gameData/CardsAgainstHumanity/c-prtg/black.md.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroclutch/gamebot/HEAD/gameData/CardsAgainstHumanity/c-prtg/black.md.txt -------------------------------------------------------------------------------- /gameData/CardsAgainstHumanity/c-prtg/metadata.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroclutch/gamebot/HEAD/gameData/CardsAgainstHumanity/c-prtg/metadata.json -------------------------------------------------------------------------------- /gameData/CardsAgainstHumanity/c-prtg/white.md.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroclutch/gamebot/HEAD/gameData/CardsAgainstHumanity/c-prtg/white.md.txt -------------------------------------------------------------------------------- /gameData/CardsAgainstHumanity/c-rpanons/black.md.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroclutch/gamebot/HEAD/gameData/CardsAgainstHumanity/c-rpanons/black.md.txt -------------------------------------------------------------------------------- /gameData/CardsAgainstHumanity/c-rpanons/white.md.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroclutch/gamebot/HEAD/gameData/CardsAgainstHumanity/c-rpanons/white.md.txt -------------------------------------------------------------------------------- /gameData/CardsAgainstHumanity/c-rt/black.html.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroclutch/gamebot/HEAD/gameData/CardsAgainstHumanity/c-rt/black.html.txt -------------------------------------------------------------------------------- /gameData/CardsAgainstHumanity/c-rt/black.md.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroclutch/gamebot/HEAD/gameData/CardsAgainstHumanity/c-rt/black.md.txt -------------------------------------------------------------------------------- /gameData/CardsAgainstHumanity/c-rt/metadata.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroclutch/gamebot/HEAD/gameData/CardsAgainstHumanity/c-rt/metadata.json -------------------------------------------------------------------------------- /gameData/CardsAgainstHumanity/c-rt/white.html.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroclutch/gamebot/HEAD/gameData/CardsAgainstHumanity/c-rt/white.html.txt -------------------------------------------------------------------------------- /gameData/CardsAgainstHumanity/c-rt/white.md.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroclutch/gamebot/HEAD/gameData/CardsAgainstHumanity/c-rt/white.md.txt -------------------------------------------------------------------------------- /gameData/CardsAgainstHumanity/c-stupid/black.md.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroclutch/gamebot/HEAD/gameData/CardsAgainstHumanity/c-stupid/black.md.txt -------------------------------------------------------------------------------- /gameData/CardsAgainstHumanity/c-stupid/metadata.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroclutch/gamebot/HEAD/gameData/CardsAgainstHumanity/c-stupid/metadata.json -------------------------------------------------------------------------------- /gameData/CardsAgainstHumanity/c-stupid/white.md.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroclutch/gamebot/HEAD/gameData/CardsAgainstHumanity/c-stupid/white.md.txt -------------------------------------------------------------------------------- /gameData/CardsAgainstHumanity/c-tg/black.html.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroclutch/gamebot/HEAD/gameData/CardsAgainstHumanity/c-tg/black.html.txt -------------------------------------------------------------------------------- /gameData/CardsAgainstHumanity/c-tg/black.md.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroclutch/gamebot/HEAD/gameData/CardsAgainstHumanity/c-tg/black.md.txt -------------------------------------------------------------------------------- /gameData/CardsAgainstHumanity/c-tg/metadata.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroclutch/gamebot/HEAD/gameData/CardsAgainstHumanity/c-tg/metadata.json -------------------------------------------------------------------------------- /gameData/CardsAgainstHumanity/c-tg/white.html.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroclutch/gamebot/HEAD/gameData/CardsAgainstHumanity/c-tg/white.html.txt -------------------------------------------------------------------------------- /gameData/CardsAgainstHumanity/c-tg/white.md.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroclutch/gamebot/HEAD/gameData/CardsAgainstHumanity/c-tg/white.md.txt -------------------------------------------------------------------------------- /gameData/CardsAgainstHumanity/c-vidya/black.html.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroclutch/gamebot/HEAD/gameData/CardsAgainstHumanity/c-vidya/black.html.txt -------------------------------------------------------------------------------- /gameData/CardsAgainstHumanity/c-vidya/black.md.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroclutch/gamebot/HEAD/gameData/CardsAgainstHumanity/c-vidya/black.md.txt -------------------------------------------------------------------------------- /gameData/CardsAgainstHumanity/c-vidya/metadata.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroclutch/gamebot/HEAD/gameData/CardsAgainstHumanity/c-vidya/metadata.json -------------------------------------------------------------------------------- /gameData/CardsAgainstHumanity/c-vidya/white.html.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroclutch/gamebot/HEAD/gameData/CardsAgainstHumanity/c-vidya/white.html.txt -------------------------------------------------------------------------------- /gameData/CardsAgainstHumanity/c-vidya/white.md.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroclutch/gamebot/HEAD/gameData/CardsAgainstHumanity/c-vidya/white.md.txt -------------------------------------------------------------------------------- /gameData/CardsAgainstHumanity/c-xkcd/black.html.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroclutch/gamebot/HEAD/gameData/CardsAgainstHumanity/c-xkcd/black.html.txt -------------------------------------------------------------------------------- /gameData/CardsAgainstHumanity/c-xkcd/black.md.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroclutch/gamebot/HEAD/gameData/CardsAgainstHumanity/c-xkcd/black.md.txt -------------------------------------------------------------------------------- /gameData/CardsAgainstHumanity/c-xkcd/metadata.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroclutch/gamebot/HEAD/gameData/CardsAgainstHumanity/c-xkcd/metadata.json -------------------------------------------------------------------------------- /gameData/CardsAgainstHumanity/c-xkcd/white.html.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroclutch/gamebot/HEAD/gameData/CardsAgainstHumanity/c-xkcd/white.html.txt -------------------------------------------------------------------------------- /gameData/CardsAgainstHumanity/c-xkcd/white.md.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroclutch/gamebot/HEAD/gameData/CardsAgainstHumanity/c-xkcd/white.md.txt -------------------------------------------------------------------------------- /gameData/CardsAgainstHumanity/clam/black.md.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroclutch/gamebot/HEAD/gameData/CardsAgainstHumanity/clam/black.md.txt -------------------------------------------------------------------------------- /gameData/CardsAgainstHumanity/clam/metadata.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroclutch/gamebot/HEAD/gameData/CardsAgainstHumanity/clam/metadata.json -------------------------------------------------------------------------------- /gameData/CardsAgainstHumanity/clam/white.md.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroclutch/gamebot/HEAD/gameData/CardsAgainstHumanity/clam/white.md.txt -------------------------------------------------------------------------------- /gameData/CardsAgainstHumanity/climate/black.md.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroclutch/gamebot/HEAD/gameData/CardsAgainstHumanity/climate/black.md.txt -------------------------------------------------------------------------------- /gameData/CardsAgainstHumanity/climate/metadata.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroclutch/gamebot/HEAD/gameData/CardsAgainstHumanity/climate/metadata.json -------------------------------------------------------------------------------- /gameData/CardsAgainstHumanity/climate/white.md.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroclutch/gamebot/HEAD/gameData/CardsAgainstHumanity/climate/white.md.txt -------------------------------------------------------------------------------- /gameData/CardsAgainstHumanity/crabs/black.html.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroclutch/gamebot/HEAD/gameData/CardsAgainstHumanity/crabs/black.html.txt -------------------------------------------------------------------------------- /gameData/CardsAgainstHumanity/crabs/black.md.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroclutch/gamebot/HEAD/gameData/CardsAgainstHumanity/crabs/black.md.txt -------------------------------------------------------------------------------- /gameData/CardsAgainstHumanity/crabs/metadata.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroclutch/gamebot/HEAD/gameData/CardsAgainstHumanity/crabs/metadata.json -------------------------------------------------------------------------------- /gameData/CardsAgainstHumanity/crabs/white.html.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroclutch/gamebot/HEAD/gameData/CardsAgainstHumanity/crabs/white.html.txt -------------------------------------------------------------------------------- /gameData/CardsAgainstHumanity/crabs/white.md.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroclutch/gamebot/HEAD/gameData/CardsAgainstHumanity/crabs/white.md.txt -------------------------------------------------------------------------------- /gameData/CardsAgainstHumanity/family/black.md.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroclutch/gamebot/HEAD/gameData/CardsAgainstHumanity/family/black.md.txt -------------------------------------------------------------------------------- /gameData/CardsAgainstHumanity/family/metadata.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroclutch/gamebot/HEAD/gameData/CardsAgainstHumanity/family/metadata.json -------------------------------------------------------------------------------- /gameData/CardsAgainstHumanity/family/white.md.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroclutch/gamebot/HEAD/gameData/CardsAgainstHumanity/family/white.md.txt -------------------------------------------------------------------------------- /gameData/CardsAgainstHumanity/fantasy/black.html.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroclutch/gamebot/HEAD/gameData/CardsAgainstHumanity/fantasy/black.html.txt -------------------------------------------------------------------------------- /gameData/CardsAgainstHumanity/fantasy/black.md.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroclutch/gamebot/HEAD/gameData/CardsAgainstHumanity/fantasy/black.md.txt -------------------------------------------------------------------------------- /gameData/CardsAgainstHumanity/fantasy/metadata.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroclutch/gamebot/HEAD/gameData/CardsAgainstHumanity/fantasy/metadata.json -------------------------------------------------------------------------------- /gameData/CardsAgainstHumanity/food/black.html.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroclutch/gamebot/HEAD/gameData/CardsAgainstHumanity/food/black.html.txt -------------------------------------------------------------------------------- /gameData/CardsAgainstHumanity/food/black.md.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroclutch/gamebot/HEAD/gameData/CardsAgainstHumanity/food/black.md.txt -------------------------------------------------------------------------------- /gameData/CardsAgainstHumanity/food/metadata.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroclutch/gamebot/HEAD/gameData/CardsAgainstHumanity/food/metadata.json -------------------------------------------------------------------------------- /gameData/CardsAgainstHumanity/food/white.html.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroclutch/gamebot/HEAD/gameData/CardsAgainstHumanity/food/white.html.txt -------------------------------------------------------------------------------- /gameData/CardsAgainstHumanity/food/white.md.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroclutch/gamebot/HEAD/gameData/CardsAgainstHumanity/food/white.md.txt -------------------------------------------------------------------------------- /gameData/CardsAgainstHumanity/human/black.md.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroclutch/gamebot/HEAD/gameData/CardsAgainstHumanity/human/black.md.txt -------------------------------------------------------------------------------- /gameData/CardsAgainstHumanity/human/metadata.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroclutch/gamebot/HEAD/gameData/CardsAgainstHumanity/human/metadata.json -------------------------------------------------------------------------------- /gameData/CardsAgainstHumanity/human/white.md.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroclutch/gamebot/HEAD/gameData/CardsAgainstHumanity/human/white.md.txt -------------------------------------------------------------------------------- /gameData/CardsAgainstHumanity/misprint/black.html.txt: -------------------------------------------------------------------------------- 1 | Daddy, why is Mommy crying? -------------------------------------------------------------------------------- /gameData/CardsAgainstHumanity/misprint/black.md.txt: -------------------------------------------------------------------------------- 1 | Daddy, why is Mommy crying? -------------------------------------------------------------------------------- /gameData/CardsAgainstHumanity/period/black.md.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroclutch/gamebot/HEAD/gameData/CardsAgainstHumanity/period/black.md.txt -------------------------------------------------------------------------------- /gameData/CardsAgainstHumanity/period/white.md.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroclutch/gamebot/HEAD/gameData/CardsAgainstHumanity/period/white.md.txt -------------------------------------------------------------------------------- /gameData/CardsAgainstHumanity/reject/black.md.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroclutch/gamebot/HEAD/gameData/CardsAgainstHumanity/reject/black.md.txt -------------------------------------------------------------------------------- /gameData/CardsAgainstHumanity/reject/white.md.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroclutch/gamebot/HEAD/gameData/CardsAgainstHumanity/reject/white.md.txt -------------------------------------------------------------------------------- /gameData/CardsAgainstHumanity/test/black.md.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroclutch/gamebot/HEAD/gameData/CardsAgainstHumanity/test/black.md.txt -------------------------------------------------------------------------------- /gameData/CardsAgainstHumanity/test/metadata.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroclutch/gamebot/HEAD/gameData/CardsAgainstHumanity/test/metadata.json -------------------------------------------------------------------------------- /gameData/CardsAgainstHumanity/test/white.md.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroclutch/gamebot/HEAD/gameData/CardsAgainstHumanity/test/white.md.txt -------------------------------------------------------------------------------- /gameData/CardsAgainstHumanity/weed/black.html.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroclutch/gamebot/HEAD/gameData/CardsAgainstHumanity/weed/black.html.txt -------------------------------------------------------------------------------- /gameData/CardsAgainstHumanity/weed/black.md.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroclutch/gamebot/HEAD/gameData/CardsAgainstHumanity/weed/black.md.txt -------------------------------------------------------------------------------- /gameData/CardsAgainstHumanity/weed/metadata.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroclutch/gamebot/HEAD/gameData/CardsAgainstHumanity/weed/metadata.json -------------------------------------------------------------------------------- /gameData/CardsAgainstHumanity/weed/white.html.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroclutch/gamebot/HEAD/gameData/CardsAgainstHumanity/weed/white.html.txt -------------------------------------------------------------------------------- /gameData/CardsAgainstHumanity/weed/white.md.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroclutch/gamebot/HEAD/gameData/CardsAgainstHumanity/weed/white.md.txt -------------------------------------------------------------------------------- /gameData/CardsAgainstHumanity/www/black.html.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroclutch/gamebot/HEAD/gameData/CardsAgainstHumanity/www/black.html.txt -------------------------------------------------------------------------------- /gameData/CardsAgainstHumanity/www/black.md.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroclutch/gamebot/HEAD/gameData/CardsAgainstHumanity/www/black.md.txt -------------------------------------------------------------------------------- /gameData/CardsAgainstHumanity/www/metadata.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroclutch/gamebot/HEAD/gameData/CardsAgainstHumanity/www/metadata.json -------------------------------------------------------------------------------- /gameData/CardsAgainstHumanity/www/white.html.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroclutch/gamebot/HEAD/gameData/CardsAgainstHumanity/www/white.html.txt -------------------------------------------------------------------------------- /gameData/CardsAgainstHumanity/www/white.md.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroclutch/gamebot/HEAD/gameData/CardsAgainstHumanity/www/white.md.txt -------------------------------------------------------------------------------- /gameData/WordGames/Common_Words.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroclutch/gamebot/HEAD/gameData/WordGames/Common_Words.txt -------------------------------------------------------------------------------- /games/Anagrams/classes/Anagrams.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroclutch/gamebot/HEAD/games/Anagrams/classes/Anagrams.js -------------------------------------------------------------------------------- /games/Anagrams/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroclutch/gamebot/HEAD/games/Anagrams/main.js -------------------------------------------------------------------------------- /games/Anagrams/metadata.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroclutch/gamebot/HEAD/games/Anagrams/metadata.js -------------------------------------------------------------------------------- /games/Cards Against Humanity/assets/cards.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroclutch/gamebot/HEAD/games/Cards Against Humanity/assets/cards.js -------------------------------------------------------------------------------- /games/Cards Against Humanity/classes/BlackCard.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroclutch/gamebot/HEAD/games/Cards Against Humanity/classes/BlackCard.js -------------------------------------------------------------------------------- /games/Cards Against Humanity/classes/CAHDeck.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroclutch/gamebot/HEAD/games/Cards Against Humanity/classes/CAHDeck.js -------------------------------------------------------------------------------- /games/Cards Against Humanity/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroclutch/gamebot/HEAD/games/Cards Against Humanity/main.js -------------------------------------------------------------------------------- /games/Cards Against Humanity/metadata.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroclutch/gamebot/HEAD/games/Cards Against Humanity/metadata.js -------------------------------------------------------------------------------- /games/Chess/assets/boards/Antique Oak.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroclutch/gamebot/HEAD/games/Chess/assets/boards/Antique Oak.jpg -------------------------------------------------------------------------------- /games/Chess/assets/boards/Basic.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroclutch/gamebot/HEAD/games/Chess/assets/boards/Basic.jpg -------------------------------------------------------------------------------- /games/Chess/assets/boards/Blue Canvas.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroclutch/gamebot/HEAD/games/Chess/assets/boards/Blue Canvas.jpg -------------------------------------------------------------------------------- /games/Chess/assets/boards/Blue Marble.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroclutch/gamebot/HEAD/games/Chess/assets/boards/Blue Marble.jpg -------------------------------------------------------------------------------- /games/Chess/assets/boards/Candy Flavored.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroclutch/gamebot/HEAD/games/Chess/assets/boards/Candy Flavored.jpg -------------------------------------------------------------------------------- /games/Chess/assets/boards/Emerald.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroclutch/gamebot/HEAD/games/Chess/assets/boards/Emerald.jpg -------------------------------------------------------------------------------- /games/Chess/assets/boards/Faux Wood.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroclutch/gamebot/HEAD/games/Chess/assets/boards/Faux Wood.jpg -------------------------------------------------------------------------------- /games/Chess/assets/boards/Gold Standard.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroclutch/gamebot/HEAD/games/Chess/assets/boards/Gold Standard.jpg -------------------------------------------------------------------------------- /games/Chess/assets/boards/Green Plastic.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroclutch/gamebot/HEAD/games/Chess/assets/boards/Green Plastic.jpg -------------------------------------------------------------------------------- /games/Chess/assets/boards/Industrial Strength.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroclutch/gamebot/HEAD/games/Chess/assets/boards/Industrial Strength.jpg -------------------------------------------------------------------------------- /games/Chess/assets/boards/Metal.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroclutch/gamebot/HEAD/games/Chess/assets/boards/Metal.jpg -------------------------------------------------------------------------------- /games/Chess/assets/boards/Modern Maple.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroclutch/gamebot/HEAD/games/Chess/assets/boards/Modern Maple.jpg -------------------------------------------------------------------------------- /games/Chess/assets/boards/Neo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroclutch/gamebot/HEAD/games/Chess/assets/boards/Neo.jpg -------------------------------------------------------------------------------- /games/Chess/assets/boards/Newspaper.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroclutch/gamebot/HEAD/games/Chess/assets/boards/Newspaper.jpg -------------------------------------------------------------------------------- /games/Chess/assets/boards/Pink Standard.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroclutch/gamebot/HEAD/games/Chess/assets/boards/Pink Standard.jpg -------------------------------------------------------------------------------- /games/Chess/assets/boards/Simple Brown.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroclutch/gamebot/HEAD/games/Chess/assets/boards/Simple Brown.jpg -------------------------------------------------------------------------------- /games/Chess/assets/boards/Simple Green.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroclutch/gamebot/HEAD/games/Chess/assets/boards/Simple Green.jpg -------------------------------------------------------------------------------- /games/Chess/assets/boards/Simple Purple.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroclutch/gamebot/HEAD/games/Chess/assets/boards/Simple Purple.jpg -------------------------------------------------------------------------------- /games/Chess/assets/boards/Simple Yellow.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroclutch/gamebot/HEAD/games/Chess/assets/boards/Simple Yellow.jpg -------------------------------------------------------------------------------- /games/Chess/assets/boards/Textured Lavender.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroclutch/gamebot/HEAD/games/Chess/assets/boards/Textured Lavender.jpg -------------------------------------------------------------------------------- /games/Chess/assets/border/black-border.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroclutch/gamebot/HEAD/games/Chess/assets/border/black-border.jpg -------------------------------------------------------------------------------- /games/Chess/assets/border/white-border.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroclutch/gamebot/HEAD/games/Chess/assets/border/white-border.jpg -------------------------------------------------------------------------------- /games/Chess/assets/pieces-3d/Basic/Black-King.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroclutch/gamebot/HEAD/games/Chess/assets/pieces-3d/Basic/Black-King.png -------------------------------------------------------------------------------- /games/Chess/assets/pieces-3d/Basic/Black-Pawn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroclutch/gamebot/HEAD/games/Chess/assets/pieces-3d/Basic/Black-Pawn.png -------------------------------------------------------------------------------- /games/Chess/assets/pieces-3d/Basic/Black-Rook.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroclutch/gamebot/HEAD/games/Chess/assets/pieces-3d/Basic/Black-Rook.png -------------------------------------------------------------------------------- /games/Chess/assets/pieces-3d/Basic/White-King.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroclutch/gamebot/HEAD/games/Chess/assets/pieces-3d/Basic/White-King.png -------------------------------------------------------------------------------- /games/Chess/assets/pieces-3d/Basic/White-Pawn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroclutch/gamebot/HEAD/games/Chess/assets/pieces-3d/Basic/White-Pawn.png -------------------------------------------------------------------------------- /games/Chess/assets/pieces-3d/Basic/White-Rook.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroclutch/gamebot/HEAD/games/Chess/assets/pieces-3d/Basic/White-Rook.png -------------------------------------------------------------------------------- /games/Chess/assets/pieces-3d/Glass/Black-King.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroclutch/gamebot/HEAD/games/Chess/assets/pieces-3d/Glass/Black-King.png -------------------------------------------------------------------------------- /games/Chess/assets/pieces-3d/Glass/Black-Pawn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroclutch/gamebot/HEAD/games/Chess/assets/pieces-3d/Glass/Black-Pawn.png -------------------------------------------------------------------------------- /games/Chess/assets/pieces-3d/Glass/Black-Rook.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroclutch/gamebot/HEAD/games/Chess/assets/pieces-3d/Glass/Black-Rook.png -------------------------------------------------------------------------------- /games/Chess/assets/pieces-3d/Glass/White-King.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroclutch/gamebot/HEAD/games/Chess/assets/pieces-3d/Glass/White-King.png -------------------------------------------------------------------------------- /games/Chess/assets/pieces-3d/Glass/White-Pawn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroclutch/gamebot/HEAD/games/Chess/assets/pieces-3d/Glass/White-Pawn.png -------------------------------------------------------------------------------- /games/Chess/assets/pieces-3d/Glass/White-Rook.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroclutch/gamebot/HEAD/games/Chess/assets/pieces-3d/Glass/White-Rook.png -------------------------------------------------------------------------------- /games/Chess/assets/pieces-3d/Metal/Black-King.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroclutch/gamebot/HEAD/games/Chess/assets/pieces-3d/Metal/Black-King.png -------------------------------------------------------------------------------- /games/Chess/assets/pieces-3d/Metal/Black-Pawn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroclutch/gamebot/HEAD/games/Chess/assets/pieces-3d/Metal/Black-Pawn.png -------------------------------------------------------------------------------- /games/Chess/assets/pieces-3d/Metal/Black-Rook.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroclutch/gamebot/HEAD/games/Chess/assets/pieces-3d/Metal/Black-Rook.png -------------------------------------------------------------------------------- /games/Chess/assets/pieces-3d/Metal/White-King.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroclutch/gamebot/HEAD/games/Chess/assets/pieces-3d/Metal/White-King.png -------------------------------------------------------------------------------- /games/Chess/assets/pieces-3d/Metal/White-Pawn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroclutch/gamebot/HEAD/games/Chess/assets/pieces-3d/Metal/White-Pawn.png -------------------------------------------------------------------------------- /games/Chess/assets/pieces-3d/Metal/White-Rook.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroclutch/gamebot/HEAD/games/Chess/assets/pieces-3d/Metal/White-Rook.png -------------------------------------------------------------------------------- /games/Chess/assets/pieces-3d/Wood/Black-King.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroclutch/gamebot/HEAD/games/Chess/assets/pieces-3d/Wood/Black-King.png -------------------------------------------------------------------------------- /games/Chess/assets/pieces-3d/Wood/Black-Pawn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroclutch/gamebot/HEAD/games/Chess/assets/pieces-3d/Wood/Black-Pawn.png -------------------------------------------------------------------------------- /games/Chess/assets/pieces-3d/Wood/Black-Queen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroclutch/gamebot/HEAD/games/Chess/assets/pieces-3d/Wood/Black-Queen.png -------------------------------------------------------------------------------- /games/Chess/assets/pieces-3d/Wood/Black-Rook.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroclutch/gamebot/HEAD/games/Chess/assets/pieces-3d/Wood/Black-Rook.png -------------------------------------------------------------------------------- /games/Chess/assets/pieces-3d/Wood/White-King.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroclutch/gamebot/HEAD/games/Chess/assets/pieces-3d/Wood/White-King.png -------------------------------------------------------------------------------- /games/Chess/assets/pieces-3d/Wood/White-Pawn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroclutch/gamebot/HEAD/games/Chess/assets/pieces-3d/Wood/White-Pawn.png -------------------------------------------------------------------------------- /games/Chess/assets/pieces-3d/Wood/White-Queen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroclutch/gamebot/HEAD/games/Chess/assets/pieces-3d/Wood/White-Queen.png -------------------------------------------------------------------------------- /games/Chess/assets/pieces-3d/Wood/White-Rook.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroclutch/gamebot/HEAD/games/Chess/assets/pieces-3d/Wood/White-Rook.png -------------------------------------------------------------------------------- /games/Chess/assets/pieces/alpha/black_bishop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroclutch/gamebot/HEAD/games/Chess/assets/pieces/alpha/black_bishop.png -------------------------------------------------------------------------------- /games/Chess/assets/pieces/alpha/black_king.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroclutch/gamebot/HEAD/games/Chess/assets/pieces/alpha/black_king.png -------------------------------------------------------------------------------- /games/Chess/assets/pieces/alpha/black_knight.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroclutch/gamebot/HEAD/games/Chess/assets/pieces/alpha/black_knight.png -------------------------------------------------------------------------------- /games/Chess/assets/pieces/alpha/black_pawn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroclutch/gamebot/HEAD/games/Chess/assets/pieces/alpha/black_pawn.png -------------------------------------------------------------------------------- /games/Chess/assets/pieces/alpha/black_queen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroclutch/gamebot/HEAD/games/Chess/assets/pieces/alpha/black_queen.png -------------------------------------------------------------------------------- /games/Chess/assets/pieces/alpha/black_rook.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroclutch/gamebot/HEAD/games/Chess/assets/pieces/alpha/black_rook.png -------------------------------------------------------------------------------- /games/Chess/assets/pieces/alpha/white_bishop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroclutch/gamebot/HEAD/games/Chess/assets/pieces/alpha/white_bishop.png -------------------------------------------------------------------------------- /games/Chess/assets/pieces/alpha/white_king.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroclutch/gamebot/HEAD/games/Chess/assets/pieces/alpha/white_king.png -------------------------------------------------------------------------------- /games/Chess/assets/pieces/alpha/white_knight.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroclutch/gamebot/HEAD/games/Chess/assets/pieces/alpha/white_knight.png -------------------------------------------------------------------------------- /games/Chess/assets/pieces/alpha/white_pawn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroclutch/gamebot/HEAD/games/Chess/assets/pieces/alpha/white_pawn.png -------------------------------------------------------------------------------- /games/Chess/assets/pieces/alpha/white_queen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroclutch/gamebot/HEAD/games/Chess/assets/pieces/alpha/white_queen.png -------------------------------------------------------------------------------- /games/Chess/assets/pieces/alpha/white_rook.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroclutch/gamebot/HEAD/games/Chess/assets/pieces/alpha/white_rook.png -------------------------------------------------------------------------------- /games/Chess/assets/pieces/basic/black_bishop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroclutch/gamebot/HEAD/games/Chess/assets/pieces/basic/black_bishop.png -------------------------------------------------------------------------------- /games/Chess/assets/pieces/basic/black_king.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroclutch/gamebot/HEAD/games/Chess/assets/pieces/basic/black_king.png -------------------------------------------------------------------------------- /games/Chess/assets/pieces/basic/black_knight.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroclutch/gamebot/HEAD/games/Chess/assets/pieces/basic/black_knight.png -------------------------------------------------------------------------------- /games/Chess/assets/pieces/basic/black_pawn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroclutch/gamebot/HEAD/games/Chess/assets/pieces/basic/black_pawn.png -------------------------------------------------------------------------------- /games/Chess/assets/pieces/basic/black_queen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroclutch/gamebot/HEAD/games/Chess/assets/pieces/basic/black_queen.png -------------------------------------------------------------------------------- /games/Chess/assets/pieces/basic/black_rook.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroclutch/gamebot/HEAD/games/Chess/assets/pieces/basic/black_rook.png -------------------------------------------------------------------------------- /games/Chess/assets/pieces/basic/white_bishop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroclutch/gamebot/HEAD/games/Chess/assets/pieces/basic/white_bishop.png -------------------------------------------------------------------------------- /games/Chess/assets/pieces/basic/white_king.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroclutch/gamebot/HEAD/games/Chess/assets/pieces/basic/white_king.png -------------------------------------------------------------------------------- /games/Chess/assets/pieces/basic/white_knight.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroclutch/gamebot/HEAD/games/Chess/assets/pieces/basic/white_knight.png -------------------------------------------------------------------------------- /games/Chess/assets/pieces/basic/white_pawn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroclutch/gamebot/HEAD/games/Chess/assets/pieces/basic/white_pawn.png -------------------------------------------------------------------------------- /games/Chess/assets/pieces/basic/white_queen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroclutch/gamebot/HEAD/games/Chess/assets/pieces/basic/white_queen.png -------------------------------------------------------------------------------- /games/Chess/assets/pieces/basic/white_rook.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroclutch/gamebot/HEAD/games/Chess/assets/pieces/basic/white_rook.png -------------------------------------------------------------------------------- /games/Chess/assets/pieces/cardinal/black_king.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroclutch/gamebot/HEAD/games/Chess/assets/pieces/cardinal/black_king.png -------------------------------------------------------------------------------- /games/Chess/assets/pieces/cardinal/black_pawn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroclutch/gamebot/HEAD/games/Chess/assets/pieces/cardinal/black_pawn.png -------------------------------------------------------------------------------- /games/Chess/assets/pieces/cardinal/black_rook.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroclutch/gamebot/HEAD/games/Chess/assets/pieces/cardinal/black_rook.png -------------------------------------------------------------------------------- /games/Chess/assets/pieces/cardinal/white_king.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroclutch/gamebot/HEAD/games/Chess/assets/pieces/cardinal/white_king.png -------------------------------------------------------------------------------- /games/Chess/assets/pieces/cardinal/white_pawn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroclutch/gamebot/HEAD/games/Chess/assets/pieces/cardinal/white_pawn.png -------------------------------------------------------------------------------- /games/Chess/assets/pieces/cardinal/white_rook.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroclutch/gamebot/HEAD/games/Chess/assets/pieces/cardinal/white_rook.png -------------------------------------------------------------------------------- /games/Chess/assets/pieces/check.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroclutch/gamebot/HEAD/games/Chess/assets/pieces/check.png -------------------------------------------------------------------------------- /games/Chess/assets/pieces/chess7/black_bishop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroclutch/gamebot/HEAD/games/Chess/assets/pieces/chess7/black_bishop.png -------------------------------------------------------------------------------- /games/Chess/assets/pieces/chess7/black_king.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroclutch/gamebot/HEAD/games/Chess/assets/pieces/chess7/black_king.png -------------------------------------------------------------------------------- /games/Chess/assets/pieces/chess7/black_knight.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroclutch/gamebot/HEAD/games/Chess/assets/pieces/chess7/black_knight.png -------------------------------------------------------------------------------- /games/Chess/assets/pieces/chess7/black_pawn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroclutch/gamebot/HEAD/games/Chess/assets/pieces/chess7/black_pawn.png -------------------------------------------------------------------------------- /games/Chess/assets/pieces/chess7/black_queen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroclutch/gamebot/HEAD/games/Chess/assets/pieces/chess7/black_queen.png -------------------------------------------------------------------------------- /games/Chess/assets/pieces/chess7/black_rook.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroclutch/gamebot/HEAD/games/Chess/assets/pieces/chess7/black_rook.png -------------------------------------------------------------------------------- /games/Chess/assets/pieces/chess7/white_bishop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroclutch/gamebot/HEAD/games/Chess/assets/pieces/chess7/white_bishop.png -------------------------------------------------------------------------------- /games/Chess/assets/pieces/chess7/white_king.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroclutch/gamebot/HEAD/games/Chess/assets/pieces/chess7/white_king.png -------------------------------------------------------------------------------- /games/Chess/assets/pieces/chess7/white_knight.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroclutch/gamebot/HEAD/games/Chess/assets/pieces/chess7/white_knight.png -------------------------------------------------------------------------------- /games/Chess/assets/pieces/chess7/white_pawn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroclutch/gamebot/HEAD/games/Chess/assets/pieces/chess7/white_pawn.png -------------------------------------------------------------------------------- /games/Chess/assets/pieces/chess7/white_queen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroclutch/gamebot/HEAD/games/Chess/assets/pieces/chess7/white_queen.png -------------------------------------------------------------------------------- /games/Chess/assets/pieces/chess7/white_rook.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroclutch/gamebot/HEAD/games/Chess/assets/pieces/chess7/white_rook.png -------------------------------------------------------------------------------- /games/Chess/assets/pieces/chessnut/black_king.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroclutch/gamebot/HEAD/games/Chess/assets/pieces/chessnut/black_king.png -------------------------------------------------------------------------------- /games/Chess/assets/pieces/chessnut/black_pawn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroclutch/gamebot/HEAD/games/Chess/assets/pieces/chessnut/black_pawn.png -------------------------------------------------------------------------------- /games/Chess/assets/pieces/chessnut/black_rook.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroclutch/gamebot/HEAD/games/Chess/assets/pieces/chessnut/black_rook.png -------------------------------------------------------------------------------- /games/Chess/assets/pieces/chessnut/white_king.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroclutch/gamebot/HEAD/games/Chess/assets/pieces/chessnut/white_king.png -------------------------------------------------------------------------------- /games/Chess/assets/pieces/chessnut/white_pawn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroclutch/gamebot/HEAD/games/Chess/assets/pieces/chessnut/white_pawn.png -------------------------------------------------------------------------------- /games/Chess/assets/pieces/chessnut/white_rook.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroclutch/gamebot/HEAD/games/Chess/assets/pieces/chessnut/white_rook.png -------------------------------------------------------------------------------- /games/Chess/assets/pieces/dubrovny/black_king.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroclutch/gamebot/HEAD/games/Chess/assets/pieces/dubrovny/black_king.png -------------------------------------------------------------------------------- /games/Chess/assets/pieces/dubrovny/black_pawn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroclutch/gamebot/HEAD/games/Chess/assets/pieces/dubrovny/black_pawn.png -------------------------------------------------------------------------------- /games/Chess/assets/pieces/dubrovny/black_rook.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroclutch/gamebot/HEAD/games/Chess/assets/pieces/dubrovny/black_rook.png -------------------------------------------------------------------------------- /games/Chess/assets/pieces/dubrovny/white_king.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroclutch/gamebot/HEAD/games/Chess/assets/pieces/dubrovny/white_king.png -------------------------------------------------------------------------------- /games/Chess/assets/pieces/dubrovny/white_pawn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroclutch/gamebot/HEAD/games/Chess/assets/pieces/dubrovny/white_pawn.png -------------------------------------------------------------------------------- /games/Chess/assets/pieces/dubrovny/white_rook.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroclutch/gamebot/HEAD/games/Chess/assets/pieces/dubrovny/white_rook.png -------------------------------------------------------------------------------- /games/Chess/assets/pieces/fantasy/black_king.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroclutch/gamebot/HEAD/games/Chess/assets/pieces/fantasy/black_king.png -------------------------------------------------------------------------------- /games/Chess/assets/pieces/fantasy/black_pawn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroclutch/gamebot/HEAD/games/Chess/assets/pieces/fantasy/black_pawn.png -------------------------------------------------------------------------------- /games/Chess/assets/pieces/fantasy/black_queen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroclutch/gamebot/HEAD/games/Chess/assets/pieces/fantasy/black_queen.png -------------------------------------------------------------------------------- /games/Chess/assets/pieces/fantasy/black_rook.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroclutch/gamebot/HEAD/games/Chess/assets/pieces/fantasy/black_rook.png -------------------------------------------------------------------------------- /games/Chess/assets/pieces/fantasy/white_king.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroclutch/gamebot/HEAD/games/Chess/assets/pieces/fantasy/white_king.png -------------------------------------------------------------------------------- /games/Chess/assets/pieces/fantasy/white_pawn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroclutch/gamebot/HEAD/games/Chess/assets/pieces/fantasy/white_pawn.png -------------------------------------------------------------------------------- /games/Chess/assets/pieces/fantasy/white_queen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroclutch/gamebot/HEAD/games/Chess/assets/pieces/fantasy/white_queen.png -------------------------------------------------------------------------------- /games/Chess/assets/pieces/fantasy/white_rook.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroclutch/gamebot/HEAD/games/Chess/assets/pieces/fantasy/white_rook.png -------------------------------------------------------------------------------- /games/Chess/assets/pieces/fresca/black_bishop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroclutch/gamebot/HEAD/games/Chess/assets/pieces/fresca/black_bishop.png -------------------------------------------------------------------------------- /games/Chess/assets/pieces/fresca/black_king.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroclutch/gamebot/HEAD/games/Chess/assets/pieces/fresca/black_king.png -------------------------------------------------------------------------------- /games/Chess/assets/pieces/fresca/black_knight.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroclutch/gamebot/HEAD/games/Chess/assets/pieces/fresca/black_knight.png -------------------------------------------------------------------------------- /games/Chess/assets/pieces/fresca/black_pawn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroclutch/gamebot/HEAD/games/Chess/assets/pieces/fresca/black_pawn.png -------------------------------------------------------------------------------- /games/Chess/assets/pieces/fresca/black_queen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroclutch/gamebot/HEAD/games/Chess/assets/pieces/fresca/black_queen.png -------------------------------------------------------------------------------- /games/Chess/assets/pieces/fresca/black_rook.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroclutch/gamebot/HEAD/games/Chess/assets/pieces/fresca/black_rook.png -------------------------------------------------------------------------------- /games/Chess/assets/pieces/fresca/white_bishop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroclutch/gamebot/HEAD/games/Chess/assets/pieces/fresca/white_bishop.png -------------------------------------------------------------------------------- /games/Chess/assets/pieces/fresca/white_king.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroclutch/gamebot/HEAD/games/Chess/assets/pieces/fresca/white_king.png -------------------------------------------------------------------------------- /games/Chess/assets/pieces/fresca/white_knight.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroclutch/gamebot/HEAD/games/Chess/assets/pieces/fresca/white_knight.png -------------------------------------------------------------------------------- /games/Chess/assets/pieces/fresca/white_pawn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroclutch/gamebot/HEAD/games/Chess/assets/pieces/fresca/white_pawn.png -------------------------------------------------------------------------------- /games/Chess/assets/pieces/fresca/white_queen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroclutch/gamebot/HEAD/games/Chess/assets/pieces/fresca/white_queen.png -------------------------------------------------------------------------------- /games/Chess/assets/pieces/fresca/white_rook.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroclutch/gamebot/HEAD/games/Chess/assets/pieces/fresca/white_rook.png -------------------------------------------------------------------------------- /games/Chess/assets/pieces/gioco/black_bishop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroclutch/gamebot/HEAD/games/Chess/assets/pieces/gioco/black_bishop.png -------------------------------------------------------------------------------- /games/Chess/assets/pieces/gioco/black_king.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroclutch/gamebot/HEAD/games/Chess/assets/pieces/gioco/black_king.png -------------------------------------------------------------------------------- /games/Chess/assets/pieces/gioco/black_knight.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroclutch/gamebot/HEAD/games/Chess/assets/pieces/gioco/black_knight.png -------------------------------------------------------------------------------- /games/Chess/assets/pieces/gioco/black_pawn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroclutch/gamebot/HEAD/games/Chess/assets/pieces/gioco/black_pawn.png -------------------------------------------------------------------------------- /games/Chess/assets/pieces/gioco/black_queen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroclutch/gamebot/HEAD/games/Chess/assets/pieces/gioco/black_queen.png -------------------------------------------------------------------------------- /games/Chess/assets/pieces/gioco/black_rook.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroclutch/gamebot/HEAD/games/Chess/assets/pieces/gioco/black_rook.png -------------------------------------------------------------------------------- /games/Chess/assets/pieces/gioco/white_bishop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroclutch/gamebot/HEAD/games/Chess/assets/pieces/gioco/white_bishop.png -------------------------------------------------------------------------------- /games/Chess/assets/pieces/gioco/white_king.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroclutch/gamebot/HEAD/games/Chess/assets/pieces/gioco/white_king.png -------------------------------------------------------------------------------- /games/Chess/assets/pieces/gioco/white_knight.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroclutch/gamebot/HEAD/games/Chess/assets/pieces/gioco/white_knight.png -------------------------------------------------------------------------------- /games/Chess/assets/pieces/gioco/white_pawn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroclutch/gamebot/HEAD/games/Chess/assets/pieces/gioco/white_pawn.png -------------------------------------------------------------------------------- /games/Chess/assets/pieces/gioco/white_queen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroclutch/gamebot/HEAD/games/Chess/assets/pieces/gioco/white_queen.png -------------------------------------------------------------------------------- /games/Chess/assets/pieces/gioco/white_rook.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroclutch/gamebot/HEAD/games/Chess/assets/pieces/gioco/white_rook.png -------------------------------------------------------------------------------- /games/Chess/assets/pieces/governor/black_king.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroclutch/gamebot/HEAD/games/Chess/assets/pieces/governor/black_king.png -------------------------------------------------------------------------------- /games/Chess/assets/pieces/governor/black_pawn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroclutch/gamebot/HEAD/games/Chess/assets/pieces/governor/black_pawn.png -------------------------------------------------------------------------------- /games/Chess/assets/pieces/governor/black_rook.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroclutch/gamebot/HEAD/games/Chess/assets/pieces/governor/black_rook.png -------------------------------------------------------------------------------- /games/Chess/assets/pieces/governor/white_king.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroclutch/gamebot/HEAD/games/Chess/assets/pieces/governor/white_king.png -------------------------------------------------------------------------------- /games/Chess/assets/pieces/governor/white_pawn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroclutch/gamebot/HEAD/games/Chess/assets/pieces/governor/white_pawn.png -------------------------------------------------------------------------------- /games/Chess/assets/pieces/governor/white_rook.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroclutch/gamebot/HEAD/games/Chess/assets/pieces/governor/white_rook.png -------------------------------------------------------------------------------- /games/Chess/assets/pieces/icpieces/black_king.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroclutch/gamebot/HEAD/games/Chess/assets/pieces/icpieces/black_king.png -------------------------------------------------------------------------------- /games/Chess/assets/pieces/icpieces/black_pawn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroclutch/gamebot/HEAD/games/Chess/assets/pieces/icpieces/black_pawn.png -------------------------------------------------------------------------------- /games/Chess/assets/pieces/icpieces/black_rook.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroclutch/gamebot/HEAD/games/Chess/assets/pieces/icpieces/black_rook.png -------------------------------------------------------------------------------- /games/Chess/assets/pieces/icpieces/white_king.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroclutch/gamebot/HEAD/games/Chess/assets/pieces/icpieces/white_king.png -------------------------------------------------------------------------------- /games/Chess/assets/pieces/icpieces/white_pawn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroclutch/gamebot/HEAD/games/Chess/assets/pieces/icpieces/white_pawn.png -------------------------------------------------------------------------------- /games/Chess/assets/pieces/icpieces/white_rook.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroclutch/gamebot/HEAD/games/Chess/assets/pieces/icpieces/white_rook.png -------------------------------------------------------------------------------- /games/Chess/assets/pieces/kosal/black_bishop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroclutch/gamebot/HEAD/games/Chess/assets/pieces/kosal/black_bishop.png -------------------------------------------------------------------------------- /games/Chess/assets/pieces/kosal/black_king.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroclutch/gamebot/HEAD/games/Chess/assets/pieces/kosal/black_king.png -------------------------------------------------------------------------------- /games/Chess/assets/pieces/kosal/black_knight.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroclutch/gamebot/HEAD/games/Chess/assets/pieces/kosal/black_knight.png -------------------------------------------------------------------------------- /games/Chess/assets/pieces/kosal/black_pawn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroclutch/gamebot/HEAD/games/Chess/assets/pieces/kosal/black_pawn.png -------------------------------------------------------------------------------- /games/Chess/assets/pieces/kosal/black_queen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroclutch/gamebot/HEAD/games/Chess/assets/pieces/kosal/black_queen.png -------------------------------------------------------------------------------- /games/Chess/assets/pieces/kosal/black_rook.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroclutch/gamebot/HEAD/games/Chess/assets/pieces/kosal/black_rook.png -------------------------------------------------------------------------------- /games/Chess/assets/pieces/kosal/white_bishop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroclutch/gamebot/HEAD/games/Chess/assets/pieces/kosal/white_bishop.png -------------------------------------------------------------------------------- /games/Chess/assets/pieces/kosal/white_king.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroclutch/gamebot/HEAD/games/Chess/assets/pieces/kosal/white_king.png -------------------------------------------------------------------------------- /games/Chess/assets/pieces/kosal/white_knight.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroclutch/gamebot/HEAD/games/Chess/assets/pieces/kosal/white_knight.png -------------------------------------------------------------------------------- /games/Chess/assets/pieces/kosal/white_pawn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroclutch/gamebot/HEAD/games/Chess/assets/pieces/kosal/white_pawn.png -------------------------------------------------------------------------------- /games/Chess/assets/pieces/kosal/white_queen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroclutch/gamebot/HEAD/games/Chess/assets/pieces/kosal/white_queen.png -------------------------------------------------------------------------------- /games/Chess/assets/pieces/kosal/white_rook.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroclutch/gamebot/HEAD/games/Chess/assets/pieces/kosal/white_rook.png -------------------------------------------------------------------------------- /games/Chess/assets/pieces/leipzig/black_king.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroclutch/gamebot/HEAD/games/Chess/assets/pieces/leipzig/black_king.png -------------------------------------------------------------------------------- /games/Chess/assets/pieces/leipzig/black_pawn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroclutch/gamebot/HEAD/games/Chess/assets/pieces/leipzig/black_pawn.png -------------------------------------------------------------------------------- /games/Chess/assets/pieces/leipzig/black_queen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroclutch/gamebot/HEAD/games/Chess/assets/pieces/leipzig/black_queen.png -------------------------------------------------------------------------------- /games/Chess/assets/pieces/leipzig/black_rook.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroclutch/gamebot/HEAD/games/Chess/assets/pieces/leipzig/black_rook.png -------------------------------------------------------------------------------- /games/Chess/assets/pieces/leipzig/white_king.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroclutch/gamebot/HEAD/games/Chess/assets/pieces/leipzig/white_king.png -------------------------------------------------------------------------------- /games/Chess/assets/pieces/leipzig/white_pawn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroclutch/gamebot/HEAD/games/Chess/assets/pieces/leipzig/white_pawn.png -------------------------------------------------------------------------------- /games/Chess/assets/pieces/leipzig/white_queen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroclutch/gamebot/HEAD/games/Chess/assets/pieces/leipzig/white_queen.png -------------------------------------------------------------------------------- /games/Chess/assets/pieces/leipzig/white_rook.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroclutch/gamebot/HEAD/games/Chess/assets/pieces/leipzig/white_rook.png -------------------------------------------------------------------------------- /games/Chess/assets/pieces/letter/black_bishop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroclutch/gamebot/HEAD/games/Chess/assets/pieces/letter/black_bishop.png -------------------------------------------------------------------------------- /games/Chess/assets/pieces/letter/black_king.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroclutch/gamebot/HEAD/games/Chess/assets/pieces/letter/black_king.png -------------------------------------------------------------------------------- /games/Chess/assets/pieces/letter/black_knight.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroclutch/gamebot/HEAD/games/Chess/assets/pieces/letter/black_knight.png -------------------------------------------------------------------------------- /games/Chess/assets/pieces/letter/black_pawn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroclutch/gamebot/HEAD/games/Chess/assets/pieces/letter/black_pawn.png -------------------------------------------------------------------------------- /games/Chess/assets/pieces/letter/black_queen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroclutch/gamebot/HEAD/games/Chess/assets/pieces/letter/black_queen.png -------------------------------------------------------------------------------- /games/Chess/assets/pieces/letter/black_rook.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroclutch/gamebot/HEAD/games/Chess/assets/pieces/letter/black_rook.png -------------------------------------------------------------------------------- /games/Chess/assets/pieces/letter/white_bishop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroclutch/gamebot/HEAD/games/Chess/assets/pieces/letter/white_bishop.png -------------------------------------------------------------------------------- /games/Chess/assets/pieces/letter/white_king.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroclutch/gamebot/HEAD/games/Chess/assets/pieces/letter/white_king.png -------------------------------------------------------------------------------- /games/Chess/assets/pieces/letter/white_knight.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroclutch/gamebot/HEAD/games/Chess/assets/pieces/letter/white_knight.png -------------------------------------------------------------------------------- /games/Chess/assets/pieces/letter/white_pawn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroclutch/gamebot/HEAD/games/Chess/assets/pieces/letter/white_pawn.png -------------------------------------------------------------------------------- /games/Chess/assets/pieces/letter/white_queen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroclutch/gamebot/HEAD/games/Chess/assets/pieces/letter/white_queen.png -------------------------------------------------------------------------------- /games/Chess/assets/pieces/letter/white_rook.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroclutch/gamebot/HEAD/games/Chess/assets/pieces/letter/white_rook.png -------------------------------------------------------------------------------- /games/Chess/assets/pieces/maestro/black_king.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroclutch/gamebot/HEAD/games/Chess/assets/pieces/maestro/black_king.png -------------------------------------------------------------------------------- /games/Chess/assets/pieces/maestro/black_pawn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroclutch/gamebot/HEAD/games/Chess/assets/pieces/maestro/black_pawn.png -------------------------------------------------------------------------------- /games/Chess/assets/pieces/maestro/black_queen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroclutch/gamebot/HEAD/games/Chess/assets/pieces/maestro/black_queen.png -------------------------------------------------------------------------------- /games/Chess/assets/pieces/maestro/black_rook.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroclutch/gamebot/HEAD/games/Chess/assets/pieces/maestro/black_rook.png -------------------------------------------------------------------------------- /games/Chess/assets/pieces/maestro/white_king.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroclutch/gamebot/HEAD/games/Chess/assets/pieces/maestro/white_king.png -------------------------------------------------------------------------------- /games/Chess/assets/pieces/maestro/white_pawn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroclutch/gamebot/HEAD/games/Chess/assets/pieces/maestro/white_pawn.png -------------------------------------------------------------------------------- /games/Chess/assets/pieces/maestro/white_queen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroclutch/gamebot/HEAD/games/Chess/assets/pieces/maestro/white_queen.png -------------------------------------------------------------------------------- /games/Chess/assets/pieces/maestro/white_rook.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroclutch/gamebot/HEAD/games/Chess/assets/pieces/maestro/white_rook.png -------------------------------------------------------------------------------- /games/Chess/assets/pieces/merida/black_bishop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroclutch/gamebot/HEAD/games/Chess/assets/pieces/merida/black_bishop.png -------------------------------------------------------------------------------- /games/Chess/assets/pieces/merida/black_king.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroclutch/gamebot/HEAD/games/Chess/assets/pieces/merida/black_king.png -------------------------------------------------------------------------------- /games/Chess/assets/pieces/merida/black_knight.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroclutch/gamebot/HEAD/games/Chess/assets/pieces/merida/black_knight.png -------------------------------------------------------------------------------- /games/Chess/assets/pieces/merida/black_pawn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroclutch/gamebot/HEAD/games/Chess/assets/pieces/merida/black_pawn.png -------------------------------------------------------------------------------- /games/Chess/assets/pieces/merida/black_queen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroclutch/gamebot/HEAD/games/Chess/assets/pieces/merida/black_queen.png -------------------------------------------------------------------------------- /games/Chess/assets/pieces/merida/black_rook.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroclutch/gamebot/HEAD/games/Chess/assets/pieces/merida/black_rook.png -------------------------------------------------------------------------------- /games/Chess/assets/pieces/merida/white_bishop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroclutch/gamebot/HEAD/games/Chess/assets/pieces/merida/white_bishop.png -------------------------------------------------------------------------------- /games/Chess/assets/pieces/merida/white_king.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroclutch/gamebot/HEAD/games/Chess/assets/pieces/merida/white_king.png -------------------------------------------------------------------------------- /games/Chess/assets/pieces/merida/white_knight.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroclutch/gamebot/HEAD/games/Chess/assets/pieces/merida/white_knight.png -------------------------------------------------------------------------------- /games/Chess/assets/pieces/merida/white_pawn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroclutch/gamebot/HEAD/games/Chess/assets/pieces/merida/white_pawn.png -------------------------------------------------------------------------------- /games/Chess/assets/pieces/merida/white_queen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroclutch/gamebot/HEAD/games/Chess/assets/pieces/merida/white_queen.png -------------------------------------------------------------------------------- /games/Chess/assets/pieces/merida/white_rook.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroclutch/gamebot/HEAD/games/Chess/assets/pieces/merida/white_rook.png -------------------------------------------------------------------------------- /games/Chess/assets/pieces/pixel/black_bishop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroclutch/gamebot/HEAD/games/Chess/assets/pieces/pixel/black_bishop.png -------------------------------------------------------------------------------- /games/Chess/assets/pieces/pixel/black_king.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroclutch/gamebot/HEAD/games/Chess/assets/pieces/pixel/black_king.png -------------------------------------------------------------------------------- /games/Chess/assets/pieces/pixel/black_knight.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroclutch/gamebot/HEAD/games/Chess/assets/pieces/pixel/black_knight.png -------------------------------------------------------------------------------- /games/Chess/assets/pieces/pixel/black_pawn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroclutch/gamebot/HEAD/games/Chess/assets/pieces/pixel/black_pawn.png -------------------------------------------------------------------------------- /games/Chess/assets/pieces/pixel/black_queen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroclutch/gamebot/HEAD/games/Chess/assets/pieces/pixel/black_queen.png -------------------------------------------------------------------------------- /games/Chess/assets/pieces/pixel/black_rook.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroclutch/gamebot/HEAD/games/Chess/assets/pieces/pixel/black_rook.png -------------------------------------------------------------------------------- /games/Chess/assets/pieces/pixel/white_bishop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroclutch/gamebot/HEAD/games/Chess/assets/pieces/pixel/white_bishop.png -------------------------------------------------------------------------------- /games/Chess/assets/pieces/pixel/white_king.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroclutch/gamebot/HEAD/games/Chess/assets/pieces/pixel/white_king.png -------------------------------------------------------------------------------- /games/Chess/assets/pieces/pixel/white_knight.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroclutch/gamebot/HEAD/games/Chess/assets/pieces/pixel/white_knight.png -------------------------------------------------------------------------------- /games/Chess/assets/pieces/pixel/white_pawn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroclutch/gamebot/HEAD/games/Chess/assets/pieces/pixel/white_pawn.png -------------------------------------------------------------------------------- /games/Chess/assets/pieces/pixel/white_queen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroclutch/gamebot/HEAD/games/Chess/assets/pieces/pixel/white_queen.png -------------------------------------------------------------------------------- /games/Chess/assets/pieces/pixel/white_rook.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroclutch/gamebot/HEAD/games/Chess/assets/pieces/pixel/white_rook.png -------------------------------------------------------------------------------- /games/Chess/assets/pieces/riohacha/black_king.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroclutch/gamebot/HEAD/games/Chess/assets/pieces/riohacha/black_king.png -------------------------------------------------------------------------------- /games/Chess/assets/pieces/riohacha/black_pawn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroclutch/gamebot/HEAD/games/Chess/assets/pieces/riohacha/black_pawn.png -------------------------------------------------------------------------------- /games/Chess/assets/pieces/riohacha/black_rook.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroclutch/gamebot/HEAD/games/Chess/assets/pieces/riohacha/black_rook.png -------------------------------------------------------------------------------- /games/Chess/assets/pieces/riohacha/white_king.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroclutch/gamebot/HEAD/games/Chess/assets/pieces/riohacha/white_king.png -------------------------------------------------------------------------------- /games/Chess/assets/pieces/riohacha/white_pawn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroclutch/gamebot/HEAD/games/Chess/assets/pieces/riohacha/white_pawn.png -------------------------------------------------------------------------------- /games/Chess/assets/pieces/riohacha/white_rook.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroclutch/gamebot/HEAD/games/Chess/assets/pieces/riohacha/white_rook.png -------------------------------------------------------------------------------- /games/Chess/assets/pieces/shapes/black_bishop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroclutch/gamebot/HEAD/games/Chess/assets/pieces/shapes/black_bishop.png -------------------------------------------------------------------------------- /games/Chess/assets/pieces/shapes/black_king.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroclutch/gamebot/HEAD/games/Chess/assets/pieces/shapes/black_king.png -------------------------------------------------------------------------------- /games/Chess/assets/pieces/shapes/black_knight.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroclutch/gamebot/HEAD/games/Chess/assets/pieces/shapes/black_knight.png -------------------------------------------------------------------------------- /games/Chess/assets/pieces/shapes/black_pawn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroclutch/gamebot/HEAD/games/Chess/assets/pieces/shapes/black_pawn.png -------------------------------------------------------------------------------- /games/Chess/assets/pieces/shapes/black_queen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroclutch/gamebot/HEAD/games/Chess/assets/pieces/shapes/black_queen.png -------------------------------------------------------------------------------- /games/Chess/assets/pieces/shapes/black_rook.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroclutch/gamebot/HEAD/games/Chess/assets/pieces/shapes/black_rook.png -------------------------------------------------------------------------------- /games/Chess/assets/pieces/shapes/white_bishop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroclutch/gamebot/HEAD/games/Chess/assets/pieces/shapes/white_bishop.png -------------------------------------------------------------------------------- /games/Chess/assets/pieces/shapes/white_king.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroclutch/gamebot/HEAD/games/Chess/assets/pieces/shapes/white_king.png -------------------------------------------------------------------------------- /games/Chess/assets/pieces/shapes/white_knight.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroclutch/gamebot/HEAD/games/Chess/assets/pieces/shapes/white_knight.png -------------------------------------------------------------------------------- /games/Chess/assets/pieces/shapes/white_pawn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroclutch/gamebot/HEAD/games/Chess/assets/pieces/shapes/white_pawn.png -------------------------------------------------------------------------------- /games/Chess/assets/pieces/shapes/white_queen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroclutch/gamebot/HEAD/games/Chess/assets/pieces/shapes/white_queen.png -------------------------------------------------------------------------------- /games/Chess/assets/pieces/shapes/white_rook.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroclutch/gamebot/HEAD/games/Chess/assets/pieces/shapes/white_rook.png -------------------------------------------------------------------------------- /games/Chess/assets/pieces/spatial/black_king.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroclutch/gamebot/HEAD/games/Chess/assets/pieces/spatial/black_king.png -------------------------------------------------------------------------------- /games/Chess/assets/pieces/spatial/black_pawn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroclutch/gamebot/HEAD/games/Chess/assets/pieces/spatial/black_pawn.png -------------------------------------------------------------------------------- /games/Chess/assets/pieces/spatial/black_queen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroclutch/gamebot/HEAD/games/Chess/assets/pieces/spatial/black_queen.png -------------------------------------------------------------------------------- /games/Chess/assets/pieces/spatial/black_rook.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroclutch/gamebot/HEAD/games/Chess/assets/pieces/spatial/black_rook.png -------------------------------------------------------------------------------- /games/Chess/assets/pieces/spatial/white_king.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroclutch/gamebot/HEAD/games/Chess/assets/pieces/spatial/white_king.png -------------------------------------------------------------------------------- /games/Chess/assets/pieces/spatial/white_pawn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroclutch/gamebot/HEAD/games/Chess/assets/pieces/spatial/white_pawn.png -------------------------------------------------------------------------------- /games/Chess/assets/pieces/spatial/white_queen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroclutch/gamebot/HEAD/games/Chess/assets/pieces/spatial/white_queen.png -------------------------------------------------------------------------------- /games/Chess/assets/pieces/spatial/white_rook.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroclutch/gamebot/HEAD/games/Chess/assets/pieces/spatial/white_rook.png -------------------------------------------------------------------------------- /games/Chess/assets/pieces/staunty/black_king.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroclutch/gamebot/HEAD/games/Chess/assets/pieces/staunty/black_king.png -------------------------------------------------------------------------------- /games/Chess/assets/pieces/staunty/black_pawn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroclutch/gamebot/HEAD/games/Chess/assets/pieces/staunty/black_pawn.png -------------------------------------------------------------------------------- /games/Chess/assets/pieces/staunty/black_queen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroclutch/gamebot/HEAD/games/Chess/assets/pieces/staunty/black_queen.png -------------------------------------------------------------------------------- /games/Chess/assets/pieces/staunty/black_rook.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroclutch/gamebot/HEAD/games/Chess/assets/pieces/staunty/black_rook.png -------------------------------------------------------------------------------- /games/Chess/assets/pieces/staunty/white_king.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroclutch/gamebot/HEAD/games/Chess/assets/pieces/staunty/white_king.png -------------------------------------------------------------------------------- /games/Chess/assets/pieces/staunty/white_pawn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroclutch/gamebot/HEAD/games/Chess/assets/pieces/staunty/white_pawn.png -------------------------------------------------------------------------------- /games/Chess/assets/pieces/staunty/white_queen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroclutch/gamebot/HEAD/games/Chess/assets/pieces/staunty/white_queen.png -------------------------------------------------------------------------------- /games/Chess/assets/pieces/staunty/white_rook.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroclutch/gamebot/HEAD/games/Chess/assets/pieces/staunty/white_rook.png -------------------------------------------------------------------------------- /games/Chess/assets/pieces/tatiana/black_king.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroclutch/gamebot/HEAD/games/Chess/assets/pieces/tatiana/black_king.png -------------------------------------------------------------------------------- /games/Chess/assets/pieces/tatiana/black_pawn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroclutch/gamebot/HEAD/games/Chess/assets/pieces/tatiana/black_pawn.png -------------------------------------------------------------------------------- /games/Chess/assets/pieces/tatiana/black_queen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroclutch/gamebot/HEAD/games/Chess/assets/pieces/tatiana/black_queen.png -------------------------------------------------------------------------------- /games/Chess/assets/pieces/tatiana/black_rook.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroclutch/gamebot/HEAD/games/Chess/assets/pieces/tatiana/black_rook.png -------------------------------------------------------------------------------- /games/Chess/assets/pieces/tatiana/white_king.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroclutch/gamebot/HEAD/games/Chess/assets/pieces/tatiana/white_king.png -------------------------------------------------------------------------------- /games/Chess/assets/pieces/tatiana/white_pawn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroclutch/gamebot/HEAD/games/Chess/assets/pieces/tatiana/white_pawn.png -------------------------------------------------------------------------------- /games/Chess/assets/pieces/tatiana/white_queen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroclutch/gamebot/HEAD/games/Chess/assets/pieces/tatiana/white_queen.png -------------------------------------------------------------------------------- /games/Chess/assets/pieces/tatiana/white_rook.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroclutch/gamebot/HEAD/games/Chess/assets/pieces/tatiana/white_rook.png -------------------------------------------------------------------------------- /games/Chess/classes/Chess.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroclutch/gamebot/HEAD/games/Chess/classes/Chess.js -------------------------------------------------------------------------------- /games/Chess/classes/LichessAPI.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroclutch/gamebot/HEAD/games/Chess/classes/LichessAPI.js -------------------------------------------------------------------------------- /games/Chess/commands/movehelp.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroclutch/gamebot/HEAD/games/Chess/commands/movehelp.js -------------------------------------------------------------------------------- /games/Chess/commands/resign.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroclutch/gamebot/HEAD/games/Chess/commands/resign.js -------------------------------------------------------------------------------- /games/Chess/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroclutch/gamebot/HEAD/games/Chess/main.js -------------------------------------------------------------------------------- /games/Chess/metadata.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroclutch/gamebot/HEAD/games/Chess/metadata.js -------------------------------------------------------------------------------- /games/Connect Four/classes/ConnectFour.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroclutch/gamebot/HEAD/games/Connect Four/classes/ConnectFour.js -------------------------------------------------------------------------------- /games/Connect Four/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroclutch/gamebot/HEAD/games/Connect Four/main.js -------------------------------------------------------------------------------- /games/Connect Four/metadata.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroclutch/gamebot/HEAD/games/Connect Four/metadata.js -------------------------------------------------------------------------------- /games/Othello/assets/boards/Antique Oak.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroclutch/gamebot/HEAD/games/Othello/assets/boards/Antique Oak.jpg -------------------------------------------------------------------------------- /games/Othello/assets/boards/Basic.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroclutch/gamebot/HEAD/games/Othello/assets/boards/Basic.jpg -------------------------------------------------------------------------------- /games/Othello/assets/boards/Blue Canvas.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroclutch/gamebot/HEAD/games/Othello/assets/boards/Blue Canvas.jpg -------------------------------------------------------------------------------- /games/Othello/assets/boards/Blue Marble.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroclutch/gamebot/HEAD/games/Othello/assets/boards/Blue Marble.jpg -------------------------------------------------------------------------------- /games/Othello/assets/boards/Candy Flavored.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroclutch/gamebot/HEAD/games/Othello/assets/boards/Candy Flavored.jpg -------------------------------------------------------------------------------- /games/Othello/assets/boards/Emerald.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroclutch/gamebot/HEAD/games/Othello/assets/boards/Emerald.jpg -------------------------------------------------------------------------------- /games/Othello/assets/boards/Faux Wood.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroclutch/gamebot/HEAD/games/Othello/assets/boards/Faux Wood.jpg -------------------------------------------------------------------------------- /games/Othello/assets/boards/Gold Standard.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroclutch/gamebot/HEAD/games/Othello/assets/boards/Gold Standard.jpg -------------------------------------------------------------------------------- /games/Othello/assets/boards/Green Plastic.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroclutch/gamebot/HEAD/games/Othello/assets/boards/Green Plastic.jpg -------------------------------------------------------------------------------- /games/Othello/assets/boards/Metal.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroclutch/gamebot/HEAD/games/Othello/assets/boards/Metal.jpg -------------------------------------------------------------------------------- /games/Othello/assets/boards/Modern Maple.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroclutch/gamebot/HEAD/games/Othello/assets/boards/Modern Maple.jpg -------------------------------------------------------------------------------- /games/Othello/assets/boards/Neo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroclutch/gamebot/HEAD/games/Othello/assets/boards/Neo.jpg -------------------------------------------------------------------------------- /games/Othello/assets/boards/Newspaper.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroclutch/gamebot/HEAD/games/Othello/assets/boards/Newspaper.jpg -------------------------------------------------------------------------------- /games/Othello/assets/boards/Pink Standard.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroclutch/gamebot/HEAD/games/Othello/assets/boards/Pink Standard.jpg -------------------------------------------------------------------------------- /games/Othello/assets/boards/Simple Brown.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroclutch/gamebot/HEAD/games/Othello/assets/boards/Simple Brown.jpg -------------------------------------------------------------------------------- /games/Othello/assets/boards/Simple Green.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroclutch/gamebot/HEAD/games/Othello/assets/boards/Simple Green.jpg -------------------------------------------------------------------------------- /games/Othello/assets/boards/Simple Purple.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroclutch/gamebot/HEAD/games/Othello/assets/boards/Simple Purple.jpg -------------------------------------------------------------------------------- /games/Othello/assets/boards/Simple Yellow.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroclutch/gamebot/HEAD/games/Othello/assets/boards/Simple Yellow.jpg -------------------------------------------------------------------------------- /games/Othello/assets/boards/Textured Lavender.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroclutch/gamebot/HEAD/games/Othello/assets/boards/Textured Lavender.jpg -------------------------------------------------------------------------------- /games/Othello/assets/border/border.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroclutch/gamebot/HEAD/games/Othello/assets/border/border.jpg -------------------------------------------------------------------------------- /games/Othello/assets/border/white-border.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroclutch/gamebot/HEAD/games/Othello/assets/border/white-border.jpg -------------------------------------------------------------------------------- /games/Othello/classes/Othello.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroclutch/gamebot/HEAD/games/Othello/classes/Othello.js -------------------------------------------------------------------------------- /games/Othello/commands/movehelp.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroclutch/gamebot/HEAD/games/Othello/commands/movehelp.js -------------------------------------------------------------------------------- /games/Othello/commands/resign.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroclutch/gamebot/HEAD/games/Othello/commands/resign.js -------------------------------------------------------------------------------- /games/Othello/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroclutch/gamebot/HEAD/games/Othello/main.js -------------------------------------------------------------------------------- /games/Othello/metadata.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroclutch/gamebot/HEAD/games/Othello/metadata.js -------------------------------------------------------------------------------- /games/Poker/classes/CardDeck.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroclutch/gamebot/HEAD/games/Poker/classes/CardDeck.js -------------------------------------------------------------------------------- /games/Poker/classes/Poker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroclutch/gamebot/HEAD/games/Poker/classes/Poker.js -------------------------------------------------------------------------------- /games/Poker/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroclutch/gamebot/HEAD/games/Poker/main.js -------------------------------------------------------------------------------- /games/Poker/metadata.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroclutch/gamebot/HEAD/games/Poker/metadata.js -------------------------------------------------------------------------------- /games/Survey Says/assets/data.enc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroclutch/gamebot/HEAD/games/Survey Says/assets/data.enc -------------------------------------------------------------------------------- /games/Survey Says/assets/less.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroclutch/gamebot/HEAD/games/Survey Says/assets/less.png -------------------------------------------------------------------------------- /games/Survey Says/assets/more.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroclutch/gamebot/HEAD/games/Survey Says/assets/more.png -------------------------------------------------------------------------------- /games/Survey Says/classes/SurveySays.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroclutch/gamebot/HEAD/games/Survey Says/classes/SurveySays.js -------------------------------------------------------------------------------- /games/Survey Says/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroclutch/gamebot/HEAD/games/Survey Says/main.js -------------------------------------------------------------------------------- /games/Survey Says/metadata.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroclutch/gamebot/HEAD/games/Survey Says/metadata.js -------------------------------------------------------------------------------- /games/Wisecracks/assets/promptsNSFW.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroclutch/gamebot/HEAD/games/Wisecracks/assets/promptsNSFW.txt -------------------------------------------------------------------------------- /games/Wisecracks/assets/promptsSFW.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroclutch/gamebot/HEAD/games/Wisecracks/assets/promptsSFW.txt -------------------------------------------------------------------------------- /games/Wisecracks/classes/PromptList.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroclutch/gamebot/HEAD/games/Wisecracks/classes/PromptList.js -------------------------------------------------------------------------------- /games/Wisecracks/classes/Wisecracks.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroclutch/gamebot/HEAD/games/Wisecracks/classes/Wisecracks.js -------------------------------------------------------------------------------- /games/Wisecracks/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroclutch/gamebot/HEAD/games/Wisecracks/main.js -------------------------------------------------------------------------------- /games/Wisecracks/metadata.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroclutch/gamebot/HEAD/games/Wisecracks/metadata.js -------------------------------------------------------------------------------- /games/_Game/classes/Game.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroclutch/gamebot/HEAD/games/_Game/classes/Game.js -------------------------------------------------------------------------------- /games/_Game/commands/add.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroclutch/gamebot/HEAD/games/_Game/commands/add.js -------------------------------------------------------------------------------- /games/_Game/commands/end.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroclutch/gamebot/HEAD/games/_Game/commands/end.js -------------------------------------------------------------------------------- /games/_Game/commands/evalg.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroclutch/gamebot/HEAD/games/_Game/commands/evalg.js -------------------------------------------------------------------------------- /games/_Game/commands/game.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroclutch/gamebot/HEAD/games/_Game/commands/game.js -------------------------------------------------------------------------------- /games/_Game/commands/kick.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroclutch/gamebot/HEAD/games/_Game/commands/kick.js -------------------------------------------------------------------------------- /games/_Game/commands/leader.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroclutch/gamebot/HEAD/games/_Game/commands/leader.js -------------------------------------------------------------------------------- /games/_Game/commands/leave.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroclutch/gamebot/HEAD/games/_Game/commands/leave.js -------------------------------------------------------------------------------- /games/_Game/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroclutch/gamebot/HEAD/games/_Game/main.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroclutch/gamebot/HEAD/package.json -------------------------------------------------------------------------------- /scripts/clientSetup.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroclutch/gamebot/HEAD/scripts/clientSetup.js -------------------------------------------------------------------------------- /scripts/logger.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroclutch/gamebot/HEAD/scripts/logger.js -------------------------------------------------------------------------------- /scripts/processSetup.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroclutch/gamebot/HEAD/scripts/processSetup.js -------------------------------------------------------------------------------- /server.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroclutch/gamebot/HEAD/server.js -------------------------------------------------------------------------------- /shrinkwrap.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroclutch/gamebot/HEAD/shrinkwrap.yaml -------------------------------------------------------------------------------- /test/cases/api.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroclutch/gamebot/HEAD/test/cases/api.test.js -------------------------------------------------------------------------------- /test/cases/commands.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroclutch/gamebot/HEAD/test/cases/commands.test.js -------------------------------------------------------------------------------- /test/cases/games.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroclutch/gamebot/HEAD/test/cases/games.test.js -------------------------------------------------------------------------------- /test/classes/DummyAccount.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroclutch/gamebot/HEAD/test/classes/DummyAccount.js -------------------------------------------------------------------------------- /test/classes/TestBot.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroclutch/gamebot/HEAD/test/classes/TestBot.js -------------------------------------------------------------------------------- /test/classes/test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroclutch/gamebot/HEAD/test/classes/test.js -------------------------------------------------------------------------------- /test/index.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroclutch/gamebot/HEAD/test/index.test.js -------------------------------------------------------------------------------- /types/auth/OAuth2Client.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroclutch/gamebot/HEAD/types/auth/OAuth2Client.js -------------------------------------------------------------------------------- /types/auth/Requester.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroclutch/gamebot/HEAD/types/auth/Requester.js -------------------------------------------------------------------------------- /types/command/BaseCommand.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroclutch/gamebot/HEAD/types/command/BaseCommand.js -------------------------------------------------------------------------------- /types/command/BotCommand.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroclutch/gamebot/HEAD/types/command/BotCommand.js -------------------------------------------------------------------------------- /types/command/CommandHandler.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroclutch/gamebot/HEAD/types/command/CommandHandler.js -------------------------------------------------------------------------------- /types/command/GameCommand.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroclutch/gamebot/HEAD/types/command/GameCommand.js -------------------------------------------------------------------------------- /types/database/DatabaseClient.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroclutch/gamebot/HEAD/types/database/DatabaseClient.js -------------------------------------------------------------------------------- /types/database/RewardsManager.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroclutch/gamebot/HEAD/types/database/RewardsManager.js -------------------------------------------------------------------------------- /types/database/ShopGenerator.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroclutch/gamebot/HEAD/types/database/ShopGenerator.js -------------------------------------------------------------------------------- /types/database/SubscriptionManager.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroclutch/gamebot/HEAD/types/database/SubscriptionManager.js -------------------------------------------------------------------------------- /types/error/GamebotError.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroclutch/gamebot/HEAD/types/error/GamebotError.js -------------------------------------------------------------------------------- /types/games/GameManager.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroclutch/gamebot/HEAD/types/games/GameManager.js -------------------------------------------------------------------------------- /types/games/Tournament.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroclutch/gamebot/HEAD/types/games/Tournament.js -------------------------------------------------------------------------------- /types/games/TournamentManager.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroclutch/gamebot/HEAD/types/games/TournamentManager.js -------------------------------------------------------------------------------- /types/log/Metrics.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroclutch/gamebot/HEAD/types/log/Metrics.js -------------------------------------------------------------------------------- /types/util/cryptography.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroclutch/gamebot/HEAD/types/util/cryptography.js -------------------------------------------------------------------------------- /types/util/games.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroclutch/gamebot/HEAD/types/util/games.js -------------------------------------------------------------------------------- /types/webui/WebUIClient.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroclutch/gamebot/HEAD/types/webui/WebUIClient.js -------------------------------------------------------------------------------- /types/webui/WebUIManager.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroclutch/gamebot/HEAD/types/webui/WebUIManager.js --------------------------------------------------------------------------------