plinko with wager (#26)

* Implement PlinkoCommand for Kasino game

plinko

* Add plinko board cleanup delay setting

Added a new setting for plinko board cleanup delay.

* Add 'Plinko' to game options in MoneyDbModels

Added 'Plinko' option to the game enum with a description.

* Modify Plinko win message to show new balance and do wager

Updated the message format to include the new balance after a win.

* Adjust wager calculation for Plinko game
This commit is contained in:
alogindtractor
2026-01-07 12:23:30 -08:00
committed by GitHub
parent be669bf951
commit 47771a0f4c
3 changed files with 210 additions and 2 deletions

View File

@@ -447,6 +447,8 @@ public static class BuiltIn
public static string YouTubePubSubRedisChannel = "YouTube.PubSub.RedisChannel";
[BuiltInSetting("Delay in milliseconds before cleaning up limbo", SettingValueType.Text, "15000", WholeNumberRegex)]
public static string KasinoLimboCleanupDelay = "Kasino.Limbo.CleanupDelay";
[BuiltInSetting("Delay in milliseconds before cleaning up plinko board", SettingValueType.Text, "30000", WholeNumberRegex)]
public static string KasinoPlinkoCleanupDelay = "Kasino.Plinko.CleanupDelay"; //new cleanup delay for plinko
[BuiltInSetting("Delay in milliseconds before cleaning up lambchop", SettingValueType.Text, "15000", WholeNumberRegex)]
public static string KasinoLambchopCleanupDelay = "Kasino.Lambchop.CleanupDelay";
[BuiltInSetting("Delay in milliseconds before cleaning up dice", SettingValueType.Text, "15000", WholeNumberRegex)]