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:
parent
5bf39a7a92
commit
fb67010c0e
|
@ -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 {
|
||||||
|
|
Loading…
Reference in New Issue
Block a user