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 <akrolsmir@gmail.com>
This commit is contained in:
marsteralex 2022-08-17 18:17:29 -07:00 committed by GitHub
parent 5bf39a7a92
commit fb67010c0e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -136,7 +136,11 @@ function determineIfSkip(card) {
} }
if (firstPrint) { if (firstPrint) {
if (whichGuesser == 'basic') { 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 return true
} }
} else { } else {