Update helpers.py

Added new PD graphics
This commit is contained in:
Cal Corum 2023-03-27 16:48:50 -05:00
parent a83bc10581
commit 1a36b60565

View File

@ -64,6 +64,7 @@ IMAGES = {
'mvp-hype': f'{PD_CARD_URL}/mvp.png',
'pack-sta': f'{PD_CARD_URL}/pack-standard.png',
'pack-pre': f'{PD_CARD_URL}/pack-premium.png',
'pack-mar': f'{PD_CARD_URL}/mario/mario-gauntlet.png',
'mvp': {
'Arizona Diamondbacks': f'{PD_CARD_URL}/mvp/arizona-diamondbacks.gif',
'Atlanta Braves': f'{PD_CARD_URL}/mvp/atlanta-braves.gif',
@ -97,7 +98,8 @@ IMAGES = {
'Texas Rangers': f'{PD_CARD_URL}/mvp/texas-rangers.gif',
'Toronto Blue Jays': f'{PD_CARD_URL}/mvp/toronto-blue-jays.gif',
'Washington Nationals': f'{PD_CARD_URL}/mvp/washington-nationals.gif',
}
},
'gauntlets': f'{PD_CARD_URL}/gauntlets.png'
}
INFIELD_X_CHART = {
'si1': {
@ -1345,7 +1347,7 @@ def get_all_pos(player):
all_pos = []
for x in range(1, 8):
if player[f'pos_{x}'] and player[f'pos_{x}'] != 'CP':
if player[f'pos_{x}']:
all_pos.append(player[f'pos_{x}'])
return all_pos
@ -2539,6 +2541,8 @@ def get_pack_cover(pack):
return IMAGES['pack-pre']
elif pack['pack_type']['name'] == 'Standard':
return IMAGES['pack-sta']
elif pack['pack_type']['name'] == 'Mario':
return IMAGES['pack-mar']
else:
return None