updated card mapping

This commit is contained in:
jandrews
2026-01-05 09:55:00 -05:00
parent 95ae6740d3
commit 5399ffd008
3 changed files with 6 additions and 2 deletions

View File

@@ -10,7 +10,7 @@ class Card:
return str(self.face)
def deal(self):
self.face = randint(1, 11)
self.face = randint(1, 13)
#I think here we should return 1-13 to include ace and face cards.
#This will make checking if 4 of a kind have been dealt easier.
#THEN when it comes to scoring we can use the value to calculate face cards as 10 points.