+
+
@if (hasError('betAmount', 'required')) {
- Einsatz ist erforderlich
+ Bet Amount is required
}
@if (hasError('betAmount', 'min')) {
- Einsatz muss mindestens 0.01 seinBet Amount must be at least 0.01
}
-
-
-
-
Spielanleitung
-
- - • Setze deinen Einsatz und Zielwert
- - • Wähle "Über Zielwert" oder "Unter Zielwert"
- - • Gewinne, wenn der Würfel zu deinen Gunsten fällt
- - • Höheres Risiko = höhere Belohnung
-
+
+
Roll Mode:
+
+
+
+
-
-
+
+
+
+
+ @if (hasError('targetValue', 'required')) {
+ Target Value is required
+ }
+ @if (hasError('targetValue', 'min')) {
+ Target Value must be at least 1
+ }
+ @if (hasError('targetValue', 'max')) {
+ Target Value must be at most 100
+ }
+
+
+
+
+
+ Win Chance: {{ winChance() | number: '1.0-2' }}%
+
+
+ Potential Win:
+ {{
+ potentialWin() | currency: 'EUR' : 'symbol' : '1.2-2'
+ }}
+
+
+
+