LotteryChecker/lottotexas/winning_structure.py

10 lines
207 B
Python
Raw Normal View History

def get_winnings_extra(jackpot_cash):
return {
1: [0,0,2,13,150,12_000,jackpot_cash]
}
def get_winnings_no_extra(jackpot_cash):
return {
1: [0,0,0,3,50,2_000,jackpot_cash]
}