add verify checks for Double Faced Cards having abilities on main card

* add booleans to card scanner, restricting to checking cards by name and set. Reduces duplication of verify checks across sets.
This commit is contained in:
jmlundeen 2025-11-27 09:39:46 -06:00
parent 69e20b1061
commit b32a786236
3 changed files with 32 additions and 9 deletions

View file

@ -61,7 +61,7 @@ public final class RateCard {
public static void bootstrapCardsAndRatings() {
// preload cards and ratings
log.info("Loading cards and rating...");
List<Card> cards = CardScanner.getAllCards(false);
List<Card> cards = CardScanner.getAllCards(false, true, true);
for (Card card : cards) {
RateCard.rateCard(card, null);
}