diff --git a/Psuedo-Code.txt b/Psuedo-Code.txt index ec33850..59d3cad 100644 --- a/Psuedo-Code.txt +++ b/Psuedo-Code.txt @@ -5,9 +5,9 @@ Blackjack The game begins with two people: a dealer and a player. The objective of the game is to have a hand of higher value than the other without going over 21. -Number cards are worth their value, face cards are worth 10, and Aces are interchangeably 1 or 11. +Number cards are worth their value, face cards are worth 10, and Aces are worth 11 until a player goes over 21, and then the Ace is worth 1. To start a round, the dealer deals two face-up cards for the player and a face-up card and a face-down card for himself. -After looking over both hands, the player bets a certain amount of money based on his odds of winning. +After looking over both hands, the player bets a certain amount of money based on his intuition of his odds of winning. While the player's hand is under 22: The player can now call for either a hit or stand. @@ -16,7 +16,7 @@ While the player's hand is under 22: The dealer flips their face-down card. While the dealer's hand is under 22: The dealer continually draws. - If the dealer's hand is over 15: + If the dealer's hand is over 17: The dealer stops drawing. If the dealer's hand is greater than the player's: The dealer wins and take the player's bet.