This commit is contained in:
Aevann1 2022-04-19 21:13:36 +02:00
parent 41a996c05f
commit ac43373439
6 changed files with 13 additions and 22 deletions

View file

@ -3,8 +3,8 @@ import random
from math import floor
deck_count = 4
ranks = ["2", "3", "4", "5", "6", "7", "8", "9", "X", "J", "Q", "K", "A"]
suits = ["♠️", "♥️", "♣️", "♦️"]
ranks = ("2", "3", "4", "5", "6", "7", "8", "9", "X", "J", "Q", "K", "A")
suits = ("♠️", "♥️", "♣️", "♦️")
coins_command_word = "!blackjack"
marseybucks_command_word = "!blackjackmb"
minimum_bet = 100