My best attempt at making Street Dice into a console app/game with C#. Wish me luck.
So far I have found some sites that can turn words into ASCII art. Credited below, so I do not think that is considered using other peoples art. Imagine it as a font... yeah.
_________ __ __ ________ .__
/ _____// |________ ____ _____/ |_ \______ \ |__| ____ ____
\_____ \\ __\_ __ \_/ __ \_/ __ \ __\ | | \| |/ ___\/ __ \
/ \| | | | \/\ ___/\ ___/| | | ` \ \ \__\ ___/
/_______ /|__| |__| \___ >\___ >__| /_______ /__|\___ >___ >
\/ \/ \/ \/ \/ \/
//title card
var title = """
_________ __ __ ________ .__
/ _____/ / |________ ____ _____/ |_ \______ \ |__| ____ ____
\_____ \\ __\_ __ \_/ __ \_/ __ \ __\ | | \| |/ ___\/ __ \
/ \| | | | \/\ ___/\ ___/| | | ` \ \ \__\ ___/
/_______ /|__| |__| \___ >\___ >__| /_______ /__|\___ >___ >
\/ \/ \/ \/ \/ \/
""";
⚀⚁⚂⚃⚄⚅ <- I don't know if I can use these in C# console. Gonna find out!
After watching the yt video sited below, this is what I have came up with so far.
- Find Players
- Set Shooter
- Throw the Dice
- !! - Bet
- MATCH and FADE
- Shooter ROLLS
pick HIGH or LOW
who ever rolls it first is the shooter
Shooter throws down / opponent can match or fade.
MATCH is to match the bet. FADE is to
if it is 7 or 11 shooter wins / if it is 2, 3, or 12 loses the pot
all other numbers will be set as POINT
That list is nice