From fcc10c27f07f9a789cdb6a5eb5cb4bc5d5831b6b Mon Sep 17 00:00:00 2001 From: Cal Corum Date: Sun, 30 Apr 2023 15:06:53 -0500 Subject: [PATCH] Update ai_manager.py Set Minor League and Major League cardset ids --- ai_manager.py | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/ai_manager.py b/ai_manager.py index 7cfaa5f..1e5d22b 100644 --- a/ai_manager.py +++ b/ai_manager.py @@ -18,9 +18,13 @@ db = SqliteDatabase( } ) -MINOR_CARDSET_PARAMS = [('cardset_id', 9), ('cardset_id', 3)] +# 2022, 2023 +MINOR_CARDSET_PARAMS = [('cardset_id', 8), ('cardset_id', 9), ('cardset_id', 3)] + +# 2013, 2019, 2022, 2023 MAJOR_CARDSET_PARAMS = [ - ('cardset_id', 1), ('cardset_id', 3), ('cardset_id', 4), ('cardset_id', 5), ('cardset_id', 6), ('cardset_id', 7), + ('cardset_id', 8), ('cardset_id', 6), ('cardset_id', 5), + ('cardset_id', 3), ('cardset_id', 4), ('cardset_id', 9), ('cardset_id', 10) ]