Skip to content

Instantly share code, notes, and snippets.

@rustybrooks
Created September 2, 2018 17:15
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save rustybrooks/bccb230c2679e0926e9eab6f5c0af2e4 to your computer and use it in GitHub Desktop.
Save rustybrooks/bccb230c2679e0926e9eab6f5c0af2e4 to your computer and use it in GitHub Desktop.
texas_holdem {
best_hand "best_hand_c -hi"
name "Texas Hold'em"
blinds {{0 1} {1 2}}
deal {
{{deal all 2}} {{deal community 3}} {{deal community 1}} {{deal community 1}}
}
hand { any 5 }
pot { 1 high }
deck standard
}
texas_holdem_burn {
best_hand "best_hand_c -hi"
name "Texas Hold'em"
blinds {{0 1} {1 2}}
deal {
{{deal all 2}} {{deal burn 1} {deal community 3}} {{deal burn 1} {deal community 1}} {{deal burn 1} {deal community 1}}
}
hand { any 5 }
pot { 1 high }
deck standard
}
royal_texas_holdem {
best_hand "best_hand_c -hi"
name "Royal Texas Hold'em"
blinds {{0 1} {1 2}}
deal {
{{deal all 2}} {{deal community 3}} {{deal community 1}} {{deal community 1}}
}
hand { any 5 }
pot { 1 high }
deck royal
}
five_card_stud {
name "Five Card Stud"
best_hand "best_hand_c -hi"
deal {
{ {deal all 4 faceup} {deal all 1} }
}
hand { any 5 }
pot { 1 high }
deck standard
}
razz {
name Razz
best_hand "best_hand_c -lo"
ante "all 1"
deal {
{{deal all 2} {deal all 1 faceup}} {{deal all 1 faceup}} {{deal all 1 faceup}} {{deal all 1 faceup}} {{deal all 1 facedown}}
}
hand { any 5 }
pot { 1 low }
deck low
}
seven_card_stud {
name "Seven Card Stud"
best_hand "best_hand_c -hi"
ante "all 1"
deal {
{{deal all 2} {deal all 1 faceup}} {{deal all 1 faceup}} {{deal all 1 faceup}} {{deal all 1 faceup}} {{deal all 1 facedown}}
}
hand { any 5 }
pot { 1 high }
deck standard
}
seven_card_stud_hilo {
name "Seven Card Stud H/L"
best_hand "best_hand_c -hilo"
ante "all 1"
deal {
{{deal all 2} {deal all 1 faceup}} {{deal all 1 faceup}} {{deal all 1 faceup}} {{deal all 1 faceup}} {{deal all 1 facedown}}
}
hand { any 5 }
pot {
0.5 high {} 0.5 low {-min 8}
}
deck standard
}
omaha {
name "Omaha"
best_hand "::best_hand_c -omaha -hi"
blinds {{0 1} {1 2}}
deal {
{{deal all 4}} {{deal community 3}} {{deal community 1}} {{deal community 1}}
}
hand { player 2 community 3 }
pot { 1 high }
deck standard
}
omaha_hilo {
name "Omaha H/L"
best_hand "::best_hand_c -omaha -hilo"
blinds {{0 1} {1 2}}
deal {
{{deal all 4}} {{deal community 3}} {{deal community 1}} {{deal community 1}}
}
hand { player 2 community 3 }
pot {
0.5 high {} 0.5 low {-min 8}
}
deck standard
}
triple_draw_lowball_2_7 {
name "Triple Draw Lowball 2-7"
best_hand "best_hand_c -lo"
deal {
{{deal all 5}} {{discard any}} {{deal all to:5}} {{discard any}} {{deal all to:5}} {{discard any}} {{deal all to:5}}
}
hand { player 5 }
pot { 1 low }
deck low
}
single_draw_lowball_2_7 {
name "Single Draw Lowball 2-7"
best_hand "best_hand_c -lo"
deal {
{{deal all 5}} {{discard any}} {{deal all to:5}} {{discard any}} {{deal all to:5}} {{discard any}} {{deal all to:5}}
}
hand { player 5 }
pot { 1 low }
deck low
}
five_card_draw {
name "Five Card Draw"
best_hand "best_hand_c -hi"
deal {
{{deal all 5}} {{discard}} {{deal all to:5}}
}
hand { player 5 }
pot { 1 high }
deck standard
}
badugi {
name "Badugi"
best_hand "best_hand_badugi"
deal {
{{deal all 4}} {{discard any}} {{deal all to:4}} {{discard any}} {{deal all to:4}} {{discard any}} {{deal all to:4}}
}
hand { player 4 }
pot { 1 low }
deck standard
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment