Gauntlet 8 updates

This commit is contained in:
Cal Corum 2025-05-29 22:19:19 -05:00
parent acb65ef47c
commit 2791e1964b

View File

@ -27,21 +27,21 @@ logging.basicConfig(
)
# 2024, 2018
ranked_cardsets = [20, 21, 22, 17, 18, 19]
LIVE_CARDSET_ID = 20
LIVE_PROMO_CARDSET_ID = 21
ranked_cardsets = [24, 25, 26, 20, 21, 22]
LIVE_CARDSET_ID = 24
LIVE_PROMO_CARDSET_ID = 25
CARDSETS = {
'ranked': {
'primary': ranked_cardsets,
'human': ranked_cardsets
},
'minor-league': {
'primary': [20, 8], # 1998, Mario
'secondary': [6], # 2013
'primary': [24, 8], # 2025, Mario
'secondary': [17], # 2024
'human': [x for x in range(1, 30)]
},
'major-league': {
'primary': [20, 21, 17, 18, 12, 6, 7, 8], # 1998, 1998 Promos, 2024, 24 Promos, 2008, 2013, 2012, Mario
'primary': [20, 21, 24, 25, 13, 9, 8], # 1998, 1998 Promos, 2025, 25 Promos, 2018, 2023, Mario
'secondary': [5, 3], # 2019, 2022
'human': ranked_cardsets
},
@ -78,6 +78,11 @@ CARDSETS = {
'primary': [5, 23], # 2019, Brilliant Stars
'secondary': [1], # 2021
'human': [x for x in range(1, 30)]
},
'gauntlet-8': {
'primary': [24], # 2025
'secondary': [17],
'human': [24, 25, 22, 23]
}
}