# Blackjack

The game of European Blackjack has the same basic structure as other standard blackjack games.

* The game is between the dealer(smart contract) and the player.
* The objective is to get a hand of 21 or as close to that number as possible to win.
* Cards from 2 to 9 are valued at their face value.
* Cards from 10 to K are valued at 10 points each.
* The Ace (A) has a value of 1 or 11.

One basic difference is in the deal itself. **Once the bets are placed the dealer/SC deals out the cards.**

* The player gets two cards, both face up.
* The dealer (Smart Contract) gets the first card, which is an open card and is face up. At this point that is all he gets. His second card is dealt after the player has played his hand.

## Odds

The odds for a player winning in a game of Blackjack is 42.22%. The chances of a dealer win is slightly higher at 49.1% with the remaining 8.48% being for the odds of a tie.

**House edge**: Just 0.9%.


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://docs.elrondbet.net/games-info/blackjack.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
