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

@@ -296,7 +296,9 @@ public enum WagerGame
GuessWhatNumber,
Wheel,
Slots,
Blackjack
Blackjack,
[Description("Plinko")]
Plinko
}
public enum GamblerState
@@ -326,4 +328,4 @@ public enum GamblerState
/// was erased by this event
/// </summary>
EndOfYear2025Liquidated
}
}