Advertisement
epitaque_

Untitled

Feb 10th, 2019
369
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 1.85 KB | None | 0 0
  1. local DRAFTING_ORDERS = {
  2.     -- BO1
  3.     {
  4.         {
  5.             teams = {2},
  6.             picking = true,
  7.             numSelections = 1,
  8.             time = 20,
  9.         },
  10.         {
  11.             teams = {3},
  12.             picking = true,
  13.             numSelections = 2,
  14.             time = 20,
  15.         },
  16.         {
  17.             teams = {2},
  18.             picking = true,
  19.             numSelections = 2,
  20.             time = 20,
  21.         },
  22.         {
  23.             teams = {3},
  24.             picking = true,
  25.             numSelections = 1,
  26.             time = 20,
  27.         },
  28.         {
  29.             teams = {2, 3},
  30.             picking = false,
  31.             numSelections = 2,
  32.             time = 30
  33.         }
  34.     },
  35.     -- BO3
  36.     {
  37.         {
  38.             teams = {2},
  39.             picking = true,
  40.             numSelections = 1,
  41.             time = 20,
  42.         },
  43.         {
  44.             teams = {3},
  45.             picking = true,
  46.             numSelections = 2,
  47.             time = 20,
  48.         },
  49.         {
  50.             teams = {2},
  51.             picking = true,
  52.             numSelections = 2,
  53.             time = 20,
  54.         },
  55.         {
  56.             teams = {3},
  57.             picking = true,
  58.             numSelections = 2,
  59.             time = 20,
  60.         },
  61.         {
  62.             teams = {2},
  63.             picking = true,
  64.             numSelections = 2,
  65.             time = 20,
  66.         },
  67.         {
  68.             teams = {3},
  69.             picking = true,
  70.             numSelections = 1,
  71.             time = 20,
  72.         },
  73.         {
  74.             teams = {2, 3},
  75.             picking = false,
  76.             numSelections = 2,
  77.             time = 30,
  78.         }
  79.     },
  80.     -- BO5
  81.     {
  82.         {
  83.             teams = {2},
  84.             picking = true,
  85.             numSelections = 1,
  86.             time = 20,
  87.         },
  88.         {
  89.             teams = {3},
  90.             picking = true,
  91.             numSelections = 2,
  92.             time = 20,
  93.         },
  94.         {
  95.             teams = {2},
  96.             picking = true,
  97.             numSelections = 2,
  98.             time = 20,
  99.         },
  100.         {
  101.             teams = {3},
  102.             picking = true,
  103.             numSelections = 2,
  104.             time = 20,
  105.         },
  106.         {
  107.             teams = {2},
  108.             picking = true,
  109.             numSelections = 2,
  110.             time = 20,
  111.         },
  112.         {
  113.             teams = {3},
  114.             picking = true,
  115.             numSelections = 2,
  116.             time = 20,
  117.         },
  118.         {
  119.             teams = {2},
  120.             picking = true,
  121.             numSelections = 2,
  122.             time = 20,
  123.         },
  124.         {
  125.             teams = {3},
  126.             picking = true,
  127.             numSelections = 1,
  128.             time = 20,
  129.         },
  130.         {
  131.             teams = {2, 3},
  132.             picking = false,
  133.             numSelections = 2,
  134.             time = 30,
  135.         }
  136.     },
  137. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement