Skip to content

Commit

Permalink
Give card values its logic value
Browse files Browse the repository at this point in the history
  • Loading branch information
smessie committed Nov 9, 2020
1 parent f1a8129 commit 10a52ff
Showing 1 changed file with 13 additions and 13 deletions.
26 changes: 13 additions & 13 deletions game/settings.py
Original file line number Diff line number Diff line change
@@ -1,16 +1,16 @@
# Some settings for easy adjustment later on
CARD_VALUES = {
"1": 12,
"2": 13,
"3": 1,
"4": 2,
"5": 3,
"6": 4,
"7": 5,
"8": 6,
"9": 7,
"10": 8,
"Jack": 9,
"Queen": 10,
"King": 11,
"Ace": 14,
"2": 15,
"3": 3,
"4": 4,
"5": 5,
"6": 6,
"7": 7,
"8": 8,
"9": 9,
"10": 10,
"Jack": 11,
"Queen": 12,
"King": 13,
}

0 comments on commit 10a52ff

Please sign in to comment.