TalentConfig_proto.lua 66 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291
  1. --[[
  2. TalentConfig_proto.lua
  3. exported by excel2lua.py
  4. from file:天赋配置表.xlsx
  5. --]]
  6. return {
  7. [8001] = {
  8. ID = 8001,
  9. lv = 1,
  10. talentType = 1,
  11. entryID = 1001,
  12. goods = {100001,100},
  13. condition = 0,
  14. },
  15. [8002] = {
  16. ID = 8002,
  17. lv = 1,
  18. talentType = 1,
  19. entryID = 1002,
  20. goods = {100001,100},
  21. condition = 8001,
  22. },
  23. [8003] = {
  24. ID = 8003,
  25. lv = 1,
  26. talentType = 1,
  27. entryID = 1003,
  28. goods = {100001,100},
  29. condition = 8002,
  30. },
  31. [8004] = {
  32. ID = 8004,
  33. lv = 1,
  34. talentType = 1,
  35. entryID = 1004,
  36. goods = {100001,100},
  37. condition = 8003,
  38. },
  39. [8005] = {
  40. ID = 8005,
  41. lv = 2,
  42. talentType = 1,
  43. entryID = 1005,
  44. goods = {100001,500},
  45. condition = 8004,
  46. },
  47. [8006] = {
  48. ID = 8006,
  49. lv = 2,
  50. talentType = 1,
  51. entryID = 1001,
  52. goods = {100001,500},
  53. condition = 8005,
  54. },
  55. [8007] = {
  56. ID = 8007,
  57. lv = 2,
  58. talentType = 1,
  59. entryID = 1002,
  60. goods = {100001,500},
  61. condition = 8006,
  62. },
  63. [8008] = {
  64. ID = 8008,
  65. lv = 2,
  66. talentType = 1,
  67. entryID = 1003,
  68. goods = {100001,500},
  69. condition = 8007,
  70. },
  71. [8009] = {
  72. ID = 8009,
  73. lv = 3,
  74. talentType = 1,
  75. entryID = 1004,
  76. goods = {100001,1000},
  77. condition = 8008,
  78. },
  79. [8010] = {
  80. ID = 8010,
  81. lv = 3,
  82. talentType = 1,
  83. entryID = 1005,
  84. goods = {100001,1000},
  85. condition = 8009,
  86. },
  87. [8011] = {
  88. ID = 8011,
  89. lv = 3,
  90. talentType = 1,
  91. entryID = 1001,
  92. goods = {100001,1000},
  93. condition = 8010,
  94. },
  95. [8012] = {
  96. ID = 8012,
  97. lv = 3,
  98. talentType = 1,
  99. entryID = 1002,
  100. goods = {100001,1000},
  101. condition = 8011,
  102. },
  103. [8013] = {
  104. ID = 8013,
  105. lv = 4,
  106. talentType = 1,
  107. entryID = 1003,
  108. goods = {100001,1500},
  109. condition = 8012,
  110. },
  111. [8014] = {
  112. ID = 8014,
  113. lv = 4,
  114. talentType = 1,
  115. entryID = 1004,
  116. goods = {100001,1500},
  117. condition = 8013,
  118. },
  119. [8015] = {
  120. ID = 8015,
  121. lv = 4,
  122. talentType = 1,
  123. entryID = 1005,
  124. goods = {100001,1500},
  125. condition = 8014,
  126. },
  127. [8016] = {
  128. ID = 8016,
  129. lv = 4,
  130. talentType = 1,
  131. entryID = 1001,
  132. goods = {100001,1500},
  133. condition = 8015,
  134. },
  135. [8017] = {
  136. ID = 8017,
  137. lv = 5,
  138. talentType = 1,
  139. entryID = 1002,
  140. goods = {100001,2000},
  141. condition = 8016,
  142. },
  143. [8018] = {
  144. ID = 8018,
  145. lv = 5,
  146. talentType = 1,
  147. entryID = 1003,
  148. goods = {100001,2000},
  149. condition = 8017,
  150. },
  151. [8019] = {
  152. ID = 8019,
  153. lv = 5,
  154. talentType = 1,
  155. entryID = 1004,
  156. goods = {100001,2000},
  157. condition = 8018,
  158. },
  159. [8020] = {
  160. ID = 8020,
  161. lv = 5,
  162. talentType = 1,
  163. entryID = 1005,
  164. goods = {100001,2000},
  165. condition = 8019,
  166. },
  167. [8021] = {
  168. ID = 8021,
  169. lv = 6,
  170. talentType = 1,
  171. entryID = 1001,
  172. goods = {100001,3000},
  173. condition = 8020,
  174. },
  175. [8022] = {
  176. ID = 8022,
  177. lv = 6,
  178. talentType = 1,
  179. entryID = 1002,
  180. goods = {100001,3000},
  181. condition = 8021,
  182. },
  183. [8023] = {
  184. ID = 8023,
  185. lv = 6,
  186. talentType = 1,
  187. entryID = 1003,
  188. goods = {100001,3000},
  189. condition = 8022,
  190. },
  191. [8024] = {
  192. ID = 8024,
  193. lv = 6,
  194. talentType = 1,
  195. entryID = 1004,
  196. goods = {100001,3000},
  197. condition = 8023,
  198. },
  199. [8025] = {
  200. ID = 8025,
  201. lv = 7,
  202. talentType = 1,
  203. entryID = 1005,
  204. goods = {100001,4000},
  205. condition = 8024,
  206. },
  207. [8026] = {
  208. ID = 8026,
  209. lv = 7,
  210. talentType = 1,
  211. entryID = 1001,
  212. goods = {100001,4000},
  213. condition = 8025,
  214. },
  215. [8027] = {
  216. ID = 8027,
  217. lv = 7,
  218. talentType = 1,
  219. entryID = 1002,
  220. goods = {100001,4000},
  221. condition = 8026,
  222. },
  223. [8028] = {
  224. ID = 8028,
  225. lv = 7,
  226. talentType = 1,
  227. entryID = 1003,
  228. goods = {100001,4000},
  229. condition = 8027,
  230. },
  231. [8029] = {
  232. ID = 8029,
  233. lv = 8,
  234. talentType = 1,
  235. entryID = 1004,
  236. goods = {100001,5000},
  237. condition = 8028,
  238. },
  239. [8030] = {
  240. ID = 8030,
  241. lv = 8,
  242. talentType = 1,
  243. entryID = 1005,
  244. goods = {100001,5000},
  245. condition = 8029,
  246. },
  247. [8031] = {
  248. ID = 8031,
  249. lv = 8,
  250. talentType = 1,
  251. entryID = 1001,
  252. goods = {100001,5000},
  253. condition = 8030,
  254. },
  255. [8032] = {
  256. ID = 8032,
  257. lv = 8,
  258. talentType = 1,
  259. entryID = 1002,
  260. goods = {100001,5000},
  261. condition = 8031,
  262. },
  263. [8033] = {
  264. ID = 8033,
  265. lv = 9,
  266. talentType = 1,
  267. entryID = 1003,
  268. goods = {100001,6000},
  269. condition = 8032,
  270. },
  271. [8034] = {
  272. ID = 8034,
  273. lv = 9,
  274. talentType = 1,
  275. entryID = 1004,
  276. goods = {100001,6000},
  277. condition = 8033,
  278. },
  279. [8035] = {
  280. ID = 8035,
  281. lv = 9,
  282. talentType = 1,
  283. entryID = 1005,
  284. goods = {100001,6000},
  285. condition = 8034,
  286. },
  287. [8036] = {
  288. ID = 8036,
  289. lv = 9,
  290. talentType = 1,
  291. entryID = 1001,
  292. goods = {100001,6000},
  293. condition = 8035,
  294. },
  295. [8037] = {
  296. ID = 8037,
  297. lv = 10,
  298. talentType = 1,
  299. entryID = 1002,
  300. goods = {100001,7000},
  301. condition = 8036,
  302. },
  303. [8038] = {
  304. ID = 8038,
  305. lv = 10,
  306. talentType = 1,
  307. entryID = 1003,
  308. goods = {100001,7000},
  309. condition = 8037,
  310. },
  311. [8039] = {
  312. ID = 8039,
  313. lv = 10,
  314. talentType = 1,
  315. entryID = 1004,
  316. goods = {100001,7000},
  317. condition = 8038,
  318. },
  319. [8040] = {
  320. ID = 8040,
  321. lv = 10,
  322. talentType = 1,
  323. entryID = 1005,
  324. goods = {100001,7000},
  325. condition = 8039,
  326. },
  327. [8041] = {
  328. ID = 8041,
  329. lv = 11,
  330. talentType = 1,
  331. entryID = 1001,
  332. goods = {100001,9000},
  333. condition = 8040,
  334. },
  335. [8042] = {
  336. ID = 8042,
  337. lv = 11,
  338. talentType = 1,
  339. entryID = 1002,
  340. goods = {100001,9000},
  341. condition = 8041,
  342. },
  343. [8043] = {
  344. ID = 8043,
  345. lv = 11,
  346. talentType = 1,
  347. entryID = 1003,
  348. goods = {100001,9000},
  349. condition = 8042,
  350. },
  351. [8044] = {
  352. ID = 8044,
  353. lv = 11,
  354. talentType = 1,
  355. entryID = 1004,
  356. goods = {100001,9000},
  357. condition = 8043,
  358. },
  359. [8045] = {
  360. ID = 8045,
  361. lv = 12,
  362. talentType = 1,
  363. entryID = 1005,
  364. goods = {100001,11000},
  365. condition = 8044,
  366. },
  367. [8046] = {
  368. ID = 8046,
  369. lv = 12,
  370. talentType = 1,
  371. entryID = 1001,
  372. goods = {100001,11000},
  373. condition = 8045,
  374. },
  375. [8047] = {
  376. ID = 8047,
  377. lv = 12,
  378. talentType = 1,
  379. entryID = 1002,
  380. goods = {100001,11000},
  381. condition = 8046,
  382. },
  383. [8048] = {
  384. ID = 8048,
  385. lv = 12,
  386. talentType = 1,
  387. entryID = 1003,
  388. goods = {100001,11000},
  389. condition = 8047,
  390. },
  391. [8049] = {
  392. ID = 8049,
  393. lv = 13,
  394. talentType = 1,
  395. entryID = 1004,
  396. goods = {100001,13000},
  397. condition = 8048,
  398. },
  399. [8050] = {
  400. ID = 8050,
  401. lv = 13,
  402. talentType = 1,
  403. entryID = 1005,
  404. goods = {100001,13000},
  405. condition = 8049,
  406. },
  407. [8051] = {
  408. ID = 8051,
  409. lv = 13,
  410. talentType = 1,
  411. entryID = 1001,
  412. goods = {100001,13000},
  413. condition = 8050,
  414. },
  415. [8052] = {
  416. ID = 8052,
  417. lv = 13,
  418. talentType = 1,
  419. entryID = 1002,
  420. goods = {100001,13000},
  421. condition = 8051,
  422. },
  423. [8053] = {
  424. ID = 8053,
  425. lv = 14,
  426. talentType = 1,
  427. entryID = 1003,
  428. goods = {100001,15000},
  429. condition = 8052,
  430. },
  431. [8054] = {
  432. ID = 8054,
  433. lv = 14,
  434. talentType = 1,
  435. entryID = 1004,
  436. goods = {100001,15000},
  437. condition = 8053,
  438. },
  439. [8055] = {
  440. ID = 8055,
  441. lv = 14,
  442. talentType = 1,
  443. entryID = 1005,
  444. goods = {100001,15000},
  445. condition = 8054,
  446. },
  447. [8056] = {
  448. ID = 8056,
  449. lv = 14,
  450. talentType = 1,
  451. entryID = 1001,
  452. goods = {100001,15000},
  453. condition = 8055,
  454. },
  455. [8057] = {
  456. ID = 8057,
  457. lv = 15,
  458. talentType = 1,
  459. entryID = 1002,
  460. goods = {100001,16000},
  461. condition = 8056,
  462. },
  463. [8058] = {
  464. ID = 8058,
  465. lv = 15,
  466. talentType = 1,
  467. entryID = 1003,
  468. goods = {100001,16000},
  469. condition = 8057,
  470. },
  471. [8059] = {
  472. ID = 8059,
  473. lv = 15,
  474. talentType = 1,
  475. entryID = 1004,
  476. goods = {100001,16000},
  477. condition = 8058,
  478. },
  479. [8060] = {
  480. ID = 8060,
  481. lv = 15,
  482. talentType = 1,
  483. entryID = 1005,
  484. goods = {100001,16000},
  485. condition = 8059,
  486. },
  487. [8061] = {
  488. ID = 8061,
  489. lv = 16,
  490. talentType = 1,
  491. entryID = 1001,
  492. goods = {100001,17000},
  493. condition = 8060,
  494. },
  495. [8062] = {
  496. ID = 8062,
  497. lv = 16,
  498. talentType = 1,
  499. entryID = 1002,
  500. goods = {100001,17000},
  501. condition = 8061,
  502. },
  503. [8063] = {
  504. ID = 8063,
  505. lv = 16,
  506. talentType = 1,
  507. entryID = 1003,
  508. goods = {100001,17000},
  509. condition = 8062,
  510. },
  511. [8064] = {
  512. ID = 8064,
  513. lv = 16,
  514. talentType = 1,
  515. entryID = 1004,
  516. goods = {100001,17000},
  517. condition = 8063,
  518. },
  519. [8065] = {
  520. ID = 8065,
  521. lv = 17,
  522. talentType = 1,
  523. entryID = 1005,
  524. goods = {100001,18000},
  525. condition = 8064,
  526. },
  527. [8066] = {
  528. ID = 8066,
  529. lv = 17,
  530. talentType = 1,
  531. entryID = 1001,
  532. goods = {100001,18000},
  533. condition = 8065,
  534. },
  535. [8067] = {
  536. ID = 8067,
  537. lv = 17,
  538. talentType = 1,
  539. entryID = 1002,
  540. goods = {100001,18000},
  541. condition = 8066,
  542. },
  543. [8068] = {
  544. ID = 8068,
  545. lv = 17,
  546. talentType = 1,
  547. entryID = 1003,
  548. goods = {100001,18000},
  549. condition = 8067,
  550. },
  551. [8069] = {
  552. ID = 8069,
  553. lv = 18,
  554. talentType = 1,
  555. entryID = 1004,
  556. goods = {100001,19000},
  557. condition = 8068,
  558. },
  559. [8070] = {
  560. ID = 8070,
  561. lv = 18,
  562. talentType = 1,
  563. entryID = 1005,
  564. goods = {100001,19000},
  565. condition = 8069,
  566. },
  567. [8071] = {
  568. ID = 8071,
  569. lv = 18,
  570. talentType = 1,
  571. entryID = 1001,
  572. goods = {100001,19000},
  573. condition = 8070,
  574. },
  575. [8072] = {
  576. ID = 8072,
  577. lv = 18,
  578. talentType = 1,
  579. entryID = 1002,
  580. goods = {100001,19000},
  581. condition = 8071,
  582. },
  583. [8073] = {
  584. ID = 8073,
  585. lv = 19,
  586. talentType = 1,
  587. entryID = 1003,
  588. goods = {100001,20000},
  589. condition = 8072,
  590. },
  591. [8074] = {
  592. ID = 8074,
  593. lv = 19,
  594. talentType = 1,
  595. entryID = 1004,
  596. goods = {100001,20000},
  597. condition = 8073,
  598. },
  599. [8075] = {
  600. ID = 8075,
  601. lv = 19,
  602. talentType = 1,
  603. entryID = 1005,
  604. goods = {100001,20000},
  605. condition = 8074,
  606. },
  607. [8076] = {
  608. ID = 8076,
  609. lv = 19,
  610. talentType = 1,
  611. entryID = 1001,
  612. goods = {100001,20000},
  613. condition = 8075,
  614. },
  615. [8077] = {
  616. ID = 8077,
  617. lv = 20,
  618. talentType = 1,
  619. entryID = 1002,
  620. goods = {100001,22000},
  621. condition = 8076,
  622. },
  623. [8078] = {
  624. ID = 8078,
  625. lv = 20,
  626. talentType = 1,
  627. entryID = 1003,
  628. goods = {100001,22000},
  629. condition = 8077,
  630. },
  631. [8079] = {
  632. ID = 8079,
  633. lv = 20,
  634. talentType = 1,
  635. entryID = 1004,
  636. goods = {100001,22000},
  637. condition = 8078,
  638. },
  639. [8080] = {
  640. ID = 8080,
  641. lv = 20,
  642. talentType = 1,
  643. entryID = 1005,
  644. goods = {100001,22000},
  645. condition = 8079,
  646. },
  647. [8081] = {
  648. ID = 8081,
  649. lv = 21,
  650. talentType = 1,
  651. entryID = 1001,
  652. goods = {100001,24000},
  653. condition = 8080,
  654. },
  655. [8082] = {
  656. ID = 8082,
  657. lv = 21,
  658. talentType = 1,
  659. entryID = 1002,
  660. goods = {100001,24000},
  661. condition = 8081,
  662. },
  663. [8083] = {
  664. ID = 8083,
  665. lv = 21,
  666. talentType = 1,
  667. entryID = 1003,
  668. goods = {100001,24000},
  669. condition = 8082,
  670. },
  671. [8084] = {
  672. ID = 8084,
  673. lv = 21,
  674. talentType = 1,
  675. entryID = 1004,
  676. goods = {100001,24000},
  677. condition = 8083,
  678. },
  679. [8085] = {
  680. ID = 8085,
  681. lv = 22,
  682. talentType = 1,
  683. entryID = 1005,
  684. goods = {100001,26000},
  685. condition = 8084,
  686. },
  687. [8086] = {
  688. ID = 8086,
  689. lv = 22,
  690. talentType = 1,
  691. entryID = 1001,
  692. goods = {100001,26000},
  693. condition = 8085,
  694. },
  695. [8087] = {
  696. ID = 8087,
  697. lv = 22,
  698. talentType = 1,
  699. entryID = 1002,
  700. goods = {100001,26000},
  701. condition = 8086,
  702. },
  703. [8088] = {
  704. ID = 8088,
  705. lv = 22,
  706. talentType = 1,
  707. entryID = 1003,
  708. goods = {100001,26000},
  709. condition = 8087,
  710. },
  711. [8089] = {
  712. ID = 8089,
  713. lv = 23,
  714. talentType = 1,
  715. entryID = 1004,
  716. goods = {100001,28000},
  717. condition = 8088,
  718. },
  719. [8090] = {
  720. ID = 8090,
  721. lv = 23,
  722. talentType = 1,
  723. entryID = 1005,
  724. goods = {100001,28000},
  725. condition = 8089,
  726. },
  727. [8091] = {
  728. ID = 8091,
  729. lv = 23,
  730. talentType = 1,
  731. entryID = 1001,
  732. goods = {100001,28000},
  733. condition = 8090,
  734. },
  735. [8092] = {
  736. ID = 8092,
  737. lv = 23,
  738. talentType = 1,
  739. entryID = 1002,
  740. goods = {100001,28000},
  741. condition = 8091,
  742. },
  743. [8093] = {
  744. ID = 8093,
  745. lv = 24,
  746. talentType = 1,
  747. entryID = 1003,
  748. goods = {100001,30000},
  749. condition = 8092,
  750. },
  751. [8094] = {
  752. ID = 8094,
  753. lv = 24,
  754. talentType = 1,
  755. entryID = 1004,
  756. goods = {100001,30000},
  757. condition = 8093,
  758. },
  759. [8095] = {
  760. ID = 8095,
  761. lv = 24,
  762. talentType = 1,
  763. entryID = 1005,
  764. goods = {100001,30000},
  765. condition = 8094,
  766. },
  767. [8096] = {
  768. ID = 8096,
  769. lv = 24,
  770. talentType = 1,
  771. entryID = 1001,
  772. goods = {100001,30000},
  773. condition = 8095,
  774. },
  775. [8097] = {
  776. ID = 8097,
  777. lv = 25,
  778. talentType = 1,
  779. entryID = 1002,
  780. goods = {100001,32000},
  781. condition = 8096,
  782. },
  783. [8098] = {
  784. ID = 8098,
  785. lv = 25,
  786. talentType = 1,
  787. entryID = 1003,
  788. goods = {100001,32000},
  789. condition = 8097,
  790. },
  791. [8099] = {
  792. ID = 8099,
  793. lv = 25,
  794. talentType = 1,
  795. entryID = 1004,
  796. goods = {100001,32000},
  797. condition = 8098,
  798. },
  799. [8100] = {
  800. ID = 8100,
  801. lv = 25,
  802. talentType = 1,
  803. entryID = 1005,
  804. goods = {100001,32000},
  805. condition = 8099,
  806. },
  807. [8101] = {
  808. ID = 8101,
  809. lv = 26,
  810. talentType = 1,
  811. entryID = 1001,
  812. goods = {100001,34000},
  813. condition = 8100,
  814. },
  815. [8102] = {
  816. ID = 8102,
  817. lv = 26,
  818. talentType = 1,
  819. entryID = 1002,
  820. goods = {100001,34000},
  821. condition = 8101,
  822. },
  823. [8103] = {
  824. ID = 8103,
  825. lv = 26,
  826. talentType = 1,
  827. entryID = 1003,
  828. goods = {100001,34000},
  829. condition = 8102,
  830. },
  831. [8104] = {
  832. ID = 8104,
  833. lv = 26,
  834. talentType = 1,
  835. entryID = 1004,
  836. goods = {100001,34000},
  837. condition = 8103,
  838. },
  839. [8105] = {
  840. ID = 8105,
  841. lv = 27,
  842. talentType = 1,
  843. entryID = 1005,
  844. goods = {100001,36000},
  845. condition = 8104,
  846. },
  847. [8106] = {
  848. ID = 8106,
  849. lv = 27,
  850. talentType = 1,
  851. entryID = 1001,
  852. goods = {100001,36000},
  853. condition = 8105,
  854. },
  855. [8107] = {
  856. ID = 8107,
  857. lv = 27,
  858. talentType = 1,
  859. entryID = 1002,
  860. goods = {100001,36000},
  861. condition = 8106,
  862. },
  863. [8108] = {
  864. ID = 8108,
  865. lv = 27,
  866. talentType = 1,
  867. entryID = 1003,
  868. goods = {100001,36000},
  869. condition = 8107,
  870. },
  871. [8109] = {
  872. ID = 8109,
  873. lv = 28,
  874. talentType = 1,
  875. entryID = 1004,
  876. goods = {100001,38000},
  877. condition = 8108,
  878. },
  879. [8110] = {
  880. ID = 8110,
  881. lv = 28,
  882. talentType = 1,
  883. entryID = 1005,
  884. goods = {100001,38000},
  885. condition = 8109,
  886. },
  887. [8111] = {
  888. ID = 8111,
  889. lv = 28,
  890. talentType = 1,
  891. entryID = 1001,
  892. goods = {100001,38000},
  893. condition = 8110,
  894. },
  895. [8112] = {
  896. ID = 8112,
  897. lv = 28,
  898. talentType = 1,
  899. entryID = 1002,
  900. goods = {100001,38000},
  901. condition = 8111,
  902. },
  903. [8113] = {
  904. ID = 8113,
  905. lv = 29,
  906. talentType = 1,
  907. entryID = 1003,
  908. goods = {100001,40000},
  909. condition = 8112,
  910. },
  911. [8114] = {
  912. ID = 8114,
  913. lv = 29,
  914. talentType = 1,
  915. entryID = 1004,
  916. goods = {100001,40000},
  917. condition = 8113,
  918. },
  919. [8115] = {
  920. ID = 8115,
  921. lv = 29,
  922. talentType = 1,
  923. entryID = 1005,
  924. goods = {100001,40000},
  925. condition = 8114,
  926. },
  927. [8116] = {
  928. ID = 8116,
  929. lv = 29,
  930. talentType = 1,
  931. entryID = 1001,
  932. goods = {100001,40000},
  933. condition = 8115,
  934. },
  935. [8117] = {
  936. ID = 8117,
  937. lv = 30,
  938. talentType = 1,
  939. entryID = 1002,
  940. goods = {100001,42000},
  941. condition = 8116,
  942. },
  943. [8118] = {
  944. ID = 8118,
  945. lv = 30,
  946. talentType = 1,
  947. entryID = 1003,
  948. goods = {100001,42000},
  949. condition = 8117,
  950. },
  951. [8119] = {
  952. ID = 8119,
  953. lv = 30,
  954. talentType = 1,
  955. entryID = 1004,
  956. goods = {100001,42000},
  957. condition = 8118,
  958. },
  959. [8120] = {
  960. ID = 8120,
  961. lv = 30,
  962. talentType = 1,
  963. entryID = 1005,
  964. goods = {100001,42000},
  965. condition = 8119,
  966. },
  967. [8121] = {
  968. ID = 8121,
  969. lv = 31,
  970. talentType = 1,
  971. entryID = 1001,
  972. goods = {100001,44000},
  973. condition = 8120,
  974. },
  975. [8122] = {
  976. ID = 8122,
  977. lv = 31,
  978. talentType = 1,
  979. entryID = 1002,
  980. goods = {100001,44000},
  981. condition = 8121,
  982. },
  983. [8123] = {
  984. ID = 8123,
  985. lv = 31,
  986. talentType = 1,
  987. entryID = 1003,
  988. goods = {100001,44000},
  989. condition = 8122,
  990. },
  991. [8124] = {
  992. ID = 8124,
  993. lv = 31,
  994. talentType = 1,
  995. entryID = 1004,
  996. goods = {100001,44000},
  997. condition = 8123,
  998. },
  999. [8125] = {
  1000. ID = 8125,
  1001. lv = 32,
  1002. talentType = 1,
  1003. entryID = 1005,
  1004. goods = {100001,46000},
  1005. condition = 8124,
  1006. },
  1007. [8126] = {
  1008. ID = 8126,
  1009. lv = 32,
  1010. talentType = 1,
  1011. entryID = 1001,
  1012. goods = {100001,46000},
  1013. condition = 8125,
  1014. },
  1015. [8127] = {
  1016. ID = 8127,
  1017. lv = 32,
  1018. talentType = 1,
  1019. entryID = 1002,
  1020. goods = {100001,46000},
  1021. condition = 8126,
  1022. },
  1023. [8128] = {
  1024. ID = 8128,
  1025. lv = 32,
  1026. talentType = 1,
  1027. entryID = 1003,
  1028. goods = {100001,46000},
  1029. condition = 8127,
  1030. },
  1031. [8129] = {
  1032. ID = 8129,
  1033. lv = 33,
  1034. talentType = 1,
  1035. entryID = 1004,
  1036. goods = {100001,48000},
  1037. condition = 8128,
  1038. },
  1039. [8130] = {
  1040. ID = 8130,
  1041. lv = 33,
  1042. talentType = 1,
  1043. entryID = 1005,
  1044. goods = {100001,48000},
  1045. condition = 8129,
  1046. },
  1047. [8131] = {
  1048. ID = 8131,
  1049. lv = 33,
  1050. talentType = 1,
  1051. entryID = 1001,
  1052. goods = {100001,48000},
  1053. condition = 8130,
  1054. },
  1055. [8132] = {
  1056. ID = 8132,
  1057. lv = 33,
  1058. talentType = 1,
  1059. entryID = 1002,
  1060. goods = {100001,48000},
  1061. condition = 8131,
  1062. },
  1063. [8133] = {
  1064. ID = 8133,
  1065. lv = 34,
  1066. talentType = 1,
  1067. entryID = 1003,
  1068. goods = {100001,50000},
  1069. condition = 8132,
  1070. },
  1071. [8134] = {
  1072. ID = 8134,
  1073. lv = 34,
  1074. talentType = 1,
  1075. entryID = 1004,
  1076. goods = {100001,50000},
  1077. condition = 8133,
  1078. },
  1079. [8135] = {
  1080. ID = 8135,
  1081. lv = 34,
  1082. talentType = 1,
  1083. entryID = 1005,
  1084. goods = {100001,50000},
  1085. condition = 8134,
  1086. },
  1087. [8136] = {
  1088. ID = 8136,
  1089. lv = 34,
  1090. talentType = 1,
  1091. entryID = 1001,
  1092. goods = {100001,50000},
  1093. condition = 8135,
  1094. },
  1095. [8137] = {
  1096. ID = 8137,
  1097. lv = 35,
  1098. talentType = 1,
  1099. entryID = 1002,
  1100. goods = {100001,50000},
  1101. condition = 8136,
  1102. },
  1103. [8138] = {
  1104. ID = 8138,
  1105. lv = 35,
  1106. talentType = 1,
  1107. entryID = 1003,
  1108. goods = {100001,50000},
  1109. condition = 8137,
  1110. },
  1111. [8139] = {
  1112. ID = 8139,
  1113. lv = 35,
  1114. talentType = 1,
  1115. entryID = 1004,
  1116. goods = {100001,50000},
  1117. condition = 8138,
  1118. },
  1119. [8140] = {
  1120. ID = 8140,
  1121. lv = 35,
  1122. talentType = 1,
  1123. entryID = 1005,
  1124. goods = {100001,50000},
  1125. condition = 8139,
  1126. },
  1127. [8141] = {
  1128. ID = 8141,
  1129. lv = 36,
  1130. talentType = 1,
  1131. entryID = 1001,
  1132. goods = {100001,50000},
  1133. condition = 8140,
  1134. },
  1135. [8142] = {
  1136. ID = 8142,
  1137. lv = 36,
  1138. talentType = 1,
  1139. entryID = 1002,
  1140. goods = {100001,50000},
  1141. condition = 8141,
  1142. },
  1143. [8143] = {
  1144. ID = 8143,
  1145. lv = 36,
  1146. talentType = 1,
  1147. entryID = 1003,
  1148. goods = {100001,50000},
  1149. condition = 8142,
  1150. },
  1151. [8144] = {
  1152. ID = 8144,
  1153. lv = 36,
  1154. talentType = 1,
  1155. entryID = 1004,
  1156. goods = {100001,50000},
  1157. condition = 8143,
  1158. },
  1159. [8145] = {
  1160. ID = 8145,
  1161. lv = 37,
  1162. talentType = 1,
  1163. entryID = 1005,
  1164. goods = {100001,50000},
  1165. condition = 8144,
  1166. },
  1167. [8146] = {
  1168. ID = 8146,
  1169. lv = 37,
  1170. talentType = 1,
  1171. entryID = 1001,
  1172. goods = {100001,50000},
  1173. condition = 8145,
  1174. },
  1175. [8147] = {
  1176. ID = 8147,
  1177. lv = 37,
  1178. talentType = 1,
  1179. entryID = 1002,
  1180. goods = {100001,50000},
  1181. condition = 8146,
  1182. },
  1183. [8148] = {
  1184. ID = 8148,
  1185. lv = 37,
  1186. talentType = 1,
  1187. entryID = 1003,
  1188. goods = {100001,50000},
  1189. condition = 8147,
  1190. },
  1191. [8149] = {
  1192. ID = 8149,
  1193. lv = 38,
  1194. talentType = 1,
  1195. entryID = 1004,
  1196. goods = {100001,50000},
  1197. condition = 8148,
  1198. },
  1199. [8150] = {
  1200. ID = 8150,
  1201. lv = 38,
  1202. talentType = 1,
  1203. entryID = 1005,
  1204. goods = {100001,50000},
  1205. condition = 8149,
  1206. },
  1207. [8151] = {
  1208. ID = 8151,
  1209. lv = 38,
  1210. talentType = 1,
  1211. entryID = 1001,
  1212. goods = {100001,50000},
  1213. condition = 8150,
  1214. },
  1215. [8152] = {
  1216. ID = 8152,
  1217. lv = 38,
  1218. talentType = 1,
  1219. entryID = 1002,
  1220. goods = {100001,50000},
  1221. condition = 8151,
  1222. },
  1223. [8153] = {
  1224. ID = 8153,
  1225. lv = 39,
  1226. talentType = 1,
  1227. entryID = 1003,
  1228. goods = {100001,50000},
  1229. condition = 8152,
  1230. },
  1231. [8154] = {
  1232. ID = 8154,
  1233. lv = 39,
  1234. talentType = 1,
  1235. entryID = 1004,
  1236. goods = {100001,50000},
  1237. condition = 8153,
  1238. },
  1239. [8155] = {
  1240. ID = 8155,
  1241. lv = 39,
  1242. talentType = 1,
  1243. entryID = 1005,
  1244. goods = {100001,50000},
  1245. condition = 8154,
  1246. },
  1247. [8156] = {
  1248. ID = 8156,
  1249. lv = 39,
  1250. talentType = 1,
  1251. entryID = 1001,
  1252. goods = {100001,50000},
  1253. condition = 8155,
  1254. },
  1255. [8157] = {
  1256. ID = 8157,
  1257. lv = 40,
  1258. talentType = 1,
  1259. entryID = 1002,
  1260. goods = {100001,50000},
  1261. condition = 8156,
  1262. },
  1263. [8158] = {
  1264. ID = 8158,
  1265. lv = 40,
  1266. talentType = 1,
  1267. entryID = 1003,
  1268. goods = {100001,50000},
  1269. condition = 8157,
  1270. },
  1271. [8159] = {
  1272. ID = 8159,
  1273. lv = 40,
  1274. talentType = 1,
  1275. entryID = 1004,
  1276. goods = {100001,50000},
  1277. condition = 8158,
  1278. },
  1279. [8160] = {
  1280. ID = 8160,
  1281. lv = 40,
  1282. talentType = 1,
  1283. entryID = 1005,
  1284. goods = {100001,50000},
  1285. condition = 8159,
  1286. },
  1287. [8161] = {
  1288. ID = 8161,
  1289. lv = 41,
  1290. talentType = 1,
  1291. entryID = 1001,
  1292. goods = {100001,55000},
  1293. condition = 8160,
  1294. },
  1295. [8162] = {
  1296. ID = 8162,
  1297. lv = 41,
  1298. talentType = 1,
  1299. entryID = 1002,
  1300. goods = {100001,55000},
  1301. condition = 8161,
  1302. },
  1303. [8163] = {
  1304. ID = 8163,
  1305. lv = 41,
  1306. talentType = 1,
  1307. entryID = 1003,
  1308. goods = {100001,55000},
  1309. condition = 8162,
  1310. },
  1311. [8164] = {
  1312. ID = 8164,
  1313. lv = 41,
  1314. talentType = 1,
  1315. entryID = 1004,
  1316. goods = {100001,55000},
  1317. condition = 8163,
  1318. },
  1319. [8165] = {
  1320. ID = 8165,
  1321. lv = 42,
  1322. talentType = 1,
  1323. entryID = 1005,
  1324. goods = {100001,55000},
  1325. condition = 8164,
  1326. },
  1327. [8166] = {
  1328. ID = 8166,
  1329. lv = 42,
  1330. talentType = 1,
  1331. entryID = 1001,
  1332. goods = {100001,55000},
  1333. condition = 8165,
  1334. },
  1335. [8167] = {
  1336. ID = 8167,
  1337. lv = 42,
  1338. talentType = 1,
  1339. entryID = 1002,
  1340. goods = {100001,55000},
  1341. condition = 8166,
  1342. },
  1343. [8168] = {
  1344. ID = 8168,
  1345. lv = 42,
  1346. talentType = 1,
  1347. entryID = 1003,
  1348. goods = {100001,55000},
  1349. condition = 8167,
  1350. },
  1351. [8169] = {
  1352. ID = 8169,
  1353. lv = 43,
  1354. talentType = 1,
  1355. entryID = 1004,
  1356. goods = {100001,55000},
  1357. condition = 8168,
  1358. },
  1359. [8170] = {
  1360. ID = 8170,
  1361. lv = 43,
  1362. talentType = 1,
  1363. entryID = 1005,
  1364. goods = {100001,55000},
  1365. condition = 8169,
  1366. },
  1367. [8171] = {
  1368. ID = 8171,
  1369. lv = 43,
  1370. talentType = 1,
  1371. entryID = 1001,
  1372. goods = {100001,55000},
  1373. condition = 8170,
  1374. },
  1375. [8172] = {
  1376. ID = 8172,
  1377. lv = 43,
  1378. talentType = 1,
  1379. entryID = 1002,
  1380. goods = {100001,55000},
  1381. condition = 8171,
  1382. },
  1383. [8173] = {
  1384. ID = 8173,
  1385. lv = 44,
  1386. talentType = 1,
  1387. entryID = 1003,
  1388. goods = {100001,55000},
  1389. condition = 8172,
  1390. },
  1391. [8174] = {
  1392. ID = 8174,
  1393. lv = 44,
  1394. talentType = 1,
  1395. entryID = 1004,
  1396. goods = {100001,55000},
  1397. condition = 8173,
  1398. },
  1399. [8175] = {
  1400. ID = 8175,
  1401. lv = 44,
  1402. talentType = 1,
  1403. entryID = 1005,
  1404. goods = {100001,55000},
  1405. condition = 8174,
  1406. },
  1407. [8176] = {
  1408. ID = 8176,
  1409. lv = 44,
  1410. talentType = 1,
  1411. entryID = 1001,
  1412. goods = {100001,55000},
  1413. condition = 8175,
  1414. },
  1415. [8177] = {
  1416. ID = 8177,
  1417. lv = 45,
  1418. talentType = 1,
  1419. entryID = 1002,
  1420. goods = {100001,55000},
  1421. condition = 8176,
  1422. },
  1423. [8178] = {
  1424. ID = 8178,
  1425. lv = 45,
  1426. talentType = 1,
  1427. entryID = 1003,
  1428. goods = {100001,55000},
  1429. condition = 8177,
  1430. },
  1431. [8179] = {
  1432. ID = 8179,
  1433. lv = 45,
  1434. talentType = 1,
  1435. entryID = 1004,
  1436. goods = {100001,55000},
  1437. condition = 8178,
  1438. },
  1439. [8180] = {
  1440. ID = 8180,
  1441. lv = 45,
  1442. talentType = 1,
  1443. entryID = 1005,
  1444. goods = {100001,55000},
  1445. condition = 8179,
  1446. },
  1447. [8181] = {
  1448. ID = 8181,
  1449. lv = 46,
  1450. talentType = 1,
  1451. entryID = 1001,
  1452. goods = {100001,55000},
  1453. condition = 8180,
  1454. },
  1455. [8182] = {
  1456. ID = 8182,
  1457. lv = 46,
  1458. talentType = 1,
  1459. entryID = 1002,
  1460. goods = {100001,55000},
  1461. condition = 8181,
  1462. },
  1463. [8183] = {
  1464. ID = 8183,
  1465. lv = 46,
  1466. talentType = 1,
  1467. entryID = 1003,
  1468. goods = {100001,55000},
  1469. condition = 8182,
  1470. },
  1471. [8184] = {
  1472. ID = 8184,
  1473. lv = 46,
  1474. talentType = 1,
  1475. entryID = 1004,
  1476. goods = {100001,55000},
  1477. condition = 8183,
  1478. },
  1479. [8185] = {
  1480. ID = 8185,
  1481. lv = 47,
  1482. talentType = 1,
  1483. entryID = 1005,
  1484. goods = {100001,55000},
  1485. condition = 8184,
  1486. },
  1487. [8186] = {
  1488. ID = 8186,
  1489. lv = 47,
  1490. talentType = 1,
  1491. entryID = 1001,
  1492. goods = {100001,55000},
  1493. condition = 8185,
  1494. },
  1495. [8187] = {
  1496. ID = 8187,
  1497. lv = 47,
  1498. talentType = 1,
  1499. entryID = 1002,
  1500. goods = {100001,55000},
  1501. condition = 8186,
  1502. },
  1503. [8188] = {
  1504. ID = 8188,
  1505. lv = 47,
  1506. talentType = 1,
  1507. entryID = 1003,
  1508. goods = {100001,55000},
  1509. condition = 8187,
  1510. },
  1511. [8189] = {
  1512. ID = 8189,
  1513. lv = 48,
  1514. talentType = 1,
  1515. entryID = 1004,
  1516. goods = {100001,55000},
  1517. condition = 8188,
  1518. },
  1519. [8190] = {
  1520. ID = 8190,
  1521. lv = 48,
  1522. talentType = 1,
  1523. entryID = 1005,
  1524. goods = {100001,55000},
  1525. condition = 8189,
  1526. },
  1527. [8191] = {
  1528. ID = 8191,
  1529. lv = 48,
  1530. talentType = 1,
  1531. entryID = 1001,
  1532. goods = {100001,55000},
  1533. condition = 8190,
  1534. },
  1535. [8192] = {
  1536. ID = 8192,
  1537. lv = 48,
  1538. talentType = 1,
  1539. entryID = 1002,
  1540. goods = {100001,55000},
  1541. condition = 8191,
  1542. },
  1543. [8193] = {
  1544. ID = 8193,
  1545. lv = 49,
  1546. talentType = 1,
  1547. entryID = 1003,
  1548. goods = {100001,55000},
  1549. condition = 8192,
  1550. },
  1551. [8194] = {
  1552. ID = 8194,
  1553. lv = 49,
  1554. talentType = 1,
  1555. entryID = 1004,
  1556. goods = {100001,55000},
  1557. condition = 8193,
  1558. },
  1559. [8195] = {
  1560. ID = 8195,
  1561. lv = 49,
  1562. talentType = 1,
  1563. entryID = 1005,
  1564. goods = {100001,55000},
  1565. condition = 8194,
  1566. },
  1567. [8196] = {
  1568. ID = 8196,
  1569. lv = 49,
  1570. talentType = 1,
  1571. entryID = 1001,
  1572. goods = {100001,55000},
  1573. condition = 8195,
  1574. },
  1575. [8197] = {
  1576. ID = 8197,
  1577. lv = 50,
  1578. talentType = 1,
  1579. entryID = 1002,
  1580. goods = {100001,60000},
  1581. condition = 8196,
  1582. },
  1583. [8198] = {
  1584. ID = 8198,
  1585. lv = 50,
  1586. talentType = 1,
  1587. entryID = 1003,
  1588. goods = {100001,60000},
  1589. condition = 8197,
  1590. },
  1591. [8199] = {
  1592. ID = 8199,
  1593. lv = 50,
  1594. talentType = 1,
  1595. entryID = 1004,
  1596. goods = {100001,60000},
  1597. condition = 8198,
  1598. },
  1599. [8200] = {
  1600. ID = 8200,
  1601. lv = 50,
  1602. talentType = 1,
  1603. entryID = 1005,
  1604. goods = {100001,60000},
  1605. condition = 8199,
  1606. },
  1607. [8201] = {
  1608. ID = 8201,
  1609. lv = 51,
  1610. talentType = 1,
  1611. entryID = 1001,
  1612. goods = {100001,60000},
  1613. condition = 8200,
  1614. },
  1615. [8202] = {
  1616. ID = 8202,
  1617. lv = 51,
  1618. talentType = 1,
  1619. entryID = 1002,
  1620. goods = {100001,60000},
  1621. condition = 8201,
  1622. },
  1623. [8203] = {
  1624. ID = 8203,
  1625. lv = 51,
  1626. talentType = 1,
  1627. entryID = 1003,
  1628. goods = {100001,60000},
  1629. condition = 8202,
  1630. },
  1631. [8204] = {
  1632. ID = 8204,
  1633. lv = 51,
  1634. talentType = 1,
  1635. entryID = 1004,
  1636. goods = {100001,60000},
  1637. condition = 8203,
  1638. },
  1639. [8205] = {
  1640. ID = 8205,
  1641. lv = 52,
  1642. talentType = 1,
  1643. entryID = 1005,
  1644. goods = {100001,60000},
  1645. condition = 8204,
  1646. },
  1647. [8206] = {
  1648. ID = 8206,
  1649. lv = 52,
  1650. talentType = 1,
  1651. entryID = 1001,
  1652. goods = {100001,60000},
  1653. condition = 8205,
  1654. },
  1655. [8207] = {
  1656. ID = 8207,
  1657. lv = 52,
  1658. talentType = 1,
  1659. entryID = 1002,
  1660. goods = {100001,60000},
  1661. condition = 8206,
  1662. },
  1663. [8208] = {
  1664. ID = 8208,
  1665. lv = 52,
  1666. talentType = 1,
  1667. entryID = 1003,
  1668. goods = {100001,60000},
  1669. condition = 8207,
  1670. },
  1671. [8209] = {
  1672. ID = 8209,
  1673. lv = 53,
  1674. talentType = 1,
  1675. entryID = 1004,
  1676. goods = {100001,60000},
  1677. condition = 8208,
  1678. },
  1679. [8210] = {
  1680. ID = 8210,
  1681. lv = 53,
  1682. talentType = 1,
  1683. entryID = 1005,
  1684. goods = {100001,60000},
  1685. condition = 8209,
  1686. },
  1687. [8211] = {
  1688. ID = 8211,
  1689. lv = 53,
  1690. talentType = 1,
  1691. entryID = 1001,
  1692. goods = {100001,60000},
  1693. condition = 8210,
  1694. },
  1695. [8212] = {
  1696. ID = 8212,
  1697. lv = 53,
  1698. talentType = 1,
  1699. entryID = 1002,
  1700. goods = {100001,60000},
  1701. condition = 8211,
  1702. },
  1703. [8213] = {
  1704. ID = 8213,
  1705. lv = 54,
  1706. talentType = 1,
  1707. entryID = 1003,
  1708. goods = {100001,60000},
  1709. condition = 8212,
  1710. },
  1711. [8214] = {
  1712. ID = 8214,
  1713. lv = 54,
  1714. talentType = 1,
  1715. entryID = 1004,
  1716. goods = {100001,60000},
  1717. condition = 8213,
  1718. },
  1719. [8215] = {
  1720. ID = 8215,
  1721. lv = 54,
  1722. talentType = 1,
  1723. entryID = 1005,
  1724. goods = {100001,60000},
  1725. condition = 8214,
  1726. },
  1727. [8216] = {
  1728. ID = 8216,
  1729. lv = 54,
  1730. talentType = 1,
  1731. entryID = 1001,
  1732. goods = {100001,60000},
  1733. condition = 8215,
  1734. },
  1735. [8217] = {
  1736. ID = 8217,
  1737. lv = 55,
  1738. talentType = 1,
  1739. entryID = 1002,
  1740. goods = {100001,60000},
  1741. condition = 8216,
  1742. },
  1743. [8218] = {
  1744. ID = 8218,
  1745. lv = 55,
  1746. talentType = 1,
  1747. entryID = 1003,
  1748. goods = {100001,60000},
  1749. condition = 8217,
  1750. },
  1751. [8219] = {
  1752. ID = 8219,
  1753. lv = 55,
  1754. talentType = 1,
  1755. entryID = 1004,
  1756. goods = {100001,60000},
  1757. condition = 8218,
  1758. },
  1759. [8220] = {
  1760. ID = 8220,
  1761. lv = 55,
  1762. talentType = 1,
  1763. entryID = 1005,
  1764. goods = {100001,60000},
  1765. condition = 8219,
  1766. },
  1767. [8221] = {
  1768. ID = 8221,
  1769. lv = 56,
  1770. talentType = 1,
  1771. entryID = 1001,
  1772. goods = {100001,60000},
  1773. condition = 8220,
  1774. },
  1775. [8222] = {
  1776. ID = 8222,
  1777. lv = 56,
  1778. talentType = 1,
  1779. entryID = 1002,
  1780. goods = {100001,60000},
  1781. condition = 8221,
  1782. },
  1783. [8223] = {
  1784. ID = 8223,
  1785. lv = 56,
  1786. talentType = 1,
  1787. entryID = 1003,
  1788. goods = {100001,60000},
  1789. condition = 8222,
  1790. },
  1791. [8224] = {
  1792. ID = 8224,
  1793. lv = 56,
  1794. talentType = 1,
  1795. entryID = 1004,
  1796. goods = {100001,60000},
  1797. condition = 8223,
  1798. },
  1799. [8225] = {
  1800. ID = 8225,
  1801. lv = 57,
  1802. talentType = 1,
  1803. entryID = 1005,
  1804. goods = {100001,60000},
  1805. condition = 8224,
  1806. },
  1807. [8226] = {
  1808. ID = 8226,
  1809. lv = 57,
  1810. talentType = 1,
  1811. entryID = 1001,
  1812. goods = {100001,60000},
  1813. condition = 8225,
  1814. },
  1815. [8227] = {
  1816. ID = 8227,
  1817. lv = 57,
  1818. talentType = 1,
  1819. entryID = 1002,
  1820. goods = {100001,60000},
  1821. condition = 8226,
  1822. },
  1823. [8228] = {
  1824. ID = 8228,
  1825. lv = 57,
  1826. talentType = 1,
  1827. entryID = 1003,
  1828. goods = {100001,60000},
  1829. condition = 8227,
  1830. },
  1831. [8229] = {
  1832. ID = 8229,
  1833. lv = 58,
  1834. talentType = 1,
  1835. entryID = 1004,
  1836. goods = {100001,60000},
  1837. condition = 8228,
  1838. },
  1839. [8230] = {
  1840. ID = 8230,
  1841. lv = 58,
  1842. talentType = 1,
  1843. entryID = 1005,
  1844. goods = {100001,60000},
  1845. condition = 8229,
  1846. },
  1847. [8231] = {
  1848. ID = 8231,
  1849. lv = 58,
  1850. talentType = 1,
  1851. entryID = 1001,
  1852. goods = {100001,60000},
  1853. condition = 8230,
  1854. },
  1855. [8232] = {
  1856. ID = 8232,
  1857. lv = 58,
  1858. talentType = 1,
  1859. entryID = 1002,
  1860. goods = {100001,60000},
  1861. condition = 8231,
  1862. },
  1863. [8233] = {
  1864. ID = 8233,
  1865. lv = 59,
  1866. talentType = 1,
  1867. entryID = 1003,
  1868. goods = {100001,60000},
  1869. condition = 8232,
  1870. },
  1871. [8234] = {
  1872. ID = 8234,
  1873. lv = 59,
  1874. talentType = 1,
  1875. entryID = 1004,
  1876. goods = {100001,60000},
  1877. condition = 8233,
  1878. },
  1879. [8235] = {
  1880. ID = 8235,
  1881. lv = 59,
  1882. talentType = 1,
  1883. entryID = 1005,
  1884. goods = {100001,60000},
  1885. condition = 8234,
  1886. },
  1887. [8236] = {
  1888. ID = 8236,
  1889. lv = 59,
  1890. talentType = 1,
  1891. entryID = 1001,
  1892. goods = {100001,60000},
  1893. condition = 8235,
  1894. },
  1895. [8237] = {
  1896. ID = 8237,
  1897. lv = 60,
  1898. talentType = 1,
  1899. entryID = 1002,
  1900. goods = {100001,65000},
  1901. condition = 8236,
  1902. },
  1903. [8238] = {
  1904. ID = 8238,
  1905. lv = 60,
  1906. talentType = 1,
  1907. entryID = 1003,
  1908. goods = {100001,65000},
  1909. condition = 8237,
  1910. },
  1911. [8239] = {
  1912. ID = 8239,
  1913. lv = 60,
  1914. talentType = 1,
  1915. entryID = 1004,
  1916. goods = {100001,65000},
  1917. condition = 8238,
  1918. },
  1919. [8240] = {
  1920. ID = 8240,
  1921. lv = 60,
  1922. talentType = 1,
  1923. entryID = 1005,
  1924. goods = {100001,65000},
  1925. condition = 8239,
  1926. },
  1927. [8241] = {
  1928. ID = 8241,
  1929. lv = 61,
  1930. talentType = 1,
  1931. entryID = 1001,
  1932. goods = {100001,65000},
  1933. condition = 8240,
  1934. },
  1935. [8242] = {
  1936. ID = 8242,
  1937. lv = 61,
  1938. talentType = 1,
  1939. entryID = 1002,
  1940. goods = {100001,65000},
  1941. condition = 8241,
  1942. },
  1943. [8243] = {
  1944. ID = 8243,
  1945. lv = 61,
  1946. talentType = 1,
  1947. entryID = 1003,
  1948. goods = {100001,65000},
  1949. condition = 8242,
  1950. },
  1951. [8244] = {
  1952. ID = 8244,
  1953. lv = 61,
  1954. talentType = 1,
  1955. entryID = 1004,
  1956. goods = {100001,65000},
  1957. condition = 8243,
  1958. },
  1959. [8245] = {
  1960. ID = 8245,
  1961. lv = 62,
  1962. talentType = 1,
  1963. entryID = 1005,
  1964. goods = {100001,65000},
  1965. condition = 8244,
  1966. },
  1967. [8246] = {
  1968. ID = 8246,
  1969. lv = 62,
  1970. talentType = 1,
  1971. entryID = 1001,
  1972. goods = {100001,65000},
  1973. condition = 8245,
  1974. },
  1975. [8247] = {
  1976. ID = 8247,
  1977. lv = 62,
  1978. talentType = 1,
  1979. entryID = 1002,
  1980. goods = {100001,65000},
  1981. condition = 8246,
  1982. },
  1983. [8248] = {
  1984. ID = 8248,
  1985. lv = 62,
  1986. talentType = 1,
  1987. entryID = 1003,
  1988. goods = {100001,65000},
  1989. condition = 8247,
  1990. },
  1991. [8249] = {
  1992. ID = 8249,
  1993. lv = 63,
  1994. talentType = 1,
  1995. entryID = 1004,
  1996. goods = {100001,65000},
  1997. condition = 8248,
  1998. },
  1999. [8250] = {
  2000. ID = 8250,
  2001. lv = 63,
  2002. talentType = 1,
  2003. entryID = 1005,
  2004. goods = {100001,65000},
  2005. condition = 8249,
  2006. },
  2007. [8251] = {
  2008. ID = 8251,
  2009. lv = 63,
  2010. talentType = 1,
  2011. entryID = 1001,
  2012. goods = {100001,65000},
  2013. condition = 8250,
  2014. },
  2015. [8252] = {
  2016. ID = 8252,
  2017. lv = 63,
  2018. talentType = 1,
  2019. entryID = 1002,
  2020. goods = {100001,65000},
  2021. condition = 8251,
  2022. },
  2023. [8253] = {
  2024. ID = 8253,
  2025. lv = 64,
  2026. talentType = 1,
  2027. entryID = 1003,
  2028. goods = {100001,65000},
  2029. condition = 8252,
  2030. },
  2031. [8254] = {
  2032. ID = 8254,
  2033. lv = 64,
  2034. talentType = 1,
  2035. entryID = 1004,
  2036. goods = {100001,65000},
  2037. condition = 8253,
  2038. },
  2039. [8255] = {
  2040. ID = 8255,
  2041. lv = 64,
  2042. talentType = 1,
  2043. entryID = 1005,
  2044. goods = {100001,65000},
  2045. condition = 8254,
  2046. },
  2047. [8256] = {
  2048. ID = 8256,
  2049. lv = 64,
  2050. talentType = 1,
  2051. entryID = 1001,
  2052. goods = {100001,65000},
  2053. condition = 8255,
  2054. },
  2055. [8257] = {
  2056. ID = 8257,
  2057. lv = 65,
  2058. talentType = 1,
  2059. entryID = 1002,
  2060. goods = {100001,65000},
  2061. condition = 8256,
  2062. },
  2063. [8258] = {
  2064. ID = 8258,
  2065. lv = 65,
  2066. talentType = 1,
  2067. entryID = 1003,
  2068. goods = {100001,65000},
  2069. condition = 8257,
  2070. },
  2071. [8259] = {
  2072. ID = 8259,
  2073. lv = 65,
  2074. talentType = 1,
  2075. entryID = 1004,
  2076. goods = {100001,65000},
  2077. condition = 8258,
  2078. },
  2079. [8260] = {
  2080. ID = 8260,
  2081. lv = 65,
  2082. talentType = 1,
  2083. entryID = 1005,
  2084. goods = {100001,65000},
  2085. condition = 8259,
  2086. },
  2087. [8261] = {
  2088. ID = 8261,
  2089. lv = 66,
  2090. talentType = 1,
  2091. entryID = 1001,
  2092. goods = {100001,65000},
  2093. condition = 8260,
  2094. },
  2095. [8262] = {
  2096. ID = 8262,
  2097. lv = 66,
  2098. talentType = 1,
  2099. entryID = 1002,
  2100. goods = {100001,65000},
  2101. condition = 8261,
  2102. },
  2103. [8263] = {
  2104. ID = 8263,
  2105. lv = 66,
  2106. talentType = 1,
  2107. entryID = 1003,
  2108. goods = {100001,65000},
  2109. condition = 8262,
  2110. },
  2111. [8264] = {
  2112. ID = 8264,
  2113. lv = 66,
  2114. talentType = 1,
  2115. entryID = 1004,
  2116. goods = {100001,65000},
  2117. condition = 8263,
  2118. },
  2119. [8265] = {
  2120. ID = 8265,
  2121. lv = 67,
  2122. talentType = 1,
  2123. entryID = 1005,
  2124. goods = {100001,65000},
  2125. condition = 8264,
  2126. },
  2127. [8266] = {
  2128. ID = 8266,
  2129. lv = 67,
  2130. talentType = 1,
  2131. entryID = 1001,
  2132. goods = {100001,65000},
  2133. condition = 8265,
  2134. },
  2135. [8267] = {
  2136. ID = 8267,
  2137. lv = 67,
  2138. talentType = 1,
  2139. entryID = 1002,
  2140. goods = {100001,65000},
  2141. condition = 8266,
  2142. },
  2143. [8268] = {
  2144. ID = 8268,
  2145. lv = 67,
  2146. talentType = 1,
  2147. entryID = 1003,
  2148. goods = {100001,65000},
  2149. condition = 8267,
  2150. },
  2151. [8269] = {
  2152. ID = 8269,
  2153. lv = 68,
  2154. talentType = 1,
  2155. entryID = 1004,
  2156. goods = {100001,65000},
  2157. condition = 8268,
  2158. },
  2159. [8270] = {
  2160. ID = 8270,
  2161. lv = 68,
  2162. talentType = 1,
  2163. entryID = 1005,
  2164. goods = {100001,65000},
  2165. condition = 8269,
  2166. },
  2167. [8271] = {
  2168. ID = 8271,
  2169. lv = 68,
  2170. talentType = 1,
  2171. entryID = 1001,
  2172. goods = {100001,65000},
  2173. condition = 8270,
  2174. },
  2175. [8272] = {
  2176. ID = 8272,
  2177. lv = 68,
  2178. talentType = 1,
  2179. entryID = 1002,
  2180. goods = {100001,65000},
  2181. condition = 8271,
  2182. },
  2183. [8273] = {
  2184. ID = 8273,
  2185. lv = 69,
  2186. talentType = 1,
  2187. entryID = 1003,
  2188. goods = {100001,65000},
  2189. condition = 8272,
  2190. },
  2191. [8274] = {
  2192. ID = 8274,
  2193. lv = 69,
  2194. talentType = 1,
  2195. entryID = 1004,
  2196. goods = {100001,65000},
  2197. condition = 8273,
  2198. },
  2199. [8275] = {
  2200. ID = 8275,
  2201. lv = 69,
  2202. talentType = 1,
  2203. entryID = 1005,
  2204. goods = {100001,65000},
  2205. condition = 8274,
  2206. },
  2207. [8276] = {
  2208. ID = 8276,
  2209. lv = 69,
  2210. talentType = 1,
  2211. entryID = 1001,
  2212. goods = {100001,65000},
  2213. condition = 8275,
  2214. },
  2215. [8277] = {
  2216. ID = 8277,
  2217. lv = 70,
  2218. talentType = 1,
  2219. entryID = 1002,
  2220. goods = {100001,70000},
  2221. condition = 8276,
  2222. },
  2223. [8278] = {
  2224. ID = 8278,
  2225. lv = 70,
  2226. talentType = 1,
  2227. entryID = 1003,
  2228. goods = {100001,70000},
  2229. condition = 8277,
  2230. },
  2231. [8279] = {
  2232. ID = 8279,
  2233. lv = 70,
  2234. talentType = 1,
  2235. entryID = 1004,
  2236. goods = {100001,70000},
  2237. condition = 8278,
  2238. },
  2239. [8280] = {
  2240. ID = 8280,
  2241. lv = 70,
  2242. talentType = 1,
  2243. entryID = 1005,
  2244. goods = {100001,70000},
  2245. condition = 8279,
  2246. },
  2247. [8281] = {
  2248. ID = 8281,
  2249. lv = 71,
  2250. talentType = 1,
  2251. entryID = 1001,
  2252. goods = {100001,70000},
  2253. condition = 8280,
  2254. },
  2255. [8282] = {
  2256. ID = 8282,
  2257. lv = 71,
  2258. talentType = 1,
  2259. entryID = 1002,
  2260. goods = {100001,70000},
  2261. condition = 8281,
  2262. },
  2263. [8283] = {
  2264. ID = 8283,
  2265. lv = 71,
  2266. talentType = 1,
  2267. entryID = 1003,
  2268. goods = {100001,70000},
  2269. condition = 8282,
  2270. },
  2271. [8284] = {
  2272. ID = 8284,
  2273. lv = 71,
  2274. talentType = 1,
  2275. entryID = 1004,
  2276. goods = {100001,70000},
  2277. condition = 8283,
  2278. },
  2279. [8285] = {
  2280. ID = 8285,
  2281. lv = 72,
  2282. talentType = 1,
  2283. entryID = 1005,
  2284. goods = {100001,70000},
  2285. condition = 8284,
  2286. },
  2287. [8286] = {
  2288. ID = 8286,
  2289. lv = 72,
  2290. talentType = 1,
  2291. entryID = 1001,
  2292. goods = {100001,70000},
  2293. condition = 8285,
  2294. },
  2295. [8287] = {
  2296. ID = 8287,
  2297. lv = 72,
  2298. talentType = 1,
  2299. entryID = 1002,
  2300. goods = {100001,70000},
  2301. condition = 8286,
  2302. },
  2303. [8288] = {
  2304. ID = 8288,
  2305. lv = 72,
  2306. talentType = 1,
  2307. entryID = 1003,
  2308. goods = {100001,70000},
  2309. condition = 8287,
  2310. },
  2311. [8289] = {
  2312. ID = 8289,
  2313. lv = 73,
  2314. talentType = 1,
  2315. entryID = 1004,
  2316. goods = {100001,70000},
  2317. condition = 8288,
  2318. },
  2319. [8290] = {
  2320. ID = 8290,
  2321. lv = 73,
  2322. talentType = 1,
  2323. entryID = 1005,
  2324. goods = {100001,70000},
  2325. condition = 8289,
  2326. },
  2327. [8291] = {
  2328. ID = 8291,
  2329. lv = 73,
  2330. talentType = 1,
  2331. entryID = 1001,
  2332. goods = {100001,70000},
  2333. condition = 8290,
  2334. },
  2335. [8292] = {
  2336. ID = 8292,
  2337. lv = 73,
  2338. talentType = 1,
  2339. entryID = 1002,
  2340. goods = {100001,70000},
  2341. condition = 8291,
  2342. },
  2343. [8293] = {
  2344. ID = 8293,
  2345. lv = 74,
  2346. talentType = 1,
  2347. entryID = 1003,
  2348. goods = {100001,70000},
  2349. condition = 8292,
  2350. },
  2351. [8294] = {
  2352. ID = 8294,
  2353. lv = 74,
  2354. talentType = 1,
  2355. entryID = 1004,
  2356. goods = {100001,70000},
  2357. condition = 8293,
  2358. },
  2359. [8295] = {
  2360. ID = 8295,
  2361. lv = 74,
  2362. talentType = 1,
  2363. entryID = 1005,
  2364. goods = {100001,70000},
  2365. condition = 8294,
  2366. },
  2367. [8296] = {
  2368. ID = 8296,
  2369. lv = 74,
  2370. talentType = 1,
  2371. entryID = 1001,
  2372. goods = {100001,70000},
  2373. condition = 8295,
  2374. },
  2375. [8297] = {
  2376. ID = 8297,
  2377. lv = 75,
  2378. talentType = 1,
  2379. entryID = 1002,
  2380. goods = {100001,70000},
  2381. condition = 8296,
  2382. },
  2383. [8298] = {
  2384. ID = 8298,
  2385. lv = 75,
  2386. talentType = 1,
  2387. entryID = 1003,
  2388. goods = {100001,70000},
  2389. condition = 8297,
  2390. },
  2391. [8299] = {
  2392. ID = 8299,
  2393. lv = 75,
  2394. talentType = 1,
  2395. entryID = 1004,
  2396. goods = {100001,70000},
  2397. condition = 8298,
  2398. },
  2399. [8300] = {
  2400. ID = 8300,
  2401. lv = 75,
  2402. talentType = 1,
  2403. entryID = 1005,
  2404. goods = {100001,70000},
  2405. condition = 8299,
  2406. },
  2407. [8301] = {
  2408. ID = 8301,
  2409. lv = 76,
  2410. talentType = 1,
  2411. entryID = 1001,
  2412. goods = {100001,70000},
  2413. condition = 8300,
  2414. },
  2415. [8302] = {
  2416. ID = 8302,
  2417. lv = 76,
  2418. talentType = 1,
  2419. entryID = 1002,
  2420. goods = {100001,70000},
  2421. condition = 8301,
  2422. },
  2423. [8303] = {
  2424. ID = 8303,
  2425. lv = 76,
  2426. talentType = 1,
  2427. entryID = 1003,
  2428. goods = {100001,70000},
  2429. condition = 8302,
  2430. },
  2431. [8304] = {
  2432. ID = 8304,
  2433. lv = 76,
  2434. talentType = 1,
  2435. entryID = 1004,
  2436. goods = {100001,70000},
  2437. condition = 8303,
  2438. },
  2439. [8305] = {
  2440. ID = 8305,
  2441. lv = 77,
  2442. talentType = 1,
  2443. entryID = 1005,
  2444. goods = {100001,70000},
  2445. condition = 8304,
  2446. },
  2447. [8306] = {
  2448. ID = 8306,
  2449. lv = 77,
  2450. talentType = 1,
  2451. entryID = 1001,
  2452. goods = {100001,70000},
  2453. condition = 8305,
  2454. },
  2455. [8307] = {
  2456. ID = 8307,
  2457. lv = 77,
  2458. talentType = 1,
  2459. entryID = 1002,
  2460. goods = {100001,70000},
  2461. condition = 8306,
  2462. },
  2463. [8308] = {
  2464. ID = 8308,
  2465. lv = 77,
  2466. talentType = 1,
  2467. entryID = 1003,
  2468. goods = {100001,70000},
  2469. condition = 8307,
  2470. },
  2471. [8309] = {
  2472. ID = 8309,
  2473. lv = 78,
  2474. talentType = 1,
  2475. entryID = 1004,
  2476. goods = {100001,70000},
  2477. condition = 8308,
  2478. },
  2479. [8310] = {
  2480. ID = 8310,
  2481. lv = 78,
  2482. talentType = 1,
  2483. entryID = 1005,
  2484. goods = {100001,70000},
  2485. condition = 8309,
  2486. },
  2487. [8311] = {
  2488. ID = 8311,
  2489. lv = 78,
  2490. talentType = 1,
  2491. entryID = 1001,
  2492. goods = {100001,70000},
  2493. condition = 8310,
  2494. },
  2495. [8312] = {
  2496. ID = 8312,
  2497. lv = 78,
  2498. talentType = 1,
  2499. entryID = 1002,
  2500. goods = {100001,70000},
  2501. condition = 8311,
  2502. },
  2503. [8313] = {
  2504. ID = 8313,
  2505. lv = 79,
  2506. talentType = 1,
  2507. entryID = 1003,
  2508. goods = {100001,70000},
  2509. condition = 8312,
  2510. },
  2511. [8314] = {
  2512. ID = 8314,
  2513. lv = 79,
  2514. talentType = 1,
  2515. entryID = 1004,
  2516. goods = {100001,70000},
  2517. condition = 8313,
  2518. },
  2519. [8315] = {
  2520. ID = 8315,
  2521. lv = 79,
  2522. talentType = 1,
  2523. entryID = 1005,
  2524. goods = {100001,70000},
  2525. condition = 8314,
  2526. },
  2527. [8316] = {
  2528. ID = 8316,
  2529. lv = 79,
  2530. talentType = 1,
  2531. entryID = 1001,
  2532. goods = {100001,70000},
  2533. condition = 8315,
  2534. },
  2535. [8317] = {
  2536. ID = 8317,
  2537. lv = 80,
  2538. talentType = 1,
  2539. entryID = 1002,
  2540. goods = {100001,75000},
  2541. condition = 8316,
  2542. },
  2543. [8318] = {
  2544. ID = 8318,
  2545. lv = 80,
  2546. talentType = 1,
  2547. entryID = 1003,
  2548. goods = {100001,75000},
  2549. condition = 8317,
  2550. },
  2551. [8319] = {
  2552. ID = 8319,
  2553. lv = 80,
  2554. talentType = 1,
  2555. entryID = 1004,
  2556. goods = {100001,75000},
  2557. condition = 8318,
  2558. },
  2559. [8320] = {
  2560. ID = 8320,
  2561. lv = 80,
  2562. talentType = 1,
  2563. entryID = 1005,
  2564. goods = {100001,75000},
  2565. condition = 8319,
  2566. },
  2567. [8321] = {
  2568. ID = 8321,
  2569. lv = 81,
  2570. talentType = 1,
  2571. entryID = 1001,
  2572. goods = {100001,75000},
  2573. condition = 8320,
  2574. },
  2575. [8322] = {
  2576. ID = 8322,
  2577. lv = 81,
  2578. talentType = 1,
  2579. entryID = 1002,
  2580. goods = {100001,75000},
  2581. condition = 8321,
  2582. },
  2583. [8323] = {
  2584. ID = 8323,
  2585. lv = 81,
  2586. talentType = 1,
  2587. entryID = 1003,
  2588. goods = {100001,75000},
  2589. condition = 8322,
  2590. },
  2591. [8324] = {
  2592. ID = 8324,
  2593. lv = 81,
  2594. talentType = 1,
  2595. entryID = 1004,
  2596. goods = {100001,75000},
  2597. condition = 8323,
  2598. },
  2599. [8325] = {
  2600. ID = 8325,
  2601. lv = 82,
  2602. talentType = 1,
  2603. entryID = 1005,
  2604. goods = {100001,75000},
  2605. condition = 8324,
  2606. },
  2607. [8326] = {
  2608. ID = 8326,
  2609. lv = 82,
  2610. talentType = 1,
  2611. entryID = 1001,
  2612. goods = {100001,75000},
  2613. condition = 8325,
  2614. },
  2615. [8327] = {
  2616. ID = 8327,
  2617. lv = 82,
  2618. talentType = 1,
  2619. entryID = 1002,
  2620. goods = {100001,75000},
  2621. condition = 8326,
  2622. },
  2623. [8328] = {
  2624. ID = 8328,
  2625. lv = 82,
  2626. talentType = 1,
  2627. entryID = 1003,
  2628. goods = {100001,75000},
  2629. condition = 8327,
  2630. },
  2631. [8329] = {
  2632. ID = 8329,
  2633. lv = 83,
  2634. talentType = 1,
  2635. entryID = 1004,
  2636. goods = {100001,75000},
  2637. condition = 8328,
  2638. },
  2639. [8330] = {
  2640. ID = 8330,
  2641. lv = 83,
  2642. talentType = 1,
  2643. entryID = 1005,
  2644. goods = {100001,75000},
  2645. condition = 8329,
  2646. },
  2647. [8331] = {
  2648. ID = 8331,
  2649. lv = 83,
  2650. talentType = 1,
  2651. entryID = 1001,
  2652. goods = {100001,75000},
  2653. condition = 8330,
  2654. },
  2655. [8332] = {
  2656. ID = 8332,
  2657. lv = 83,
  2658. talentType = 1,
  2659. entryID = 1002,
  2660. goods = {100001,75000},
  2661. condition = 8331,
  2662. },
  2663. [8333] = {
  2664. ID = 8333,
  2665. lv = 84,
  2666. talentType = 1,
  2667. entryID = 1003,
  2668. goods = {100001,75000},
  2669. condition = 8332,
  2670. },
  2671. [8334] = {
  2672. ID = 8334,
  2673. lv = 84,
  2674. talentType = 1,
  2675. entryID = 1004,
  2676. goods = {100001,75000},
  2677. condition = 8333,
  2678. },
  2679. [8335] = {
  2680. ID = 8335,
  2681. lv = 84,
  2682. talentType = 1,
  2683. entryID = 1005,
  2684. goods = {100001,75000},
  2685. condition = 8334,
  2686. },
  2687. [8336] = {
  2688. ID = 8336,
  2689. lv = 84,
  2690. talentType = 1,
  2691. entryID = 1001,
  2692. goods = {100001,75000},
  2693. condition = 8335,
  2694. },
  2695. [8337] = {
  2696. ID = 8337,
  2697. lv = 85,
  2698. talentType = 1,
  2699. entryID = 1002,
  2700. goods = {100001,75000},
  2701. condition = 8336,
  2702. },
  2703. [8338] = {
  2704. ID = 8338,
  2705. lv = 85,
  2706. talentType = 1,
  2707. entryID = 1003,
  2708. goods = {100001,75000},
  2709. condition = 8337,
  2710. },
  2711. [8339] = {
  2712. ID = 8339,
  2713. lv = 85,
  2714. talentType = 1,
  2715. entryID = 1004,
  2716. goods = {100001,75000},
  2717. condition = 8338,
  2718. },
  2719. [8340] = {
  2720. ID = 8340,
  2721. lv = 85,
  2722. talentType = 1,
  2723. entryID = 1005,
  2724. goods = {100001,75000},
  2725. condition = 8339,
  2726. },
  2727. [8341] = {
  2728. ID = 8341,
  2729. lv = 86,
  2730. talentType = 1,
  2731. entryID = 1001,
  2732. goods = {100001,75000},
  2733. condition = 8340,
  2734. },
  2735. [8342] = {
  2736. ID = 8342,
  2737. lv = 86,
  2738. talentType = 1,
  2739. entryID = 1002,
  2740. goods = {100001,75000},
  2741. condition = 8341,
  2742. },
  2743. [8343] = {
  2744. ID = 8343,
  2745. lv = 86,
  2746. talentType = 1,
  2747. entryID = 1003,
  2748. goods = {100001,75000},
  2749. condition = 8342,
  2750. },
  2751. [8344] = {
  2752. ID = 8344,
  2753. lv = 86,
  2754. talentType = 1,
  2755. entryID = 1004,
  2756. goods = {100001,75000},
  2757. condition = 8343,
  2758. },
  2759. [8345] = {
  2760. ID = 8345,
  2761. lv = 87,
  2762. talentType = 1,
  2763. entryID = 1005,
  2764. goods = {100001,75000},
  2765. condition = 8344,
  2766. },
  2767. [8346] = {
  2768. ID = 8346,
  2769. lv = 87,
  2770. talentType = 1,
  2771. entryID = 1001,
  2772. goods = {100001,75000},
  2773. condition = 8345,
  2774. },
  2775. [8347] = {
  2776. ID = 8347,
  2777. lv = 87,
  2778. talentType = 1,
  2779. entryID = 1002,
  2780. goods = {100001,75000},
  2781. condition = 8346,
  2782. },
  2783. [8348] = {
  2784. ID = 8348,
  2785. lv = 87,
  2786. talentType = 1,
  2787. entryID = 1003,
  2788. goods = {100001,75000},
  2789. condition = 8347,
  2790. },
  2791. [8349] = {
  2792. ID = 8349,
  2793. lv = 88,
  2794. talentType = 1,
  2795. entryID = 1004,
  2796. goods = {100001,75000},
  2797. condition = 8348,
  2798. },
  2799. [8350] = {
  2800. ID = 8350,
  2801. lv = 88,
  2802. talentType = 1,
  2803. entryID = 1005,
  2804. goods = {100001,75000},
  2805. condition = 8349,
  2806. },
  2807. [8351] = {
  2808. ID = 8351,
  2809. lv = 88,
  2810. talentType = 1,
  2811. entryID = 1001,
  2812. goods = {100001,75000},
  2813. condition = 8350,
  2814. },
  2815. [8352] = {
  2816. ID = 8352,
  2817. lv = 88,
  2818. talentType = 1,
  2819. entryID = 1002,
  2820. goods = {100001,75000},
  2821. condition = 8351,
  2822. },
  2823. [8353] = {
  2824. ID = 8353,
  2825. lv = 89,
  2826. talentType = 1,
  2827. entryID = 1003,
  2828. goods = {100001,75000},
  2829. condition = 8352,
  2830. },
  2831. [8354] = {
  2832. ID = 8354,
  2833. lv = 89,
  2834. talentType = 1,
  2835. entryID = 1004,
  2836. goods = {100001,75000},
  2837. condition = 8353,
  2838. },
  2839. [8355] = {
  2840. ID = 8355,
  2841. lv = 89,
  2842. talentType = 1,
  2843. entryID = 1005,
  2844. goods = {100001,75000},
  2845. condition = 8354,
  2846. },
  2847. [8356] = {
  2848. ID = 8356,
  2849. lv = 89,
  2850. talentType = 1,
  2851. entryID = 1001,
  2852. goods = {100001,75000},
  2853. condition = 8355,
  2854. },
  2855. [8357] = {
  2856. ID = 8357,
  2857. lv = 90,
  2858. talentType = 1,
  2859. entryID = 1002,
  2860. goods = {100001,80000},
  2861. condition = 8356,
  2862. },
  2863. [8358] = {
  2864. ID = 8358,
  2865. lv = 90,
  2866. talentType = 1,
  2867. entryID = 1003,
  2868. goods = {100001,80000},
  2869. condition = 8357,
  2870. },
  2871. [8359] = {
  2872. ID = 8359,
  2873. lv = 90,
  2874. talentType = 1,
  2875. entryID = 1004,
  2876. goods = {100001,80000},
  2877. condition = 8358,
  2878. },
  2879. [8360] = {
  2880. ID = 8360,
  2881. lv = 90,
  2882. talentType = 1,
  2883. entryID = 1005,
  2884. goods = {100001,80000},
  2885. condition = 8359,
  2886. },
  2887. [8361] = {
  2888. ID = 8361,
  2889. lv = 91,
  2890. talentType = 1,
  2891. entryID = 1001,
  2892. goods = {100001,80000},
  2893. condition = 8360,
  2894. },
  2895. [8362] = {
  2896. ID = 8362,
  2897. lv = 91,
  2898. talentType = 1,
  2899. entryID = 1002,
  2900. goods = {100001,80000},
  2901. condition = 8361,
  2902. },
  2903. [8363] = {
  2904. ID = 8363,
  2905. lv = 91,
  2906. talentType = 1,
  2907. entryID = 1003,
  2908. goods = {100001,80000},
  2909. condition = 8362,
  2910. },
  2911. [8364] = {
  2912. ID = 8364,
  2913. lv = 91,
  2914. talentType = 1,
  2915. entryID = 1004,
  2916. goods = {100001,80000},
  2917. condition = 8363,
  2918. },
  2919. [8365] = {
  2920. ID = 8365,
  2921. lv = 92,
  2922. talentType = 1,
  2923. entryID = 1005,
  2924. goods = {100001,80000},
  2925. condition = 8364,
  2926. },
  2927. [8366] = {
  2928. ID = 8366,
  2929. lv = 92,
  2930. talentType = 1,
  2931. entryID = 1001,
  2932. goods = {100001,80000},
  2933. condition = 8365,
  2934. },
  2935. [8367] = {
  2936. ID = 8367,
  2937. lv = 92,
  2938. talentType = 1,
  2939. entryID = 1002,
  2940. goods = {100001,80000},
  2941. condition = 8366,
  2942. },
  2943. [8368] = {
  2944. ID = 8368,
  2945. lv = 92,
  2946. talentType = 1,
  2947. entryID = 1003,
  2948. goods = {100001,80000},
  2949. condition = 8367,
  2950. },
  2951. [8369] = {
  2952. ID = 8369,
  2953. lv = 93,
  2954. talentType = 1,
  2955. entryID = 1004,
  2956. goods = {100001,80000},
  2957. condition = 8368,
  2958. },
  2959. [8370] = {
  2960. ID = 8370,
  2961. lv = 93,
  2962. talentType = 1,
  2963. entryID = 1005,
  2964. goods = {100001,80000},
  2965. condition = 8369,
  2966. },
  2967. [8371] = {
  2968. ID = 8371,
  2969. lv = 93,
  2970. talentType = 1,
  2971. entryID = 1001,
  2972. goods = {100001,80000},
  2973. condition = 8370,
  2974. },
  2975. [8372] = {
  2976. ID = 8372,
  2977. lv = 93,
  2978. talentType = 1,
  2979. entryID = 1002,
  2980. goods = {100001,80000},
  2981. condition = 8371,
  2982. },
  2983. [8373] = {
  2984. ID = 8373,
  2985. lv = 94,
  2986. talentType = 1,
  2987. entryID = 1003,
  2988. goods = {100001,80000},
  2989. condition = 8372,
  2990. },
  2991. [8374] = {
  2992. ID = 8374,
  2993. lv = 94,
  2994. talentType = 1,
  2995. entryID = 1004,
  2996. goods = {100001,80000},
  2997. condition = 8373,
  2998. },
  2999. [8375] = {
  3000. ID = 8375,
  3001. lv = 94,
  3002. talentType = 1,
  3003. entryID = 1005,
  3004. goods = {100001,80000},
  3005. condition = 8374,
  3006. },
  3007. [8376] = {
  3008. ID = 8376,
  3009. lv = 94,
  3010. talentType = 1,
  3011. entryID = 1001,
  3012. goods = {100001,80000},
  3013. condition = 8375,
  3014. },
  3015. [8377] = {
  3016. ID = 8377,
  3017. lv = 95,
  3018. talentType = 1,
  3019. entryID = 1002,
  3020. goods = {100001,80000},
  3021. condition = 8376,
  3022. },
  3023. [8378] = {
  3024. ID = 8378,
  3025. lv = 95,
  3026. talentType = 1,
  3027. entryID = 1003,
  3028. goods = {100001,80000},
  3029. condition = 8377,
  3030. },
  3031. [8379] = {
  3032. ID = 8379,
  3033. lv = 95,
  3034. talentType = 1,
  3035. entryID = 1004,
  3036. goods = {100001,80000},
  3037. condition = 8378,
  3038. },
  3039. [8380] = {
  3040. ID = 8380,
  3041. lv = 95,
  3042. talentType = 1,
  3043. entryID = 1005,
  3044. goods = {100001,80000},
  3045. condition = 8379,
  3046. },
  3047. [8381] = {
  3048. ID = 8381,
  3049. lv = 96,
  3050. talentType = 1,
  3051. entryID = 1001,
  3052. goods = {100001,80000},
  3053. condition = 8380,
  3054. },
  3055. [8382] = {
  3056. ID = 8382,
  3057. lv = 96,
  3058. talentType = 1,
  3059. entryID = 1002,
  3060. goods = {100001,80000},
  3061. condition = 8381,
  3062. },
  3063. [8383] = {
  3064. ID = 8383,
  3065. lv = 96,
  3066. talentType = 1,
  3067. entryID = 1003,
  3068. goods = {100001,80000},
  3069. condition = 8382,
  3070. },
  3071. [8384] = {
  3072. ID = 8384,
  3073. lv = 96,
  3074. talentType = 1,
  3075. entryID = 1004,
  3076. goods = {100001,80000},
  3077. condition = 8383,
  3078. },
  3079. [8385] = {
  3080. ID = 8385,
  3081. lv = 97,
  3082. talentType = 1,
  3083. entryID = 1005,
  3084. goods = {100001,80000},
  3085. condition = 8384,
  3086. },
  3087. [8386] = {
  3088. ID = 8386,
  3089. lv = 97,
  3090. talentType = 1,
  3091. entryID = 1001,
  3092. goods = {100001,80000},
  3093. condition = 8385,
  3094. },
  3095. [8387] = {
  3096. ID = 8387,
  3097. lv = 97,
  3098. talentType = 1,
  3099. entryID = 1002,
  3100. goods = {100001,80000},
  3101. condition = 8386,
  3102. },
  3103. [8388] = {
  3104. ID = 8388,
  3105. lv = 97,
  3106. talentType = 1,
  3107. entryID = 1003,
  3108. goods = {100001,80000},
  3109. condition = 8387,
  3110. },
  3111. [8389] = {
  3112. ID = 8389,
  3113. lv = 98,
  3114. talentType = 1,
  3115. entryID = 1004,
  3116. goods = {100001,80000},
  3117. condition = 8388,
  3118. },
  3119. [8390] = {
  3120. ID = 8390,
  3121. lv = 98,
  3122. talentType = 1,
  3123. entryID = 1005,
  3124. goods = {100001,80000},
  3125. condition = 8389,
  3126. },
  3127. [8391] = {
  3128. ID = 8391,
  3129. lv = 98,
  3130. talentType = 1,
  3131. entryID = 1001,
  3132. goods = {100001,80000},
  3133. condition = 8390,
  3134. },
  3135. [8392] = {
  3136. ID = 8392,
  3137. lv = 98,
  3138. talentType = 1,
  3139. entryID = 1002,
  3140. goods = {100001,80000},
  3141. condition = 8391,
  3142. },
  3143. [8393] = {
  3144. ID = 8393,
  3145. lv = 99,
  3146. talentType = 1,
  3147. entryID = 1003,
  3148. goods = {100001,80000},
  3149. condition = 8392,
  3150. },
  3151. [8394] = {
  3152. ID = 8394,
  3153. lv = 99,
  3154. talentType = 1,
  3155. entryID = 1004,
  3156. goods = {100001,80000},
  3157. condition = 8393,
  3158. },
  3159. [8395] = {
  3160. ID = 8395,
  3161. lv = 99,
  3162. talentType = 1,
  3163. entryID = 1005,
  3164. goods = {100001,80000},
  3165. condition = 8394,
  3166. },
  3167. [8396] = {
  3168. ID = 8396,
  3169. lv = 99,
  3170. talentType = 1,
  3171. entryID = 1001,
  3172. goods = {100001,80000},
  3173. condition = 8395,
  3174. },
  3175. [8397] = {
  3176. ID = 8397,
  3177. lv = 100,
  3178. talentType = 1,
  3179. entryID = 1002,
  3180. goods = {100001,80000},
  3181. condition = 8396,
  3182. },
  3183. [8398] = {
  3184. ID = 8398,
  3185. lv = 100,
  3186. talentType = 1,
  3187. entryID = 1003,
  3188. goods = {100001,80000},
  3189. condition = 8397,
  3190. },
  3191. [8399] = {
  3192. ID = 8399,
  3193. lv = 100,
  3194. talentType = 1,
  3195. entryID = 1004,
  3196. goods = {100001,80000},
  3197. condition = 8398,
  3198. },
  3199. [8400] = {
  3200. ID = 8400,
  3201. lv = 100,
  3202. talentType = 1,
  3203. entryID = 1005,
  3204. goods = {100001,80000},
  3205. condition = 8399,
  3206. },
  3207. [7001] = {
  3208. ID = 7001,
  3209. lv = 5,
  3210. talentType = 2,
  3211. entryID = 1150,
  3212. goods = {140003,1},
  3213. condition = 0,
  3214. },
  3215. [7002] = {
  3216. ID = 7002,
  3217. lv = 10,
  3218. talentType = 2,
  3219. entryID = 1151,
  3220. goods = {140003,2},
  3221. condition = 7001,
  3222. },
  3223. [7003] = {
  3224. ID = 7003,
  3225. lv = 20,
  3226. talentType = 2,
  3227. entryID = 1152,
  3228. goods = {140003,3},
  3229. condition = 7002,
  3230. },
  3231. [7004] = {
  3232. ID = 7004,
  3233. lv = 30,
  3234. talentType = 2,
  3235. entryID = 1153,
  3236. goods = {140003,3},
  3237. condition = 7003,
  3238. },
  3239. [7005] = {
  3240. ID = 7005,
  3241. lv = 40,
  3242. talentType = 2,
  3243. entryID = 1154,
  3244. goods = {140003,3},
  3245. condition = 7004,
  3246. },
  3247. [7006] = {
  3248. ID = 7006,
  3249. lv = 50,
  3250. talentType = 2,
  3251. entryID = 1155,
  3252. goods = {140003,5},
  3253. condition = 7005,
  3254. },
  3255. [7007] = {
  3256. ID = 7007,
  3257. lv = 60,
  3258. talentType = 2,
  3259. entryID = 1156,
  3260. goods = {140003,5},
  3261. condition = 7006,
  3262. },
  3263. [7008] = {
  3264. ID = 7008,
  3265. lv = 70,
  3266. talentType = 2,
  3267. entryID = 1157,
  3268. goods = {140003,5},
  3269. condition = 7007,
  3270. },
  3271. [7009] = {
  3272. ID = 7009,
  3273. lv = 80,
  3274. talentType = 2,
  3275. entryID = 1158,
  3276. goods = {140003,5},
  3277. condition = 7008,
  3278. },
  3279. [7010] = {
  3280. ID = 7010,
  3281. lv = 90,
  3282. talentType = 2,
  3283. entryID = 1159,
  3284. goods = {140003,5},
  3285. condition = 7009,
  3286. },
  3287. }