├── .gitignore ├── LICENSE.md ├── README.md ├── custom_modules ├── additionalCards.json5 ├── baseCardNamesToIgnore.json5 ├── bulkUpdateCitations.js ├── createBackups.js ├── dailyEmails.js ├── getUnfinishedQuestion.js ├── postToSocials.js ├── questionMatchesSettings.js ├── rgUtils.js ├── shuffle.js ├── socialBot.js └── updateDataFiles.js ├── defaultPresetTemplates.json ├── discordBot.js ├── ecosystem.config.js ├── formats.json ├── gpt-fine-tuning-data.jsonl ├── gpt-test.js ├── package.json ├── playerNames.json ├── public_html ├── about │ ├── about.css │ ├── about.js │ └── index.html ├── admin-information │ ├── editor-hover.png │ ├── editor.png │ ├── index.html │ ├── preview-example.png │ ├── scripts.js │ ├── styles.css │ └── template-example.png ├── api │ ├── documentation │ │ ├── api-documentation.css │ │ └── index.html │ └── index.html ├── courses │ ├── course.css │ ├── course.js │ ├── courses.css │ ├── index.html │ ├── intermediate │ │ ├── how-to-use-the-comprehensive-rules │ │ │ └── index.html │ │ └── multi-part-cards │ │ │ ├── index.html │ │ │ └── mrd-183-grid-monitor.png │ └── introductory │ │ ├── card-types-and-layout │ │ ├── clb-247-owlbear-shepherd.png │ │ ├── index.html │ │ ├── m19-3-ajani-adversary-of-tyrants.png │ │ └── som-137-argentum-armor.png │ │ ├── combat │ │ └── index.html │ │ ├── game-overview │ │ └── index.html │ │ └── playing-cards-and-abilities │ │ ├── index.html │ │ ├── phed-33-counterspell.png │ │ └── vma-148-yawgmoth-s-will.png ├── favicons │ ├── android-chrome-192x192.png │ ├── apple-touch-icon.png │ ├── browserconfig.xml │ ├── favicon-16x16.png │ ├── favicon-32x32.png │ ├── favicon.ico │ ├── mstile-150x150.png │ ├── safari-pinned-tab.svg │ └── site.webmanifest ├── get-involved │ ├── get-involved.css │ └── index.html ├── globalResources │ ├── allTags.js │ ├── cardDisplays.css │ ├── colorIndicatorImages │ │ ├── B.svg │ │ ├── BG.svg │ │ ├── BR.svg │ │ ├── BRG.svg │ │ ├── G.svg │ │ ├── R.svg │ │ ├── RG.svg │ │ ├── U.svg │ │ ├── UB.svg │ │ ├── UBG.svg │ │ ├── UBR.svg │ │ ├── UBRG.svg │ │ ├── UG.svg │ │ ├── UR.svg │ │ ├── URG.svg │ │ ├── W.svg │ │ ├── WB.svg │ │ ├── WBG.svg │ │ ├── WBR.svg │ │ ├── WBRG.svg │ │ ├── WG.svg │ │ ├── WR.svg │ │ ├── WRG.svg │ │ ├── WU.svg │ │ ├── WUB.svg │ │ ├── WUBG.svg │ │ ├── WUBR.svg │ │ ├── WUBRG.svg │ │ ├── WUG.svg │ │ ├── WUR.svg │ │ └── WURG.svg │ ├── createCardDisplay.js │ ├── fonts │ │ ├── mana.eot │ │ ├── mana.svg │ │ ├── mana.ttf │ │ ├── mana.woff │ │ ├── mana.woff2 │ │ ├── mplantin.eot │ │ ├── mplantin.svg │ │ ├── mplantin.ttf │ │ └── mplantin.woff │ ├── globalcss.css │ ├── globaljs&html.js │ ├── icons │ │ ├── about-hover.png │ │ ├── about.png │ │ ├── contact-hover.png │ │ ├── contact.png │ │ ├── donate-hover.png │ │ ├── donate.png │ │ ├── red-x.png │ │ ├── settings-hover.png │ │ ├── settings.png │ │ ├── twitter-hover.png │ │ └── twitter.png │ ├── infoPageCss.css │ ├── loadingAnimationShapes.js │ ├── mana.min.css │ ├── replaceExpressions.js │ ├── searchLinks.js │ ├── sidebar.css │ ├── sidebarDelayedLoading.js │ ├── sidebarjs&html.js │ ├── symbols.js │ └── templateConvert.js ├── index.html ├── loadingControlFlow.js ├── playerNames.js ├── question-editor │ ├── cr-hover.png │ ├── cr.png │ ├── index.html │ ├── preview-favicons │ │ ├── android-chrome-192x192.png │ │ ├── android-chrome-512x512.png │ │ ├── apple-touch-icon.png │ │ ├── browserconfig.xml │ │ ├── favicon-16x16.png │ │ ├── favicon-32x32.png │ │ ├── favicon.ico │ │ ├── mstile-150x150.png │ │ ├── safari-pinned-tab.svg │ │ └── site.webmanifest │ ├── previewData.css │ ├── previewData.html │ ├── previewData.js │ ├── question-editor.css │ ├── question-editor.js │ ├── validateQuestion.js │ └── validationWorker.js ├── recognitions │ ├── AFR.png │ ├── KHM.png │ ├── MID.png │ ├── STX.png │ ├── VOW.png │ ├── ZNR.png │ ├── index.html │ └── recognitions.css ├── rulesguru.css ├── rulesguru.js ├── submit │ ├── index.html │ ├── submit.css │ └── submit.js └── trail-of-evidence.jpg ├── questionDatabaseUpdater.js ├── regularJobScheduling.js ├── server.js └── testCardData.json /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KingSupernova31/RulesGuru/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KingSupernova31/RulesGuru/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KingSupernova31/RulesGuru/HEAD/README.md -------------------------------------------------------------------------------- /custom_modules/additionalCards.json5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KingSupernova31/RulesGuru/HEAD/custom_modules/additionalCards.json5 -------------------------------------------------------------------------------- /custom_modules/baseCardNamesToIgnore.json5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KingSupernova31/RulesGuru/HEAD/custom_modules/baseCardNamesToIgnore.json5 -------------------------------------------------------------------------------- /custom_modules/bulkUpdateCitations.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KingSupernova31/RulesGuru/HEAD/custom_modules/bulkUpdateCitations.js -------------------------------------------------------------------------------- /custom_modules/createBackups.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KingSupernova31/RulesGuru/HEAD/custom_modules/createBackups.js -------------------------------------------------------------------------------- /custom_modules/dailyEmails.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KingSupernova31/RulesGuru/HEAD/custom_modules/dailyEmails.js -------------------------------------------------------------------------------- /custom_modules/getUnfinishedQuestion.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KingSupernova31/RulesGuru/HEAD/custom_modules/getUnfinishedQuestion.js -------------------------------------------------------------------------------- /custom_modules/postToSocials.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KingSupernova31/RulesGuru/HEAD/custom_modules/postToSocials.js -------------------------------------------------------------------------------- /custom_modules/questionMatchesSettings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KingSupernova31/RulesGuru/HEAD/custom_modules/questionMatchesSettings.js -------------------------------------------------------------------------------- /custom_modules/rgUtils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KingSupernova31/RulesGuru/HEAD/custom_modules/rgUtils.js -------------------------------------------------------------------------------- /custom_modules/shuffle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KingSupernova31/RulesGuru/HEAD/custom_modules/shuffle.js -------------------------------------------------------------------------------- /custom_modules/socialBot.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KingSupernova31/RulesGuru/HEAD/custom_modules/socialBot.js -------------------------------------------------------------------------------- /custom_modules/updateDataFiles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KingSupernova31/RulesGuru/HEAD/custom_modules/updateDataFiles.js -------------------------------------------------------------------------------- /defaultPresetTemplates.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KingSupernova31/RulesGuru/HEAD/defaultPresetTemplates.json -------------------------------------------------------------------------------- /discordBot.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KingSupernova31/RulesGuru/HEAD/discordBot.js -------------------------------------------------------------------------------- /ecosystem.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KingSupernova31/RulesGuru/HEAD/ecosystem.config.js -------------------------------------------------------------------------------- /formats.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KingSupernova31/RulesGuru/HEAD/formats.json -------------------------------------------------------------------------------- /gpt-fine-tuning-data.jsonl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KingSupernova31/RulesGuru/HEAD/gpt-fine-tuning-data.jsonl -------------------------------------------------------------------------------- /gpt-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KingSupernova31/RulesGuru/HEAD/gpt-test.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KingSupernova31/RulesGuru/HEAD/package.json -------------------------------------------------------------------------------- /playerNames.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KingSupernova31/RulesGuru/HEAD/playerNames.json -------------------------------------------------------------------------------- /public_html/about/about.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KingSupernova31/RulesGuru/HEAD/public_html/about/about.css -------------------------------------------------------------------------------- /public_html/about/about.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KingSupernova31/RulesGuru/HEAD/public_html/about/about.js -------------------------------------------------------------------------------- /public_html/about/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KingSupernova31/RulesGuru/HEAD/public_html/about/index.html -------------------------------------------------------------------------------- /public_html/admin-information/editor-hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KingSupernova31/RulesGuru/HEAD/public_html/admin-information/editor-hover.png -------------------------------------------------------------------------------- /public_html/admin-information/editor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KingSupernova31/RulesGuru/HEAD/public_html/admin-information/editor.png -------------------------------------------------------------------------------- /public_html/admin-information/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KingSupernova31/RulesGuru/HEAD/public_html/admin-information/index.html -------------------------------------------------------------------------------- /public_html/admin-information/preview-example.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KingSupernova31/RulesGuru/HEAD/public_html/admin-information/preview-example.png -------------------------------------------------------------------------------- /public_html/admin-information/scripts.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KingSupernova31/RulesGuru/HEAD/public_html/admin-information/scripts.js -------------------------------------------------------------------------------- /public_html/admin-information/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KingSupernova31/RulesGuru/HEAD/public_html/admin-information/styles.css -------------------------------------------------------------------------------- /public_html/admin-information/template-example.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KingSupernova31/RulesGuru/HEAD/public_html/admin-information/template-example.png -------------------------------------------------------------------------------- /public_html/api/documentation/api-documentation.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KingSupernova31/RulesGuru/HEAD/public_html/api/documentation/api-documentation.css -------------------------------------------------------------------------------- /public_html/api/documentation/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KingSupernova31/RulesGuru/HEAD/public_html/api/documentation/index.html -------------------------------------------------------------------------------- /public_html/api/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KingSupernova31/RulesGuru/HEAD/public_html/api/index.html -------------------------------------------------------------------------------- /public_html/courses/course.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KingSupernova31/RulesGuru/HEAD/public_html/courses/course.css -------------------------------------------------------------------------------- /public_html/courses/course.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KingSupernova31/RulesGuru/HEAD/public_html/courses/course.js -------------------------------------------------------------------------------- /public_html/courses/courses.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KingSupernova31/RulesGuru/HEAD/public_html/courses/courses.css -------------------------------------------------------------------------------- /public_html/courses/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KingSupernova31/RulesGuru/HEAD/public_html/courses/index.html -------------------------------------------------------------------------------- /public_html/courses/intermediate/how-to-use-the-comprehensive-rules/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KingSupernova31/RulesGuru/HEAD/public_html/courses/intermediate/how-to-use-the-comprehensive-rules/index.html -------------------------------------------------------------------------------- /public_html/courses/intermediate/multi-part-cards/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KingSupernova31/RulesGuru/HEAD/public_html/courses/intermediate/multi-part-cards/index.html -------------------------------------------------------------------------------- /public_html/courses/intermediate/multi-part-cards/mrd-183-grid-monitor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KingSupernova31/RulesGuru/HEAD/public_html/courses/intermediate/multi-part-cards/mrd-183-grid-monitor.png -------------------------------------------------------------------------------- /public_html/courses/introductory/card-types-and-layout/clb-247-owlbear-shepherd.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KingSupernova31/RulesGuru/HEAD/public_html/courses/introductory/card-types-and-layout/clb-247-owlbear-shepherd.png -------------------------------------------------------------------------------- /public_html/courses/introductory/card-types-and-layout/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KingSupernova31/RulesGuru/HEAD/public_html/courses/introductory/card-types-and-layout/index.html -------------------------------------------------------------------------------- /public_html/courses/introductory/card-types-and-layout/m19-3-ajani-adversary-of-tyrants.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KingSupernova31/RulesGuru/HEAD/public_html/courses/introductory/card-types-and-layout/m19-3-ajani-adversary-of-tyrants.png -------------------------------------------------------------------------------- /public_html/courses/introductory/card-types-and-layout/som-137-argentum-armor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KingSupernova31/RulesGuru/HEAD/public_html/courses/introductory/card-types-and-layout/som-137-argentum-armor.png -------------------------------------------------------------------------------- /public_html/courses/introductory/combat/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KingSupernova31/RulesGuru/HEAD/public_html/courses/introductory/combat/index.html -------------------------------------------------------------------------------- /public_html/courses/introductory/game-overview/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KingSupernova31/RulesGuru/HEAD/public_html/courses/introductory/game-overview/index.html -------------------------------------------------------------------------------- /public_html/courses/introductory/playing-cards-and-abilities/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KingSupernova31/RulesGuru/HEAD/public_html/courses/introductory/playing-cards-and-abilities/index.html -------------------------------------------------------------------------------- /public_html/courses/introductory/playing-cards-and-abilities/phed-33-counterspell.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KingSupernova31/RulesGuru/HEAD/public_html/courses/introductory/playing-cards-and-abilities/phed-33-counterspell.png -------------------------------------------------------------------------------- /public_html/courses/introductory/playing-cards-and-abilities/vma-148-yawgmoth-s-will.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KingSupernova31/RulesGuru/HEAD/public_html/courses/introductory/playing-cards-and-abilities/vma-148-yawgmoth-s-will.png -------------------------------------------------------------------------------- /public_html/favicons/android-chrome-192x192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KingSupernova31/RulesGuru/HEAD/public_html/favicons/android-chrome-192x192.png -------------------------------------------------------------------------------- /public_html/favicons/apple-touch-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KingSupernova31/RulesGuru/HEAD/public_html/favicons/apple-touch-icon.png -------------------------------------------------------------------------------- /public_html/favicons/browserconfig.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KingSupernova31/RulesGuru/HEAD/public_html/favicons/browserconfig.xml -------------------------------------------------------------------------------- /public_html/favicons/favicon-16x16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KingSupernova31/RulesGuru/HEAD/public_html/favicons/favicon-16x16.png -------------------------------------------------------------------------------- /public_html/favicons/favicon-32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KingSupernova31/RulesGuru/HEAD/public_html/favicons/favicon-32x32.png -------------------------------------------------------------------------------- /public_html/favicons/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KingSupernova31/RulesGuru/HEAD/public_html/favicons/favicon.ico -------------------------------------------------------------------------------- /public_html/favicons/mstile-150x150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KingSupernova31/RulesGuru/HEAD/public_html/favicons/mstile-150x150.png -------------------------------------------------------------------------------- /public_html/favicons/safari-pinned-tab.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KingSupernova31/RulesGuru/HEAD/public_html/favicons/safari-pinned-tab.svg -------------------------------------------------------------------------------- /public_html/favicons/site.webmanifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KingSupernova31/RulesGuru/HEAD/public_html/favicons/site.webmanifest -------------------------------------------------------------------------------- /public_html/get-involved/get-involved.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KingSupernova31/RulesGuru/HEAD/public_html/get-involved/get-involved.css -------------------------------------------------------------------------------- /public_html/get-involved/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KingSupernova31/RulesGuru/HEAD/public_html/get-involved/index.html -------------------------------------------------------------------------------- /public_html/globalResources/allTags.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KingSupernova31/RulesGuru/HEAD/public_html/globalResources/allTags.js -------------------------------------------------------------------------------- /public_html/globalResources/cardDisplays.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KingSupernova31/RulesGuru/HEAD/public_html/globalResources/cardDisplays.css -------------------------------------------------------------------------------- /public_html/globalResources/colorIndicatorImages/B.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KingSupernova31/RulesGuru/HEAD/public_html/globalResources/colorIndicatorImages/B.svg -------------------------------------------------------------------------------- /public_html/globalResources/colorIndicatorImages/BG.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KingSupernova31/RulesGuru/HEAD/public_html/globalResources/colorIndicatorImages/BG.svg -------------------------------------------------------------------------------- /public_html/globalResources/colorIndicatorImages/BR.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KingSupernova31/RulesGuru/HEAD/public_html/globalResources/colorIndicatorImages/BR.svg -------------------------------------------------------------------------------- /public_html/globalResources/colorIndicatorImages/BRG.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KingSupernova31/RulesGuru/HEAD/public_html/globalResources/colorIndicatorImages/BRG.svg -------------------------------------------------------------------------------- /public_html/globalResources/colorIndicatorImages/G.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KingSupernova31/RulesGuru/HEAD/public_html/globalResources/colorIndicatorImages/G.svg -------------------------------------------------------------------------------- /public_html/globalResources/colorIndicatorImages/R.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KingSupernova31/RulesGuru/HEAD/public_html/globalResources/colorIndicatorImages/R.svg -------------------------------------------------------------------------------- /public_html/globalResources/colorIndicatorImages/RG.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KingSupernova31/RulesGuru/HEAD/public_html/globalResources/colorIndicatorImages/RG.svg -------------------------------------------------------------------------------- /public_html/globalResources/colorIndicatorImages/U.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KingSupernova31/RulesGuru/HEAD/public_html/globalResources/colorIndicatorImages/U.svg -------------------------------------------------------------------------------- /public_html/globalResources/colorIndicatorImages/UB.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KingSupernova31/RulesGuru/HEAD/public_html/globalResources/colorIndicatorImages/UB.svg -------------------------------------------------------------------------------- /public_html/globalResources/colorIndicatorImages/UBG.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KingSupernova31/RulesGuru/HEAD/public_html/globalResources/colorIndicatorImages/UBG.svg -------------------------------------------------------------------------------- /public_html/globalResources/colorIndicatorImages/UBR.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KingSupernova31/RulesGuru/HEAD/public_html/globalResources/colorIndicatorImages/UBR.svg -------------------------------------------------------------------------------- /public_html/globalResources/colorIndicatorImages/UBRG.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KingSupernova31/RulesGuru/HEAD/public_html/globalResources/colorIndicatorImages/UBRG.svg -------------------------------------------------------------------------------- /public_html/globalResources/colorIndicatorImages/UG.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KingSupernova31/RulesGuru/HEAD/public_html/globalResources/colorIndicatorImages/UG.svg -------------------------------------------------------------------------------- /public_html/globalResources/colorIndicatorImages/UR.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KingSupernova31/RulesGuru/HEAD/public_html/globalResources/colorIndicatorImages/UR.svg -------------------------------------------------------------------------------- /public_html/globalResources/colorIndicatorImages/URG.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KingSupernova31/RulesGuru/HEAD/public_html/globalResources/colorIndicatorImages/URG.svg -------------------------------------------------------------------------------- /public_html/globalResources/colorIndicatorImages/W.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KingSupernova31/RulesGuru/HEAD/public_html/globalResources/colorIndicatorImages/W.svg -------------------------------------------------------------------------------- /public_html/globalResources/colorIndicatorImages/WB.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KingSupernova31/RulesGuru/HEAD/public_html/globalResources/colorIndicatorImages/WB.svg -------------------------------------------------------------------------------- /public_html/globalResources/colorIndicatorImages/WBG.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KingSupernova31/RulesGuru/HEAD/public_html/globalResources/colorIndicatorImages/WBG.svg -------------------------------------------------------------------------------- /public_html/globalResources/colorIndicatorImages/WBR.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KingSupernova31/RulesGuru/HEAD/public_html/globalResources/colorIndicatorImages/WBR.svg -------------------------------------------------------------------------------- /public_html/globalResources/colorIndicatorImages/WBRG.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KingSupernova31/RulesGuru/HEAD/public_html/globalResources/colorIndicatorImages/WBRG.svg -------------------------------------------------------------------------------- /public_html/globalResources/colorIndicatorImages/WG.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KingSupernova31/RulesGuru/HEAD/public_html/globalResources/colorIndicatorImages/WG.svg -------------------------------------------------------------------------------- /public_html/globalResources/colorIndicatorImages/WR.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KingSupernova31/RulesGuru/HEAD/public_html/globalResources/colorIndicatorImages/WR.svg -------------------------------------------------------------------------------- /public_html/globalResources/colorIndicatorImages/WRG.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KingSupernova31/RulesGuru/HEAD/public_html/globalResources/colorIndicatorImages/WRG.svg -------------------------------------------------------------------------------- /public_html/globalResources/colorIndicatorImages/WU.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KingSupernova31/RulesGuru/HEAD/public_html/globalResources/colorIndicatorImages/WU.svg -------------------------------------------------------------------------------- /public_html/globalResources/colorIndicatorImages/WUB.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KingSupernova31/RulesGuru/HEAD/public_html/globalResources/colorIndicatorImages/WUB.svg -------------------------------------------------------------------------------- /public_html/globalResources/colorIndicatorImages/WUBG.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KingSupernova31/RulesGuru/HEAD/public_html/globalResources/colorIndicatorImages/WUBG.svg -------------------------------------------------------------------------------- /public_html/globalResources/colorIndicatorImages/WUBR.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KingSupernova31/RulesGuru/HEAD/public_html/globalResources/colorIndicatorImages/WUBR.svg -------------------------------------------------------------------------------- /public_html/globalResources/colorIndicatorImages/WUBRG.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KingSupernova31/RulesGuru/HEAD/public_html/globalResources/colorIndicatorImages/WUBRG.svg -------------------------------------------------------------------------------- /public_html/globalResources/colorIndicatorImages/WUG.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KingSupernova31/RulesGuru/HEAD/public_html/globalResources/colorIndicatorImages/WUG.svg -------------------------------------------------------------------------------- /public_html/globalResources/colorIndicatorImages/WUR.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KingSupernova31/RulesGuru/HEAD/public_html/globalResources/colorIndicatorImages/WUR.svg -------------------------------------------------------------------------------- /public_html/globalResources/colorIndicatorImages/WURG.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KingSupernova31/RulesGuru/HEAD/public_html/globalResources/colorIndicatorImages/WURG.svg -------------------------------------------------------------------------------- /public_html/globalResources/createCardDisplay.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KingSupernova31/RulesGuru/HEAD/public_html/globalResources/createCardDisplay.js -------------------------------------------------------------------------------- /public_html/globalResources/fonts/mana.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KingSupernova31/RulesGuru/HEAD/public_html/globalResources/fonts/mana.eot -------------------------------------------------------------------------------- /public_html/globalResources/fonts/mana.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KingSupernova31/RulesGuru/HEAD/public_html/globalResources/fonts/mana.svg -------------------------------------------------------------------------------- /public_html/globalResources/fonts/mana.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KingSupernova31/RulesGuru/HEAD/public_html/globalResources/fonts/mana.ttf -------------------------------------------------------------------------------- /public_html/globalResources/fonts/mana.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KingSupernova31/RulesGuru/HEAD/public_html/globalResources/fonts/mana.woff -------------------------------------------------------------------------------- /public_html/globalResources/fonts/mana.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KingSupernova31/RulesGuru/HEAD/public_html/globalResources/fonts/mana.woff2 -------------------------------------------------------------------------------- /public_html/globalResources/fonts/mplantin.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KingSupernova31/RulesGuru/HEAD/public_html/globalResources/fonts/mplantin.eot -------------------------------------------------------------------------------- /public_html/globalResources/fonts/mplantin.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KingSupernova31/RulesGuru/HEAD/public_html/globalResources/fonts/mplantin.svg -------------------------------------------------------------------------------- /public_html/globalResources/fonts/mplantin.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KingSupernova31/RulesGuru/HEAD/public_html/globalResources/fonts/mplantin.ttf -------------------------------------------------------------------------------- /public_html/globalResources/fonts/mplantin.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KingSupernova31/RulesGuru/HEAD/public_html/globalResources/fonts/mplantin.woff -------------------------------------------------------------------------------- /public_html/globalResources/globalcss.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KingSupernova31/RulesGuru/HEAD/public_html/globalResources/globalcss.css -------------------------------------------------------------------------------- /public_html/globalResources/globaljs&html.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KingSupernova31/RulesGuru/HEAD/public_html/globalResources/globaljs&html.js -------------------------------------------------------------------------------- /public_html/globalResources/icons/about-hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KingSupernova31/RulesGuru/HEAD/public_html/globalResources/icons/about-hover.png -------------------------------------------------------------------------------- /public_html/globalResources/icons/about.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KingSupernova31/RulesGuru/HEAD/public_html/globalResources/icons/about.png -------------------------------------------------------------------------------- /public_html/globalResources/icons/contact-hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KingSupernova31/RulesGuru/HEAD/public_html/globalResources/icons/contact-hover.png -------------------------------------------------------------------------------- /public_html/globalResources/icons/contact.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KingSupernova31/RulesGuru/HEAD/public_html/globalResources/icons/contact.png -------------------------------------------------------------------------------- /public_html/globalResources/icons/donate-hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KingSupernova31/RulesGuru/HEAD/public_html/globalResources/icons/donate-hover.png -------------------------------------------------------------------------------- /public_html/globalResources/icons/donate.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KingSupernova31/RulesGuru/HEAD/public_html/globalResources/icons/donate.png -------------------------------------------------------------------------------- /public_html/globalResources/icons/red-x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KingSupernova31/RulesGuru/HEAD/public_html/globalResources/icons/red-x.png -------------------------------------------------------------------------------- /public_html/globalResources/icons/settings-hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KingSupernova31/RulesGuru/HEAD/public_html/globalResources/icons/settings-hover.png -------------------------------------------------------------------------------- /public_html/globalResources/icons/settings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KingSupernova31/RulesGuru/HEAD/public_html/globalResources/icons/settings.png -------------------------------------------------------------------------------- /public_html/globalResources/icons/twitter-hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KingSupernova31/RulesGuru/HEAD/public_html/globalResources/icons/twitter-hover.png -------------------------------------------------------------------------------- /public_html/globalResources/icons/twitter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KingSupernova31/RulesGuru/HEAD/public_html/globalResources/icons/twitter.png -------------------------------------------------------------------------------- /public_html/globalResources/infoPageCss.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KingSupernova31/RulesGuru/HEAD/public_html/globalResources/infoPageCss.css -------------------------------------------------------------------------------- /public_html/globalResources/loadingAnimationShapes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KingSupernova31/RulesGuru/HEAD/public_html/globalResources/loadingAnimationShapes.js -------------------------------------------------------------------------------- /public_html/globalResources/mana.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KingSupernova31/RulesGuru/HEAD/public_html/globalResources/mana.min.css -------------------------------------------------------------------------------- /public_html/globalResources/replaceExpressions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KingSupernova31/RulesGuru/HEAD/public_html/globalResources/replaceExpressions.js -------------------------------------------------------------------------------- /public_html/globalResources/searchLinks.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KingSupernova31/RulesGuru/HEAD/public_html/globalResources/searchLinks.js -------------------------------------------------------------------------------- /public_html/globalResources/sidebar.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KingSupernova31/RulesGuru/HEAD/public_html/globalResources/sidebar.css -------------------------------------------------------------------------------- /public_html/globalResources/sidebarDelayedLoading.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KingSupernova31/RulesGuru/HEAD/public_html/globalResources/sidebarDelayedLoading.js -------------------------------------------------------------------------------- /public_html/globalResources/sidebarjs&html.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KingSupernova31/RulesGuru/HEAD/public_html/globalResources/sidebarjs&html.js -------------------------------------------------------------------------------- /public_html/globalResources/symbols.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KingSupernova31/RulesGuru/HEAD/public_html/globalResources/symbols.js -------------------------------------------------------------------------------- /public_html/globalResources/templateConvert.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KingSupernova31/RulesGuru/HEAD/public_html/globalResources/templateConvert.js -------------------------------------------------------------------------------- /public_html/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KingSupernova31/RulesGuru/HEAD/public_html/index.html -------------------------------------------------------------------------------- /public_html/loadingControlFlow.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KingSupernova31/RulesGuru/HEAD/public_html/loadingControlFlow.js -------------------------------------------------------------------------------- /public_html/playerNames.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KingSupernova31/RulesGuru/HEAD/public_html/playerNames.js -------------------------------------------------------------------------------- /public_html/question-editor/cr-hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KingSupernova31/RulesGuru/HEAD/public_html/question-editor/cr-hover.png -------------------------------------------------------------------------------- /public_html/question-editor/cr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KingSupernova31/RulesGuru/HEAD/public_html/question-editor/cr.png -------------------------------------------------------------------------------- /public_html/question-editor/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KingSupernova31/RulesGuru/HEAD/public_html/question-editor/index.html -------------------------------------------------------------------------------- /public_html/question-editor/preview-favicons/android-chrome-192x192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KingSupernova31/RulesGuru/HEAD/public_html/question-editor/preview-favicons/android-chrome-192x192.png -------------------------------------------------------------------------------- /public_html/question-editor/preview-favicons/android-chrome-512x512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KingSupernova31/RulesGuru/HEAD/public_html/question-editor/preview-favicons/android-chrome-512x512.png -------------------------------------------------------------------------------- /public_html/question-editor/preview-favicons/apple-touch-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KingSupernova31/RulesGuru/HEAD/public_html/question-editor/preview-favicons/apple-touch-icon.png -------------------------------------------------------------------------------- /public_html/question-editor/preview-favicons/browserconfig.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KingSupernova31/RulesGuru/HEAD/public_html/question-editor/preview-favicons/browserconfig.xml -------------------------------------------------------------------------------- /public_html/question-editor/preview-favicons/favicon-16x16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KingSupernova31/RulesGuru/HEAD/public_html/question-editor/preview-favicons/favicon-16x16.png -------------------------------------------------------------------------------- /public_html/question-editor/preview-favicons/favicon-32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KingSupernova31/RulesGuru/HEAD/public_html/question-editor/preview-favicons/favicon-32x32.png -------------------------------------------------------------------------------- /public_html/question-editor/preview-favicons/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KingSupernova31/RulesGuru/HEAD/public_html/question-editor/preview-favicons/favicon.ico -------------------------------------------------------------------------------- /public_html/question-editor/preview-favicons/mstile-150x150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KingSupernova31/RulesGuru/HEAD/public_html/question-editor/preview-favicons/mstile-150x150.png -------------------------------------------------------------------------------- /public_html/question-editor/preview-favicons/safari-pinned-tab.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KingSupernova31/RulesGuru/HEAD/public_html/question-editor/preview-favicons/safari-pinned-tab.svg -------------------------------------------------------------------------------- /public_html/question-editor/preview-favicons/site.webmanifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KingSupernova31/RulesGuru/HEAD/public_html/question-editor/preview-favicons/site.webmanifest -------------------------------------------------------------------------------- /public_html/question-editor/previewData.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KingSupernova31/RulesGuru/HEAD/public_html/question-editor/previewData.css -------------------------------------------------------------------------------- /public_html/question-editor/previewData.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KingSupernova31/RulesGuru/HEAD/public_html/question-editor/previewData.html -------------------------------------------------------------------------------- /public_html/question-editor/previewData.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KingSupernova31/RulesGuru/HEAD/public_html/question-editor/previewData.js -------------------------------------------------------------------------------- /public_html/question-editor/question-editor.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KingSupernova31/RulesGuru/HEAD/public_html/question-editor/question-editor.css -------------------------------------------------------------------------------- /public_html/question-editor/question-editor.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KingSupernova31/RulesGuru/HEAD/public_html/question-editor/question-editor.js -------------------------------------------------------------------------------- /public_html/question-editor/validateQuestion.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KingSupernova31/RulesGuru/HEAD/public_html/question-editor/validateQuestion.js -------------------------------------------------------------------------------- /public_html/question-editor/validationWorker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KingSupernova31/RulesGuru/HEAD/public_html/question-editor/validationWorker.js -------------------------------------------------------------------------------- /public_html/recognitions/AFR.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KingSupernova31/RulesGuru/HEAD/public_html/recognitions/AFR.png -------------------------------------------------------------------------------- /public_html/recognitions/KHM.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KingSupernova31/RulesGuru/HEAD/public_html/recognitions/KHM.png -------------------------------------------------------------------------------- /public_html/recognitions/MID.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KingSupernova31/RulesGuru/HEAD/public_html/recognitions/MID.png -------------------------------------------------------------------------------- /public_html/recognitions/STX.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KingSupernova31/RulesGuru/HEAD/public_html/recognitions/STX.png -------------------------------------------------------------------------------- /public_html/recognitions/VOW.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KingSupernova31/RulesGuru/HEAD/public_html/recognitions/VOW.png -------------------------------------------------------------------------------- /public_html/recognitions/ZNR.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KingSupernova31/RulesGuru/HEAD/public_html/recognitions/ZNR.png -------------------------------------------------------------------------------- /public_html/recognitions/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KingSupernova31/RulesGuru/HEAD/public_html/recognitions/index.html -------------------------------------------------------------------------------- /public_html/recognitions/recognitions.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KingSupernova31/RulesGuru/HEAD/public_html/recognitions/recognitions.css -------------------------------------------------------------------------------- /public_html/rulesguru.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KingSupernova31/RulesGuru/HEAD/public_html/rulesguru.css -------------------------------------------------------------------------------- /public_html/rulesguru.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KingSupernova31/RulesGuru/HEAD/public_html/rulesguru.js -------------------------------------------------------------------------------- /public_html/submit/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KingSupernova31/RulesGuru/HEAD/public_html/submit/index.html -------------------------------------------------------------------------------- /public_html/submit/submit.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KingSupernova31/RulesGuru/HEAD/public_html/submit/submit.css -------------------------------------------------------------------------------- /public_html/submit/submit.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KingSupernova31/RulesGuru/HEAD/public_html/submit/submit.js -------------------------------------------------------------------------------- /public_html/trail-of-evidence.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KingSupernova31/RulesGuru/HEAD/public_html/trail-of-evidence.jpg -------------------------------------------------------------------------------- /questionDatabaseUpdater.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KingSupernova31/RulesGuru/HEAD/questionDatabaseUpdater.js -------------------------------------------------------------------------------- /regularJobScheduling.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KingSupernova31/RulesGuru/HEAD/regularJobScheduling.js -------------------------------------------------------------------------------- /server.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KingSupernova31/RulesGuru/HEAD/server.js -------------------------------------------------------------------------------- /testCardData.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KingSupernova31/RulesGuru/HEAD/testCardData.json --------------------------------------------------------------------------------