You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
First, let me say that this project and the code is fantastic. Well done.
I'm thinking of creating a game for my friends and I to play other types of poker besides the common Hold Em, Omaha, Draw and Stud. Most of these games are derivatives of 5 card draw or 7 card stud, but they use wild cards (for example, all 3s are wild for everyone, or each person's lowest card is wild for them). Are these types of scenarios possible using your engine? If so, do you have suggestions of how to implement that? I'm willing to work on the code, but would like some guidance on the best way to implement that.
Thanks.
The text was updated successfully, but these errors were encountered:
The CardGames.Core library provides the minimal 'infrastructure' to implement card games, the CardGames.Core.French provides the standard 52 card deck, as well as a specialized dealer for that deck.
If I undestand your question correctly, the games you are interested in use the standard poker deck, right, just under certain circumstances the values of the cards change. All that logic will have to be part of the domain logic of your game implementation.
Both mentioned pacakges are available as Nuget packages now, so it should be easy-peasy to install them into your project and build your game on top of that! Are you planning to do it open-source? I'd really be interested!
First, let me say that this project and the code is fantastic. Well done.
I'm thinking of creating a game for my friends and I to play other types of poker besides the common Hold Em, Omaha, Draw and Stud. Most of these games are derivatives of 5 card draw or 7 card stud, but they use wild cards (for example, all 3s are wild for everyone, or each person's lowest card is wild for them). Are these types of scenarios possible using your engine? If so, do you have suggestions of how to implement that? I'm willing to work on the code, but would like some guidance on the best way to implement that.
Thanks.
The text was updated successfully, but these errors were encountered: