2023-09-29 21:37:30 +00:00
|
|
|
{% extends "casino/game_screen.html" %} {% block result %}{% endblock %}
|
2022-09-13 01:07:39 +00:00
|
|
|
|
|
|
|
{% block script %}
|
2022-12-29 14:20:27 +00:00
|
|
|
<script defer src="{{'js/casino/roulette_screen.js' | asset}}"></script>
|
2022-09-13 01:07:39 +00:00
|
|
|
{% endblock %}
|
|
|
|
|
|
|
|
{% block screen %}
|
2022-12-29 14:20:27 +00:00
|
|
|
<link rel="stylesheet" href="{{('css/casino/roulette_screen.css') | asset}}">
|
|
|
|
<div id="roulette-table">
|
|
|
|
</div>
|
2022-09-13 01:07:39 +00:00
|
|
|
{% endblock %}
|
|
|
|
|
|
|
|
{% block actiontext %}
|
2023-10-29 12:51:00 +00:00
|
|
|
Bets
|
2022-09-13 01:07:39 +00:00
|
|
|
{% endblock %}
|
|
|
|
|
|
|
|
{% block actions %}
|
2023-10-29 12:51:00 +00:00
|
|
|
<div id="roulette-bets">
|
|
|
|
<div class="roulette-bet-summary">
|
|
|
|
<div class="roulette-bet-summary--heading">
|
|
|
|
<div class="roulette-poker-chip">
|
|
|
|
<img loading="lazy" src="{{SITE_FULL_IMAGES}}/i/pokerchip.webp" width="40" height="40">
|
|
|
|
<img loading="lazy" src="{{SITE_FULL_IMAGES}}/e/marseycodecellove.webp" width="40" height="40">
|
|
|
|
</div>
|
|
|
|
<p>111 is betting 4 and 4:
|
|
|
|
</p>
|
2022-10-28 23:39:31 +00:00
|
|
|
</div>
|
2023-10-29 12:51:00 +00:00
|
|
|
<ul class="roulette-bet-summary--list">
|
2023-12-22 20:14:21 +00:00
|
|
|
<li>2 <img loading="lazy" src="{{SITE_FULL_IMAGES}}/i/rDrama/coins.webp?x=7" alt="coin" width="32" data-bs-toggle="tooltip"
|
2023-10-29 12:51:00 +00:00
|
|
|
data-bs-placement="bottom" title="Coin"> that
|
|
|
|
the number will be black.</li>
|
2023-12-22 20:14:21 +00:00
|
|
|
<li>2 <img loading="lazy" src="{{SITE_FULL_IMAGES}}/i/rDrama/coins.webp?x=7" alt="coin" width="32" data-bs-toggle="tooltip"
|
2023-10-29 12:51:00 +00:00
|
|
|
data-bs-placement="bottom" title="Coin"> that
|
|
|
|
the number will be even.</li>
|
|
|
|
</ul>
|
2022-10-28 23:39:31 +00:00
|
|
|
</div>
|
|
|
|
</div>
|
2022-09-13 01:07:39 +00:00
|
|
|
|
2023-12-24 23:05:02 +00:00
|
|
|
<div class="hr-title">
|
2023-10-29 12:51:00 +00:00
|
|
|
<h5>How to Bet</h5>
|
|
|
|
<hr>
|
|
|
|
</div>
|
2024-02-12 14:21:51 +00:00
|
|
|
<table>
|
2023-10-29 12:51:00 +00:00
|
|
|
<thead>
|
|
|
|
<tr>
|
|
|
|
<th>Bet</th>
|
|
|
|
<th>Payout</th>
|
|
|
|
<th>Description</th>
|
|
|
|
</tr>
|
|
|
|
</thead>
|
|
|
|
<tbody>
|
|
|
|
<tr>
|
|
|
|
<td>Straight Up</td>
|
|
|
|
<td>35:1</td>
|
|
|
|
<td>
|
|
|
|
Click any single number. <br>
|
|
|
|
You win if the roulette lands on that number.
|
|
|
|
</td>
|
|
|
|
</tr>
|
|
|
|
<tr>
|
|
|
|
<td>Line</td>
|
|
|
|
<td>5:1</td>
|
|
|
|
<td>
|
|
|
|
Click Line 1, Line 2 ... Line 6. <br>
|
|
|
|
You win if the roulette lands on any of the six numbers beneath the line.
|
|
|
|
</td>
|
|
|
|
</tr>
|
|
|
|
<tr>
|
|
|
|
<td>Column</td>
|
|
|
|
<td>2:1</td>
|
|
|
|
<td>
|
|
|
|
Click Col 1, Col 2 or Col 3. <br>
|
|
|
|
You win if the roulette lands on any of the 12 numbers to the left of the column.
|
|
|
|
</td>
|
|
|
|
</tr>
|
|
|
|
<tr>
|
|
|
|
<td>Dozen</td>
|
|
|
|
<td>2:1</td>
|
|
|
|
<td>
|
|
|
|
Click 1st12, 2nd12 or 3rd12. <br>
|
|
|
|
You win if the roulette lands on a number within 1-12, 13-24 or 25-36, respectively.
|
|
|
|
</td>
|
|
|
|
</tr>
|
|
|
|
<tr>
|
|
|
|
<td>Even/Odd</td>
|
|
|
|
<td>1:1</td>
|
|
|
|
<td>
|
|
|
|
Click EVEN or ODD. <br>
|
|
|
|
You win if the roulette lands on a number that matches your choice.
|
|
|
|
</td>
|
|
|
|
</tr>
|
|
|
|
<tr>
|
|
|
|
<td>Red/Black</td>
|
|
|
|
<td>1:1</td>
|
|
|
|
<td>
|
|
|
|
Click RED or BLACK. <br>
|
|
|
|
You win if the roulette lands on a number that is the same color as your choice.
|
|
|
|
</td>
|
|
|
|
</tr>
|
|
|
|
<tr>
|
|
|
|
<td>High/Low</td>
|
|
|
|
<td>1:1</td>
|
|
|
|
<td>
|
|
|
|
Click 1:18 or 19:36. <br>
|
|
|
|
You win if the roulette lands on a number within your selected range.
|
|
|
|
</td>
|
|
|
|
</tr>
|
|
|
|
</tbody>
|
|
|
|
</table>
|
2022-10-10 05:40:33 +00:00
|
|
|
{% endblock %}
|