Update ai_manager.py

Set Minor League and Major League cardset ids
This commit is contained in:
Cal Corum 2023-04-30 15:06:53 -05:00
parent 49a0ce0d85
commit fcc10c27f0

View File

@ -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)
]