Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/iamklevy/blackjack_game

Casino cards game
https://github.com/iamklevy/blackjack_game

game java oop

Last synced: 8 days ago
JSON representation

Casino cards game

Awesome Lists containing this project

README

        

# BlackJack_Game

Blackjack (formerly Black Jack and Vingt-Un) is a casino banking game.The most widely played casino banking game in the world, it uses decks of 52 cards and descends from a global family of casino banking games known as Twenty-One. This family of card games also includes the British game of Pontoon and the European game, Vingt-et-Un.Blackjack players do not compete against each other. The game is a comparing card game where each player competes

# Rules of play at casinos

At the beginning of the game, the 3 players and the dealer are dealt 2 cards each. We see both players’ cards but see only 1 of the dealer’s cards. The aim of the game is to have the sum of the card values (score) in your hand be 21-(BLACKJACK), or as close to 21 as possible. However, you lose if you go over 21. The players go first in turns and have two choices: Hit or Stand. HIT means the player wants to pick another card. You make this move to increase your score. STAND means that the player is done picking new cards (i.e. Hitting) and their turn ends. You do this move when you are comfortable with your score (e.g. score=19 is very close to 21, picking another card could make you lose the game by going over 21 (Player BUSTED). When the player’s turn ends, the next player starts to play in turns. If the maximum score of all players is less than the value of the two cards of the dealer’s then the dealer will win the game and doesn’t need to hit more cards. Other than that, then the dealer starts hitting until he either scores 21, scores a score bigger than all of the other players or go over 21 (Dealer BUSTED). Finally, if more than one player have the same high score then it’s a tie situation (PUSH) , but if only a single player had the maximum score then that player WINs the game The strategy is to increase your score by hitting to get close to 21 (but not over), while also taking into consideration what the dealer’s score could be.

# **GAME START**

# **CASINO ON FIRE**