Cardset updates

This commit is contained in:
Cal Corum 2024-03-08 00:26:00 -06:00
parent 563f46c30c
commit 62bcfd5e45

View File

@ -35,7 +35,7 @@ CARDSETS = {
'minor-league': {
'primary': [13, 8], # 2018, Mario
'secondary': [9, 3], # 2023, 2022
'human': [x for x in range(1, 17)]
'human': [x for x in range(1, 19)]
},
'major-league': {
'primary': [13, 9, 8, 6, 12, 14], # 2018, 2023, Mario, 2013, 2008
@ -43,7 +43,7 @@ CARDSETS = {
'human': ranked_cardsets
},
'hall-of-fame': {
'primary': [1, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14],
'primary': [x for x in range(1, 19)],
'human': ranked_cardsets
},
'flashback': {
@ -55,6 +55,11 @@ CARDSETS = {
'primary': [13], # 2018
'secondary': [5, 11, 9], # 2019, 2016, 2023
'human': [x for x in range(1, 17)]
},
'gauntlet-4': {
'primary': [3, 6, 16], # 2022, 2013, Backyard Baseball
'secondary': [4, 9], # 2022 Promos, 2023
'human': [3, 4, 6, 9, 15, 16]
}
}