Advertisement
Guest User

Untitled

a guest
Oct 9th, 2018
362
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
JSON 22.27 KB | None | 0 0
  1. {
  2.     "PreFlop": {
  3.         "groups": {
  4.             "0": ["AAo", "KKo"],
  5.             "1": ["QQo", "JJo", "AKs"],
  6.             "2": ["TTo", "AQs", "AJs", "KQs", "AKo"],
  7.             "3": ["99o", "JTs", "QJs", "KJs", "ATs", "AQo"],
  8.             "4": ["T9s", "KQo", "88o", "QTs", "98s", "J9s", "AJo", "KTs"],
  9.             "5": ["77o", "87s", "Q9s", "T8s", "KJo", "QJo", "JTo", "76s", "97s", "65s", "A2s", "A3s", "A4s", "A5s", "A6s", "A7s", "A8s", "A9s"],
  10.             "6": ["66o", "ATo", "55o", "86s", "KTo", "QTo", "54s", "K9s", "J8s", "75s"],
  11.             "7": ["44o", "J9o", "64s", "T9o", "53s", "33o", "43s", "22o", "T7s", "Q8s", "K2s", "K3s", "K4s", "K5s", "K6s", "K7s", "K8s"],
  12.             "8": ["87o", "A9o", "Q9o", "76o", "42s", "32s", "96s", "85s", "J8s", "J7s", "65o", "54o", "74s", "K9o", "T8o"],
  13.             "9": ["A8o", "Q8o", "J9o", "J8o", "T8o", "T7o", "98o", "97o", "87o", "86o", "65o", "A2o"]
  14.         },
  15.         "pos": {
  16.             "sb": ["0", "1", "2", "3"],
  17.             "bb": ["0", "1", "2", "3"],
  18.             "utg": ["0", "1", "2", "3"],
  19.             "utg1": ["0", "1", "2", "3"],
  20.             "utg2": ["0", "1", "2", "3", "4", "5"],
  21.             "mp": ["0", "1", "2", "3", "4", "5", "6"],
  22.             "hijack": ["0", "1", "2", "3", "4", "5", "6", "7", "8"],
  23.             "cutoff": ["0", "1", "2", "3", "4", "5", "6", "7", "8"],
  24.             "dealer": ["0", "1", "2", "3", "4", "5", "6", "7", "8"]
  25.         },
  26.         "hands": {
  27.             "0": {
  28.                 "raiseto": [
  29.                     {"raiseto <= buyIn*0.05 and buyIn*0.05 <= stack*0.80 and position != 'utg'": "buyIn*0.05"},
  30.                     {"raiseto <= stack*0.80 and position != 'utg'": "buyIn*0.06"}
  31.                 ],
  32.                 "call": [{"call <= stack": "call"}]
  33.             },
  34.             "1": {
  35.                 "raiseto": [
  36.                     {"raiseto <= buyIn*0.05 and buyIn*0.05 <= stack*0.80 and position != 'utg'": "buyIn*0.05"},
  37.                     {"raiseto <= stack*0.80 and position != 'utg'": "buyIn*0.06"}
  38.                 ],
  39.                 "call": [{"call <= stack*0.80": "call"}]
  40.             },
  41.             "2": {
  42.                 "raiseto": [
  43.                     {"raiseto <= buyIn*0.04 and buyIn*0.04 <= stack*0.60 and position != 'utg'": "buyIn*0.04"},
  44.                     {"raiseto <= stack*0.60 and position != 'utg'": "buyIn*0.06"}
  45.                 ],
  46.                 "call": [{"call <= stack*0.60": "call"}]
  47.             },
  48.             "3": {
  49.                 "call": [{"call <= stack*0.60": "call"}]
  50.             },
  51.             "4": {
  52.                 "call": [{"call <= stack*0.40": "call"}]
  53.             },
  54.             "5": {
  55.                 "call": [{"call <= stack*0.15": "call"}]
  56.             },
  57.             "6": {
  58.                 "call": [{"call <= stack*0.12 and not is_raiseme": "call"}]
  59.             },
  60.             "7,8": {
  61.                 "call": [{"call <= stack*0.08 and not is_raiseme": "call"}]
  62.             }
  63.         }
  64.     },
  65.     "in": {
  66.         "Flop": {
  67.             "StraightFlush,FoufOfAKind,FullHouse,Flush": {
  68.                 "bet": [{"all": "pot_curr_max*0.75"}],
  69.                 "call": [{"all": "call"}]
  70.             },
  71.             "Straight": {
  72.                 "bet": [{"all": "pot_curr_max*0.75"}],
  73.                 "raiseto": [{"dry_board and raiseto <= pot_curr_max*0.35": "pot_curr_max*0.35"}],
  74.                 "call": [{"all": "call"}]
  75.             },
  76.             "ThreeOfAKind": {
  77.                 "bet": [{"all": "pot_curr_max*0.50"}],
  78.                 "raiseto": [{"dry_board and raiseto <= pot_curr_max*0.35": "pot_curr_max*0.35"}],
  79.                 "call": [
  80.                     {"wet_board and call <= stack*0.80": "call"},
  81.                     {"dry_board": "call"},
  82.                     {"aggressor": "call"}
  83.                 ]
  84.             },
  85.             "TopTwoPair": {
  86.                 "bet": [{"pot_curr_max*0.50 <= stack*0.70": "pot_curr_max*0.50"}],
  87.                 "raiseto": [
  88.                     {"dry_board and raiseto <= pot_curr_max*0.50 and pot_curr_max*0.50 <= stack*0.70": "pot_curr_max*0.50"},
  89.                     {"wet_board and raiseto <= pot_curr_max*0.30 and pot_curr_max*0.30 <= stack*0.50": "pot_curr_max*0.30"},
  90.                     {"pot_odds_raise > hand_odds and raiseto <= stack*0.80": "buyIn*0.06"}
  91.                 ],
  92.                 "call": [
  93.                     {"wet_board and call <= stack*0.60": "call"},
  94.                     {"dry_board and call <= stack*0.80": "call"},
  95.                     {"pot_curr_max >= stack*0.50 and aggressor and call <= stack*0.80": "call"},
  96.                     {"pot_odds > hand_odds and call <= stack*0.80": "call"}
  97.                 ]
  98.             },
  99.             "TwoPair": {
  100.                 "call": [
  101.                     {"call <= stack*0.10": "call"},
  102.                     {"pot_odds > hand_odds and call <= stack*0.80": "call"}
  103.                 ]
  104.             },
  105.             "TopPair,MidFullHouse": {
  106.                 "bet": [{"pot_curr_max*0.50 <= stack*0.35": "pot_curr_max*0.50"}],
  107.                 "call": [
  108.                     {"wet_board and call <= stack*0.40": "call"},
  109.                     {"dry_board and call <= stack*0.50": "call"},
  110.                     {"pot_curr_max >= stack*0.50 and aggressor and call <= stack*0.75": "call"},
  111.                     {"dry_board and simplify_my_hand in ['AAo', 'KKo']": "call"},
  112.                     {"pot_odds > hand_odds and call <= stack*0.80": "call"}
  113.                 ]
  114.             },
  115.             "MidPair": {
  116.                 "call": [
  117.                     {"call <= stack*0.10": "call"},
  118.                     {"pot_odds > hand_odds and call <= stack*0.80": "call"}
  119.                 ]
  120.             },
  121.             "Pair,BadFullHouse": {
  122.                 "call": [
  123.                     {"call <= stack*0.08": "call"},
  124.                     {"pot_odds > hand_odds and call <= stack*0.80": "call"}
  125.                 ]
  126.             },
  127.             "BoardPair,BoardTwoPair,BoardThreeOfAKind,BoardFlush,BoardFullHouse,BoardFoufOfAKind,BoardStraightFlush":{
  128.                 "call": [
  129.                     {"pot_odds > hand_odds and call <= stack*0.80": "call"}
  130.                 ]
  131.             },
  132.             "HighCard,TopHighCard,BadPair": {
  133.                 "call": [
  134.                     {"flush_straight_draw and call <= stack*0.05": "call"},
  135.                     {"pot_odds > hand_odds and call <= stack*0.80": "call"}
  136.                 ]
  137.             }
  138.         },
  139.         "Turn": {
  140.             "StraightFlush,FoufOfAKind,FullHouse,Flush": {
  141.                 "bet": [{"all": "pot_curr_max*0.75"}],
  142.                 "raiseto": [{"raiseto <= pot_curr_max*0.50": "pot_curr_max*0.50"}],
  143.                 "call": [{"all": "call"}]
  144.             },
  145.             "Straight": {
  146.                 "bet": [{"all": "pot_curr_max*0.75"}],
  147.                 "raiseto": [
  148.                     {"dry_board and raiseto <= pot_curr_max*0.50": "pot_curr_max*0.50"},
  149.                     {"wet_board and raiseto <= pot_curr_max*0.40": "pot_curr_max*0.40"}
  150.                 ],
  151.                 "call": [{"all": "call"}]
  152.             },
  153.             "ThreeOfAKind": {
  154.                 "bet": [{"all": "pot_curr_max*0.75"}],
  155.                 "raiseto": [
  156.                     {"dry_board and raiseto <= pot_curr_max*0.45": "pot_curr_max*0.45"},
  157.                     {"wet_board and raiseto <= pot_curr_max*0.30": "pot_curr_max*0.30"}
  158.                 ],
  159.                 "call": [
  160.                     {"wet_board and call <= stack*0.80": "call"},
  161.                     {"dry_board": "call"},
  162.                     {"aggressor": "call"}
  163.                 ]
  164.             },
  165.             "TopTwoPair": {
  166.                 "bet": [{"dry_board and pot_curr_max*0.60 <= stack*0.70": "pot_curr_max*0.60"}],
  167.                 "raiseto": [
  168.                     {"dry_board and raiseto <= pot_curr_max*0.70 and pot_curr_max*0.70 <= stack*0.70": "pot_curr_max*0.70"},
  169.                     {"wet_board and raiseto <= pot_curr_max*0.50 and pot_curr_max*0.50 <= stack*0.60": "pot_curr_max*0.50"},
  170.                     {"pot_odds_raise > hand_odds and raiseto <= stack*0.80": "buyIn*0.06"}
  171.                 ],
  172.                 "call": [
  173.                     {"wet_board and call <= stack*0.70": "call"},
  174.                     {"dry_board and call <= stack*0.80": "call"},
  175.                     {"pot_curr_max >= stack*0.50 and aggressor and call <= stack*0.90": "call"},
  176.                     {"pot_odds > hand_odds and call <= stack*0.80": "call"}
  177.                 ]
  178.             },
  179.             "TwoPair": {
  180.                 "call": [
  181.                     {"call <= stack*0.10": "call"},
  182.                     {"pot_odds > hand_odds and call <= stack*0.80": "call"}
  183.                 ]
  184.             },
  185.             "TopPair,MidFullHouse": {
  186.                 "bet": [{"dry_board and pot_curr_max*0.50 <= stack*0.30": "pot_curr_max*0.50"}],
  187.                 "check": [{"not aggressor": "check"}],
  188.                 "call": [
  189.                     {"call <= stack*0.40": "call"},
  190.                     {"pot_curr_max >= stack*0.50 and aggressor and call <= stack*0.70": "call"},
  191.                     {"pot_odds > hand_odds and call <= stack*0.80": "call"}
  192.                 ]
  193.             },
  194.             "MidPair": {
  195.                 "call": [
  196.                     {"call <= stack*0.15": "call"},
  197.                     {"pot_odds > hand_odds and call <= stack*0.80": "call"}
  198.                 ]
  199.             },
  200.             "Pair,BadFullHouse": {
  201.                 "call": [
  202.                     {"call <= stack*0.08": "call"},
  203.                     {"pot_odds > hand_odds and call <= stack*0.80": "call"}
  204.                 ]
  205.             },
  206.             "BoardPair,BoardTwoPair,BoardThreeOfAKind,BoardFlush,BoardFullHouse,BoardFoufOfAKind,BoardStraightFlush":{
  207.                 "call": [
  208.                     {"pot_odds > hand_odds and call <= stack*0.80": "call"}
  209.                 ]
  210.             },
  211.             "HighCard,TopHighCard,BadPair": {
  212.                 "call": [
  213.                     {"flush_straight_draw and call <= stack*0.05": "call"},
  214.                     {"pot_odds > hand_odds and call <= stack*0.80": "call"}
  215.                 ]
  216.             }
  217.         },
  218.         "River": {
  219.             "StraightFlush,FoufOfAKind,FullHouse": {
  220.                 "bet": [{"all": "pot_curr_max"}],
  221.                 "raiseto": [{"raiseto <= pot_curr_max": "pot_curr_max"}],
  222.                 "call": [{"all": "call"}]
  223.             },
  224.             "Flush": {
  225.                 "bet": [{"all": "pot_curr_max*0.70"}],
  226.                 "raiseto": [
  227.                     {"raiseto <= pot_curr_max*0.50": "pot_curr_max*0.50"}
  228.                 ],
  229.                 "call": [{"all": "call"}]
  230.             },
  231.             "Straight": {
  232.                 "bet": [{"all": "pot_curr_max*0.70"}],
  233.                 "raiseto": [
  234.                     {"dry_board and raiseto <= pot_curr_max*0.40": "pot_curr_max*0.40"},
  235.                     {"wet_board and raiseto <= pot_curr_max*0.20": "pot_curr_max*0.20"}
  236.                 ],
  237.                 "call": [{"all": "call"}]
  238.             },
  239.             "ThreeOfAKind": {
  240.                 "bet": [{"dry_board and pot_curr_max*0.70 <= stack*0.60": "pot_curr_max*0.70"}],
  241.                 "raiseto": [
  242.                     {"dry_board and raiseto <= pot_curr_max*0.30": "pot_curr_max*0.30"}
  243.                 ],
  244.                 "call": [{"all": "call"}]
  245.             },
  246.             "TopTwoPair": {
  247.                 "bet": [{"dry_board and pot_curr_max*0.60 <= stack*0.70": "pot_curr_max*0.60"}],
  248.                 "call": [
  249.                     {"wet_board and call <= stack*0.55": "call"},
  250.                     {"dry_board and call <= stack*0.75": "call"},
  251.                     {"pot_curr_max >= stack*0.50 and aggressor and call <= stack*0.90": "call"}
  252.                 ]
  253.             },
  254.             "TwoPair": {
  255.                 "call": [
  256.                     {"wet_board and call <= stack*0.14": "call"},
  257.                     {"dry_board and call <= stack*0.20": "call"}
  258.                 ]
  259.             },
  260.             "TopPair,MidFullHouse": {
  261.                 "bet": [{"dry_board and pot_curr_max*0.70 <= stack*0.50": "pot_curr_max*0.70"}],
  262.                 "call": [
  263.                     {"pot_curr_max >= stack*0.50 and aggressor and call <= stack*0.70": "call"},
  264.                     {"wet_board and call <= stack*0.40": "call"},
  265.                     {"dry_board and call <= stack*0.60": "call"}
  266.                 ]
  267.             },
  268.             "MidPair": {
  269.                 "call": [
  270.                     {"call <= stack*0.10": "call"}
  271.                 ]
  272.             },
  273.             "Pair,BadFullHouse": {
  274.                 "call": [
  275.                     {"call <= stack*0.08": "call"}
  276.                 ]
  277.             },
  278.             "BoardPair,BoardTwoPair,BoardThreeOfAKind,BoardFlush,BoardFullHouse,BoardFoufOfAKind,BoardStraightFlush":{},
  279.             "HighCard,TopHighCard,BadPair": {}
  280.         }
  281.     },
  282.     "oop": {
  283.         "Flop": {
  284.             "StraightFlush,FoufOfAKind,FullHouse,Flush": {
  285.                 "bet": [{"all": "pot_curr_max*0.50"}],
  286.                 "call": [{"all": "call"}]
  287.             },
  288.             "Straight": {
  289.                 "bet": [{"all": "pot_curr_max*0.50"}],
  290.                 "raiseto": [{"dry_board and raiseto <= pot_curr_max*0.35": "pot_curr_max*0.35"}],
  291.                 "call": [{"all": "call"}]
  292.             },
  293.             "ThreeOfAKind": {
  294.                 "bet": [{"all": "pot_curr_max*0.40"}],
  295.                 "raiseto": [{"dry_board and raiseto <= pot_curr_max*0.35": "pot_curr_max*0.35"}],
  296.                 "call": [
  297.                     {"wet_board and call <= stack*0.80": "call"},
  298.                     {"dry_board": "call"},
  299.                     {"aggressor": "call"}
  300.                 ]
  301.             },
  302.             "TopTwoPair": {
  303.                 "bet": [{"pot_curr_max*0.33 <= stack*0.70": "pot_curr_max*0.33"}],
  304.                 "raiseto": [
  305.                     {"dry_board and raiseto <= pot_curr_max*0.30 and pot_curr_max*0.30 <= stack*0.60": "pot_curr_max*0.30"},
  306.                     {"wet_board and raiseto <= pot_curr_max*0.20 and pot_curr_max*0.20 <= stack*0.40": "pot_curr_max*0.20"},
  307.                     {"pot_odds_raise > hand_odds and raiseto <= stack*0.80": "buyIn*0.06"}
  308.                 ],
  309.                 "call": [
  310.                     {"wet_board and call <= stack*0.60": "call"},
  311.                     {"dry_board and call <= stack*0.80": "call"},
  312.                     {"pot_curr_max >= stack*0.50 and aggressor and call <= stack*0.80": "call"},
  313.                     {"pot_odds > hand_odds and call <= stack*0.80": "call"}
  314.                 ]
  315.             },
  316.             "TwoPair": {
  317.                 "call": [
  318.                     {"call <= stack*0.10": "call"},
  319.                     {"pot_odds > hand_odds and call <= stack*0.80": "call"}
  320.                 ]
  321.             },
  322.             "TopPair,MidFullHouse": {
  323.                 "bet": [{"pot_curr_max*0.38 <= stack*0.20": "pot_curr_max*0.38"}],
  324.                 "call": [
  325.                     {"wet_board and call <= stack*0.30": "call"},
  326.                     {"dry_board and call <= stack*0.40": "call"},
  327.                     {"pot_curr_max >= stack*0.50 and aggressor and call <= stack*0.60": "call"},
  328.                     {"dry_board and simplify_my_hand in ['AAo', 'KKo']": "call"},
  329.                     {"pot_odds > hand_odds and call <= stack*0.80": "call"}
  330.                 ]
  331.             },
  332.             "MidPair": {
  333.                 "call": [
  334.                     {"call <= stack*0.10": "call"},
  335.                     {"pot_odds > hand_odds and call <= stack*0.80": "call"}
  336.                 ]
  337.             },
  338.             "Pair,BadFullHouse": {
  339.                 "call": [
  340.                     {"call <= stack*0.08": "call"},
  341.                     {"pot_odds > hand_odds and call <= stack*0.80": "call"}
  342.                 ]
  343.             },
  344.             "BoardPair,BoardTwoPair,BoardThreeOfAKind,BoardFlush,BoardFullHouse,BoardFoufOfAKind,BoardStraightFlush":{
  345.                 "call": [
  346.                     {"pot_odds > hand_odds and call <= stack*0.80": "call"}
  347.                 ]
  348.             },
  349.             "HighCard,TopHighCard,BadPair": {
  350.                 "call": [
  351.                     {"flush_straight_draw and call <= stack*0.05": "call"},
  352.                     {"pot_odds > hand_odds and call <= stack*0.80": "call"}
  353.                 ]
  354.             }
  355.         },
  356.         "Turn": {
  357.             "StraightFlush,FoufOfAKind,FullHouse,Flush": {
  358.                 "bet": [{"all": "pot_curr_max*0.75"}],
  359.                 "raiseto": [{"raiseto <= pot_curr_max*0.50": "pot_curr_max*0.50"}],
  360.                 "call": [{"all": "call"}]
  361.             },
  362.             "Straight": {
  363.                 "bet": [{"all": "pot_curr_max*0.50"}],
  364.                 "raiseto": [
  365.                     {"dry_board and raiseto <= pot_curr_max*0.50": "pot_curr_max*0.50"},
  366.                     {"wet_board and raiseto <= pot_curr_max*0.40": "pot_curr_max*0.40"}
  367.                 ],
  368.                 "call": [{"all": "call"}]
  369.             },
  370.             "ThreeOfAKind": {
  371.                 "bet": [{"all": "pot_curr_max*0.50"}],
  372.                 "raiseto": [
  373.                     {"dry_board and raiseto <= pot_curr_max*0.45": "pot_curr_max*0.45"},
  374.                     {"wet_board and raiseto <= pot_curr_max*0.30": "pot_curr_max*0.30"}
  375.                 ],
  376.                 "call": [
  377.                     {"wet_board and call <= stack*0.80": "call"},
  378.                     {"dry_board": "call"},
  379.                     {"aggressor": "call"}
  380.                 ]
  381.             },
  382.             "TopTwoPair": {
  383.                 "bet": [{"dry_board and pot_curr_max*0.45 <= stack*0.60": "pot_curr_max*0.45"}],
  384.                 "raiseto": [
  385.                     {"dry_board and raiseto <= pot_curr_max*0.60 and pot_curr_max*0.60 <= stack*0.60": "pot_curr_max*0.60"},
  386.                     {"wet_board and raiseto <= pot_curr_max*0.40 and pot_curr_max*0.40 <= stack*0.50": "pot_curr_max*0.40"},
  387.                     {"pot_odds_raise > hand_odds and raiseto <= stack*0.80": "buyIn*0.06"}
  388.                 ],
  389.                 "call": [
  390.                     {"wet_board and call <= stack*0.60": "call"},
  391.                     {"dry_board and call <= stack*0.80": "call"},
  392.                     {"pot_curr_max >= stack*0.50 and aggressor and call <= stack*0.80": "call"},
  393.                     {"pot_odds > hand_odds and call <= stack*0.70": "call"}
  394.                 ]
  395.             },
  396.             "TwoPair": {
  397.                 "call": [
  398.                     {"call <= stack*0.10": "call"},
  399.                     {"pot_odds > hand_odds and call <= stack*0.70": "call"}
  400.                 ]
  401.             },
  402.             "TopPair,MidFullHouse": {
  403.                 "call": [
  404.                     {"call <= stack*0.40": "call"},
  405.                     {"pot_curr_max >= stack*0.50 and aggressor and call <= stack*0.50": "call"},
  406.                     {"pot_odds > hand_odds and call <= stack*0.70": "call"}
  407.                 ]
  408.             },
  409.             "MidPair": {
  410.                 "call": [
  411.                     {"call <= stack*0.15": "call"},
  412.                     {"pot_odds > hand_odds and call <= stack*0.70": "call"}
  413.                 ]
  414.             },
  415.             "Pair,BadFullHouse": {
  416.                 "call": [
  417.                     {"call <= stack*0.08": "call"},
  418.                     {"pot_odds > hand_odds and call <= stack*0.70": "call"}
  419.                 ]
  420.             },
  421.             "BoardPair,BoardTwoPair,BoardThreeOfAKind,BoardFlush,BoardFullHouse,BoardFoufOfAKind,BoardStraightFlush":{
  422.                 "call": [
  423.                     {"pot_odds > hand_odds and call <= stack*0.70": "call"}
  424.                 ]
  425.             },
  426.             "HighCard,TopHighCard,BadPair": {
  427.                 "call": [
  428.                     {"flush_straight_draw and call <= stack*0.05": "call"},
  429.                     {"pot_odds > hand_odds and call <= stack*0.70": "call"}
  430.                 ]
  431.             }
  432.         },
  433.         "River": {
  434.             "StraightFlush,FoufOfAKind,FullHouse": {
  435.                 "bet": [{"all": "pot_curr_max"}],
  436.                 "raiseto": [{"raiseto <= pot_curr_max": "pot_curr_max"}],
  437.                 "call": [{"all": "call"}]
  438.             },
  439.             "Flush": {
  440.                 "bet": [{"all": "pot_curr_max*0.60"}],
  441.                 "raiseto": [
  442.                     {"raiseto <= pot_curr_max*0.50": "pot_curr_max*0.50"}
  443.                 ],
  444.                 "call": [{"all": "call"}]
  445.             },
  446.             "Straight": {
  447.                 "bet": [{"all": "pot_curr_max*0.60"}],
  448.                 "raiseto": [
  449.                     {"dry_board and raiseto <= pot_curr_max*0.40": "pot_curr_max*0.40"},
  450.                     {"wet_board and raiseto <= pot_curr_max*0.20": "pot_curr_max*0.20"}
  451.                 ],
  452.                 "call": [{"all": "call"}]
  453.             },
  454.             "ThreeOfAKind": {
  455.                 "bet": [{"dry_board and pot_curr_max*0.60 <= stack*0.80": "pot_curr_max*0.60"}],
  456.                 "raiseto": [
  457.                     {"dry_board and raiseto <= pot_curr_max*0.30": "pot_curr_max*0.30"}
  458.                 ],
  459.                 "call": [{"all": "call"}]
  460.             },
  461.             "TopTwoPair": {
  462.                 "bet": [{"dry_board and pot_curr_max*0.33 <= stack*0.60": "pot_curr_max*0.33"}],
  463.                 "call": [
  464.                     {"wet_board and call <= stack*0.55": "call"},
  465.                     {"dry_board and call <= stack*0.75": "call"},
  466.                     {"pot_curr_max >= stack*0.50 and aggressor and call <= stack*0.80": "call"}
  467.                 ]
  468.             },
  469.             "TwoPair": {
  470.                 "call": [
  471.                     {"wet_board and call <= stack*0.14": "call"},
  472.                     {"dry_board and call <= stack*0.20": "call"}
  473.                 ]
  474.             },
  475.             "TopPair,MidFullHouse": {
  476.                 "call": [
  477.                     {"pot_curr_max >= stack*0.50 and aggressor and call <= stack*0.40": "call"},
  478.                     {"wet_board and call <= stack*0.40": "call"},
  479.                     {"dry_board and call <= stack*0.60": "call"}
  480.                 ]
  481.             },
  482.             "MidPair": {
  483.                 "call": [
  484.                     {"call <= stack*0.10": "call"}
  485.                 ]
  486.             },
  487.             "Pair,BadFullHouse": {
  488.                 "call": [
  489.                     {"call <= stack*0.08": "call"}
  490.                 ]
  491.             },
  492.             "BoardPair,BoardTwoPair,BoardThreeOfAKind,BoardFlush,BoardFullHouse,BoardFoufOfAKind,BoardStraightFlush":{},
  493.             "HighCard,TopHighCard,BadPair": {}
  494.         }
  495.     }
  496. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement