diff --git a/constants.py b/constants.py index 209cbd0..042bbcb 100644 --- a/constants.py +++ b/constants.py @@ -82,7 +82,7 @@ PD_PLAYERS = 'Paper Dynasty Players' SBA_PLAYERS_ROLE_NAME = f'Season {SBA_SEASON} Players' PD_PLAYERS_ROLE_NAME = f'Paper Dynasty Players' -ALL_CARDSET_NAMES = Literal['All', '2025 Season', '2024 Season', '2024 Promos', '2023 Season', '2023 Promos', '2022 Season', '2022 Promos', '2021 Season', '2019 Season', '2018 Season', '2018 Promos', '2016 Season', '2013 Season', '2012 Season', '2008 Season', '1998 Season', '1998 Promos', 'Backyard Baseball', 'Mario Super Sluggers', 'Sams Choice'] +ALL_CARDSET_NAMES = Literal['All', '2005 Live', '2025 Season', '2024 Season', '2024 Promos', '2023 Season', '2023 Promos', '2022 Season', '2022 Promos', '2021 Season', '2019 Season', '2018 Season', '2018 Promos', '2016 Season', '2013 Season', '2012 Season', '2008 Season', '1998 Season', '1998 Promos', 'Backyard Baseball', 'Mario Super Sluggers', 'Sams Choice'] # External URLs and Resources PD_IMAGE_BUCKET = 'https://paper-dynasty.s3.us-east-1.amazonaws.com/static-images' @@ -300,7 +300,8 @@ RARITY = { # Discord UI Options SELECT_CARDSET_OPTIONS = [ - discord.SelectOption(label='2025 Live', value='24'), + discord.SelectOption(label='2005 Season', value='27'), + discord.SelectOption(label='2025 Season', value='24'), discord.SelectOption(label='2025 Promos', value='25'), discord.SelectOption(label='1998 Season', value='20'), discord.SelectOption(label='1998 Promos', value='21'), @@ -320,7 +321,7 @@ SELECT_CARDSET_OPTIONS = [ ] # Type Definitions -ACTIVE_EVENT_LITERAL = Literal['2025 Season'] +ACTIVE_EVENT_LITERAL = Literal['Live 05'] DEFENSE_LITERAL = Literal['Pitcher', 'Catcher', 'First Base', 'Second Base', 'Third Base', 'Shortstop', 'Left Field', 'Center Field', 'Right Field'] DEFENSE_NO_PITCHER_LITERAL = Literal['Catcher', 'First Base', 'Second Base', 'Third Base', 'Shortstop', 'Left Field', 'Center Field', 'Right Field'] diff --git a/helpers/constants.py b/helpers/constants.py index 35c0394..a1a1a3a 100644 --- a/helpers/constants.py +++ b/helpers/constants.py @@ -292,7 +292,8 @@ RARITY = { # Discord UI Options SELECT_CARDSET_OPTIONS = [ - discord.SelectOption(label='2025 Live', value='24'), + discord.SelectOption(label='2005 Live', value='27'), + discord.SelectOption(label='2025 Season', value='24'), discord.SelectOption(label='2025 Promos', value='25'), discord.SelectOption(label='1998 Season', value='20'), discord.SelectOption(label='1998 Promos', value='21'), @@ -312,7 +313,7 @@ SELECT_CARDSET_OPTIONS = [ ] # Type Definitions -ACTIVE_EVENT_LITERAL = Literal['2025 Season'] +ACTIVE_EVENT_LITERAL = Literal['Live 05'] DEFENSE_LITERAL = Literal['Pitcher', 'Catcher', 'First Base', 'Second Base', 'Third Base', 'Shortstop', 'Left Field', 'Center Field', 'Right Field'] DEFENSE_NO_PITCHER_LITERAL = Literal['Catcher', 'First Base', 'Second Base', 'Third Base', 'Shortstop', 'Left Field', 'Center Field', 'Right Field']