Advertisement
epitaque_

R1V1R drafting order

Feb 20th, 2019
333
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 2.92 KB | None | 0 0
  1. --[[
  2.     Contains order in which the draft proceeds
  3. ]]
  4. DRAFTING_ORDERS = {
  5.     -- BO1
  6.     [SERIES_TYPE_BO1] = {
  7.         {
  8.             teams = {2},
  9.             picking = true,
  10.             numSelections = 1,
  11.             time = 20,
  12.         },
  13.         {
  14.             teams = {3},
  15.             picking = true,
  16.             numSelections = 2,
  17.             time = 20,
  18.         },
  19.         {
  20.             teams = {2},
  21.             picking = true,
  22.             numSelections = 2,
  23.             time = 20,
  24.         },
  25.         {
  26.             teams = {3},
  27.             picking = true,
  28.             numSelections = 1,
  29.             time = 20,
  30.         },
  31.         {
  32.             teams = {2, 3},
  33.             picking = false,
  34.             numSelections = 1,
  35.             time = 30
  36.         }
  37.     },
  38.     -- BO3
  39.     [SERIES_TYPE_BO3] = {
  40.         {
  41.             teams = {2},
  42.             picking = true,
  43.             numSelections = 1,
  44.             time = 20,
  45.         },
  46.         {
  47.             teams = {3},
  48.             picking = true,
  49.             numSelections = 2,
  50.             time = 20,
  51.         },
  52.         {
  53.             teams = {2},
  54.             picking = true,
  55.             numSelections = 2,
  56.             time = 20,
  57.         },
  58.         {
  59.             teams = {3},
  60.             picking = true,
  61.             numSelections = 2,
  62.             time = 20,
  63.         },
  64.         {
  65.             teams = {2},
  66.             picking = true,
  67.             numSelections = 2,
  68.             time = 20,
  69.         },
  70.         {
  71.             teams = {3},
  72.             picking = true,
  73.             numSelections = 1,
  74.             time = 20,
  75.         },
  76.         {
  77.             teams = {2, 3},
  78.             picking = false,
  79.             numSelections = 2,
  80.             time = 30,
  81.         }
  82.     },
  83.     -- BO5
  84.     [SERIES_TYPE_BO5] = {
  85.         {
  86.             teams = {2},
  87.             picking = true,
  88.             numSelections = 1,
  89.             time = 20,
  90.         },
  91.         {
  92.             teams = {3},
  93.             picking = true,
  94.             numSelections = 2,
  95.             time = 20,
  96.         },
  97.         {
  98.             teams = {2},
  99.             picking = true,
  100.             numSelections = 2,
  101.             time = 20,
  102.         },
  103.         {
  104.             teams = {3},
  105.             picking = true,
  106.             numSelections = 2,
  107.             time = 20,
  108.         },
  109.         {
  110.             teams = {2},
  111.             picking = true,
  112.             numSelections = 2,
  113.             time = 20,
  114.         },
  115.         {
  116.             teams = {3},
  117.             picking = true,
  118.             numSelections = 2,
  119.             time = 20,
  120.         },
  121.         {
  122.             teams = {2},
  123.             picking = true,
  124.             numSelections = 2,
  125.             time = 20,
  126.         },
  127.         {
  128.             teams = {3},
  129.             picking = true,
  130.             numSelections = 1,
  131.             time = 20,
  132.         },
  133.         {
  134.             teams = {2, 3},
  135.             picking = false,
  136.             numSelections = 2,
  137.             time = 30,
  138.         }
  139.     },
  140.     -- BO7
  141.     [SERIES_TYPE_BO7] = {
  142.         {
  143.             teams = {2},
  144.             picking = true,
  145.             numSelections = 1,
  146.             time = 20,
  147.         },
  148.         {
  149.             teams = {3},
  150.             picking = true,
  151.             numSelections = 2,
  152.             time = 20,
  153.         },
  154.         {
  155.             teams = {2},
  156.             picking = true,
  157.             numSelections = 2,
  158.             time = 20,
  159.         },
  160.         {
  161.             teams = {3},
  162.             picking = true,
  163.             numSelections = 2,
  164.             time = 20,
  165.         },
  166.         {
  167.             teams = {2},
  168.             picking = true,
  169.             numSelections = 2,
  170.             time = 20,
  171.         },
  172.         {
  173.             teams = {3},
  174.             picking = true,
  175.             numSelections = 2,
  176.             time = 20,
  177.         },
  178.         {
  179.             teams = {2},
  180.             picking = true,
  181.             numSelections = 2,
  182.             time = 20,
  183.         },
  184.         {
  185.             teams = {3},
  186.             picking = true,
  187.             numSelections = 2,
  188.             time = 20,
  189.         },
  190.         {
  191.             teams = {2},
  192.             picking = true,
  193.             numSelections = 2,
  194.             time = 20,
  195.         },
  196.         {
  197.             teams = {3},
  198.             picking = true,
  199.             numSelections = 1,
  200.             time = 20,
  201.         },
  202.         {
  203.             teams = {2, 3},
  204.             picking = false,
  205.             numSelections = 2,
  206.             time = 30,
  207.         }
  208.     },
  209. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement