ArenaMatchControlConfig.lua 56 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436143714381439144014411442144314441445144614471448144914501451145214531454145514561457145814591460146114621463146414651466146714681469147014711472147314741475147614771478147914801481148214831484148514861487148814891490149114921493149414951496149714981499150015011502150315041505150615071508150915101511151215131514151515161517151815191520152115221523152415251526152715281529153015311532153315341535153615371538153915401541154215431544154515461547154815491550155115521553155415551556155715581559156015611562156315641565156615671568156915701571157215731574157515761577157815791580
  1. local root = {
  2. {
  3. minCups = 0,
  4. maxCups = 100,
  5. win = {-9999,9999},
  6. exSkillPercList = {0},
  7. attackListWeight = {{{1,1,1,1},100}},
  8. baseLevel = 1,
  9. robotLinkType = {{"L",100}},
  10. robotSupplyWeight1 = {{"L27", 100}},
  11. robotSupplyWeight2 = {{"L27", 100}},
  12. robotRound = 10,
  13. playerSupplyWeight1 = {{"L49", 100}},
  14. playerSupplyWeight2 = {{"L49", 100}},
  15. playerRound = 10,
  16. yellowWeight = {{4011,100}},
  17. blueWeight = {{3011,100}},
  18. greenWeight = {{1011,100}},
  19. redWeight = {{2011,100}}
  20. },
  21. {
  22. minCups = 100,
  23. maxCups = 150,
  24. win = {2,9999},
  25. exSkillPercList = {0},
  26. attackListWeight = {{{1,1,2,2},100}},
  27. baseLevel = 1,
  28. robotLinkType = {{"R",100}},
  29. robotSupplyWeight1 = {{"B57", 100}},
  30. robotSupplyWeight2 = {{"A57", 100}},
  31. robotRound = 11,
  32. playerSupplyWeight1 = {{"B57", 100}},
  33. playerSupplyWeight2 = {{"A57", 100}},
  34. playerRound = 10,
  35. yellowWeight = {{4011,100}},
  36. blueWeight = {{3011,100}},
  37. greenWeight = {{1011,100}},
  38. redWeight = {{2011,100}}
  39. },
  40. {
  41. minCups = 100,
  42. maxCups = 150,
  43. win = {0,1},
  44. exSkillPercList = {0},
  45. attackListWeight = {{{1,1,1,2},100}},
  46. baseLevel = 1,
  47. robotLinkType = {{"R",100}},
  48. robotSupplyWeight1 = {{"A57", 100}},
  49. robotSupplyWeight2 = {{"L27", 100}},
  50. robotRound = 11,
  51. playerSupplyWeight1 = {{"A57", 100}},
  52. playerSupplyWeight2 = {{"L27", 100}},
  53. playerRound = 10,
  54. yellowWeight = {{4011,100}},
  55. blueWeight = {{3011,100}},
  56. greenWeight = {{1011,100}},
  57. redWeight = {{2011,100}}
  58. },
  59. {
  60. minCups = 100,
  61. maxCups = 150,
  62. win = {-9999,-1},
  63. exSkillPercList = {0},
  64. attackListWeight = {{{1,1,1,2},100}},
  65. baseLevel = 1,
  66. robotLinkType = {{"R",100}},
  67. robotSupplyWeight1 = {{"L27", 100}},
  68. robotSupplyWeight2 = {{"L27", 100}},
  69. robotRound = 10,
  70. playerSupplyWeight1 = {{"R", 100}},
  71. playerSupplyWeight2 = {{"R", 100}},
  72. playerRound = 10,
  73. yellowWeight = {{4011,100}},
  74. blueWeight = {{3011,100}},
  75. greenWeight = {{1011,100}},
  76. redWeight = {{2011,100}}
  77. },
  78. {
  79. minCups = 150,
  80. maxCups = 200,
  81. win = {2,9999},
  82. exSkillPercList = {100},
  83. attackListWeight = {{{1,2,2,2},100}},
  84. baseLevel = 1,
  85. robotLinkType = {{"W",100}},
  86. robotSupplyWeight1 = {{"B57", 100}},
  87. robotSupplyWeight2 = {{"A57", 100}},
  88. robotRound = 11,
  89. playerSupplyWeight1 = {{"B57", 100}},
  90. playerSupplyWeight2 = {{"A57", 100}},
  91. playerRound = 10,
  92. yellowWeight = {{4011,100}},
  93. blueWeight = {{3011,20},{3031,60},{3051,20}},
  94. greenWeight = {{1011,100}},
  95. redWeight = {{2011,100}}
  96. },
  97. {
  98. minCups = 150,
  99. maxCups = 200,
  100. win = {-1,1},
  101. exSkillPercList = {100},
  102. attackListWeight = {{{1,1,2,2},100}},
  103. baseLevel = 1,
  104. robotLinkType = {{"R",100}},
  105. robotSupplyWeight1 = {{"A57", 100}},
  106. robotSupplyWeight2 = {{"L27", 100}},
  107. robotRound = 11,
  108. playerSupplyWeight1 = {{"A57", 100}},
  109. playerSupplyWeight2 = {{"L27", 100}},
  110. playerRound = 10,
  111. yellowWeight = {{4011,100}},
  112. blueWeight = {{3011,20},{3031,60},{3051,20}},
  113. greenWeight = {{1011,100}},
  114. redWeight = {{2011,100}}
  115. },
  116. {
  117. minCups = 150,
  118. maxCups = 200,
  119. win = {-9999,-2},
  120. exSkillPercList = {100},
  121. attackListWeight = {{{1,1,2,2},100}},
  122. baseLevel = 1,
  123. robotLinkType = {{"R",100}},
  124. robotSupplyWeight1 = {{"L27", 100}},
  125. robotSupplyWeight2 = {{"L27", 100}},
  126. robotRound = 10,
  127. playerSupplyWeight1 = {{"R", 100}},
  128. playerSupplyWeight2 = {{"R", 100}},
  129. playerRound = 10,
  130. yellowWeight = {{4011,100}},
  131. blueWeight = {{3011,20},{3031,60},{3051,20}},
  132. greenWeight = {{1011,100}},
  133. redWeight = {{2011,100}}
  134. },
  135. {
  136. minCups = 200,
  137. maxCups = 250,
  138. win = {2,9999},
  139. exSkillPercList = {50,60,70},
  140. attackListWeight = {{{2,2,2,2},70},{{1,2,2,3},30}},
  141. baseLevel = 2,
  142. robotLinkType = {{"W",100}},
  143. robotSupplyWeight1 = {{"B57", 100}},
  144. robotSupplyWeight2 = {{"A57", 100}},
  145. robotRound = 11,
  146. playerSupplyWeight1 = {{"B57", 100}},
  147. playerSupplyWeight2 = {{"A57", 100}},
  148. playerRound = 10,
  149. yellowWeight = {{4011,100}},
  150. blueWeight = {{3011,20},{3031,60},{3051,20}},
  151. greenWeight = {{1011,100}},
  152. redWeight = {{2011,100}}
  153. },
  154. {
  155. minCups = 200,
  156. maxCups = 250,
  157. win = {-1,1},
  158. exSkillPercList = {30,40,50},
  159. attackListWeight = {{{1,2,2,2},100}},
  160. baseLevel = 1,
  161. robotLinkType = {{"R",100}},
  162. robotSupplyWeight1 = {{"A57", 100}},
  163. robotSupplyWeight2 = {{"L27", 100}},
  164. robotRound = 11,
  165. playerSupplyWeight1 = {{"A57", 100}},
  166. playerSupplyWeight2 = {{"L27", 100}},
  167. playerRound = 10,
  168. yellowWeight = {{4011,100}},
  169. blueWeight = {{3011,20},{3031,60},{3051,20}},
  170. greenWeight = {{1011,100}},
  171. redWeight = {{2011,100}}
  172. },
  173. {
  174. minCups = 200,
  175. maxCups = 250,
  176. win = {-9999,-2},
  177. exSkillPercList = {30,40,50},
  178. attackListWeight = {{{1,2,2,2},100}},
  179. baseLevel = 1,
  180. robotLinkType = {{"R",100}},
  181. robotSupplyWeight1 = {{"L27", 100}},
  182. robotSupplyWeight2 = {{"L27", 100}},
  183. robotRound = 10,
  184. playerSupplyWeight1 = {{"R", 100}},
  185. playerSupplyWeight2 = {{"R", 100}},
  186. playerRound = 10,
  187. yellowWeight = {{4011,100}},
  188. blueWeight = {{3011,20},{3031,60},{3051,20}},
  189. greenWeight = {{1011,100}},
  190. redWeight = {{2011,100}}
  191. },
  192. {
  193. minCups = 250,
  194. maxCups = 300,
  195. win = {2,9999},
  196. exSkillPercList = {50,60,70},
  197. attackListWeight = {{{2,2,2,3},70},{{1,2,3,3},30}},
  198. baseLevel = 2,
  199. robotLinkType = {{"W",100}},
  200. robotSupplyWeight1 = {{"B57", 100}},
  201. robotSupplyWeight2 = {{"A57", 100}},
  202. robotRound = 11,
  203. playerSupplyWeight1 = {{"B57", 100}},
  204. playerSupplyWeight2 = {{"A57", 100}},
  205. playerRound = 10,
  206. yellowWeight = {{4011,100}},
  207. blueWeight = {{3011,20},{3031,60},{3051,20}},
  208. greenWeight = {{1011,100}},
  209. redWeight = {{2011,100}}
  210. },
  211. {
  212. minCups = 250,
  213. maxCups = 300,
  214. win = {-1,1},
  215. exSkillPercList = {50,60,70},
  216. attackListWeight = {{{2,2,2,2},100}},
  217. baseLevel = 2,
  218. robotLinkType = {{"R",100}},
  219. robotSupplyWeight1 = {{"A57", 100}},
  220. robotSupplyWeight2 = {{"L27", 100}},
  221. robotRound = 11,
  222. playerSupplyWeight1 = {{"A57", 100}},
  223. playerSupplyWeight2 = {{"L27", 100}},
  224. playerRound = 10,
  225. yellowWeight = {{4011,100}},
  226. blueWeight = {{3011,20},{3031,60},{3051,20}},
  227. greenWeight = {{1011,100}},
  228. redWeight = {{2011,100}}
  229. },
  230. {
  231. minCups = 250,
  232. maxCups = 300,
  233. win = {-9999,-2},
  234. exSkillPercList = {30,40,50},
  235. attackListWeight = {{{2,2,2,2},100}},
  236. baseLevel = 2,
  237. robotLinkType = {{"R",100}},
  238. robotSupplyWeight1 = {{"L27", 100}},
  239. robotSupplyWeight2 = {{"L27", 100}},
  240. robotRound = 10,
  241. playerSupplyWeight1 = {{"R", 100}},
  242. playerSupplyWeight2 = {{"R", 100}},
  243. playerRound = 10,
  244. yellowWeight = {{4011,100}},
  245. blueWeight = {{3011,20},{3031,60},{3051,20}},
  246. greenWeight = {{1011,100}},
  247. redWeight = {{2011,100}}
  248. },
  249. {
  250. minCups = 300,
  251. maxCups = 350,
  252. win = {2,9999},
  253. exSkillPercList = {50,60,70},
  254. attackListWeight = {{{2,2,3,3},60},{{1,3,3,3},20},{{1,2,3,4},10},{{2,2,2,4},10}},
  255. baseLevel = 2,
  256. robotLinkType = {{"W",100}},
  257. robotSupplyWeight1 = {{"B57", 100}},
  258. robotSupplyWeight2 = {{"A57", 100}},
  259. robotRound = 11,
  260. playerSupplyWeight1 = {{"B57", 100}},
  261. playerSupplyWeight2 = {{"A57", 100}},
  262. playerRound = 10,
  263. yellowWeight = {{4011,100}},
  264. blueWeight = {{3011,20},{3031,40},{3051,40}},
  265. greenWeight = {{1011,70},{1021,30}},
  266. redWeight = {{2011,30},{2031,70}}
  267. },
  268. {
  269. minCups = 300,
  270. maxCups = 350,
  271. win = {-1,1},
  272. exSkillPercList = {50,60,70},
  273. attackListWeight = {{{2,2,2,3},70},{{1,2,3,3},30}},
  274. baseLevel = 2,
  275. robotLinkType = {{"R",100}},
  276. robotSupplyWeight1 = {{"A57", 100}},
  277. robotSupplyWeight2 = {{"L27", 100}},
  278. robotRound = 11,
  279. playerSupplyWeight1 = {{"A57", 100}},
  280. playerSupplyWeight2 = {{"L27", 100}},
  281. playerRound = 10,
  282. yellowWeight = {{4011,100}},
  283. blueWeight = {{3011,20},{3031,40},{3051,40}},
  284. greenWeight = {{1011,70},{1021,30}},
  285. redWeight = {{2011,30},{2031,70}}
  286. },
  287. {
  288. minCups = 300,
  289. maxCups = 350,
  290. win = {-9999,-2},
  291. exSkillPercList = {30,40,50},
  292. attackListWeight = {{{2,2,2,3},70},{{1,2,3,3},30}},
  293. baseLevel = 2,
  294. robotLinkType = {{"R",100}},
  295. robotSupplyWeight1 = {{"L27", 100}},
  296. robotSupplyWeight2 = {{"L27", 100}},
  297. robotRound = 10,
  298. playerSupplyWeight1 = {{"R", 100}},
  299. playerSupplyWeight2 = {{"R", 100}},
  300. playerRound = 10,
  301. yellowWeight = {{4011,100}},
  302. blueWeight = {{3011,20},{3031,40},{3051,40}},
  303. greenWeight = {{1011,70},{1021,30}},
  304. redWeight = {{2011,30},{2031,70}}
  305. },
  306. {
  307. minCups = 350,
  308. maxCups = 400,
  309. win = {2,9999},
  310. exSkillPercList = {50,60,70},
  311. attackListWeight = {{{2,3,3,3},60},{{2,2,3,4},20},{{1,2,4,4},10},{{1,3,3,4},10}},
  312. baseLevel = 2,
  313. robotLinkType = {{"W",100}},
  314. robotSupplyWeight1 = {{"B57", 100}},
  315. robotSupplyWeight2 = {{"A57", 100}},
  316. robotRound = 11,
  317. playerSupplyWeight1 = {{"B57", 100}},
  318. playerSupplyWeight2 = {{"A57", 100}},
  319. playerRound = 10,
  320. yellowWeight = {{4011,100}},
  321. blueWeight = {{3011,20},{3031,40},{3051,40}},
  322. greenWeight = {{1011,70},{1021,30}},
  323. redWeight = {{2011,30},{2031,70}}
  324. },
  325. {
  326. minCups = 350,
  327. maxCups = 400,
  328. win = {-1,1},
  329. exSkillPercList = {50,60,70},
  330. attackListWeight = {{{2,2,3,3},60},{{1,3,3,3},30},{{2,2,2,4},10}},
  331. baseLevel = 2,
  332. robotLinkType = {{"R",100}},
  333. robotSupplyWeight1 = {{"A57", 100}},
  334. robotSupplyWeight2 = {{"L27", 100}},
  335. robotRound = 11,
  336. playerSupplyWeight1 = {{"A57", 100}},
  337. playerSupplyWeight2 = {{"L27", 100}},
  338. playerRound = 10,
  339. yellowWeight = {{4011,100}},
  340. blueWeight = {{3011,20},{3031,40},{3051,40}},
  341. greenWeight = {{1011,70},{1021,30}},
  342. redWeight = {{2011,30},{2031,70}}
  343. },
  344. {
  345. minCups = 350,
  346. maxCups = 400,
  347. win = {-9999,-2},
  348. exSkillPercList = {30,40,50},
  349. attackListWeight = {{{2,2,3,3},60},{{1,3,3,3},30},{{2,2,2,4},10}},
  350. baseLevel = 2,
  351. robotLinkType = {{"R",100}},
  352. robotSupplyWeight1 = {{"L27", 100}},
  353. robotSupplyWeight2 = {{"L27", 100}},
  354. robotRound = 10,
  355. playerSupplyWeight1 = {{"R", 100}},
  356. playerSupplyWeight2 = {{"R", 100}},
  357. playerRound = 10,
  358. yellowWeight = {{4011,100}},
  359. blueWeight = {{3011,20},{3031,40},{3051,40}},
  360. greenWeight = {{1011,70},{1021,30}},
  361. redWeight = {{2011,30},{2031,70}}
  362. },
  363. {
  364. minCups = 400,
  365. maxCups = 450,
  366. win = {2,9999},
  367. exSkillPercList = {70,80,90},
  368. attackListWeight = {{{3,3,3,3},60},{{2,3,3,4},30},{{2,2,4,4},10}},
  369. baseLevel = 3,
  370. robotLinkType = {{"W",100}},
  371. robotSupplyWeight1 = {{"B57", 100}},
  372. robotSupplyWeight2 = {{"A57", 100}},
  373. robotRound = 11,
  374. playerSupplyWeight1 = {{"B57", 100}},
  375. playerSupplyWeight2 = {{"A57", 100}},
  376. playerRound = 10,
  377. yellowWeight = {{4011,30},{4111,70}},
  378. blueWeight = {{3011,20},{3031,40},{3051,40}},
  379. greenWeight = {{1011,70},{1021,30}},
  380. redWeight = {{2011,30},{2031,70}}
  381. },
  382. {
  383. minCups = 400,
  384. maxCups = 450,
  385. win = {-1,1},
  386. exSkillPercList = {50,60,70},
  387. attackListWeight = {{{2,3,3,3},60},{{2,2,3,4},30},{{1,3,3,4},10}},
  388. baseLevel = 2,
  389. robotLinkType = {{"R",100}},
  390. robotSupplyWeight1 = {{"A57", 100}},
  391. robotSupplyWeight2 = {{"L27", 100}},
  392. robotRound = 11,
  393. playerSupplyWeight1 = {{"A57", 100}},
  394. playerSupplyWeight2 = {{"L27", 100}},
  395. playerRound = 10,
  396. yellowWeight = {{4011,30},{4111,70}},
  397. blueWeight = {{3011,20},{3031,40},{3051,40}},
  398. greenWeight = {{1011,70},{1021,30}},
  399. redWeight = {{2011,30},{2031,70}}
  400. },
  401. {
  402. minCups = 400,
  403. maxCups = 450,
  404. win = {-9999,-2},
  405. exSkillPercList = {30,40,50},
  406. attackListWeight = {{{2,3,3,3},60},{{2,2,3,4},30},{{1,3,3,4},10}},
  407. baseLevel = 2,
  408. robotLinkType = {{"R",100}},
  409. robotSupplyWeight1 = {{"L27", 100}},
  410. robotSupplyWeight2 = {{"L27", 100}},
  411. robotRound = 10,
  412. playerSupplyWeight1 = {{"R", 100}},
  413. playerSupplyWeight2 = {{"R", 100}},
  414. playerRound = 10,
  415. yellowWeight = {{4011,30},{4111,70}},
  416. blueWeight = {{3011,20},{3031,40},{3051,40}},
  417. greenWeight = {{1011,70},{1021,30}},
  418. redWeight = {{2011,30},{2031,70}}
  419. },
  420. {
  421. minCups = 450,
  422. maxCups = 500,
  423. win = {2,9999},
  424. exSkillPercList = {70,80,90},
  425. attackListWeight = {{{3,3,3,4},70},{{2,3,4,4},30}},
  426. baseLevel = 3,
  427. robotLinkType = {{"W",100}},
  428. robotSupplyWeight1 = {{"B57", 100}},
  429. robotSupplyWeight2 = {{"A57", 100}},
  430. robotRound = 11,
  431. playerSupplyWeight1 = {{"B57", 100}},
  432. playerSupplyWeight2 = {{"A57", 100}},
  433. playerRound = 10,
  434. yellowWeight = {{4011,10},{4111,30},{4051,60}},
  435. blueWeight = {{3011,20},{3031,40},{3051,40}},
  436. greenWeight = {{1011,70},{1021,30}},
  437. redWeight = {{2011,30},{2031,70}}
  438. },
  439. {
  440. minCups = 450,
  441. maxCups = 500,
  442. win = {-1,1},
  443. exSkillPercList = {50,60,70},
  444. attackListWeight = {{{3,3,3,3},70},{{2,3,3,4},30}},
  445. baseLevel = 3,
  446. robotLinkType = {{"R",100}},
  447. robotSupplyWeight1 = {{"A57", 100}},
  448. robotSupplyWeight2 = {{"L27", 100}},
  449. robotRound = 11,
  450. playerSupplyWeight1 = {{"A57", 100}},
  451. playerSupplyWeight2 = {{"L27", 100}},
  452. playerRound = 10,
  453. yellowWeight = {{4011,30},{4111,70}},
  454. blueWeight = {{3011,20},{3031,40},{3051,40}},
  455. greenWeight = {{1011,70},{1021,30}},
  456. redWeight = {{2011,30},{2031,70}}
  457. },
  458. {
  459. minCups = 450,
  460. maxCups = 500,
  461. win = {-9999,-2},
  462. exSkillPercList = {30,40,50},
  463. attackListWeight = {{{3,3,3,3},70},{{2,3,3,4},30}},
  464. baseLevel = 3,
  465. robotLinkType = {{"R",100}},
  466. robotSupplyWeight1 = {{"L27", 100}},
  467. robotSupplyWeight2 = {{"L27", 100}},
  468. robotRound = 10,
  469. playerSupplyWeight1 = {{"R", 100}},
  470. playerSupplyWeight2 = {{"R", 100}},
  471. playerRound = 10,
  472. yellowWeight = {{4011,30},{4111,70}},
  473. blueWeight = {{3011,20},{3031,40},{3051,40}},
  474. greenWeight = {{1011,70},{1021,30}},
  475. redWeight = {{2011,30},{2031,70}}
  476. },
  477. {
  478. minCups = 500,
  479. maxCups = 550,
  480. win = {5,9999},
  481. exSkillPercList = {90,100,100},
  482. attackListWeight = {{{3,4,4,6},100}},
  483. baseLevel = 3,
  484. robotLinkType = {{"W",100}},
  485. robotSupplyWeight1 = {{"B57", 100}},
  486. robotSupplyWeight2 = {{"A57", 100}},
  487. robotRound = 11,
  488. playerSupplyWeight1 = {{"B57", 100}},
  489. playerSupplyWeight2 = {{"A57", 100}},
  490. playerRound = 10,
  491. yellowWeight = {{4011,10},{4111,30},{4051,60}},
  492. blueWeight = {{3011,20},{3031,40},{3051,40}},
  493. greenWeight = {{1011,50},{1021,50}},
  494. redWeight = {{2111,100}}
  495. },
  496. {
  497. minCups = 500,
  498. maxCups = 550,
  499. win = {2,4},
  500. exSkillPercList = {70,80,90},
  501. attackListWeight = {{{3,3,4,4},60},{{2,4,4,4},30},{{3,3,3,5},10}},
  502. baseLevel = 3,
  503. robotLinkType = {{"W",100}},
  504. robotSupplyWeight1 = {{"B57", 100}},
  505. robotSupplyWeight2 = {{"A57", 100}},
  506. robotRound = 11,
  507. playerSupplyWeight1 = {{"B57", 100}},
  508. playerSupplyWeight2 = {{"A57", 100}},
  509. playerRound = 10,
  510. yellowWeight = {{4011,10},{4111,30},{4051,60}},
  511. blueWeight = {{3011,20},{3031,40},{3051,40}},
  512. greenWeight = {{1011,50},{1021,50}},
  513. redWeight = {{2011,30},{2031,70}}
  514. },
  515. {
  516. minCups = 500,
  517. maxCups = 550,
  518. win = {-1,1},
  519. exSkillPercList = {50,60,70},
  520. attackListWeight = {{{3,3,3,4},70},{{2,3,4,4},30}},
  521. baseLevel = 3,
  522. robotLinkType = {{"R",100}},
  523. robotSupplyWeight1 = {{"A57", 100}},
  524. robotSupplyWeight2 = {{"L27", 100}},
  525. robotRound = 11,
  526. playerSupplyWeight1 = {{"A57", 100}},
  527. playerSupplyWeight2 = {{"L27", 100}},
  528. playerRound = 10,
  529. yellowWeight = {{4011,50},{4111,50}},
  530. blueWeight = {{3011,20},{3031,40},{3051,40}},
  531. greenWeight = {{1011,10},{1021,30},{1121,60}},
  532. redWeight = {{2011,30},{2031,70}}
  533. },
  534. {
  535. minCups = 500,
  536. maxCups = 550,
  537. win = {-9999,-2},
  538. exSkillPercList = {30,40,50},
  539. attackListWeight = {{{3,3,3,4},70},{{2,3,4,4},30}},
  540. baseLevel = 3,
  541. robotLinkType = {{"R",100}},
  542. robotSupplyWeight1 = {{"L27", 100}},
  543. robotSupplyWeight2 = {{"L27", 100}},
  544. robotRound = 10,
  545. playerSupplyWeight1 = {{"R", 100}},
  546. playerSupplyWeight2 = {{"R", 100}},
  547. playerRound = 10,
  548. yellowWeight = {{4011,50},{4111,50}},
  549. blueWeight = {{3011,10},{3031,30},{3121,60}},
  550. greenWeight = {{1011,50},{1021,50}},
  551. redWeight = {{2011,30},{2031,70}}
  552. },
  553. {
  554. minCups = 550,
  555. maxCups = 600,
  556. win = {5,9999},
  557. exSkillPercList = {90,100,100},
  558. attackListWeight = {{{3,4,4,6},100}},
  559. baseLevel = 3,
  560. robotLinkType = {{"W",100}},
  561. robotSupplyWeight1 = {{"B57", 100}},
  562. robotSupplyWeight2 = {{"A57", 100}},
  563. robotRound = 11,
  564. playerSupplyWeight1 = {{"B57", 100}},
  565. playerSupplyWeight2 = {{"A57", 100}},
  566. playerRound = 10,
  567. yellowWeight = {{4011,10},{4111,30},{4051,60}},
  568. blueWeight = {{3011,20},{3031,40},{3051,40}},
  569. greenWeight = {{1011,10},{1021,30},{1121,60}},
  570. redWeight = {{2111,100}}
  571. },
  572. {
  573. minCups = 550,
  574. maxCups = 600,
  575. win = {3,4},
  576. exSkillPercList = {70,80,90},
  577. attackListWeight = {{{3,4,4,4},60},{{3,3,4,5},30},{{2,4,4,5},10}},
  578. baseLevel = 3,
  579. robotLinkType = {{"W",100}},
  580. robotSupplyWeight1 = {{"B57", 100}},
  581. robotSupplyWeight2 = {{"A57", 100}},
  582. robotRound = 11,
  583. playerSupplyWeight1 = {{"B57", 100}},
  584. playerSupplyWeight2 = {{"A57", 100}},
  585. playerRound = 10,
  586. yellowWeight = {{4011,10},{4111,30},{4051,60}},
  587. blueWeight = {{3011,20},{3031,40},{3051,40}},
  588. greenWeight = {{1011,10},{1021,30},{1121,60}},
  589. redWeight = {{2011,40},{2031,40},{2061,20}}
  590. },
  591. {
  592. minCups = 550,
  593. maxCups = 600,
  594. win = {2,2},
  595. exSkillPercList = {70,80,90},
  596. attackListWeight = {{{3,4,4,4},60},{{3,3,4,5},30},{{2,4,4,5},10}},
  597. baseLevel = 3,
  598. robotLinkType = {{"W",100}},
  599. robotSupplyWeight1 = {{"B57", 100}},
  600. robotSupplyWeight2 = {{"A57", 100}},
  601. robotRound = 11,
  602. playerSupplyWeight1 = {{"B57", 100}},
  603. playerSupplyWeight2 = {{"A57", 100}},
  604. playerRound = 10,
  605. yellowWeight = {{4011,40},{4111,40},{4021,20}},
  606. blueWeight = {{3011,10},{3031,30},{3121,60}},
  607. greenWeight = {{1011,10},{1021,30},{1121,60}},
  608. redWeight = {{2011,40},{2031,40},{2061,20}}
  609. },
  610. {
  611. minCups = 550,
  612. maxCups = 600,
  613. win = {-1,1},
  614. exSkillPercList = {50,60,70},
  615. attackListWeight = {{{3,3,4,4},60},{{2,4,4,4},30},{{3,3,3,5},10}},
  616. baseLevel = 3,
  617. robotLinkType = {{"R",100}},
  618. robotSupplyWeight1 = {{"A57", 100}},
  619. robotSupplyWeight2 = {{"L27", 100}},
  620. robotRound = 11,
  621. playerSupplyWeight1 = {{"A57", 100}},
  622. playerSupplyWeight2 = {{"L27", 100}},
  623. playerRound = 10,
  624. yellowWeight = {{4011,40},{4111,40},{4021,20}},
  625. blueWeight = {{3011,10},{3031,30},{3121,60}},
  626. greenWeight = {{1011,40},{1021,40},{1081,20}},
  627. redWeight = {{2011,40},{2031,40},{2061,20}}
  628. },
  629. {
  630. minCups = 550,
  631. maxCups = 600,
  632. win = {-9999,-2},
  633. exSkillPercList = {30,40,50},
  634. attackListWeight = {{{3,3,4,4},60},{{2,4,4,4},30},{{3,3,3,5},10}},
  635. baseLevel = 3,
  636. robotLinkType = {{"R",100}},
  637. robotSupplyWeight1 = {{"L27", 100}},
  638. robotSupplyWeight2 = {{"L27", 100}},
  639. robotRound = 10,
  640. playerSupplyWeight1 = {{"R", 100}},
  641. playerSupplyWeight2 = {{"R", 100}},
  642. playerRound = 10,
  643. yellowWeight = {{4011,40},{4111,40},{4021,20}},
  644. blueWeight = {{3011,40},{3031,40},{3071,20}},
  645. greenWeight = {{1011,40},{1021,40},{1081,20}},
  646. redWeight = {{2011,40},{2031,40},{2061,20}}
  647. },
  648. {
  649. minCups = 600,
  650. maxCups = 700,
  651. win = {5,9999},
  652. exSkillPercList = {90,100,100},
  653. attackListWeight = {{{4,4,4,6},100}},
  654. baseLevel = 4,
  655. robotLinkType = {{"W",100}},
  656. robotSupplyWeight1 = {{"B57", 100}},
  657. robotSupplyWeight2 = {{"A57", 100}},
  658. robotRound = 11,
  659. playerSupplyWeight1 = {{"B57", 100}},
  660. playerSupplyWeight2 = {{"A57", 100}},
  661. playerRound = 10,
  662. yellowWeight = {{4011,10},{4111,30},{4051,60}},
  663. blueWeight = {{3011,20},{3031,40},{3051,40}},
  664. greenWeight = {{1011,10},{1021,30},{1121,60}},
  665. redWeight = {{2111,100}}
  666. },
  667. {
  668. minCups = 600,
  669. maxCups = 700,
  670. win = {3,4},
  671. exSkillPercList = {70,80,90},
  672. attackListWeight = {{{4,4,4,4},60},{{3,4,4,5},30},{{3,3,5,5},10}},
  673. baseLevel = 4,
  674. robotLinkType = {{"W",100}},
  675. robotSupplyWeight1 = {{"B57", 100}},
  676. robotSupplyWeight2 = {{"A57", 100}},
  677. robotRound = 11,
  678. playerSupplyWeight1 = {{"B57", 100}},
  679. playerSupplyWeight2 = {{"A57", 100}},
  680. playerRound = 10,
  681. yellowWeight = {{4011,10},{4111,30},{4051,60}},
  682. blueWeight = {{3011,20},{3031,40},{3051,40}},
  683. greenWeight = {{1011,10},{1021,30},{1121,60}},
  684. redWeight = {{2011,20},{2031,20},{2061,20},{2091,20},{2071,20}}
  685. },
  686. {
  687. minCups = 600,
  688. maxCups = 700,
  689. win = {2,2},
  690. exSkillPercList = {70,80,90},
  691. attackListWeight = {{{4,4,4,4},60},{{3,4,4,5},30},{{3,3,5,5},10}},
  692. baseLevel = 4,
  693. robotLinkType = {{"W",100}},
  694. robotSupplyWeight1 = {{"B57", 100}},
  695. robotSupplyWeight2 = {{"A57", 100}},
  696. robotRound = 11,
  697. playerSupplyWeight1 = {{"B57", 100}},
  698. playerSupplyWeight2 = {{"A57", 100}},
  699. playerRound = 10,
  700. yellowWeight = {{4011,40},{4111,40},{4021,20}},
  701. blueWeight = {{3011,10},{3031,30},{3121,60}},
  702. greenWeight = {{1011,10},{1021,30},{1121,60}},
  703. redWeight = {{2011,40},{2031,40},{2061,20}}
  704. },
  705. {
  706. minCups = 600,
  707. maxCups = 700,
  708. win = {-1,1},
  709. exSkillPercList = {50,60,70},
  710. attackListWeight = {{{3,4,4,4},60},{{3,3,4,5},30},{{2,4,4,5},10}},
  711. baseLevel = 3,
  712. robotLinkType = {{"R",100}},
  713. robotSupplyWeight1 = {{"A57", 100}},
  714. robotSupplyWeight2 = {{"L27", 100}},
  715. robotRound = 11,
  716. playerSupplyWeight1 = {{"A57", 100}},
  717. playerSupplyWeight2 = {{"L27", 100}},
  718. playerRound = 10,
  719. yellowWeight = {{4011,40},{4111,40},{4021,20}},
  720. blueWeight = {{3011,10},{3031,30},{3121,60}},
  721. greenWeight = {{1011,40},{1021,40},{1081,20}},
  722. redWeight = {{2011,40},{2031,40},{2061,20}}
  723. },
  724. {
  725. minCups = 600,
  726. maxCups = 700,
  727. win = {-9999,-2},
  728. exSkillPercList = {50,60,70},
  729. attackListWeight = {{{3,4,4,4},60},{{3,3,4,5},30},{{2,4,4,5},10}},
  730. baseLevel = 3,
  731. robotLinkType = {{"R",100}},
  732. robotSupplyWeight1 = {{"L27", 100}},
  733. robotSupplyWeight2 = {{"L27", 100}},
  734. robotRound = 10,
  735. playerSupplyWeight1 = {{"R", 100}},
  736. playerSupplyWeight2 = {{"R", 100}},
  737. playerRound = 10,
  738. yellowWeight = {{4011,40},{4111,40},{4021,20}},
  739. blueWeight = {{3011,40},{3031,40},{3071,20}},
  740. greenWeight = {{1011,40},{1021,40},{1081,20}},
  741. redWeight = {{2011,40},{2031,40},{2061,20}}
  742. },
  743. {
  744. minCups = 700,
  745. maxCups = 800,
  746. win = {5,9999},
  747. exSkillPercList = {90,100,100},
  748. attackListWeight = {{{4,4,5,6},100}},
  749. baseLevel = 4,
  750. robotLinkType = {{"W",100}},
  751. robotSupplyWeight1 = {{"B57", 100}},
  752. robotSupplyWeight2 = {{"A57", 100}},
  753. robotRound = 11,
  754. playerSupplyWeight1 = {{"B57", 100}},
  755. playerSupplyWeight2 = {{"A57", 100}},
  756. playerRound = 10,
  757. yellowWeight = {{4011,10},{4111,30},{4051,60}},
  758. blueWeight = {{3011,10},{3031,30},{3121,60}},
  759. greenWeight = {{1041,100}},
  760. redWeight = {{2011,20},{2031,60},{2061,20}}
  761. },
  762. {
  763. minCups = 700,
  764. maxCups = 800,
  765. win = {3,4},
  766. exSkillPercList = {90,100,100},
  767. attackListWeight = {{{4,4,4,5},60},{{3,4,5,5},30},{{2,5,5,5},10}},
  768. baseLevel = 4,
  769. robotLinkType = {{"W",100}},
  770. robotSupplyWeight1 = {{"B57", 100}},
  771. robotSupplyWeight2 = {{"A57", 100}},
  772. robotRound = 11,
  773. playerSupplyWeight1 = {{"B57", 100}},
  774. playerSupplyWeight2 = {{"A57", 100}},
  775. playerRound = 10,
  776. yellowWeight = {{4011,10},{4111,30},{4051,60}},
  777. blueWeight = {{3011,10},{3031,30},{3121,60}},
  778. greenWeight = {{1011,10},{1021,30},{1121,60}},
  779. redWeight = {{2011,20},{2031,60},{2061,20}}
  780. },
  781. {
  782. minCups = 700,
  783. maxCups = 800,
  784. win = {2,2},
  785. exSkillPercList = {90,100,100},
  786. attackListWeight = {{{4,4,4,5},60},{{3,4,5,5},30},{{2,5,5,5},10}},
  787. baseLevel = 4,
  788. robotLinkType = {{"W",100}},
  789. robotSupplyWeight1 = {{"B57", 100}},
  790. robotSupplyWeight2 = {{"A57", 100}},
  791. robotRound = 11,
  792. playerSupplyWeight1 = {{"B57", 100}},
  793. playerSupplyWeight2 = {{"A57", 100}},
  794. playerRound = 10,
  795. yellowWeight = {{4011,10},{4111,30},{4051,60}},
  796. blueWeight = {{3011,10},{3031,30},{3121,60}},
  797. greenWeight = {{1011,10},{1021,30},{1121,60}},
  798. redWeight = {{2011,20},{2031,60},{2061,20}}
  799. },
  800. {
  801. minCups = 700,
  802. maxCups = 800,
  803. win = {-1,1},
  804. exSkillPercList = {90,100,100},
  805. attackListWeight = {{{4,4,4,4},60},{{3,4,4,5},30},{{3,3,5,5},10}},
  806. baseLevel = 3,
  807. robotLinkType = {{"R",100}},
  808. robotSupplyWeight1 = {{"A57", 100}},
  809. robotSupplyWeight2 = {{"L27", 100}},
  810. robotRound = 11,
  811. playerSupplyWeight1 = {{"A57", 100}},
  812. playerSupplyWeight2 = {{"L27", 100}},
  813. playerRound = 10,
  814. yellowWeight = {{4011,10},{4111,30},{4051,60}},
  815. blueWeight = {{3011,20},{3031,40},{3051,40}},
  816. greenWeight = {{1011,10},{1021,30},{1121,60}},
  817. redWeight = {{2011,20},{2031,60},{2061,20}}
  818. },
  819. {
  820. minCups = 700,
  821. maxCups = 800,
  822. win = {-9999,-2},
  823. exSkillPercList = {50,60,70},
  824. attackListWeight = {{{4,4,4,4},60},{{3,4,4,5},30},{{3,3,5,5},10}},
  825. baseLevel = 3,
  826. robotLinkType = {{"R",100}},
  827. robotSupplyWeight1 = {{"L27", 100}},
  828. robotSupplyWeight2 = {{"L27", 100}},
  829. robotRound = 10,
  830. playerSupplyWeight1 = {{"R", 100}},
  831. playerSupplyWeight2 = {{"R", 100}},
  832. playerRound = 10,
  833. yellowWeight = {{4011,10},{4111,30},{4051,60}},
  834. blueWeight = {{3011,20},{3031,40},{3051,40}},
  835. greenWeight = {{1011,10},{1021,30},{1121,60}},
  836. redWeight = {{2011,20},{2031,60},{2061,20}}
  837. },
  838. {
  839. minCups = 800,
  840. maxCups = 900,
  841. win = {5,9999},
  842. exSkillPercList = {90,100,100},
  843. attackListWeight = {{{4,5,5,6},100}},
  844. baseLevel = 4,
  845. robotLinkType = {{"W",100}},
  846. robotSupplyWeight1 = {{"B57", 100}},
  847. robotSupplyWeight2 = {{"A57", 100}},
  848. robotRound = 11,
  849. playerSupplyWeight1 = {{"B57", 100}},
  850. playerSupplyWeight2 = {{"A57", 100}},
  851. playerRound = 10,
  852. yellowWeight = {{4011,20},{4111,20},{4021,20},{4081,20},{4051,20}},
  853. blueWeight = {{3011,20},{3031,20},{3071,20},{3111,20},{3121,20}},
  854. greenWeight = {{1041,100}},
  855. redWeight = {{2011,20},{2031,20},{2061,20},{2091,20},{2071,20}}
  856. },
  857. {
  858. minCups = 800,
  859. maxCups = 900,
  860. win = {3,4},
  861. exSkillPercList = {90,100,100},
  862. attackListWeight = {{{4,4,5,5},70},{{3,5,5,5},30}},
  863. baseLevel = 4,
  864. robotLinkType = {{"W",100}},
  865. robotSupplyWeight1 = {{"B57", 100}},
  866. robotSupplyWeight2 = {{"A57", 100}},
  867. robotRound = 11,
  868. playerSupplyWeight1 = {{"B57", 100}},
  869. playerSupplyWeight2 = {{"A57", 100}},
  870. playerRound = 10,
  871. yellowWeight = {{4011,20},{4111,20},{4021,20},{4081,20},{4051,20}},
  872. blueWeight = {{3011,20},{3031,20},{3071,20},{3111,20},{3121,20}},
  873. greenWeight = {{1011,20},{1021,20},{1081,20},{1111,20},{1121,20}},
  874. redWeight = {{2011,20},{2031,20},{2061,20},{2091,20},{2071,20}}
  875. },
  876. {
  877. minCups = 800,
  878. maxCups = 900,
  879. win = {2,2},
  880. exSkillPercList = {90,100,100},
  881. attackListWeight = {{{4,4,5,5},70},{{3,5,5,5},30}},
  882. baseLevel = 4,
  883. robotLinkType = {{"W",100}},
  884. robotSupplyWeight1 = {{"B57", 100}},
  885. robotSupplyWeight2 = {{"A57", 100}},
  886. robotRound = 11,
  887. playerSupplyWeight1 = {{"B57", 100}},
  888. playerSupplyWeight2 = {{"A57", 100}},
  889. playerRound = 10,
  890. yellowWeight = {{4011,40},{4111,40},{4021,20}},
  891. blueWeight = {{3011,40},{3031,40},{3071,20}},
  892. greenWeight = {{1011,40},{1021,40},{1081,20}},
  893. redWeight = {{2011,20},{2031,60},{2061,20}}
  894. },
  895. {
  896. minCups = 800,
  897. maxCups = 900,
  898. win = {-1,1},
  899. exSkillPercList = {90,100,100},
  900. attackListWeight = {{{4,4,4,5},70},{{3,4,5,5},30}},
  901. baseLevel = 3,
  902. robotLinkType = {{"R",100}},
  903. robotSupplyWeight1 = {{"A57", 100}},
  904. robotSupplyWeight2 = {{"L27", 100}},
  905. robotRound = 11,
  906. playerSupplyWeight1 = {{"A57", 100}},
  907. playerSupplyWeight2 = {{"L27", 100}},
  908. playerRound = 10,
  909. yellowWeight = {{4011,40},{4111,40},{4021,20}},
  910. blueWeight = {{3011,40},{3031,40},{3071,20}},
  911. greenWeight = {{1011,40},{1021,40},{1081,20}},
  912. redWeight = {{2011,20},{2031,60},{2061,20}}
  913. },
  914. {
  915. minCups = 800,
  916. maxCups = 900,
  917. win = {-9999,-2},
  918. exSkillPercList = {50,60,70},
  919. attackListWeight = {{{4,4,4,5},70},{{3,4,5,5},30}},
  920. baseLevel = 3,
  921. robotLinkType = {{"R",100}},
  922. robotSupplyWeight1 = {{"L27", 100}},
  923. robotSupplyWeight2 = {{"L27", 100}},
  924. robotRound = 10,
  925. playerSupplyWeight1 = {{"R", 100}},
  926. playerSupplyWeight2 = {{"R", 100}},
  927. playerRound = 10,
  928. yellowWeight = {{4011,40},{4111,40},{4021,20}},
  929. blueWeight = {{3011,40},{3031,40},{3071,20}},
  930. greenWeight = {{1011,40},{1021,40},{1081,20}},
  931. redWeight = {{2011,20},{2031,60},{2061,20}}
  932. },
  933. {
  934. minCups = 900,
  935. maxCups = 1000,
  936. win = {5,9999},
  937. exSkillPercList = {90,100,100},
  938. attackListWeight = {{{5,5,5,6},100}},
  939. baseLevel = 4,
  940. robotLinkType = {{"W",100}},
  941. robotSupplyWeight1 = {{"B57", 100}},
  942. robotSupplyWeight2 = {{"A57", 100}},
  943. robotRound = 11,
  944. playerSupplyWeight1 = {{"B57", 100}},
  945. playerSupplyWeight2 = {{"A57", 100}},
  946. playerRound = 10,
  947. yellowWeight = {{4011,20},{4111,20},{4021,20},{4081,20},{4051,20}},
  948. blueWeight = {{3011,20},{3031,20},{3071,20},{3111,20},{3121,20}},
  949. greenWeight = {{1041,100}},
  950. redWeight = {{2011,20},{2031,20},{2061,20},{2091,20},{2071,20},{2121,20}}
  951. },
  952. {
  953. minCups = 900,
  954. maxCups = 1000,
  955. win = {3,4},
  956. exSkillPercList = {90,100,100},
  957. attackListWeight = {{{4,5,5,5},70},{{4,4,5,6},30}},
  958. baseLevel = 4,
  959. robotLinkType = {{"W",100}},
  960. robotSupplyWeight1 = {{"B57", 100}},
  961. robotSupplyWeight2 = {{"A57", 100}},
  962. robotRound = 11,
  963. playerSupplyWeight1 = {{"B57", 100}},
  964. playerSupplyWeight2 = {{"A57", 100}},
  965. playerRound = 10,
  966. yellowWeight = {{4011,20},{4111,20},{4021,20},{4081,20},{4051,20}},
  967. blueWeight = {{3011,20},{3031,20},{3071,20},{3111,20},{3121,20}},
  968. greenWeight = {{1011,20},{1021,20},{1081,20},{1111,20},{1121,20}},
  969. redWeight = {{2011,20},{2031,20},{2061,20},{2091,20},{2071,20},{2121,20}}
  970. },
  971. {
  972. minCups = 900,
  973. maxCups = 1000,
  974. win = {2,2},
  975. exSkillPercList = {90,100,100},
  976. attackListWeight = {{{4,5,5,5},70},{{4,4,5,6},30}},
  977. baseLevel = 4,
  978. robotLinkType = {{"W",100}},
  979. robotSupplyWeight1 = {{"B57", 100}},
  980. robotSupplyWeight2 = {{"A57", 100}},
  981. robotRound = 11,
  982. playerSupplyWeight1 = {{"B57", 100}},
  983. playerSupplyWeight2 = {{"A57", 100}},
  984. playerRound = 10,
  985. yellowWeight = {{4011,40},{4111,40},{4021,20}},
  986. blueWeight = {{3011,40},{3031,40},{3071,20}},
  987. greenWeight = {{1011,40},{1021,40},{1081,20}},
  988. redWeight = {{2011,20},{2031,60},{2061,20}}
  989. },
  990. {
  991. minCups = 900,
  992. maxCups = 1000,
  993. win = {-1,1},
  994. exSkillPercList = {90,100,100},
  995. attackListWeight = {{{4,4,5,5},70},{{3,5,5,5},30}},
  996. baseLevel = 3,
  997. robotLinkType = {{"R",100}},
  998. robotSupplyWeight1 = {{"A57", 100}},
  999. robotSupplyWeight2 = {{"L27", 100}},
  1000. robotRound = 11,
  1001. playerSupplyWeight1 = {{"A57", 100}},
  1002. playerSupplyWeight2 = {{"L27", 100}},
  1003. playerRound = 10,
  1004. yellowWeight = {{4011,40},{4111,40},{4021,20}},
  1005. blueWeight = {{3011,40},{3031,40},{3071,20}},
  1006. greenWeight = {{1011,40},{1021,40},{1081,20}},
  1007. redWeight = {{2011,20},{2031,60},{2061,20}}
  1008. },
  1009. {
  1010. minCups = 900,
  1011. maxCups = 1000,
  1012. win = {-9999,-2},
  1013. exSkillPercList = {50,60,70},
  1014. attackListWeight = {{{4,4,5,5},70},{{3,5,5,5},30}},
  1015. baseLevel = 3,
  1016. robotLinkType = {{"R",100}},
  1017. robotSupplyWeight1 = {{"L27", 100}},
  1018. robotSupplyWeight2 = {{"L27", 100}},
  1019. robotRound = 10,
  1020. playerSupplyWeight1 = {{"R", 100}},
  1021. playerSupplyWeight2 = {{"R", 100}},
  1022. playerRound = 10,
  1023. yellowWeight = {{4011,40},{4111,40},{4021,20}},
  1024. blueWeight = {{3011,40},{3031,40},{3071,20}},
  1025. greenWeight = {{1011,40},{1021,40},{1081,20}},
  1026. redWeight = {{2011,20},{2031,60},{2061,20}}
  1027. },
  1028. {
  1029. minCups = 1000,
  1030. maxCups = 1150,
  1031. win = {4,9999},
  1032. exSkillPercList = {90,100,100},
  1033. attackListWeight = {{{5,5,5,6},100}},
  1034. baseLevel = 4,
  1035. robotLinkType = {{"W",100}},
  1036. robotSupplyWeight1 = {{"B57", 100}},
  1037. robotSupplyWeight2 = {{"A57", 100}},
  1038. robotRound = 11,
  1039. playerSupplyWeight1 = {{"B57", 100}},
  1040. playerSupplyWeight2 = {{"A57", 100}},
  1041. playerRound = 10,
  1042. yellowWeight = {{4081,30},{4061,30},{4021,30},{4111,10}},
  1043. blueWeight = {{3071,30},{3111,30},{3031,30},{3051,10}},
  1044. greenWeight = {{1021,10},{1041,60},{1091,30}},
  1045. redWeight = {{2031,60},{2061,10},{2091,15},{2071,15}}
  1046. },
  1047. {
  1048. minCups = 1000,
  1049. maxCups = 1150,
  1050. win = {2,3},
  1051. exSkillPercList = {90,100,100},
  1052. attackListWeight = {{{5,5,5,5},60},{{4,5,5,6},30},{{4,4,6,6},10}},
  1053. baseLevel = 4,
  1054. robotLinkType = {{"W",100}},
  1055. robotSupplyWeight1 = {{"B57", 100}},
  1056. robotSupplyWeight2 = {{"A57", 100}},
  1057. robotRound = 11,
  1058. playerSupplyWeight1 = {{"B57", 100}},
  1059. playerSupplyWeight2 = {{"A57", 100}},
  1060. playerRound = 10,
  1061. yellowWeight = {{4081,30},{4061,30},{4021,30},{4111,10}},
  1062. blueWeight = {{3071,30},{3111,30},{3031,30},{3051,10}},
  1063. greenWeight = {{1021,30},{1111,20},{1121,20},{1061,20},{1081,10}},
  1064. redWeight = {{2031,60},{2061,10},{2091,15},{2071,15}}
  1065. },
  1066. {
  1067. minCups = 1000,
  1068. maxCups = 1150,
  1069. win = {0,1},
  1070. exSkillPercList = {70,80,90},
  1071. attackListWeight = {{{5,5,5,5},70},{{4,5,5,6},30}},
  1072. baseLevel = 4,
  1073. robotLinkType = {{"R",100}},
  1074. robotSupplyWeight1 = {{"A57", 100}},
  1075. robotSupplyWeight2 = {{"L27", 100}},
  1076. robotRound = 11,
  1077. playerSupplyWeight1 = {{"A57", 100}},
  1078. playerSupplyWeight2 = {{"L27", 100}},
  1079. playerRound = 10,
  1080. yellowWeight = {{4081,30},{4061,30},{4021,30},{4111,10}},
  1081. blueWeight = {{3071,30},{3111,30},{3031,30},{3051,10}},
  1082. greenWeight = {{1021,30},{1111,20},{1121,20},{1061,20},{1081,10}},
  1083. redWeight = {{2031,60},{2061,10},{2091,15},{2071,15}}
  1084. },
  1085. {
  1086. minCups = 1000,
  1087. maxCups = 1150,
  1088. win = {-2,-1},
  1089. exSkillPercList = {50,60,70},
  1090. attackListWeight = {{{4,5,5,5},70},{{4,4,5,6},30}},
  1091. baseLevel = 4,
  1092. robotLinkType = {{"R",100}},
  1093. robotSupplyWeight1 = {{"A57", 100}},
  1094. robotSupplyWeight2 = {{"L27", 100}},
  1095. robotRound = 11,
  1096. playerSupplyWeight1 = {{"A57", 100}},
  1097. playerSupplyWeight2 = {{"L27", 100}},
  1098. playerRound = 10,
  1099. yellowWeight = {{4081,30},{4061,30},{4021,30},{4111,10}},
  1100. blueWeight = {{3071,30},{3111,30},{3031,30},{3051,10}},
  1101. greenWeight = {{1021,30},{1111,20},{1121,20},{1061,20},{1081,10}},
  1102. redWeight = {{2031,60},{2061,10},{2091,15},{2071,15}}
  1103. },
  1104. {
  1105. minCups = 1000,
  1106. maxCups = 1150,
  1107. win = {-9999,-3},
  1108. exSkillPercList = {50,60,70},
  1109. attackListWeight = {{{4,5,5,5},70},{{4,4,5,6},30}},
  1110. baseLevel = 4,
  1111. robotLinkType = {{"R",100}},
  1112. robotSupplyWeight1 = {{"L27", 100}},
  1113. robotSupplyWeight2 = {{"L27", 100}},
  1114. robotRound = 10,
  1115. playerSupplyWeight1 = {{"R", 100}},
  1116. playerSupplyWeight2 = {{"R", 100}},
  1117. playerRound = 10,
  1118. yellowWeight = {{4081,30},{4061,30},{4021,30},{4111,10}},
  1119. blueWeight = {{3071,30},{3111,30},{3031,30},{3051,10}},
  1120. greenWeight = {{1021,30},{1111,20},{1121,20},{1061,20},{1081,10}},
  1121. redWeight = {{2031,60},{2061,10},{2091,15},{2071,15}}
  1122. },
  1123. {
  1124. minCups = 1150,
  1125. maxCups = 1300,
  1126. win = {7,9999},
  1127. exSkillPercList = {90,100,100},
  1128. levelListWeightD = {{{0,0,0,0},50},{{1,0,0,0},50}},
  1129. baseLevelD = 0,
  1130. robotLinkType = {{"W",100}},
  1131. robotSupplyWeight1 = {{"B57", 100}},
  1132. robotSupplyWeight2 = {{"A57", 100}},
  1133. robotRound = 11,
  1134. playerSupplyWeight1 = {{"B57", 100}},
  1135. playerSupplyWeight2 = {{"A57", 100}},
  1136. playerRound = 10,
  1137. yellowWeight = {{4081,30},{4061,30},{4021,30},{4111,10}},
  1138. blueWeight = {{3021,30},{3041,60},{3031,10}},
  1139. greenWeight = {{1021,10},{1041,60},{1091,30}},
  1140. redWeight = {{2121,30},{2111,60},{2031,10}}
  1141. },
  1142. {
  1143. minCups = 1150,
  1144. maxCups = 1300,
  1145. win = {3,6},
  1146. exSkillPercList = {90,100,100},
  1147. attackListWeight = {{{5,6,6,6},100}},
  1148. baseLevel = 5,
  1149. robotLinkType = {{"W",100}},
  1150. robotSupplyWeight1 = {{"B57", 100}},
  1151. robotSupplyWeight2 = {{"A57", 100}},
  1152. robotRound = 11,
  1153. playerSupplyWeight1 = {{"B57", 100}},
  1154. playerSupplyWeight2 = {{"A57", 100}},
  1155. playerRound = 10,
  1156. yellowWeight = {{4081,30},{4061,30},{4021,30},{4111,10}},
  1157. blueWeight = {{3021,30},{3041,60},{3031,10}},
  1158. greenWeight = {{1021,10},{1041,60},{1091,30}},
  1159. redWeight = {{2121,30},{2111,60},{2031,10}}
  1160. },
  1161. {
  1162. minCups = 1150,
  1163. maxCups = 1300,
  1164. win = {2,2},
  1165. exSkillPercList = {90,100,100},
  1166. attackListWeight = {{{5,5,5,6},70},{{4,5,6,6},30}},
  1167. baseLevel = 4,
  1168. robotLinkType = {{"W",100}},
  1169. robotSupplyWeight1 = {{"B57", 100}},
  1170. robotSupplyWeight2 = {{"A57", 100}},
  1171. robotRound = 11,
  1172. playerSupplyWeight1 = {{"B57", 100}},
  1173. playerSupplyWeight2 = {{"A57", 100}},
  1174. playerRound = 10,
  1175. yellowWeight = {{4081,30},{4061,30},{4021,30},{4111,10}},
  1176. blueWeight = {{3071,30},{3111,30},{3031,30},{3051,10}},
  1177. greenWeight = {{1021,10},{1041,45},{1091,45}},
  1178. redWeight = {{2031,60},{2061,10},{2091,15},{2071,15}}
  1179. },
  1180. {
  1181. minCups = 1150,
  1182. maxCups = 1300,
  1183. win = {0,1},
  1184. exSkillPercList = {70,80,90},
  1185. attackListWeight = {{{5,5,5,6},70},{{4,5,6,6},30}},
  1186. baseLevel = 4,
  1187. robotLinkType = {{"R",100}},
  1188. robotSupplyWeight1 = {{"A57", 100}},
  1189. robotSupplyWeight2 = {{"L27", 100}},
  1190. robotRound = 11,
  1191. playerSupplyWeight1 = {{"A57", 100}},
  1192. playerSupplyWeight2 = {{"L27", 100}},
  1193. playerRound = 10,
  1194. yellowWeight = {{4081,30},{4061,30},{4021,30},{4111,10}},
  1195. blueWeight = {{3071,30},{3111,30},{3031,30},{3051,10}},
  1196. greenWeight = {{1021,30},{1111,20},{1121,20},{1061,20},{1081,10}},
  1197. redWeight = {{2121,45},{2111,45},{2031,10}}
  1198. },
  1199. {
  1200. minCups = 1150,
  1201. maxCups = 1300,
  1202. win = {-2,-1},
  1203. exSkillPercList = {50,60,70},
  1204. attackListWeight = {{{5,5,5,5},70},{{4,5,5,6},30}},
  1205. baseLevel = 4,
  1206. robotLinkType = {{"R",100}},
  1207. robotSupplyWeight1 = {{"A57", 100}},
  1208. robotSupplyWeight2 = {{"L27", 100}},
  1209. robotRound = 11,
  1210. playerSupplyWeight1 = {{"A57", 100}},
  1211. playerSupplyWeight2 = {{"L27", 100}},
  1212. playerRound = 10,
  1213. yellowWeight = {{4081,30},{4061,30},{4021,30},{4111,10}},
  1214. blueWeight = {{3071,30},{3111,30},{3031,30},{3051,10}},
  1215. greenWeight = {{1021,30},{1111,20},{1121,20},{1061,20},{1081,10}},
  1216. redWeight = {{2031,60},{2061,10},{2091,15},{2071,15}}
  1217. },
  1218. {
  1219. minCups = 1150,
  1220. maxCups = 1300,
  1221. win = {-9999,-3},
  1222. exSkillPercList = {50,60,70},
  1223. attackListWeight = {{{5,5,5,5},70},{{4,5,5,6},30}},
  1224. baseLevel = 4,
  1225. robotLinkType = {{"R",100}},
  1226. robotSupplyWeight1 = {{"L27", 100}},
  1227. robotSupplyWeight2 = {{"L27", 100}},
  1228. robotRound = 10,
  1229. playerSupplyWeight1 = {{"R", 100}},
  1230. playerSupplyWeight2 = {{"R", 100}},
  1231. playerRound = 10,
  1232. yellowWeight = {{4081,30},{4061,30},{4021,30},{4111,10}},
  1233. blueWeight = {{3071,30},{3111,30},{3031,30},{3051,10}},
  1234. greenWeight = {{1021,30},{1111,20},{1121,20},{1061,20},{1081,10}},
  1235. redWeight = {{2031,60},{2061,10},{2091,15},{2071,15}}
  1236. },
  1237. {
  1238. minCups = 1300,
  1239. maxCups = 1450,
  1240. win = {7,9999},
  1241. exSkillPercList = {90,100,100},
  1242. levelListWeightD = {{{0,0,0,0},50},{{1,0,0,0},50}},
  1243. baseLevelD = 0,
  1244. robotLinkType = {{"W",100}},
  1245. robotSupplyWeight1 = {{"B57", 100}},
  1246. robotSupplyWeight2 = {{"A57", 100}},
  1247. robotRound = 11,
  1248. playerSupplyWeight1 = {{"B57", 100}},
  1249. playerSupplyWeight2 = {{"A57", 100}},
  1250. playerRound = 10,
  1251. yellowWeight = {{4031,30},{4071,60},{4051,10}},
  1252. blueWeight = {{3021,30},{3041,60},{3031,10}},
  1253. greenWeight = {{1021,10},{1041,60},{1091,30}},
  1254. redWeight = {{2031,60},{2061,10},{2091,15},{2071,15}}
  1255. },
  1256. {
  1257. minCups = 1300,
  1258. maxCups = 1450,
  1259. win = {3,6},
  1260. exSkillPercList = {90,100,100},
  1261. attackListWeight = {{{6,6,6,6},100}},
  1262. baseLevel = 5,
  1263. robotLinkType = {{"W",100}},
  1264. robotSupplyWeight1 = {{"B57", 100}},
  1265. robotSupplyWeight2 = {{"A57", 100}},
  1266. robotRound = 11,
  1267. playerSupplyWeight1 = {{"B57", 100}},
  1268. playerSupplyWeight2 = {{"A57", 100}},
  1269. playerRound = 10,
  1270. yellowWeight = {{4031,30},{4071,60},{4051,10}},
  1271. blueWeight = {{3021,30},{3041,60},{3031,10}},
  1272. greenWeight = {{1021,10},{1041,60},{1091,30}},
  1273. redWeight = {{2031,60},{2061,10},{2091,15},{2071,15}}
  1274. },
  1275. {
  1276. minCups = 1300,
  1277. maxCups = 1450,
  1278. win = {2,2},
  1279. exSkillPercList = {90,100,100},
  1280. attackListWeight = {{{5,5,6,6},70},{{4,6,6,6},30}},
  1281. baseLevel = 5,
  1282. robotLinkType = {{"W",100}},
  1283. robotSupplyWeight1 = {{"B57", 100}},
  1284. robotSupplyWeight2 = {{"A57", 100}},
  1285. robotRound = 11,
  1286. playerSupplyWeight1 = {{"B57", 100}},
  1287. playerSupplyWeight2 = {{"A57", 100}},
  1288. playerRound = 10,
  1289. yellowWeight = {{4081,30},{4061,30},{4021,30},{4111,10}},
  1290. blueWeight = {{3021,45},{3041,45},{3031,10}},
  1291. greenWeight = {{1021,10},{1041,45},{1091,45}},
  1292. redWeight = {{2031,60},{2061,10},{2091,15},{2071,15}}
  1293. },
  1294. {
  1295. minCups = 1300,
  1296. maxCups = 1450,
  1297. win = {0,1},
  1298. exSkillPercList = {70,80,90},
  1299. attackListWeight = {{{5,5,6,6},70},{{4,6,6,6},30}},
  1300. baseLevel = 4,
  1301. robotLinkType = {{"R",100}},
  1302. robotSupplyWeight1 = {{"A57", 100}},
  1303. robotSupplyWeight2 = {{"L27", 100}},
  1304. robotRound = 11,
  1305. playerSupplyWeight1 = {{"A57", 100}},
  1306. playerSupplyWeight2 = {{"L27", 100}},
  1307. playerRound = 10,
  1308. yellowWeight = {{4081,30},{4061,30},{4021,30},{4111,10}},
  1309. blueWeight = {{3021,45},{3041,45},{3031,10}},
  1310. greenWeight = {{1021,30},{1111,20},{1121,20},{1061,20},{1081,10}},
  1311. redWeight = {{2121,45},{2111,45},{2031,10}}
  1312. },
  1313. {
  1314. minCups = 1300,
  1315. maxCups = 1450,
  1316. win = {-2,-1},
  1317. exSkillPercList = {50,60,70},
  1318. attackListWeight = {{{5,5,5,6},70},{{4,5,6,6},30}},
  1319. baseLevel = 4,
  1320. robotLinkType = {{"R",100}},
  1321. robotSupplyWeight1 = {{"A57", 100}},
  1322. robotSupplyWeight2 = {{"L27", 100}},
  1323. robotRound = 11,
  1324. playerSupplyWeight1 = {{"A57", 100}},
  1325. playerSupplyWeight2 = {{"L27", 100}},
  1326. playerRound = 10,
  1327. yellowWeight = {{4081,30},{4061,30},{4021,30},{4111,10}},
  1328. blueWeight = {{3071,30},{3111,30},{3031,30},{3051,10}},
  1329. greenWeight = {{1021,30},{1111,20},{1121,20},{1061,20},{1081,10}},
  1330. redWeight = {{2031,60},{2061,10},{2091,15},{2071,15}}
  1331. },
  1332. {
  1333. minCups = 1300,
  1334. maxCups = 1450,
  1335. win = {-9999,-3},
  1336. exSkillPercList = {50,60,70},
  1337. attackListWeight = {{{5,5,5,6},70},{{4,5,6,6},30}},
  1338. baseLevel = 4,
  1339. robotLinkType = {{"R",100}},
  1340. robotSupplyWeight1 = {{"L27", 100}},
  1341. robotSupplyWeight2 = {{"L27", 100}},
  1342. robotRound = 10,
  1343. playerSupplyWeight1 = {{"R", 100}},
  1344. playerSupplyWeight2 = {{"R", 100}},
  1345. playerRound = 10,
  1346. yellowWeight = {{4081,30},{4061,30},{4021,30},{4111,10}},
  1347. blueWeight = {{3071,30},{3111,30},{3031,30},{3051,10}},
  1348. greenWeight = {{1021,30},{1111,20},{1121,20},{1061,20},{1081,10}},
  1349. redWeight = {{2031,60},{2061,10},{2091,15},{2071,15}}
  1350. },
  1351. {
  1352. minCups = 1450,
  1353. maxCups = 1600,
  1354. win = {7,9999},
  1355. exSkillPercList = {90,100,100},
  1356. levelListWeightD = {{{0,0,0,0},50},{{1,0,0,0},50}},
  1357. baseLevelD = 0,
  1358. robotLinkType = {{"W",100}},
  1359. robotSupplyWeight1 = {{"B57", 100}},
  1360. robotSupplyWeight2 = {{"A57", 100}},
  1361. robotRound = 11,
  1362. playerSupplyWeight1 = {{"B57", 100}},
  1363. playerSupplyWeight2 = {{"A57", 100}},
  1364. playerRound = 10,
  1365. yellowWeight = {{4031,30},{4071,60},{4051,10}},
  1366. blueWeight = {{3021,30},{3041,60},{3031,10}},
  1367. greenWeight = {{1021,10},{1041,60},{1091,30}},
  1368. redWeight = {{2121,30},{2111,60},{2031,10}}
  1369. },
  1370. {
  1371. minCups = 1450,
  1372. maxCups = 1600,
  1373. win = {3,6},
  1374. exSkillPercList = {90,100,100},
  1375. attackListWeight = {{{6,6,6,6},100}},
  1376. baseLevel = 5,
  1377. robotLinkType = {{"W",100}},
  1378. robotSupplyWeight1 = {{"B57", 100}},
  1379. robotSupplyWeight2 = {{"A57", 100}},
  1380. robotRound = 11,
  1381. playerSupplyWeight1 = {{"B57", 100}},
  1382. playerSupplyWeight2 = {{"A57", 100}},
  1383. playerRound = 10,
  1384. yellowWeight = {{4031,30},{4071,60},{4051,10}},
  1385. blueWeight = {{3021,30},{3041,60},{3031,10}},
  1386. greenWeight = {{1021,10},{1041,60},{1091,30}},
  1387. redWeight = {{2121,30},{2111,60},{2031,10}}
  1388. },
  1389. {
  1390. minCups = 1450,
  1391. maxCups = 1600,
  1392. win = {2,2},
  1393. exSkillPercList = {90,100,100},
  1394. attackListWeight = {{{5,6,6,6},70},{{4,6,6,8},30}},
  1395. baseLevel = 5,
  1396. robotLinkType = {{"W",100}},
  1397. robotSupplyWeight1 = {{"B57", 100}},
  1398. robotSupplyWeight2 = {{"A57", 100}},
  1399. robotRound = 11,
  1400. playerSupplyWeight1 = {{"B57", 100}},
  1401. playerSupplyWeight2 = {{"A57", 100}},
  1402. playerRound = 10,
  1403. yellowWeight = {{4081,30},{4061,30},{4021,30},{4111,10}},
  1404. blueWeight = {{3021,45},{3041,45},{3031,10}},
  1405. greenWeight = {{1021,10},{1041,45},{1091,45}},
  1406. redWeight = {{2121,45},{2111,45},{2031,10}}
  1407. },
  1408. {
  1409. minCups = 1450,
  1410. maxCups = 1600,
  1411. win = {0,1},
  1412. exSkillPercList = {70,80,90},
  1413. attackListWeight = {{{5,6,6,6},100}},
  1414. baseLevel = 4,
  1415. robotLinkType = {{"R",100}},
  1416. robotSupplyWeight1 = {{"A57", 100}},
  1417. robotSupplyWeight2 = {{"L27", 100}},
  1418. robotRound = 11,
  1419. playerSupplyWeight1 = {{"A57", 100}},
  1420. playerSupplyWeight2 = {{"L27", 100}},
  1421. playerRound = 10,
  1422. yellowWeight = {{4081,30},{4061,30},{4021,30},{4111,10}},
  1423. blueWeight = {{3021,45},{3041,45},{3031,10}},
  1424. greenWeight = {{1021,30},{1111,20},{1121,20},{1061,20},{1081,10}},
  1425. redWeight = {{2121,45},{2111,45},{2031,10}}
  1426. },
  1427. {
  1428. minCups = 1450,
  1429. maxCups = 1600,
  1430. win = {-2,-1},
  1431. exSkillPercList = {50,60,70},
  1432. attackListWeight = {{{5,5,6,6},70},{{4,6,6,6},30}},
  1433. baseLevel = 4,
  1434. robotLinkType = {{"R",100}},
  1435. robotSupplyWeight1 = {{"A57", 100}},
  1436. robotSupplyWeight2 = {{"L27", 100}},
  1437. robotRound = 11,
  1438. playerSupplyWeight1 = {{"A57", 100}},
  1439. playerSupplyWeight2 = {{"L27", 100}},
  1440. playerRound = 10,
  1441. yellowWeight = {{4081,30},{4061,30},{4021,30},{4111,10}},
  1442. blueWeight = {{3071,30},{3111,30},{3031,30},{3051,10}},
  1443. greenWeight = {{1021,30},{1111,20},{1121,20},{1061,20},{1081,10}},
  1444. redWeight = {{2031,60},{2061,10},{2091,15},{2071,15}}
  1445. },
  1446. {
  1447. minCups = 1450,
  1448. maxCups = 1600,
  1449. win = {-9999,-3},
  1450. exSkillPercList = {50,60,70},
  1451. attackListWeight = {{{5,5,6,6},70},{{4,6,6,6},30}},
  1452. baseLevel = 4,
  1453. robotLinkType = {{"R",100}},
  1454. robotSupplyWeight1 = {{"L27", 100}},
  1455. robotSupplyWeight2 = {{"L27", 100}},
  1456. robotRound = 10,
  1457. playerSupplyWeight1 = {{"R", 100}},
  1458. playerSupplyWeight2 = {{"R", 100}},
  1459. playerRound = 10,
  1460. yellowWeight = {{4081,30},{4061,30},{4021,30},{4111,10}},
  1461. blueWeight = {{3071,30},{3111,30},{3031,30},{3051,10}},
  1462. greenWeight = {{1021,30},{1111,20},{1121,20},{1061,20},{1081,10}},
  1463. redWeight = {{2031,60},{2061,10},{2091,15},{2071,15}}
  1464. },
  1465. {
  1466. minCups = 1600,
  1467. maxCups = 1800,
  1468. win = {7,9999},
  1469. exSkillPercList = {90,100,100},
  1470. levelListWeightD = {{{0,0,0,0},50},{{1,0,0,0},50}},
  1471. baseLevelD = 0,
  1472. robotLinkType = {{"W",100}},
  1473. robotSupplyWeight1 = {{"B57", 100}},
  1474. robotSupplyWeight2 = {{"A57", 100}},
  1475. robotRound = 11,
  1476. playerSupplyWeight1 = {{"B57", 100}},
  1477. playerSupplyWeight2 = {{"A57", 100}},
  1478. playerRound = 10,
  1479. yellowWeight = {{4031,30},{4071,60},{4051,10}},
  1480. blueWeight = {{3021,30},{3041,60},{3031,10}},
  1481. greenWeight = {{1021,10},{1041,60},{1091,30}},
  1482. redWeight = {{2121,30},{2111,60},{2031,10}}
  1483. },
  1484. {
  1485. minCups = 1600,
  1486. maxCups = 1800,
  1487. win = {3,6},
  1488. exSkillPercList = {90,100,100},
  1489. attackListWeight = {{{6,6,6,8},100}},
  1490. baseLevel = 5,
  1491. robotLinkType = {{"W",100}},
  1492. robotSupplyWeight1 = {{"B57", 100}},
  1493. robotSupplyWeight2 = {{"A57", 100}},
  1494. robotRound = 11,
  1495. playerSupplyWeight1 = {{"B57", 100}},
  1496. playerSupplyWeight2 = {{"A57", 100}},
  1497. playerRound = 10,
  1498. yellowWeight = {{4031,30},{4071,60},{4051,10}},
  1499. blueWeight = {{3021,30},{3041,60},{3031,10}},
  1500. greenWeight = {{1021,10},{1041,60},{1091,30}},
  1501. redWeight = {{2121,30},{2111,60},{2031,10}}
  1502. },
  1503. {
  1504. minCups = 1600,
  1505. maxCups = 1800,
  1506. win = {2,2},
  1507. exSkillPercList = {90,100,100},
  1508. attackListWeight = {{{6,6,6,6},70},{{4,6,6,8},20},{{5,6,6,8},10}},
  1509. baseLevel = 5,
  1510. robotLinkType = {{"W",100}},
  1511. robotSupplyWeight1 = {{"B57", 100}},
  1512. robotSupplyWeight2 = {{"A57", 100}},
  1513. robotRound = 11,
  1514. playerSupplyWeight1 = {{"B57", 100}},
  1515. playerSupplyWeight2 = {{"A57", 100}},
  1516. playerRound = 10,
  1517. yellowWeight = {{4031,45},{4071,45},{4051,10}},
  1518. blueWeight = {{3021,45},{3041,45},{3031,10}},
  1519. greenWeight = {{1021,10},{1041,45},{1091,45}},
  1520. redWeight = {{2031,60},{2061,10},{2091,15},{2071,15}}
  1521. },
  1522. {
  1523. minCups = 1600,
  1524. maxCups = 1800,
  1525. win = {0,1},
  1526. exSkillPercList = {70,80,90},
  1527. attackListWeight = {{{6,6,6,6},70},{{4,6,6,8},20},{{5,6,6,8},10}},
  1528. baseLevel = 5,
  1529. robotLinkType = {{"R",100}},
  1530. robotSupplyWeight1 = {{"A57", 100}},
  1531. robotSupplyWeight2 = {{"L27", 100}},
  1532. robotRound = 11,
  1533. playerSupplyWeight1 = {{"A57", 100}},
  1534. playerSupplyWeight2 = {{"L27", 100}},
  1535. playerRound = 10,
  1536. yellowWeight = {{4081,30},{4061,30},{4021,30},{4111,10}},
  1537. blueWeight = {{3021,25},{3041,25},{3031,50}},
  1538. greenWeight = {{1021,60},{1041,20},{1091,20}},
  1539. redWeight = {{2031,60},{2061,10},{2091,15},{2071,15}}
  1540. },
  1541. {
  1542. minCups = 1600,
  1543. maxCups = 1800,
  1544. win = {-2,-1},
  1545. exSkillPercList = {50,60,70},
  1546. attackListWeight = {{{5,6,6,6},70},{{4,5,6,8},30}},
  1547. baseLevel = 5,
  1548. robotLinkType = {{"R",100}},
  1549. robotSupplyWeight1 = {{"A57", 100}},
  1550. robotSupplyWeight2 = {{"L27", 100}},
  1551. robotRound = 11,
  1552. playerSupplyWeight1 = {{"A57", 100}},
  1553. playerSupplyWeight2 = {{"L27", 100}},
  1554. playerRound = 10,
  1555. yellowWeight = {{4081,30},{4061,30},{4021,30},{4111,10}},
  1556. blueWeight = {{3021,25},{3041,25},{3031,50}},
  1557. greenWeight = {{1021,60},{1041,20},{1091,20}},
  1558. redWeight = {{2031,60},{2061,10},{2091,15},{2071,15}}
  1559. },
  1560. {
  1561. minCups = 1600,
  1562. maxCups = 1800,
  1563. win = {-9999,-3},
  1564. exSkillPercList = {50,60,70},
  1565. attackListWeight = {{{5,6,6,6},70},{{4,5,6,8},30}},
  1566. baseLevel = 5,
  1567. robotLinkType = {{"R",100}},
  1568. robotSupplyWeight1 = {{"L27", 100}},
  1569. robotSupplyWeight2 = {{"L27", 100}},
  1570. robotRound = 10,
  1571. playerSupplyWeight1 = {{"R", 100}},
  1572. playerSupplyWeight2 = {{"R", 100}},
  1573. playerRound = 10,
  1574. yellowWeight = {{4081,30},{4061,30},{4021,30},{4111,10}},
  1575. blueWeight = {{3071,30},{3111,30},{3031,30},{3051,10}},
  1576. greenWeight = {{1021,30},{1111,20},{1121,20},{1061,20},{1081,10}},
  1577. redWeight = {{2031,60},{2061,10},{2091,15},{2071,15}}
  1578. }
  1579. }
  1580. return root