TalentConfig_proto.lua 118 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097509850995100510151025103510451055106510751085109511051115112511351145115511651175118511951205121512251235124512551265127512851295130513151325133513451355136513751385139514051415142514351445145514651475148514951505151515251535154515551565157515851595160516151625163516451655166516751685169517051715172517351745175517651775178517951805181518251835184518551865187518851895190519151925193519451955196519751985199520052015202520352045205520652075208520952105211521252135214521552165217521852195220522152225223522452255226522752285229523052315232523352345235523652375238523952405241524252435244524552465247524852495250525152525253525452555256525752585259526052615262526352645265526652675268526952705271527252735274527552765277527852795280528152825283528452855286528752885289529052915292529352945295529652975298529953005301530253035304530553065307530853095310531153125313531453155316531753185319532053215322532353245325532653275328532953305331533253335334533553365337533853395340534153425343534453455346534753485349535053515352535353545355535653575358535953605361536253635364536553665367536853695370537153725373537453755376537753785379538053815382538353845385538653875388538953905391539253935394539553965397539853995400540154025403540454055406540754085409541054115412541354145415541654175418541954205421542254235424542554265427542854295430543154325433543454355436543754385439544054415442544354445445544654475448544954505451545254535454545554565457545854595460546154625463546454655466546754685469547054715472547354745475547654775478547954805481548254835484548554865487548854895490549154925493549454955496549754985499550055015502550355045505550655075508550955105511551255135514551555165517551855195520552155225523552455255526552755285529553055315532553355345535553655375538553955405541554255435544554555465547554855495550555155525553555455555556555755585559556055615562556355645565556655675568556955705571557255735574557555765577557855795580558155825583558455855586558755885589559055915592559355945595559655975598559956005601560256035604560556065607560856095610561156125613561456155616561756185619562056215622562356245625562656275628562956305631563256335634563556365637563856395640564156425643564456455646564756485649565056515652565356545655565656575658565956605661566256635664566556665667566856695670567156725673567456755676567756785679568056815682568356845685568656875688568956905691569256935694569556965697569856995700570157025703570457055706570757085709571057115712571357145715571657175718571957205721572257235724572557265727572857295730573157325733573457355736573757385739574057415742574357445745574657475748574957505751575257535754575557565757575857595760576157625763576457655766576757685769577057715772577357745775577657775778577957805781578257835784578557865787578857895790579157925793579457955796579757985799580058015802580358045805580658075808580958105811581258135814581558165817581858195820582158225823582458255826582758285829583058315832583358345835583658375838583958405841584258435844584558465847584858495850585158525853585458555856585758585859586058615862586358645865586658675868586958705871587258735874587558765877587858795880588158825883588458855886588758885889589058915892589358945895589658975898589959005901590259035904590559065907
  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. [8401] = {
  3208. ID = 8401,
  3209. lv = 101,
  3210. talentType = 1,
  3211. entryID = 1001,
  3212. goods = {100001,85000},
  3213. condition = 8400,
  3214. },
  3215. [8402] = {
  3216. ID = 8402,
  3217. lv = 101,
  3218. talentType = 1,
  3219. entryID = 1002,
  3220. goods = {100001,85000},
  3221. condition = 8401,
  3222. },
  3223. [8403] = {
  3224. ID = 8403,
  3225. lv = 101,
  3226. talentType = 1,
  3227. entryID = 1003,
  3228. goods = {100001,85000},
  3229. condition = 8402,
  3230. },
  3231. [8404] = {
  3232. ID = 8404,
  3233. lv = 101,
  3234. talentType = 1,
  3235. entryID = 1004,
  3236. goods = {100001,85000},
  3237. condition = 8403,
  3238. },
  3239. [8405] = {
  3240. ID = 8405,
  3241. lv = 102,
  3242. talentType = 1,
  3243. entryID = 1005,
  3244. goods = {100001,85000},
  3245. condition = 8404,
  3246. },
  3247. [8406] = {
  3248. ID = 8406,
  3249. lv = 102,
  3250. talentType = 1,
  3251. entryID = 1001,
  3252. goods = {100001,85000},
  3253. condition = 8405,
  3254. },
  3255. [8407] = {
  3256. ID = 8407,
  3257. lv = 102,
  3258. talentType = 1,
  3259. entryID = 1002,
  3260. goods = {100001,85000},
  3261. condition = 8406,
  3262. },
  3263. [8408] = {
  3264. ID = 8408,
  3265. lv = 102,
  3266. talentType = 1,
  3267. entryID = 1003,
  3268. goods = {100001,85000},
  3269. condition = 8407,
  3270. },
  3271. [8409] = {
  3272. ID = 8409,
  3273. lv = 103,
  3274. talentType = 1,
  3275. entryID = 1004,
  3276. goods = {100001,85000},
  3277. condition = 8408,
  3278. },
  3279. [8410] = {
  3280. ID = 8410,
  3281. lv = 103,
  3282. talentType = 1,
  3283. entryID = 1005,
  3284. goods = {100001,85000},
  3285. condition = 8409,
  3286. },
  3287. [8411] = {
  3288. ID = 8411,
  3289. lv = 103,
  3290. talentType = 1,
  3291. entryID = 1001,
  3292. goods = {100001,85000},
  3293. condition = 8410,
  3294. },
  3295. [8412] = {
  3296. ID = 8412,
  3297. lv = 103,
  3298. talentType = 1,
  3299. entryID = 1002,
  3300. goods = {100001,85000},
  3301. condition = 8411,
  3302. },
  3303. [8413] = {
  3304. ID = 8413,
  3305. lv = 104,
  3306. talentType = 1,
  3307. entryID = 1003,
  3308. goods = {100001,85000},
  3309. condition = 8412,
  3310. },
  3311. [8414] = {
  3312. ID = 8414,
  3313. lv = 104,
  3314. talentType = 1,
  3315. entryID = 1004,
  3316. goods = {100001,85000},
  3317. condition = 8413,
  3318. },
  3319. [8415] = {
  3320. ID = 8415,
  3321. lv = 104,
  3322. talentType = 1,
  3323. entryID = 1005,
  3324. goods = {100001,85000},
  3325. condition = 8414,
  3326. },
  3327. [8416] = {
  3328. ID = 8416,
  3329. lv = 104,
  3330. talentType = 1,
  3331. entryID = 1001,
  3332. goods = {100001,85000},
  3333. condition = 8415,
  3334. },
  3335. [8417] = {
  3336. ID = 8417,
  3337. lv = 105,
  3338. talentType = 1,
  3339. entryID = 1002,
  3340. goods = {100001,85000},
  3341. condition = 8416,
  3342. },
  3343. [8418] = {
  3344. ID = 8418,
  3345. lv = 105,
  3346. talentType = 1,
  3347. entryID = 1003,
  3348. goods = {100001,85000},
  3349. condition = 8417,
  3350. },
  3351. [8419] = {
  3352. ID = 8419,
  3353. lv = 105,
  3354. talentType = 1,
  3355. entryID = 1004,
  3356. goods = {100001,85000},
  3357. condition = 8418,
  3358. },
  3359. [8420] = {
  3360. ID = 8420,
  3361. lv = 105,
  3362. talentType = 1,
  3363. entryID = 1005,
  3364. goods = {100001,85000},
  3365. condition = 8419,
  3366. },
  3367. [8421] = {
  3368. ID = 8421,
  3369. lv = 106,
  3370. talentType = 1,
  3371. entryID = 1001,
  3372. goods = {100001,85000},
  3373. condition = 8420,
  3374. },
  3375. [8422] = {
  3376. ID = 8422,
  3377. lv = 106,
  3378. talentType = 1,
  3379. entryID = 1002,
  3380. goods = {100001,85000},
  3381. condition = 8421,
  3382. },
  3383. [8423] = {
  3384. ID = 8423,
  3385. lv = 106,
  3386. talentType = 1,
  3387. entryID = 1003,
  3388. goods = {100001,85000},
  3389. condition = 8422,
  3390. },
  3391. [8424] = {
  3392. ID = 8424,
  3393. lv = 106,
  3394. talentType = 1,
  3395. entryID = 1004,
  3396. goods = {100001,85000},
  3397. condition = 8423,
  3398. },
  3399. [8425] = {
  3400. ID = 8425,
  3401. lv = 107,
  3402. talentType = 1,
  3403. entryID = 1005,
  3404. goods = {100001,85000},
  3405. condition = 8424,
  3406. },
  3407. [8426] = {
  3408. ID = 8426,
  3409. lv = 107,
  3410. talentType = 1,
  3411. entryID = 1001,
  3412. goods = {100001,90000},
  3413. condition = 8425,
  3414. },
  3415. [8427] = {
  3416. ID = 8427,
  3417. lv = 107,
  3418. talentType = 1,
  3419. entryID = 1002,
  3420. goods = {100001,90000},
  3421. condition = 8426,
  3422. },
  3423. [8428] = {
  3424. ID = 8428,
  3425. lv = 107,
  3426. talentType = 1,
  3427. entryID = 1003,
  3428. goods = {100001,90000},
  3429. condition = 8427,
  3430. },
  3431. [8429] = {
  3432. ID = 8429,
  3433. lv = 108,
  3434. talentType = 1,
  3435. entryID = 1004,
  3436. goods = {100001,90000},
  3437. condition = 8428,
  3438. },
  3439. [8430] = {
  3440. ID = 8430,
  3441. lv = 108,
  3442. talentType = 1,
  3443. entryID = 1005,
  3444. goods = {100001,90000},
  3445. condition = 8429,
  3446. },
  3447. [8431] = {
  3448. ID = 8431,
  3449. lv = 108,
  3450. talentType = 1,
  3451. entryID = 1001,
  3452. goods = {100001,90000},
  3453. condition = 8430,
  3454. },
  3455. [8432] = {
  3456. ID = 8432,
  3457. lv = 108,
  3458. talentType = 1,
  3459. entryID = 1002,
  3460. goods = {100001,90000},
  3461. condition = 8431,
  3462. },
  3463. [8433] = {
  3464. ID = 8433,
  3465. lv = 109,
  3466. talentType = 1,
  3467. entryID = 1003,
  3468. goods = {100001,90000},
  3469. condition = 8432,
  3470. },
  3471. [8434] = {
  3472. ID = 8434,
  3473. lv = 109,
  3474. talentType = 1,
  3475. entryID = 1004,
  3476. goods = {100001,90000},
  3477. condition = 8433,
  3478. },
  3479. [8435] = {
  3480. ID = 8435,
  3481. lv = 109,
  3482. talentType = 1,
  3483. entryID = 1005,
  3484. goods = {100001,90000},
  3485. condition = 8434,
  3486. },
  3487. [8436] = {
  3488. ID = 8436,
  3489. lv = 109,
  3490. talentType = 1,
  3491. entryID = 1001,
  3492. goods = {100001,90000},
  3493. condition = 8435,
  3494. },
  3495. [8437] = {
  3496. ID = 8437,
  3497. lv = 110,
  3498. talentType = 1,
  3499. entryID = 1002,
  3500. goods = {100001,90000},
  3501. condition = 8436,
  3502. },
  3503. [8438] = {
  3504. ID = 8438,
  3505. lv = 110,
  3506. talentType = 1,
  3507. entryID = 1003,
  3508. goods = {100001,90000},
  3509. condition = 8437,
  3510. },
  3511. [8439] = {
  3512. ID = 8439,
  3513. lv = 110,
  3514. talentType = 1,
  3515. entryID = 1004,
  3516. goods = {100001,90000},
  3517. condition = 8438,
  3518. },
  3519. [8440] = {
  3520. ID = 8440,
  3521. lv = 110,
  3522. talentType = 1,
  3523. entryID = 1005,
  3524. goods = {100001,90000},
  3525. condition = 8439,
  3526. },
  3527. [8441] = {
  3528. ID = 8441,
  3529. lv = 111,
  3530. talentType = 1,
  3531. entryID = 1001,
  3532. goods = {100001,90000},
  3533. condition = 8440,
  3534. },
  3535. [8442] = {
  3536. ID = 8442,
  3537. lv = 111,
  3538. talentType = 1,
  3539. entryID = 1002,
  3540. goods = {100001,90000},
  3541. condition = 8441,
  3542. },
  3543. [8443] = {
  3544. ID = 8443,
  3545. lv = 111,
  3546. talentType = 1,
  3547. entryID = 1003,
  3548. goods = {100001,90000},
  3549. condition = 8442,
  3550. },
  3551. [8444] = {
  3552. ID = 8444,
  3553. lv = 111,
  3554. talentType = 1,
  3555. entryID = 1004,
  3556. goods = {100001,90000},
  3557. condition = 8443,
  3558. },
  3559. [8445] = {
  3560. ID = 8445,
  3561. lv = 112,
  3562. talentType = 1,
  3563. entryID = 1005,
  3564. goods = {100001,90000},
  3565. condition = 8444,
  3566. },
  3567. [8446] = {
  3568. ID = 8446,
  3569. lv = 112,
  3570. talentType = 1,
  3571. entryID = 1001,
  3572. goods = {100001,90000},
  3573. condition = 8445,
  3574. },
  3575. [8447] = {
  3576. ID = 8447,
  3577. lv = 112,
  3578. talentType = 1,
  3579. entryID = 1002,
  3580. goods = {100001,90000},
  3581. condition = 8446,
  3582. },
  3583. [8448] = {
  3584. ID = 8448,
  3585. lv = 112,
  3586. talentType = 1,
  3587. entryID = 1003,
  3588. goods = {100001,90000},
  3589. condition = 8447,
  3590. },
  3591. [8449] = {
  3592. ID = 8449,
  3593. lv = 113,
  3594. talentType = 1,
  3595. entryID = 1004,
  3596. goods = {100001,90000},
  3597. condition = 8448,
  3598. },
  3599. [8450] = {
  3600. ID = 8450,
  3601. lv = 113,
  3602. talentType = 1,
  3603. entryID = 1005,
  3604. goods = {100001,90000},
  3605. condition = 8449,
  3606. },
  3607. [8451] = {
  3608. ID = 8451,
  3609. lv = 113,
  3610. talentType = 1,
  3611. entryID = 1001,
  3612. goods = {100001,95000},
  3613. condition = 8450,
  3614. },
  3615. [8452] = {
  3616. ID = 8452,
  3617. lv = 113,
  3618. talentType = 1,
  3619. entryID = 1002,
  3620. goods = {100001,95000},
  3621. condition = 8451,
  3622. },
  3623. [8453] = {
  3624. ID = 8453,
  3625. lv = 114,
  3626. talentType = 1,
  3627. entryID = 1003,
  3628. goods = {100001,95000},
  3629. condition = 8452,
  3630. },
  3631. [8454] = {
  3632. ID = 8454,
  3633. lv = 114,
  3634. talentType = 1,
  3635. entryID = 1004,
  3636. goods = {100001,95000},
  3637. condition = 8453,
  3638. },
  3639. [8455] = {
  3640. ID = 8455,
  3641. lv = 114,
  3642. talentType = 1,
  3643. entryID = 1005,
  3644. goods = {100001,95000},
  3645. condition = 8454,
  3646. },
  3647. [8456] = {
  3648. ID = 8456,
  3649. lv = 114,
  3650. talentType = 1,
  3651. entryID = 1001,
  3652. goods = {100001,95000},
  3653. condition = 8455,
  3654. },
  3655. [8457] = {
  3656. ID = 8457,
  3657. lv = 115,
  3658. talentType = 1,
  3659. entryID = 1002,
  3660. goods = {100001,95000},
  3661. condition = 8456,
  3662. },
  3663. [8458] = {
  3664. ID = 8458,
  3665. lv = 115,
  3666. talentType = 1,
  3667. entryID = 1003,
  3668. goods = {100001,95000},
  3669. condition = 8457,
  3670. },
  3671. [8459] = {
  3672. ID = 8459,
  3673. lv = 115,
  3674. talentType = 1,
  3675. entryID = 1004,
  3676. goods = {100001,95000},
  3677. condition = 8458,
  3678. },
  3679. [8460] = {
  3680. ID = 8460,
  3681. lv = 115,
  3682. talentType = 1,
  3683. entryID = 1005,
  3684. goods = {100001,95000},
  3685. condition = 8459,
  3686. },
  3687. [8461] = {
  3688. ID = 8461,
  3689. lv = 116,
  3690. talentType = 1,
  3691. entryID = 1001,
  3692. goods = {100001,95000},
  3693. condition = 8460,
  3694. },
  3695. [8462] = {
  3696. ID = 8462,
  3697. lv = 116,
  3698. talentType = 1,
  3699. entryID = 1002,
  3700. goods = {100001,95000},
  3701. condition = 8461,
  3702. },
  3703. [8463] = {
  3704. ID = 8463,
  3705. lv = 116,
  3706. talentType = 1,
  3707. entryID = 1003,
  3708. goods = {100001,95000},
  3709. condition = 8462,
  3710. },
  3711. [8464] = {
  3712. ID = 8464,
  3713. lv = 116,
  3714. talentType = 1,
  3715. entryID = 1004,
  3716. goods = {100001,95000},
  3717. condition = 8463,
  3718. },
  3719. [8465] = {
  3720. ID = 8465,
  3721. lv = 117,
  3722. talentType = 1,
  3723. entryID = 1005,
  3724. goods = {100001,95000},
  3725. condition = 8464,
  3726. },
  3727. [8466] = {
  3728. ID = 8466,
  3729. lv = 117,
  3730. talentType = 1,
  3731. entryID = 1001,
  3732. goods = {100001,95000},
  3733. condition = 8465,
  3734. },
  3735. [8467] = {
  3736. ID = 8467,
  3737. lv = 117,
  3738. talentType = 1,
  3739. entryID = 1002,
  3740. goods = {100001,95000},
  3741. condition = 8466,
  3742. },
  3743. [8468] = {
  3744. ID = 8468,
  3745. lv = 117,
  3746. talentType = 1,
  3747. entryID = 1003,
  3748. goods = {100001,95000},
  3749. condition = 8467,
  3750. },
  3751. [8469] = {
  3752. ID = 8469,
  3753. lv = 118,
  3754. talentType = 1,
  3755. entryID = 1004,
  3756. goods = {100001,95000},
  3757. condition = 8468,
  3758. },
  3759. [8470] = {
  3760. ID = 8470,
  3761. lv = 118,
  3762. talentType = 1,
  3763. entryID = 1005,
  3764. goods = {100001,95000},
  3765. condition = 8469,
  3766. },
  3767. [8471] = {
  3768. ID = 8471,
  3769. lv = 118,
  3770. talentType = 1,
  3771. entryID = 1001,
  3772. goods = {100001,95000},
  3773. condition = 8470,
  3774. },
  3775. [8472] = {
  3776. ID = 8472,
  3777. lv = 118,
  3778. talentType = 1,
  3779. entryID = 1002,
  3780. goods = {100001,95000},
  3781. condition = 8471,
  3782. },
  3783. [8473] = {
  3784. ID = 8473,
  3785. lv = 119,
  3786. talentType = 1,
  3787. entryID = 1003,
  3788. goods = {100001,95000},
  3789. condition = 8472,
  3790. },
  3791. [8474] = {
  3792. ID = 8474,
  3793. lv = 119,
  3794. talentType = 1,
  3795. entryID = 1004,
  3796. goods = {100001,95000},
  3797. condition = 8473,
  3798. },
  3799. [8475] = {
  3800. ID = 8475,
  3801. lv = 119,
  3802. talentType = 1,
  3803. entryID = 1005,
  3804. goods = {100001,100000},
  3805. condition = 8474,
  3806. },
  3807. [8476] = {
  3808. ID = 8476,
  3809. lv = 119,
  3810. talentType = 1,
  3811. entryID = 1001,
  3812. goods = {100001,100000},
  3813. condition = 8475,
  3814. },
  3815. [8477] = {
  3816. ID = 8477,
  3817. lv = 120,
  3818. talentType = 1,
  3819. entryID = 1002,
  3820. goods = {100001,100000},
  3821. condition = 8476,
  3822. },
  3823. [8478] = {
  3824. ID = 8478,
  3825. lv = 120,
  3826. talentType = 1,
  3827. entryID = 1003,
  3828. goods = {100001,100000},
  3829. condition = 8477,
  3830. },
  3831. [8479] = {
  3832. ID = 8479,
  3833. lv = 120,
  3834. talentType = 1,
  3835. entryID = 1004,
  3836. goods = {100001,100000},
  3837. condition = 8478,
  3838. },
  3839. [8480] = {
  3840. ID = 8480,
  3841. lv = 120,
  3842. talentType = 1,
  3843. entryID = 1005,
  3844. goods = {100001,100000},
  3845. condition = 8479,
  3846. },
  3847. [8481] = {
  3848. ID = 8481,
  3849. lv = 121,
  3850. talentType = 1,
  3851. entryID = 1001,
  3852. goods = {100001,100000},
  3853. condition = 8480,
  3854. },
  3855. [8482] = {
  3856. ID = 8482,
  3857. lv = 121,
  3858. talentType = 1,
  3859. entryID = 1002,
  3860. goods = {100001,100000},
  3861. condition = 8481,
  3862. },
  3863. [8483] = {
  3864. ID = 8483,
  3865. lv = 121,
  3866. talentType = 1,
  3867. entryID = 1003,
  3868. goods = {100001,100000},
  3869. condition = 8482,
  3870. },
  3871. [8484] = {
  3872. ID = 8484,
  3873. lv = 121,
  3874. talentType = 1,
  3875. entryID = 1004,
  3876. goods = {100001,100000},
  3877. condition = 8483,
  3878. },
  3879. [8485] = {
  3880. ID = 8485,
  3881. lv = 122,
  3882. talentType = 1,
  3883. entryID = 1005,
  3884. goods = {100001,100000},
  3885. condition = 8484,
  3886. },
  3887. [8486] = {
  3888. ID = 8486,
  3889. lv = 122,
  3890. talentType = 1,
  3891. entryID = 1001,
  3892. goods = {100001,100000},
  3893. condition = 8485,
  3894. },
  3895. [8487] = {
  3896. ID = 8487,
  3897. lv = 122,
  3898. talentType = 1,
  3899. entryID = 1002,
  3900. goods = {100001,100000},
  3901. condition = 8486,
  3902. },
  3903. [8488] = {
  3904. ID = 8488,
  3905. lv = 122,
  3906. talentType = 1,
  3907. entryID = 1003,
  3908. goods = {100001,100000},
  3909. condition = 8487,
  3910. },
  3911. [8489] = {
  3912. ID = 8489,
  3913. lv = 123,
  3914. talentType = 1,
  3915. entryID = 1004,
  3916. goods = {100001,100000},
  3917. condition = 8488,
  3918. },
  3919. [8490] = {
  3920. ID = 8490,
  3921. lv = 123,
  3922. talentType = 1,
  3923. entryID = 1005,
  3924. goods = {100001,100000},
  3925. condition = 8489,
  3926. },
  3927. [8491] = {
  3928. ID = 8491,
  3929. lv = 123,
  3930. talentType = 1,
  3931. entryID = 1001,
  3932. goods = {100001,100000},
  3933. condition = 8490,
  3934. },
  3935. [8492] = {
  3936. ID = 8492,
  3937. lv = 123,
  3938. talentType = 1,
  3939. entryID = 1002,
  3940. goods = {100001,100000},
  3941. condition = 8491,
  3942. },
  3943. [8493] = {
  3944. ID = 8493,
  3945. lv = 124,
  3946. talentType = 1,
  3947. entryID = 1003,
  3948. goods = {100001,100000},
  3949. condition = 8492,
  3950. },
  3951. [8494] = {
  3952. ID = 8494,
  3953. lv = 124,
  3954. talentType = 1,
  3955. entryID = 1004,
  3956. goods = {100001,100000},
  3957. condition = 8493,
  3958. },
  3959. [8495] = {
  3960. ID = 8495,
  3961. lv = 124,
  3962. talentType = 1,
  3963. entryID = 1005,
  3964. goods = {100001,100000},
  3965. condition = 8494,
  3966. },
  3967. [8496] = {
  3968. ID = 8496,
  3969. lv = 124,
  3970. talentType = 1,
  3971. entryID = 1001,
  3972. goods = {100001,100000},
  3973. condition = 8495,
  3974. },
  3975. [8497] = {
  3976. ID = 8497,
  3977. lv = 125,
  3978. talentType = 1,
  3979. entryID = 1002,
  3980. goods = {100001,100000},
  3981. condition = 8496,
  3982. },
  3983. [8498] = {
  3984. ID = 8498,
  3985. lv = 125,
  3986. talentType = 1,
  3987. entryID = 1003,
  3988. goods = {100001,100000},
  3989. condition = 8497,
  3990. },
  3991. [8499] = {
  3992. ID = 8499,
  3993. lv = 125,
  3994. talentType = 1,
  3995. entryID = 1004,
  3996. goods = {100001,100000},
  3997. condition = 8498,
  3998. },
  3999. [8500] = {
  4000. ID = 8500,
  4001. lv = 125,
  4002. talentType = 1,
  4003. entryID = 1005,
  4004. goods = {100001,100000},
  4005. condition = 8499,
  4006. },
  4007. [8501] = {
  4008. ID = 8501,
  4009. lv = 126,
  4010. talentType = 1,
  4011. entryID = 1001,
  4012. goods = {100001,110000},
  4013. condition = 8500,
  4014. },
  4015. [8502] = {
  4016. ID = 8502,
  4017. lv = 126,
  4018. talentType = 1,
  4019. entryID = 1002,
  4020. goods = {100001,110000},
  4021. condition = 8501,
  4022. },
  4023. [8503] = {
  4024. ID = 8503,
  4025. lv = 126,
  4026. talentType = 1,
  4027. entryID = 1003,
  4028. goods = {100001,110000},
  4029. condition = 8502,
  4030. },
  4031. [8504] = {
  4032. ID = 8504,
  4033. lv = 126,
  4034. talentType = 1,
  4035. entryID = 1004,
  4036. goods = {100001,110000},
  4037. condition = 8503,
  4038. },
  4039. [8505] = {
  4040. ID = 8505,
  4041. lv = 127,
  4042. talentType = 1,
  4043. entryID = 1005,
  4044. goods = {100001,110000},
  4045. condition = 8504,
  4046. },
  4047. [8506] = {
  4048. ID = 8506,
  4049. lv = 127,
  4050. talentType = 1,
  4051. entryID = 1001,
  4052. goods = {100001,110000},
  4053. condition = 8505,
  4054. },
  4055. [8507] = {
  4056. ID = 8507,
  4057. lv = 127,
  4058. talentType = 1,
  4059. entryID = 1002,
  4060. goods = {100001,110000},
  4061. condition = 8506,
  4062. },
  4063. [8508] = {
  4064. ID = 8508,
  4065. lv = 127,
  4066. talentType = 1,
  4067. entryID = 1003,
  4068. goods = {100001,110000},
  4069. condition = 8507,
  4070. },
  4071. [8509] = {
  4072. ID = 8509,
  4073. lv = 128,
  4074. talentType = 1,
  4075. entryID = 1004,
  4076. goods = {100001,110000},
  4077. condition = 8508,
  4078. },
  4079. [8510] = {
  4080. ID = 8510,
  4081. lv = 128,
  4082. talentType = 1,
  4083. entryID = 1005,
  4084. goods = {100001,110000},
  4085. condition = 8509,
  4086. },
  4087. [8511] = {
  4088. ID = 8511,
  4089. lv = 128,
  4090. talentType = 1,
  4091. entryID = 1001,
  4092. goods = {100001,110000},
  4093. condition = 8510,
  4094. },
  4095. [8512] = {
  4096. ID = 8512,
  4097. lv = 128,
  4098. talentType = 1,
  4099. entryID = 1002,
  4100. goods = {100001,110000},
  4101. condition = 8511,
  4102. },
  4103. [8513] = {
  4104. ID = 8513,
  4105. lv = 129,
  4106. talentType = 1,
  4107. entryID = 1003,
  4108. goods = {100001,110000},
  4109. condition = 8512,
  4110. },
  4111. [8514] = {
  4112. ID = 8514,
  4113. lv = 129,
  4114. talentType = 1,
  4115. entryID = 1004,
  4116. goods = {100001,110000},
  4117. condition = 8513,
  4118. },
  4119. [8515] = {
  4120. ID = 8515,
  4121. lv = 129,
  4122. talentType = 1,
  4123. entryID = 1005,
  4124. goods = {100001,110000},
  4125. condition = 8514,
  4126. },
  4127. [8516] = {
  4128. ID = 8516,
  4129. lv = 129,
  4130. talentType = 1,
  4131. entryID = 1001,
  4132. goods = {100001,110000},
  4133. condition = 8515,
  4134. },
  4135. [8517] = {
  4136. ID = 8517,
  4137. lv = 130,
  4138. talentType = 1,
  4139. entryID = 1002,
  4140. goods = {100001,110000},
  4141. condition = 8516,
  4142. },
  4143. [8518] = {
  4144. ID = 8518,
  4145. lv = 130,
  4146. talentType = 1,
  4147. entryID = 1003,
  4148. goods = {100001,110000},
  4149. condition = 8517,
  4150. },
  4151. [8519] = {
  4152. ID = 8519,
  4153. lv = 130,
  4154. talentType = 1,
  4155. entryID = 1004,
  4156. goods = {100001,110000},
  4157. condition = 8518,
  4158. },
  4159. [8520] = {
  4160. ID = 8520,
  4161. lv = 130,
  4162. talentType = 1,
  4163. entryID = 1005,
  4164. goods = {100001,110000},
  4165. condition = 8519,
  4166. },
  4167. [8521] = {
  4168. ID = 8521,
  4169. lv = 131,
  4170. talentType = 1,
  4171. entryID = 1001,
  4172. goods = {100001,110000},
  4173. condition = 8520,
  4174. },
  4175. [8522] = {
  4176. ID = 8522,
  4177. lv = 131,
  4178. talentType = 1,
  4179. entryID = 1002,
  4180. goods = {100001,110000},
  4181. condition = 8521,
  4182. },
  4183. [8523] = {
  4184. ID = 8523,
  4185. lv = 131,
  4186. talentType = 1,
  4187. entryID = 1003,
  4188. goods = {100001,110000},
  4189. condition = 8522,
  4190. },
  4191. [8524] = {
  4192. ID = 8524,
  4193. lv = 131,
  4194. talentType = 1,
  4195. entryID = 1004,
  4196. goods = {100001,110000},
  4197. condition = 8523,
  4198. },
  4199. [8525] = {
  4200. ID = 8525,
  4201. lv = 132,
  4202. talentType = 1,
  4203. entryID = 1005,
  4204. goods = {100001,110000},
  4205. condition = 8524,
  4206. },
  4207. [8526] = {
  4208. ID = 8526,
  4209. lv = 132,
  4210. talentType = 1,
  4211. entryID = 1001,
  4212. goods = {100001,120000},
  4213. condition = 8525,
  4214. },
  4215. [8527] = {
  4216. ID = 8527,
  4217. lv = 132,
  4218. talentType = 1,
  4219. entryID = 1002,
  4220. goods = {100001,120000},
  4221. condition = 8526,
  4222. },
  4223. [8528] = {
  4224. ID = 8528,
  4225. lv = 132,
  4226. talentType = 1,
  4227. entryID = 1003,
  4228. goods = {100001,120000},
  4229. condition = 8527,
  4230. },
  4231. [8529] = {
  4232. ID = 8529,
  4233. lv = 133,
  4234. talentType = 1,
  4235. entryID = 1004,
  4236. goods = {100001,120000},
  4237. condition = 8528,
  4238. },
  4239. [8530] = {
  4240. ID = 8530,
  4241. lv = 133,
  4242. talentType = 1,
  4243. entryID = 1005,
  4244. goods = {100001,120000},
  4245. condition = 8529,
  4246. },
  4247. [8531] = {
  4248. ID = 8531,
  4249. lv = 133,
  4250. talentType = 1,
  4251. entryID = 1001,
  4252. goods = {100001,120000},
  4253. condition = 8530,
  4254. },
  4255. [8532] = {
  4256. ID = 8532,
  4257. lv = 133,
  4258. talentType = 1,
  4259. entryID = 1002,
  4260. goods = {100001,120000},
  4261. condition = 8531,
  4262. },
  4263. [8533] = {
  4264. ID = 8533,
  4265. lv = 134,
  4266. talentType = 1,
  4267. entryID = 1003,
  4268. goods = {100001,120000},
  4269. condition = 8532,
  4270. },
  4271. [8534] = {
  4272. ID = 8534,
  4273. lv = 134,
  4274. talentType = 1,
  4275. entryID = 1004,
  4276. goods = {100001,120000},
  4277. condition = 8533,
  4278. },
  4279. [8535] = {
  4280. ID = 8535,
  4281. lv = 134,
  4282. talentType = 1,
  4283. entryID = 1005,
  4284. goods = {100001,120000},
  4285. condition = 8534,
  4286. },
  4287. [8536] = {
  4288. ID = 8536,
  4289. lv = 134,
  4290. talentType = 1,
  4291. entryID = 1001,
  4292. goods = {100001,120000},
  4293. condition = 8535,
  4294. },
  4295. [8537] = {
  4296. ID = 8537,
  4297. lv = 135,
  4298. talentType = 1,
  4299. entryID = 1002,
  4300. goods = {100001,120000},
  4301. condition = 8536,
  4302. },
  4303. [8538] = {
  4304. ID = 8538,
  4305. lv = 135,
  4306. talentType = 1,
  4307. entryID = 1003,
  4308. goods = {100001,120000},
  4309. condition = 8537,
  4310. },
  4311. [8539] = {
  4312. ID = 8539,
  4313. lv = 135,
  4314. talentType = 1,
  4315. entryID = 1004,
  4316. goods = {100001,120000},
  4317. condition = 8538,
  4318. },
  4319. [8540] = {
  4320. ID = 8540,
  4321. lv = 135,
  4322. talentType = 1,
  4323. entryID = 1005,
  4324. goods = {100001,120000},
  4325. condition = 8539,
  4326. },
  4327. [8541] = {
  4328. ID = 8541,
  4329. lv = 136,
  4330. talentType = 1,
  4331. entryID = 1001,
  4332. goods = {100001,120000},
  4333. condition = 8540,
  4334. },
  4335. [8542] = {
  4336. ID = 8542,
  4337. lv = 136,
  4338. talentType = 1,
  4339. entryID = 1002,
  4340. goods = {100001,120000},
  4341. condition = 8541,
  4342. },
  4343. [8543] = {
  4344. ID = 8543,
  4345. lv = 136,
  4346. talentType = 1,
  4347. entryID = 1003,
  4348. goods = {100001,120000},
  4349. condition = 8542,
  4350. },
  4351. [8544] = {
  4352. ID = 8544,
  4353. lv = 136,
  4354. talentType = 1,
  4355. entryID = 1004,
  4356. goods = {100001,120000},
  4357. condition = 8543,
  4358. },
  4359. [8545] = {
  4360. ID = 8545,
  4361. lv = 137,
  4362. talentType = 1,
  4363. entryID = 1005,
  4364. goods = {100001,120000},
  4365. condition = 8544,
  4366. },
  4367. [8546] = {
  4368. ID = 8546,
  4369. lv = 137,
  4370. talentType = 1,
  4371. entryID = 1001,
  4372. goods = {100001,120000},
  4373. condition = 8545,
  4374. },
  4375. [8547] = {
  4376. ID = 8547,
  4377. lv = 137,
  4378. talentType = 1,
  4379. entryID = 1002,
  4380. goods = {100001,120000},
  4381. condition = 8546,
  4382. },
  4383. [8548] = {
  4384. ID = 8548,
  4385. lv = 137,
  4386. talentType = 1,
  4387. entryID = 1003,
  4388. goods = {100001,120000},
  4389. condition = 8547,
  4390. },
  4391. [8549] = {
  4392. ID = 8549,
  4393. lv = 138,
  4394. talentType = 1,
  4395. entryID = 1004,
  4396. goods = {100001,120000},
  4397. condition = 8548,
  4398. },
  4399. [8550] = {
  4400. ID = 8550,
  4401. lv = 138,
  4402. talentType = 1,
  4403. entryID = 1005,
  4404. goods = {100001,120000},
  4405. condition = 8549,
  4406. },
  4407. [8551] = {
  4408. ID = 8551,
  4409. lv = 138,
  4410. talentType = 1,
  4411. entryID = 1001,
  4412. goods = {100001,130000},
  4413. condition = 8550,
  4414. },
  4415. [8552] = {
  4416. ID = 8552,
  4417. lv = 138,
  4418. talentType = 1,
  4419. entryID = 1002,
  4420. goods = {100001,130000},
  4421. condition = 8551,
  4422. },
  4423. [8553] = {
  4424. ID = 8553,
  4425. lv = 139,
  4426. talentType = 1,
  4427. entryID = 1003,
  4428. goods = {100001,130000},
  4429. condition = 8552,
  4430. },
  4431. [8554] = {
  4432. ID = 8554,
  4433. lv = 139,
  4434. talentType = 1,
  4435. entryID = 1004,
  4436. goods = {100001,130000},
  4437. condition = 8553,
  4438. },
  4439. [8555] = {
  4440. ID = 8555,
  4441. lv = 139,
  4442. talentType = 1,
  4443. entryID = 1005,
  4444. goods = {100001,130000},
  4445. condition = 8554,
  4446. },
  4447. [8556] = {
  4448. ID = 8556,
  4449. lv = 139,
  4450. talentType = 1,
  4451. entryID = 1001,
  4452. goods = {100001,130000},
  4453. condition = 8555,
  4454. },
  4455. [8557] = {
  4456. ID = 8557,
  4457. lv = 140,
  4458. talentType = 1,
  4459. entryID = 1002,
  4460. goods = {100001,130000},
  4461. condition = 8556,
  4462. },
  4463. [8558] = {
  4464. ID = 8558,
  4465. lv = 140,
  4466. talentType = 1,
  4467. entryID = 1003,
  4468. goods = {100001,130000},
  4469. condition = 8557,
  4470. },
  4471. [8559] = {
  4472. ID = 8559,
  4473. lv = 140,
  4474. talentType = 1,
  4475. entryID = 1004,
  4476. goods = {100001,130000},
  4477. condition = 8558,
  4478. },
  4479. [8560] = {
  4480. ID = 8560,
  4481. lv = 140,
  4482. talentType = 1,
  4483. entryID = 1005,
  4484. goods = {100001,130000},
  4485. condition = 8559,
  4486. },
  4487. [8561] = {
  4488. ID = 8561,
  4489. lv = 141,
  4490. talentType = 1,
  4491. entryID = 1001,
  4492. goods = {100001,130000},
  4493. condition = 8560,
  4494. },
  4495. [8562] = {
  4496. ID = 8562,
  4497. lv = 141,
  4498. talentType = 1,
  4499. entryID = 1002,
  4500. goods = {100001,130000},
  4501. condition = 8561,
  4502. },
  4503. [8563] = {
  4504. ID = 8563,
  4505. lv = 141,
  4506. talentType = 1,
  4507. entryID = 1003,
  4508. goods = {100001,130000},
  4509. condition = 8562,
  4510. },
  4511. [8564] = {
  4512. ID = 8564,
  4513. lv = 141,
  4514. talentType = 1,
  4515. entryID = 1004,
  4516. goods = {100001,130000},
  4517. condition = 8563,
  4518. },
  4519. [8565] = {
  4520. ID = 8565,
  4521. lv = 142,
  4522. talentType = 1,
  4523. entryID = 1005,
  4524. goods = {100001,130000},
  4525. condition = 8564,
  4526. },
  4527. [8566] = {
  4528. ID = 8566,
  4529. lv = 142,
  4530. talentType = 1,
  4531. entryID = 1001,
  4532. goods = {100001,130000},
  4533. condition = 8565,
  4534. },
  4535. [8567] = {
  4536. ID = 8567,
  4537. lv = 142,
  4538. talentType = 1,
  4539. entryID = 1002,
  4540. goods = {100001,130000},
  4541. condition = 8566,
  4542. },
  4543. [8568] = {
  4544. ID = 8568,
  4545. lv = 142,
  4546. talentType = 1,
  4547. entryID = 1003,
  4548. goods = {100001,130000},
  4549. condition = 8567,
  4550. },
  4551. [8569] = {
  4552. ID = 8569,
  4553. lv = 143,
  4554. talentType = 1,
  4555. entryID = 1004,
  4556. goods = {100001,130000},
  4557. condition = 8568,
  4558. },
  4559. [8570] = {
  4560. ID = 8570,
  4561. lv = 143,
  4562. talentType = 1,
  4563. entryID = 1005,
  4564. goods = {100001,130000},
  4565. condition = 8569,
  4566. },
  4567. [8571] = {
  4568. ID = 8571,
  4569. lv = 143,
  4570. talentType = 1,
  4571. entryID = 1001,
  4572. goods = {100001,130000},
  4573. condition = 8570,
  4574. },
  4575. [8572] = {
  4576. ID = 8572,
  4577. lv = 143,
  4578. talentType = 1,
  4579. entryID = 1002,
  4580. goods = {100001,130000},
  4581. condition = 8571,
  4582. },
  4583. [8573] = {
  4584. ID = 8573,
  4585. lv = 144,
  4586. talentType = 1,
  4587. entryID = 1003,
  4588. goods = {100001,130000},
  4589. condition = 8572,
  4590. },
  4591. [8574] = {
  4592. ID = 8574,
  4593. lv = 144,
  4594. talentType = 1,
  4595. entryID = 1004,
  4596. goods = {100001,130000},
  4597. condition = 8573,
  4598. },
  4599. [8575] = {
  4600. ID = 8575,
  4601. lv = 144,
  4602. talentType = 1,
  4603. entryID = 1005,
  4604. goods = {100001,130000},
  4605. condition = 8574,
  4606. },
  4607. [8576] = {
  4608. ID = 8576,
  4609. lv = 144,
  4610. talentType = 1,
  4611. entryID = 1001,
  4612. goods = {100001,140000},
  4613. condition = 8575,
  4614. },
  4615. [8577] = {
  4616. ID = 8577,
  4617. lv = 145,
  4618. talentType = 1,
  4619. entryID = 1002,
  4620. goods = {100001,140000},
  4621. condition = 8576,
  4622. },
  4623. [8578] = {
  4624. ID = 8578,
  4625. lv = 145,
  4626. talentType = 1,
  4627. entryID = 1003,
  4628. goods = {100001,140000},
  4629. condition = 8577,
  4630. },
  4631. [8579] = {
  4632. ID = 8579,
  4633. lv = 145,
  4634. talentType = 1,
  4635. entryID = 1004,
  4636. goods = {100001,140000},
  4637. condition = 8578,
  4638. },
  4639. [8580] = {
  4640. ID = 8580,
  4641. lv = 145,
  4642. talentType = 1,
  4643. entryID = 1005,
  4644. goods = {100001,140000},
  4645. condition = 8579,
  4646. },
  4647. [8581] = {
  4648. ID = 8581,
  4649. lv = 146,
  4650. talentType = 1,
  4651. entryID = 1001,
  4652. goods = {100001,140000},
  4653. condition = 8580,
  4654. },
  4655. [8582] = {
  4656. ID = 8582,
  4657. lv = 146,
  4658. talentType = 1,
  4659. entryID = 1002,
  4660. goods = {100001,140000},
  4661. condition = 8581,
  4662. },
  4663. [8583] = {
  4664. ID = 8583,
  4665. lv = 146,
  4666. talentType = 1,
  4667. entryID = 1003,
  4668. goods = {100001,140000},
  4669. condition = 8582,
  4670. },
  4671. [8584] = {
  4672. ID = 8584,
  4673. lv = 146,
  4674. talentType = 1,
  4675. entryID = 1004,
  4676. goods = {100001,140000},
  4677. condition = 8583,
  4678. },
  4679. [8585] = {
  4680. ID = 8585,
  4681. lv = 147,
  4682. talentType = 1,
  4683. entryID = 1005,
  4684. goods = {100001,140000},
  4685. condition = 8584,
  4686. },
  4687. [8586] = {
  4688. ID = 8586,
  4689. lv = 147,
  4690. talentType = 1,
  4691. entryID = 1001,
  4692. goods = {100001,140000},
  4693. condition = 8585,
  4694. },
  4695. [8587] = {
  4696. ID = 8587,
  4697. lv = 147,
  4698. talentType = 1,
  4699. entryID = 1002,
  4700. goods = {100001,140000},
  4701. condition = 8586,
  4702. },
  4703. [8588] = {
  4704. ID = 8588,
  4705. lv = 147,
  4706. talentType = 1,
  4707. entryID = 1003,
  4708. goods = {100001,140000},
  4709. condition = 8587,
  4710. },
  4711. [8589] = {
  4712. ID = 8589,
  4713. lv = 148,
  4714. talentType = 1,
  4715. entryID = 1004,
  4716. goods = {100001,140000},
  4717. condition = 8588,
  4718. },
  4719. [8590] = {
  4720. ID = 8590,
  4721. lv = 148,
  4722. talentType = 1,
  4723. entryID = 1005,
  4724. goods = {100001,140000},
  4725. condition = 8589,
  4726. },
  4727. [8591] = {
  4728. ID = 8591,
  4729. lv = 148,
  4730. talentType = 1,
  4731. entryID = 1001,
  4732. goods = {100001,140000},
  4733. condition = 8590,
  4734. },
  4735. [8592] = {
  4736. ID = 8592,
  4737. lv = 148,
  4738. talentType = 1,
  4739. entryID = 1002,
  4740. goods = {100001,140000},
  4741. condition = 8591,
  4742. },
  4743. [8593] = {
  4744. ID = 8593,
  4745. lv = 149,
  4746. talentType = 1,
  4747. entryID = 1003,
  4748. goods = {100001,140000},
  4749. condition = 8592,
  4750. },
  4751. [8594] = {
  4752. ID = 8594,
  4753. lv = 149,
  4754. talentType = 1,
  4755. entryID = 1004,
  4756. goods = {100001,140000},
  4757. condition = 8593,
  4758. },
  4759. [8595] = {
  4760. ID = 8595,
  4761. lv = 149,
  4762. talentType = 1,
  4763. entryID = 1005,
  4764. goods = {100001,140000},
  4765. condition = 8594,
  4766. },
  4767. [8596] = {
  4768. ID = 8596,
  4769. lv = 149,
  4770. talentType = 1,
  4771. entryID = 1001,
  4772. goods = {100001,140000},
  4773. condition = 8595,
  4774. },
  4775. [8597] = {
  4776. ID = 8597,
  4777. lv = 150,
  4778. talentType = 1,
  4779. entryID = 1002,
  4780. goods = {100001,140000},
  4781. condition = 8596,
  4782. },
  4783. [8598] = {
  4784. ID = 8598,
  4785. lv = 150,
  4786. talentType = 1,
  4787. entryID = 1003,
  4788. goods = {100001,140000},
  4789. condition = 8597,
  4790. },
  4791. [8599] = {
  4792. ID = 8599,
  4793. lv = 150,
  4794. talentType = 1,
  4795. entryID = 1004,
  4796. goods = {100001,140000},
  4797. condition = 8598,
  4798. },
  4799. [8600] = {
  4800. ID = 8600,
  4801. lv = 150,
  4802. talentType = 1,
  4803. entryID = 1005,
  4804. goods = {100001,140000},
  4805. condition = 8599,
  4806. },
  4807. [8601] = {
  4808. ID = 8601,
  4809. lv = 151,
  4810. talentType = 1,
  4811. entryID = 1001,
  4812. goods = {100001,150000},
  4813. condition = 8600,
  4814. },
  4815. [8602] = {
  4816. ID = 8602,
  4817. lv = 151,
  4818. talentType = 1,
  4819. entryID = 1002,
  4820. goods = {100001,150000},
  4821. condition = 8601,
  4822. },
  4823. [8603] = {
  4824. ID = 8603,
  4825. lv = 151,
  4826. talentType = 1,
  4827. entryID = 1003,
  4828. goods = {100001,150000},
  4829. condition = 8602,
  4830. },
  4831. [8604] = {
  4832. ID = 8604,
  4833. lv = 151,
  4834. talentType = 1,
  4835. entryID = 1004,
  4836. goods = {100001,150000},
  4837. condition = 8603,
  4838. },
  4839. [8605] = {
  4840. ID = 8605,
  4841. lv = 152,
  4842. talentType = 1,
  4843. entryID = 1005,
  4844. goods = {100001,150000},
  4845. condition = 8604,
  4846. },
  4847. [8606] = {
  4848. ID = 8606,
  4849. lv = 152,
  4850. talentType = 1,
  4851. entryID = 1001,
  4852. goods = {100001,150000},
  4853. condition = 8605,
  4854. },
  4855. [8607] = {
  4856. ID = 8607,
  4857. lv = 152,
  4858. talentType = 1,
  4859. entryID = 1002,
  4860. goods = {100001,150000},
  4861. condition = 8606,
  4862. },
  4863. [8608] = {
  4864. ID = 8608,
  4865. lv = 152,
  4866. talentType = 1,
  4867. entryID = 1003,
  4868. goods = {100001,150000},
  4869. condition = 8607,
  4870. },
  4871. [8609] = {
  4872. ID = 8609,
  4873. lv = 153,
  4874. talentType = 1,
  4875. entryID = 1004,
  4876. goods = {100001,150000},
  4877. condition = 8608,
  4878. },
  4879. [8610] = {
  4880. ID = 8610,
  4881. lv = 153,
  4882. talentType = 1,
  4883. entryID = 1005,
  4884. goods = {100001,150000},
  4885. condition = 8609,
  4886. },
  4887. [8611] = {
  4888. ID = 8611,
  4889. lv = 153,
  4890. talentType = 1,
  4891. entryID = 1001,
  4892. goods = {100001,150000},
  4893. condition = 8610,
  4894. },
  4895. [8612] = {
  4896. ID = 8612,
  4897. lv = 153,
  4898. talentType = 1,
  4899. entryID = 1002,
  4900. goods = {100001,150000},
  4901. condition = 8611,
  4902. },
  4903. [8613] = {
  4904. ID = 8613,
  4905. lv = 154,
  4906. talentType = 1,
  4907. entryID = 1003,
  4908. goods = {100001,150000},
  4909. condition = 8612,
  4910. },
  4911. [8614] = {
  4912. ID = 8614,
  4913. lv = 154,
  4914. talentType = 1,
  4915. entryID = 1004,
  4916. goods = {100001,150000},
  4917. condition = 8613,
  4918. },
  4919. [8615] = {
  4920. ID = 8615,
  4921. lv = 154,
  4922. talentType = 1,
  4923. entryID = 1005,
  4924. goods = {100001,150000},
  4925. condition = 8614,
  4926. },
  4927. [8616] = {
  4928. ID = 8616,
  4929. lv = 154,
  4930. talentType = 1,
  4931. entryID = 1001,
  4932. goods = {100001,150000},
  4933. condition = 8615,
  4934. },
  4935. [8617] = {
  4936. ID = 8617,
  4937. lv = 155,
  4938. talentType = 1,
  4939. entryID = 1002,
  4940. goods = {100001,150000},
  4941. condition = 8616,
  4942. },
  4943. [8618] = {
  4944. ID = 8618,
  4945. lv = 155,
  4946. talentType = 1,
  4947. entryID = 1003,
  4948. goods = {100001,150000},
  4949. condition = 8617,
  4950. },
  4951. [8619] = {
  4952. ID = 8619,
  4953. lv = 155,
  4954. talentType = 1,
  4955. entryID = 1004,
  4956. goods = {100001,150000},
  4957. condition = 8618,
  4958. },
  4959. [8620] = {
  4960. ID = 8620,
  4961. lv = 155,
  4962. talentType = 1,
  4963. entryID = 1005,
  4964. goods = {100001,150000},
  4965. condition = 8619,
  4966. },
  4967. [8621] = {
  4968. ID = 8621,
  4969. lv = 156,
  4970. talentType = 1,
  4971. entryID = 1001,
  4972. goods = {100001,150000},
  4973. condition = 8620,
  4974. },
  4975. [8622] = {
  4976. ID = 8622,
  4977. lv = 156,
  4978. talentType = 1,
  4979. entryID = 1002,
  4980. goods = {100001,150000},
  4981. condition = 8621,
  4982. },
  4983. [8623] = {
  4984. ID = 8623,
  4985. lv = 156,
  4986. talentType = 1,
  4987. entryID = 1003,
  4988. goods = {100001,150000},
  4989. condition = 8622,
  4990. },
  4991. [8624] = {
  4992. ID = 8624,
  4993. lv = 156,
  4994. talentType = 1,
  4995. entryID = 1004,
  4996. goods = {100001,150000},
  4997. condition = 8623,
  4998. },
  4999. [8625] = {
  5000. ID = 8625,
  5001. lv = 157,
  5002. talentType = 1,
  5003. entryID = 1005,
  5004. goods = {100001,150000},
  5005. condition = 8624,
  5006. },
  5007. [8626] = {
  5008. ID = 8626,
  5009. lv = 157,
  5010. talentType = 1,
  5011. entryID = 1001,
  5012. goods = {100001,160000},
  5013. condition = 8625,
  5014. },
  5015. [8627] = {
  5016. ID = 8627,
  5017. lv = 157,
  5018. talentType = 1,
  5019. entryID = 1002,
  5020. goods = {100001,160000},
  5021. condition = 8626,
  5022. },
  5023. [8628] = {
  5024. ID = 8628,
  5025. lv = 157,
  5026. talentType = 1,
  5027. entryID = 1003,
  5028. goods = {100001,160000},
  5029. condition = 8627,
  5030. },
  5031. [8629] = {
  5032. ID = 8629,
  5033. lv = 158,
  5034. talentType = 1,
  5035. entryID = 1004,
  5036. goods = {100001,160000},
  5037. condition = 8628,
  5038. },
  5039. [8630] = {
  5040. ID = 8630,
  5041. lv = 158,
  5042. talentType = 1,
  5043. entryID = 1005,
  5044. goods = {100001,160000},
  5045. condition = 8629,
  5046. },
  5047. [8631] = {
  5048. ID = 8631,
  5049. lv = 158,
  5050. talentType = 1,
  5051. entryID = 1001,
  5052. goods = {100001,160000},
  5053. condition = 8630,
  5054. },
  5055. [8632] = {
  5056. ID = 8632,
  5057. lv = 158,
  5058. talentType = 1,
  5059. entryID = 1002,
  5060. goods = {100001,160000},
  5061. condition = 8631,
  5062. },
  5063. [8633] = {
  5064. ID = 8633,
  5065. lv = 159,
  5066. talentType = 1,
  5067. entryID = 1003,
  5068. goods = {100001,160000},
  5069. condition = 8632,
  5070. },
  5071. [8634] = {
  5072. ID = 8634,
  5073. lv = 159,
  5074. talentType = 1,
  5075. entryID = 1004,
  5076. goods = {100001,160000},
  5077. condition = 8633,
  5078. },
  5079. [8635] = {
  5080. ID = 8635,
  5081. lv = 159,
  5082. talentType = 1,
  5083. entryID = 1005,
  5084. goods = {100001,160000},
  5085. condition = 8634,
  5086. },
  5087. [8636] = {
  5088. ID = 8636,
  5089. lv = 159,
  5090. talentType = 1,
  5091. entryID = 1001,
  5092. goods = {100001,160000},
  5093. condition = 8635,
  5094. },
  5095. [8637] = {
  5096. ID = 8637,
  5097. lv = 160,
  5098. talentType = 1,
  5099. entryID = 1002,
  5100. goods = {100001,160000},
  5101. condition = 8636,
  5102. },
  5103. [8638] = {
  5104. ID = 8638,
  5105. lv = 160,
  5106. talentType = 1,
  5107. entryID = 1003,
  5108. goods = {100001,160000},
  5109. condition = 8637,
  5110. },
  5111. [8639] = {
  5112. ID = 8639,
  5113. lv = 160,
  5114. talentType = 1,
  5115. entryID = 1004,
  5116. goods = {100001,160000},
  5117. condition = 8638,
  5118. },
  5119. [8640] = {
  5120. ID = 8640,
  5121. lv = 160,
  5122. talentType = 1,
  5123. entryID = 1005,
  5124. goods = {100001,160000},
  5125. condition = 8639,
  5126. },
  5127. [8641] = {
  5128. ID = 8641,
  5129. lv = 161,
  5130. talentType = 1,
  5131. entryID = 1001,
  5132. goods = {100001,160000},
  5133. condition = 8640,
  5134. },
  5135. [8642] = {
  5136. ID = 8642,
  5137. lv = 161,
  5138. talentType = 1,
  5139. entryID = 1002,
  5140. goods = {100001,160000},
  5141. condition = 8641,
  5142. },
  5143. [8643] = {
  5144. ID = 8643,
  5145. lv = 161,
  5146. talentType = 1,
  5147. entryID = 1003,
  5148. goods = {100001,160000},
  5149. condition = 8642,
  5150. },
  5151. [8644] = {
  5152. ID = 8644,
  5153. lv = 161,
  5154. talentType = 1,
  5155. entryID = 1004,
  5156. goods = {100001,160000},
  5157. condition = 8643,
  5158. },
  5159. [8645] = {
  5160. ID = 8645,
  5161. lv = 162,
  5162. talentType = 1,
  5163. entryID = 1005,
  5164. goods = {100001,160000},
  5165. condition = 8644,
  5166. },
  5167. [8646] = {
  5168. ID = 8646,
  5169. lv = 162,
  5170. talentType = 1,
  5171. entryID = 1001,
  5172. goods = {100001,160000},
  5173. condition = 8645,
  5174. },
  5175. [8647] = {
  5176. ID = 8647,
  5177. lv = 162,
  5178. talentType = 1,
  5179. entryID = 1002,
  5180. goods = {100001,160000},
  5181. condition = 8646,
  5182. },
  5183. [8648] = {
  5184. ID = 8648,
  5185. lv = 162,
  5186. talentType = 1,
  5187. entryID = 1003,
  5188. goods = {100001,160000},
  5189. condition = 8647,
  5190. },
  5191. [8649] = {
  5192. ID = 8649,
  5193. lv = 163,
  5194. talentType = 1,
  5195. entryID = 1004,
  5196. goods = {100001,160000},
  5197. condition = 8648,
  5198. },
  5199. [8650] = {
  5200. ID = 8650,
  5201. lv = 163,
  5202. talentType = 1,
  5203. entryID = 1005,
  5204. goods = {100001,160000},
  5205. condition = 8649,
  5206. },
  5207. [8651] = {
  5208. ID = 8651,
  5209. lv = 163,
  5210. talentType = 1,
  5211. entryID = 1001,
  5212. goods = {100001,170000},
  5213. condition = 8650,
  5214. },
  5215. [8652] = {
  5216. ID = 8652,
  5217. lv = 163,
  5218. talentType = 1,
  5219. entryID = 1002,
  5220. goods = {100001,170000},
  5221. condition = 8651,
  5222. },
  5223. [8653] = {
  5224. ID = 8653,
  5225. lv = 164,
  5226. talentType = 1,
  5227. entryID = 1003,
  5228. goods = {100001,170000},
  5229. condition = 8652,
  5230. },
  5231. [8654] = {
  5232. ID = 8654,
  5233. lv = 164,
  5234. talentType = 1,
  5235. entryID = 1004,
  5236. goods = {100001,170000},
  5237. condition = 8653,
  5238. },
  5239. [8655] = {
  5240. ID = 8655,
  5241. lv = 164,
  5242. talentType = 1,
  5243. entryID = 1005,
  5244. goods = {100001,170000},
  5245. condition = 8654,
  5246. },
  5247. [8656] = {
  5248. ID = 8656,
  5249. lv = 164,
  5250. talentType = 1,
  5251. entryID = 1001,
  5252. goods = {100001,170000},
  5253. condition = 8655,
  5254. },
  5255. [8657] = {
  5256. ID = 8657,
  5257. lv = 165,
  5258. talentType = 1,
  5259. entryID = 1002,
  5260. goods = {100001,170000},
  5261. condition = 8656,
  5262. },
  5263. [8658] = {
  5264. ID = 8658,
  5265. lv = 165,
  5266. talentType = 1,
  5267. entryID = 1003,
  5268. goods = {100001,170000},
  5269. condition = 8657,
  5270. },
  5271. [8659] = {
  5272. ID = 8659,
  5273. lv = 165,
  5274. talentType = 1,
  5275. entryID = 1004,
  5276. goods = {100001,170000},
  5277. condition = 8658,
  5278. },
  5279. [8660] = {
  5280. ID = 8660,
  5281. lv = 165,
  5282. talentType = 1,
  5283. entryID = 1005,
  5284. goods = {100001,170000},
  5285. condition = 8659,
  5286. },
  5287. [8661] = {
  5288. ID = 8661,
  5289. lv = 166,
  5290. talentType = 1,
  5291. entryID = 1001,
  5292. goods = {100001,170000},
  5293. condition = 8660,
  5294. },
  5295. [8662] = {
  5296. ID = 8662,
  5297. lv = 166,
  5298. talentType = 1,
  5299. entryID = 1002,
  5300. goods = {100001,170000},
  5301. condition = 8661,
  5302. },
  5303. [8663] = {
  5304. ID = 8663,
  5305. lv = 166,
  5306. talentType = 1,
  5307. entryID = 1003,
  5308. goods = {100001,170000},
  5309. condition = 8662,
  5310. },
  5311. [8664] = {
  5312. ID = 8664,
  5313. lv = 166,
  5314. talentType = 1,
  5315. entryID = 1004,
  5316. goods = {100001,170000},
  5317. condition = 8663,
  5318. },
  5319. [8665] = {
  5320. ID = 8665,
  5321. lv = 167,
  5322. talentType = 1,
  5323. entryID = 1005,
  5324. goods = {100001,170000},
  5325. condition = 8664,
  5326. },
  5327. [8666] = {
  5328. ID = 8666,
  5329. lv = 167,
  5330. talentType = 1,
  5331. entryID = 1001,
  5332. goods = {100001,170000},
  5333. condition = 8665,
  5334. },
  5335. [8667] = {
  5336. ID = 8667,
  5337. lv = 167,
  5338. talentType = 1,
  5339. entryID = 1002,
  5340. goods = {100001,170000},
  5341. condition = 8666,
  5342. },
  5343. [8668] = {
  5344. ID = 8668,
  5345. lv = 167,
  5346. talentType = 1,
  5347. entryID = 1003,
  5348. goods = {100001,170000},
  5349. condition = 8667,
  5350. },
  5351. [8669] = {
  5352. ID = 8669,
  5353. lv = 168,
  5354. talentType = 1,
  5355. entryID = 1004,
  5356. goods = {100001,170000},
  5357. condition = 8668,
  5358. },
  5359. [8670] = {
  5360. ID = 8670,
  5361. lv = 168,
  5362. talentType = 1,
  5363. entryID = 1005,
  5364. goods = {100001,170000},
  5365. condition = 8669,
  5366. },
  5367. [8671] = {
  5368. ID = 8671,
  5369. lv = 168,
  5370. talentType = 1,
  5371. entryID = 1001,
  5372. goods = {100001,170000},
  5373. condition = 8670,
  5374. },
  5375. [8672] = {
  5376. ID = 8672,
  5377. lv = 168,
  5378. talentType = 1,
  5379. entryID = 1002,
  5380. goods = {100001,170000},
  5381. condition = 8671,
  5382. },
  5383. [8673] = {
  5384. ID = 8673,
  5385. lv = 169,
  5386. talentType = 1,
  5387. entryID = 1003,
  5388. goods = {100001,170000},
  5389. condition = 8672,
  5390. },
  5391. [8674] = {
  5392. ID = 8674,
  5393. lv = 169,
  5394. talentType = 1,
  5395. entryID = 1004,
  5396. goods = {100001,170000},
  5397. condition = 8673,
  5398. },
  5399. [8675] = {
  5400. ID = 8675,
  5401. lv = 169,
  5402. talentType = 1,
  5403. entryID = 1005,
  5404. goods = {100001,170000},
  5405. condition = 8674,
  5406. },
  5407. [8676] = {
  5408. ID = 8676,
  5409. lv = 169,
  5410. talentType = 1,
  5411. entryID = 1001,
  5412. goods = {100001,180000},
  5413. condition = 8675,
  5414. },
  5415. [8677] = {
  5416. ID = 8677,
  5417. lv = 170,
  5418. talentType = 1,
  5419. entryID = 1002,
  5420. goods = {100001,180000},
  5421. condition = 8676,
  5422. },
  5423. [8678] = {
  5424. ID = 8678,
  5425. lv = 170,
  5426. talentType = 1,
  5427. entryID = 1003,
  5428. goods = {100001,180000},
  5429. condition = 8677,
  5430. },
  5431. [8679] = {
  5432. ID = 8679,
  5433. lv = 170,
  5434. talentType = 1,
  5435. entryID = 1004,
  5436. goods = {100001,180000},
  5437. condition = 8678,
  5438. },
  5439. [8680] = {
  5440. ID = 8680,
  5441. lv = 170,
  5442. talentType = 1,
  5443. entryID = 1005,
  5444. goods = {100001,180000},
  5445. condition = 8679,
  5446. },
  5447. [7001] = {
  5448. ID = 7001,
  5449. lv = 3,
  5450. talentType = 2,
  5451. entryID = 1100,
  5452. goods = {140006,1},
  5453. condition = 0,
  5454. },
  5455. [7002] = {
  5456. ID = 7002,
  5457. lv = 6,
  5458. talentType = 2,
  5459. entryID = 1101,
  5460. goods = {140006,1},
  5461. condition = 7001,
  5462. },
  5463. [7003] = {
  5464. ID = 7003,
  5465. lv = 9,
  5466. talentType = 2,
  5467. entryID = 1102,
  5468. goods = {140006,1},
  5469. condition = 7002,
  5470. },
  5471. [7004] = {
  5472. ID = 7004,
  5473. lv = 12,
  5474. talentType = 2,
  5475. entryID = 1103,
  5476. goods = {140006,1},
  5477. condition = 7003,
  5478. },
  5479. [7005] = {
  5480. ID = 7005,
  5481. lv = 15,
  5482. talentType = 2,
  5483. entryID = 1104,
  5484. goods = {140006,1},
  5485. condition = 7004,
  5486. },
  5487. [7006] = {
  5488. ID = 7006,
  5489. lv = 18,
  5490. talentType = 2,
  5491. entryID = 1100,
  5492. goods = {140006,1},
  5493. condition = 7005,
  5494. },
  5495. [7007] = {
  5496. ID = 7007,
  5497. lv = 21,
  5498. talentType = 2,
  5499. entryID = 1105,
  5500. goods = {140006,1},
  5501. condition = 7006,
  5502. },
  5503. [7008] = {
  5504. ID = 7008,
  5505. lv = 24,
  5506. talentType = 2,
  5507. entryID = 1106,
  5508. goods = {140006,2},
  5509. condition = 7007,
  5510. },
  5511. [7009] = {
  5512. ID = 7009,
  5513. lv = 27,
  5514. talentType = 2,
  5515. entryID = 1107,
  5516. goods = {140006,2},
  5517. condition = 7008,
  5518. },
  5519. [7010] = {
  5520. ID = 7010,
  5521. lv = 30,
  5522. talentType = 2,
  5523. entryID = 1108,
  5524. goods = {140006,2},
  5525. condition = 7009,
  5526. },
  5527. [7011] = {
  5528. ID = 7011,
  5529. lv = 33,
  5530. talentType = 2,
  5531. entryID = 1109,
  5532. goods = {140006,2},
  5533. condition = 7010,
  5534. },
  5535. [7012] = {
  5536. ID = 7012,
  5537. lv = 36,
  5538. talentType = 2,
  5539. entryID = 1110,
  5540. goods = {140006,2},
  5541. condition = 7011,
  5542. },
  5543. [7013] = {
  5544. ID = 7013,
  5545. lv = 39,
  5546. talentType = 2,
  5547. entryID = 1111,
  5548. goods = {140006,2},
  5549. condition = 7012,
  5550. },
  5551. [7014] = {
  5552. ID = 7014,
  5553. lv = 42,
  5554. talentType = 2,
  5555. entryID = 1112,
  5556. goods = {140006,2},
  5557. condition = 7013,
  5558. },
  5559. [7015] = {
  5560. ID = 7015,
  5561. lv = 45,
  5562. talentType = 2,
  5563. entryID = 1100,
  5564. goods = {140006,2},
  5565. condition = 7014,
  5566. },
  5567. [7016] = {
  5568. ID = 7016,
  5569. lv = 48,
  5570. talentType = 2,
  5571. entryID = 1101,
  5572. goods = {140006,2},
  5573. condition = 7015,
  5574. },
  5575. [7017] = {
  5576. ID = 7017,
  5577. lv = 51,
  5578. talentType = 2,
  5579. entryID = 1102,
  5580. goods = {140006,2},
  5581. condition = 7016,
  5582. },
  5583. [7018] = {
  5584. ID = 7018,
  5585. lv = 54,
  5586. talentType = 2,
  5587. entryID = 1103,
  5588. goods = {140006,3},
  5589. condition = 7017,
  5590. },
  5591. [7019] = {
  5592. ID = 7019,
  5593. lv = 57,
  5594. talentType = 2,
  5595. entryID = 1104,
  5596. goods = {140006,3},
  5597. condition = 7018,
  5598. },
  5599. [7020] = {
  5600. ID = 7020,
  5601. lv = 60,
  5602. talentType = 2,
  5603. entryID = 1105,
  5604. goods = {140006,3},
  5605. condition = 7019,
  5606. },
  5607. [7021] = {
  5608. ID = 7021,
  5609. lv = 63,
  5610. talentType = 2,
  5611. entryID = 1106,
  5612. goods = {140006,3},
  5613. condition = 7020,
  5614. },
  5615. [7022] = {
  5616. ID = 7022,
  5617. lv = 66,
  5618. talentType = 2,
  5619. entryID = 1107,
  5620. goods = {140006,3},
  5621. condition = 7021,
  5622. },
  5623. [7023] = {
  5624. ID = 7023,
  5625. lv = 69,
  5626. talentType = 2,
  5627. entryID = 1108,
  5628. goods = {140006,3},
  5629. condition = 7022,
  5630. },
  5631. [7024] = {
  5632. ID = 7024,
  5633. lv = 72,
  5634. talentType = 2,
  5635. entryID = 1109,
  5636. goods = {140006,3},
  5637. condition = 7023,
  5638. },
  5639. [7025] = {
  5640. ID = 7025,
  5641. lv = 75,
  5642. talentType = 2,
  5643. entryID = 1110,
  5644. goods = {140006,3},
  5645. condition = 7024,
  5646. },
  5647. [7026] = {
  5648. ID = 7026,
  5649. lv = 78,
  5650. talentType = 2,
  5651. entryID = 1111,
  5652. goods = {140006,3},
  5653. condition = 7025,
  5654. },
  5655. [7027] = {
  5656. ID = 7027,
  5657. lv = 81,
  5658. talentType = 2,
  5659. entryID = 1112,
  5660. goods = {140006,3},
  5661. condition = 7026,
  5662. },
  5663. [7028] = {
  5664. ID = 7028,
  5665. lv = 84,
  5666. talentType = 2,
  5667. entryID = 1100,
  5668. goods = {140006,4},
  5669. condition = 7027,
  5670. },
  5671. [7029] = {
  5672. ID = 7029,
  5673. lv = 87,
  5674. talentType = 2,
  5675. entryID = 1101,
  5676. goods = {140006,4},
  5677. condition = 7028,
  5678. },
  5679. [7030] = {
  5680. ID = 7030,
  5681. lv = 90,
  5682. talentType = 2,
  5683. entryID = 1102,
  5684. goods = {140006,4},
  5685. condition = 7029,
  5686. },
  5687. [7031] = {
  5688. ID = 7031,
  5689. lv = 93,
  5690. talentType = 2,
  5691. entryID = 1103,
  5692. goods = {140006,4},
  5693. condition = 7030,
  5694. },
  5695. [7032] = {
  5696. ID = 7032,
  5697. lv = 96,
  5698. talentType = 2,
  5699. entryID = 1104,
  5700. goods = {140006,4},
  5701. condition = 7031,
  5702. },
  5703. [7033] = {
  5704. ID = 7033,
  5705. lv = 99,
  5706. talentType = 2,
  5707. entryID = 1105,
  5708. goods = {140006,4},
  5709. condition = 7032,
  5710. },
  5711. [7034] = {
  5712. ID = 7034,
  5713. lv = 102,
  5714. talentType = 2,
  5715. entryID = 1106,
  5716. goods = {140006,4},
  5717. condition = 7033,
  5718. },
  5719. [7035] = {
  5720. ID = 7035,
  5721. lv = 105,
  5722. talentType = 2,
  5723. entryID = 1107,
  5724. goods = {140006,4},
  5725. condition = 7034,
  5726. },
  5727. [7036] = {
  5728. ID = 7036,
  5729. lv = 108,
  5730. talentType = 2,
  5731. entryID = 1108,
  5732. goods = {140006,4},
  5733. condition = 7035,
  5734. },
  5735. [7037] = {
  5736. ID = 7037,
  5737. lv = 111,
  5738. talentType = 2,
  5739. entryID = 1109,
  5740. goods = {140006,4},
  5741. condition = 7036,
  5742. },
  5743. [7038] = {
  5744. ID = 7038,
  5745. lv = 114,
  5746. talentType = 2,
  5747. entryID = 1110,
  5748. goods = {140006,4},
  5749. condition = 7037,
  5750. },
  5751. [7039] = {
  5752. ID = 7039,
  5753. lv = 117,
  5754. talentType = 2,
  5755. entryID = 1111,
  5756. goods = {140006,4},
  5757. condition = 7038,
  5758. },
  5759. [7040] = {
  5760. ID = 7040,
  5761. lv = 120,
  5762. talentType = 2,
  5763. entryID = 1112,
  5764. goods = {140006,4},
  5765. condition = 7039,
  5766. },
  5767. [7041] = {
  5768. ID = 7041,
  5769. lv = 123,
  5770. talentType = 2,
  5771. entryID = 1100,
  5772. goods = {140006,5},
  5773. condition = 7040,
  5774. },
  5775. [7042] = {
  5776. ID = 7042,
  5777. lv = 126,
  5778. talentType = 2,
  5779. entryID = 1101,
  5780. goods = {140006,5},
  5781. condition = 7041,
  5782. },
  5783. [7043] = {
  5784. ID = 7043,
  5785. lv = 129,
  5786. talentType = 2,
  5787. entryID = 1102,
  5788. goods = {140006,5},
  5789. condition = 7042,
  5790. },
  5791. [7044] = {
  5792. ID = 7044,
  5793. lv = 132,
  5794. talentType = 2,
  5795. entryID = 1103,
  5796. goods = {140006,5},
  5797. condition = 7043,
  5798. },
  5799. [7045] = {
  5800. ID = 7045,
  5801. lv = 135,
  5802. talentType = 2,
  5803. entryID = 1104,
  5804. goods = {140006,5},
  5805. condition = 7044,
  5806. },
  5807. [7046] = {
  5808. ID = 7046,
  5809. lv = 138,
  5810. talentType = 2,
  5811. entryID = 1105,
  5812. goods = {140006,5},
  5813. condition = 7045,
  5814. },
  5815. [7047] = {
  5816. ID = 7047,
  5817. lv = 141,
  5818. talentType = 2,
  5819. entryID = 1106,
  5820. goods = {140006,5},
  5821. condition = 7046,
  5822. },
  5823. [7048] = {
  5824. ID = 7048,
  5825. lv = 144,
  5826. talentType = 2,
  5827. entryID = 1107,
  5828. goods = {140006,5},
  5829. condition = 7047,
  5830. },
  5831. [7049] = {
  5832. ID = 7049,
  5833. lv = 147,
  5834. talentType = 2,
  5835. entryID = 1108,
  5836. goods = {140006,5},
  5837. condition = 7048,
  5838. },
  5839. [7050] = {
  5840. ID = 7050,
  5841. lv = 150,
  5842. talentType = 2,
  5843. entryID = 1109,
  5844. goods = {140006,5},
  5845. condition = 7049,
  5846. },
  5847. [7051] = {
  5848. ID = 7051,
  5849. lv = 153,
  5850. talentType = 2,
  5851. entryID = 1110,
  5852. goods = {140006,5},
  5853. condition = 7050,
  5854. },
  5855. [7052] = {
  5856. ID = 7052,
  5857. lv = 156,
  5858. talentType = 2,
  5859. entryID = 1111,
  5860. goods = {140006,5},
  5861. condition = 7051,
  5862. },
  5863. [7053] = {
  5864. ID = 7053,
  5865. lv = 159,
  5866. talentType = 2,
  5867. entryID = 1112,
  5868. goods = {140006,5},
  5869. condition = 7052,
  5870. },
  5871. [7054] = {
  5872. ID = 7054,
  5873. lv = 162,
  5874. talentType = 2,
  5875. entryID = 1100,
  5876. goods = {140006,5},
  5877. condition = 7053,
  5878. },
  5879. [7055] = {
  5880. ID = 7055,
  5881. lv = 165,
  5882. talentType = 2,
  5883. entryID = 1101,
  5884. goods = {140006,5},
  5885. condition = 7054,
  5886. },
  5887. [7056] = {
  5888. ID = 7056,
  5889. lv = 168,
  5890. talentType = 2,
  5891. entryID = 1102,
  5892. goods = {140006,5},
  5893. condition = 7055,
  5894. },
  5895. [7057] = {
  5896. ID = 7057,
  5897. lv = 171,
  5898. talentType = 2,
  5899. entryID = 1103,
  5900. goods = {140006,5},
  5901. condition = 7056,
  5902. },
  5903. }