From fb67010c0ea8a3cabbdc00d1769bd3f42b8a9bbb Mon Sep 17 00:00:00 2001 From: marsteralex Date: Wed, 17 Aug 2022 18:17:29 -0700 Subject: [PATCH] include draft innovation basics (#771) * fix https * add beasts * Remove extra file * Prettier-ify code * Prettier-ify * add basic land guesser also added fetcher to filter all cards instead of only unique art * default to original makes basic better * added set symbol to basics added set symbol to the basics game mode. Changed name to "How Basic" * cleanup * changed some pixels * only load set data if needed * hacked fix for removing image from name * removed check from original * remove check from original * sort names by set instead of by set symbol * include battlebond Co-authored-by: Austin Chen --- web/public/mtg/app.js | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/web/public/mtg/app.js b/web/public/mtg/app.js index e6e46ae5..a2f7679b 100644 --- a/web/public/mtg/app.js +++ b/web/public/mtg/app.js @@ -136,7 +136,11 @@ function determineIfSkip(card) { } if (firstPrint) { if (whichGuesser == 'basic') { - if (card.set_type !== 'expansion' && card.set_type !== 'funny') { + if ( + card.set_type !== 'expansion' && + card.set_type !== 'funny' && + card.set_type !== 'draft_innovation' + ) { return true } } else {