Signed-off-by: Matt Bruce <mbrucedogs@gmail.com>

This commit is contained in:
Matt Bruce 2025-12-29 13:11:17 -06:00
parent 247435a405
commit 9433ced1aa
4 changed files with 19 additions and 16 deletions

View File

@ -1893,9 +1893,6 @@
}
}
}
},
"Change table limits, rules, and side bets in settings" : {
},
"CHIPS STATS" : {
"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" : {
"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" : {
},
@ -6336,9 +6334,6 @@
"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.",
"isCommentAutoGenerated" : true
},
"Start with $1,000 and play risk-free" : {
},
"Starting balance" : {
"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." : {
"localizations" : {
"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" : {
"localizations" : {
"en" : {

View File

@ -24,7 +24,7 @@ struct BlackjackGameData: PersistableGameData, SessionPersistable {
static var empty: BlackjackGameData {
BlackjackGameData(
lastModified: Date(),
balance: 10_000,
balance: 1_000,
currentSession: nil,
sessionHistory: []
)
@ -53,7 +53,7 @@ struct BlackjackSettingsData: PersistableGameData {
gameStyle: "vegas",
deckCount: 6,
tableLimits: "low",
startingBalance: 10_000,
startingBalance: 1_000,
dealerHitsSoft17: false,
doubleAfterSplit: true,
resplitAces: false,

View File

@ -98,14 +98,14 @@ struct GameTableView: View {
description: String(localized: "Built-in hints show optimal plays based on basic strategy")
),
WelcomeFeature(
icon: "dollarsign.circle",
title: String(localized: "Practice Free"),
description: String(localized: "Start with $1,000 and play risk-free")
icon: "clock.badge.checkmark.fill",
title: String(localized: "Track Sessions"),
description: String(localized: "See detailed stats for each play session, just like at a real casino")
),
WelcomeFeature(
icon: "gearshape.fill",
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: {

View File

@ -84,7 +84,7 @@ public struct WelcomeSheet: View {
.padding(.horizontal, CasinoDesign.Spacing.large)
}
},
onDone: {}
onDone: onStartPlaying // Done button = Start Playing
)
}