Add basic deck builder #12

Merged
hamcha merged 42 commits from feature/deckbuilder into master 2019-09-12 09:11:32 +00:00
1 changed files with 9 additions and 0 deletions
Showing only changes of commit 06d0b5ded0 - Show all commits

View File

@ -119,6 +119,15 @@ export async function getCards(filter: CardFilter) {
}
}
}
// For "None" element searches, "nothing" is actually ok
if (
filter.Elements.includes("None") &&
x.Element.length == 0 &&
(!x.Requirement || x.Requirement.length == 0) &&
(!x.ProblemRequirement || x.ProblemRequirement.length == 0)
) {
found = true;
}
if (!found) {
return false;
}