Signed-off-by: Matt Bruce <mbrucedogs@gmail.com>
This commit is contained in:
parent
247435a405
commit
9433ced1aa
@ -1893,9 +1893,6 @@
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
},
|
|
||||||
"Change table limits, rules, and side bets in settings" : {
|
|
||||||
|
|
||||||
},
|
},
|
||||||
"CHIPS STATS" : {
|
"CHIPS STATS" : {
|
||||||
"comment" : "Title of a section in the Statistics Sheet that shows statistics related to the user's chips.",
|
"comment" : "Title of a section in the Statistics Sheet that shows statistics related to the user's chips.",
|
||||||
@ -5233,9 +5230,6 @@
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
},
|
|
||||||
"Practice Free" : {
|
|
||||||
|
|
||||||
},
|
},
|
||||||
"Privacy Policy" : {
|
"Privacy Policy" : {
|
||||||
"localizations" : {
|
"localizations" : {
|
||||||
@ -5676,6 +5670,10 @@
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
"See detailed stats for each play session, just like at a real casino" : {
|
||||||
|
"comment" : "Description of a feature in the welcome sheet that allows users to track their gaming sessions.",
|
||||||
|
"isCommentAutoGenerated" : true
|
||||||
|
},
|
||||||
"Select a chip and tap the bet area" : {
|
"Select a chip and tap the bet area" : {
|
||||||
|
|
||||||
},
|
},
|
||||||
@ -6336,9 +6334,6 @@
|
|||||||
"Start playing to begin tracking your session." : {
|
"Start playing to begin tracking your session." : {
|
||||||
"comment" : "A description text displayed in the \"No Active Session\" view, explaining that the user needs to start playing to see their session statistics.",
|
"comment" : "A description text displayed in the \"No Active Session\" view, explaining that the user needs to start playing to see their session statistics.",
|
||||||
"isCommentAutoGenerated" : true
|
"isCommentAutoGenerated" : true
|
||||||
},
|
|
||||||
"Start with $1,000 and play risk-free" : {
|
|
||||||
|
|
||||||
},
|
},
|
||||||
"Starting balance" : {
|
"Starting balance" : {
|
||||||
"comment" : "A label for the starting balance in the Balance section of a session detail view.",
|
"comment" : "A label for the starting balance in the Balance section of a session detail view.",
|
||||||
@ -6905,6 +6900,10 @@
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
"Track Sessions" : {
|
||||||
|
"comment" : "Feature description in the welcome sheet for tracking detailed stats for each play session.",
|
||||||
|
"isCommentAutoGenerated" : true
|
||||||
|
},
|
||||||
"Traditional European casino style." : {
|
"Traditional European casino style." : {
|
||||||
"localizations" : {
|
"localizations" : {
|
||||||
"en" : {
|
"en" : {
|
||||||
@ -7063,6 +7062,10 @@
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
"Vegas Strip, Atlantic City, European, or create your own" : {
|
||||||
|
"comment" : "Feature description in the welcome sheet about customizing the game rules.",
|
||||||
|
"isCommentAutoGenerated" : true
|
||||||
|
},
|
||||||
"Vibration on actions" : {
|
"Vibration on actions" : {
|
||||||
"localizations" : {
|
"localizations" : {
|
||||||
"en" : {
|
"en" : {
|
||||||
|
|||||||
@ -24,7 +24,7 @@ struct BlackjackGameData: PersistableGameData, SessionPersistable {
|
|||||||
static var empty: BlackjackGameData {
|
static var empty: BlackjackGameData {
|
||||||
BlackjackGameData(
|
BlackjackGameData(
|
||||||
lastModified: Date(),
|
lastModified: Date(),
|
||||||
balance: 10_000,
|
balance: 1_000,
|
||||||
currentSession: nil,
|
currentSession: nil,
|
||||||
sessionHistory: []
|
sessionHistory: []
|
||||||
)
|
)
|
||||||
@ -53,7 +53,7 @@ struct BlackjackSettingsData: PersistableGameData {
|
|||||||
gameStyle: "vegas",
|
gameStyle: "vegas",
|
||||||
deckCount: 6,
|
deckCount: 6,
|
||||||
tableLimits: "low",
|
tableLimits: "low",
|
||||||
startingBalance: 10_000,
|
startingBalance: 1_000,
|
||||||
dealerHitsSoft17: false,
|
dealerHitsSoft17: false,
|
||||||
doubleAfterSplit: true,
|
doubleAfterSplit: true,
|
||||||
resplitAces: false,
|
resplitAces: false,
|
||||||
|
|||||||
@ -98,14 +98,14 @@ struct GameTableView: View {
|
|||||||
description: String(localized: "Built-in hints show optimal plays based on basic strategy")
|
description: String(localized: "Built-in hints show optimal plays based on basic strategy")
|
||||||
),
|
),
|
||||||
WelcomeFeature(
|
WelcomeFeature(
|
||||||
icon: "dollarsign.circle",
|
icon: "clock.badge.checkmark.fill",
|
||||||
title: String(localized: "Practice Free"),
|
title: String(localized: "Track Sessions"),
|
||||||
description: String(localized: "Start with $1,000 and play risk-free")
|
description: String(localized: "See detailed stats for each play session, just like at a real casino")
|
||||||
),
|
),
|
||||||
WelcomeFeature(
|
WelcomeFeature(
|
||||||
icon: "gearshape.fill",
|
icon: "gearshape.fill",
|
||||||
title: String(localized: "Customize Rules"),
|
title: String(localized: "Customize Rules"),
|
||||||
description: String(localized: "Change table limits, rules, and side bets in settings")
|
description: String(localized: "Vegas Strip, Atlantic City, European, or create your own")
|
||||||
)
|
)
|
||||||
],
|
],
|
||||||
onStartTutorial: {
|
onStartTutorial: {
|
||||||
|
|||||||
@ -84,7 +84,7 @@ public struct WelcomeSheet: View {
|
|||||||
.padding(.horizontal, CasinoDesign.Spacing.large)
|
.padding(.horizontal, CasinoDesign.Spacing.large)
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
onDone: {}
|
onDone: onStartPlaying // Done button = Start Playing
|
||||||
)
|
)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user