rDrama/files/templates/casino/roulette_screen.html

209 lines
4.1 KiB
HTML

{% extends "casino/game_screen.html" %} {% block result %} N/A {% endblock %}
{% block script %}
<script defer src="{{'js/roulette_screen.js' | asset}}"></script>
{% endblock %}
{% block screen %}
<style nonce="{{g.nonce}}">
.roulette-table-number {
flex: 1;
height: 60px;
border: 1px solid white;
background: green;
display: flex;
align-items: center;
justify-content: center;
color: white;
font-weight: bolder;
}
.roulette-table-number__black {
background: black;
}
.roulette-table-number__red {
background: red;
}
.roulette-table-number__green {
background: green;
}
.roulette-table-row {
display: flex;
align-items: center;
justify-content: flex-start;
}
.roulette-table-column {
flex: 1;
height: 60px;
border: 1px solid white;
background: green;
display: flex;
align-items: center;
justify-content: center;
color: white;
font-weight: bolder;
writing-mode: vertical-rl;
text-orientation: sideways;
}
.roulette-table-line,
.roulette-table-1to1 {
border: 1px solid white;
background: green;
display: flex;
align-items: center;
justify-content: center;
color: white;
font-weight: bolder;
}
.roulette-table-line {
flex: 4;
}
.roulette-table-1to1 {
flex: 2;
}
.roulette-poker-chip {
display: flex;
align-items: center;
justify-content: center;
width: 50px;
height: 50px;
}
.roulette-bet-summary--heading {
display: flex;
align-items: center;
}
.roulette-bet-summary--heading p {
margin: 0;
margin-left: 1rem;
font-weight: bolder;
}
.roulette-bet-summary--list {
list-style-type: none;
}
.roulette-poker-chip img:last-child {
position: absolute;
border-radius: 50%;
}
.roulette-total-bets {
text-transform: uppercase;
letter-spacing: 2px;
text-align: right;
}
</style>
<div id="roulette-table">
</div>
{% endblock %}
{% block actiontext %}
Bets
{% endblock %}
{% block actions %}
<div id="roulette-bets">
<div class="roulette-bet-summary">
<div class="roulette-bet-summary--heading">
<div class="roulette-poker-chip">
<img src="/i/pokerchip.webp" width="40" height="40">
<img src="/e/marseycodecellove.webp" width="40" height="40">
</div>
<p>111 is betting 4 and 4:
</p>
</div>
<ul class="roulette-bet-summary--list">
<li>2 <img src="/i/rDrama/coins.webp?v=3009" alt="coin" width="32" data-bs-toggle="tooltip"
data-bs-placement="bottom" title="" data-bs-original-title="Coin"> that
the number will be black.</li>
<li>2 <img src="/i/rDrama/coins.webp?v=3009" alt="coin" width="32" data-bs-toggle="tooltip"
data-bs-placement="bottom" title="" data-bs-original-title="Coin"> that
the number will be even.</li>
</ul>
</div>
</div>
<div class="game_screen-title">
<h5>How to Bet</h5>
<hr>
</div>
<table class="table">
<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>
{% endblock %}