SkillTreeCfg.lua 74 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380
  1. local SkillTreeCfg = {
  2. [10015]={
  3. ['SkillId']=10015,
  4. ['SkillType']=1,
  5. ['MaxLv']=5,
  6. ['SkillQuality']=0,
  7. ['JobType']=0,
  8. ['JobBranch']=0,
  9. ['JobStage']=0,
  10. ['OpenLevel']=2,
  11. ['OpenNeedCost']={{1,100},},
  12. ['Pos']=2,
  13. ['order']=99,
  14. ['beforeSkill']=0,
  15. ['SkillBranch']=0,
  16. ['PressPoint']=1,
  17. ['StartPressPoint']=1,
  18. },
  19. [11025]={
  20. ['SkillId']=11025,
  21. ['SkillType']=1,
  22. ['MaxLv']=50,
  23. ['SkillQuality']=0,
  24. ['JobType']=1,
  25. ['JobBranch']=0,
  26. ['JobStage']=1,
  27. ['OpenLevel']=16,
  28. ['OpenNeedCost']={{1,3000},},
  29. ['Pos']=16,
  30. ['order']=96,
  31. ['SuperSkill']={{1,11125},{2,11225}},
  32. ['beforeSkill']=0,
  33. ['SkillBranch']=3,
  34. ['PressPoint']=3,
  35. ['StartPressPoint']=3,
  36. },
  37. [11026]={
  38. ['SkillId']=11026,
  39. ['SkillType']=1,
  40. ['MaxLv']=50,
  41. ['SkillQuality']=0,
  42. ['JobType']=1,
  43. ['JobBranch']=0,
  44. ['JobStage']=1,
  45. ['OpenLevel']=21,
  46. ['OpenNeedCost']={{113,1}},
  47. ['Pos']=21,
  48. ['order']=95,
  49. ['SuperSkill']={{1,11126},{2,11226}},
  50. ['beforeSkill']=0,
  51. ['SkillBranch']=3,
  52. ['PressPoint']=3,
  53. ['StartPressPoint']=3,
  54. },
  55. [11027]={
  56. ['SkillId']=11027,
  57. ['SkillType']=1,
  58. ['MaxLv']=50,
  59. ['SkillQuality']=0,
  60. ['JobType']=1,
  61. ['JobBranch']=0,
  62. ['JobStage']=1,
  63. ['OpenLevel']=26,
  64. ['OpenNeedCost']={{113,1}},
  65. ['Pos']=26,
  66. ['order']=94,
  67. ['SuperSkill']={{1,11127},{2,11227}},
  68. ['beforeSkill']=0,
  69. ['SkillBranch']=3,
  70. ['PressPoint']=3,
  71. ['StartPressPoint']=3,
  72. },
  73. [11028]={
  74. ['SkillId']=11028,
  75. ['SkillType']=1,
  76. ['MaxLv']=50,
  77. ['SkillQuality']=0,
  78. ['JobType']=1,
  79. ['JobBranch']=0,
  80. ['JobStage']=1,
  81. ['OpenLevel']=10,
  82. ['OpenNeedCost']={{1,1000},},
  83. ['Pos']=10,
  84. ['order']=98,
  85. ['SuperSkill']={{1,11128},{2,11228}},
  86. ['beforeSkill']=0,
  87. ['SkillBranch']=3,
  88. ['PressPoint']=3,
  89. ['StartPressPoint']=3,
  90. },
  91. [11029]={
  92. ['SkillId']=11029,
  93. ['SkillType']=1,
  94. ['MaxLv']=50,
  95. ['SkillQuality']=0,
  96. ['JobType']=1,
  97. ['JobBranch']=0,
  98. ['JobStage']=1,
  99. ['OpenLevel']=13,
  100. ['OpenNeedCost']={{1,2000},},
  101. ['Pos']=13,
  102. ['order']=97,
  103. ['SuperSkill']={{1,11129},{2,11229}},
  104. ['beforeSkill']=0,
  105. ['SkillBranch']=3,
  106. ['PressPoint']=3,
  107. ['StartPressPoint']=3,
  108. },
  109. [11030]={
  110. ['SkillId']=11030,
  111. ['SkillType']=1,
  112. ['MaxLv']=50,
  113. ['SkillQuality']=0,
  114. ['JobType']=1,
  115. ['JobBranch']=0,
  116. ['JobStage']=1,
  117. ['OpenLevel']=31,
  118. ['OpenNeedCost']={{113,1}},
  119. ['Pos']=31,
  120. ['order']=93,
  121. ['SuperSkill']={{1,11130},{2,11230}},
  122. ['beforeSkill']=0,
  123. ['SkillBranch']=3,
  124. ['PressPoint']=3,
  125. ['StartPressPoint']=3,
  126. },
  127. [11031]={
  128. ['SkillId']=11031,
  129. ['SkillType']=1,
  130. ['MaxLv']=50,
  131. ['SkillQuality']=0,
  132. ['JobType']=1,
  133. ['JobBranch']=1,
  134. ['JobStage']=2,
  135. ['OpenLevel']=40,
  136. ['OpenNeedCost']={{113,1}},
  137. ['Pos']=50,
  138. ['order']=92,
  139. ['SuperSkill']={{1,11131}},
  140. ['beforeSkill']=0,
  141. ['SkillBranch']=3,
  142. ['PressPoint']=9,
  143. ['StartPressPoint']=9,
  144. },
  145. [11032]={
  146. ['SkillId']=11032,
  147. ['SkillType']=1,
  148. ['MaxLv']=50,
  149. ['SkillQuality']=0,
  150. ['JobType']=1,
  151. ['JobBranch']=1,
  152. ['JobStage']=2,
  153. ['OpenLevel']=45,
  154. ['OpenNeedCost']={{113,1}},
  155. ['Pos']=55,
  156. ['order']=91,
  157. ['SuperSkill']={{1,11132}},
  158. ['beforeSkill']=0,
  159. ['SkillBranch']=3,
  160. ['PressPoint']=9,
  161. ['StartPressPoint']=9,
  162. },
  163. [11033]={
  164. ['SkillId']=11033,
  165. ['SkillType']=1,
  166. ['MaxLv']=50,
  167. ['SkillQuality']=0,
  168. ['JobType']=1,
  169. ['JobBranch']=1,
  170. ['JobStage']=2,
  171. ['OpenLevel']=60,
  172. ['OpenNeedCost']={{114,1}},
  173. ['Pos']=70,
  174. ['order']=88,
  175. ['SuperSkill']={{1,11133}},
  176. ['beforeSkill']=0,
  177. ['SkillBranch']=3,
  178. ['PressPoint']=9,
  179. ['StartPressPoint']=9,
  180. },
  181. [11034]={
  182. ['SkillId']=11034,
  183. ['SkillType']=1,
  184. ['MaxLv']=50,
  185. ['SkillQuality']=0,
  186. ['JobType']=1,
  187. ['JobBranch']=1,
  188. ['JobStage']=2,
  189. ['OpenLevel']=50,
  190. ['OpenNeedCost']={{113,1}},
  191. ['Pos']=60,
  192. ['order']=90,
  193. ['SuperSkill']={{1,11134}},
  194. ['beforeSkill']=0,
  195. ['SkillBranch']=3,
  196. ['PressPoint']=9,
  197. ['StartPressPoint']=9,
  198. },
  199. [11035]={
  200. ['SkillId']=11035,
  201. ['SkillType']=1,
  202. ['MaxLv']=50,
  203. ['SkillQuality']=0,
  204. ['JobType']=1,
  205. ['JobBranch']=1,
  206. ['JobStage']=2,
  207. ['OpenLevel']=65,
  208. ['OpenNeedCost']={{114,1}},
  209. ['Pos']=75,
  210. ['order']=87,
  211. ['SuperSkill']={{1,11135}},
  212. ['beforeSkill']=0,
  213. ['SkillBranch']=3,
  214. ['PressPoint']=9,
  215. ['StartPressPoint']=9,
  216. },
  217. [11036]={
  218. ['SkillId']=11036,
  219. ['SkillType']=1,
  220. ['MaxLv']=50,
  221. ['SkillQuality']=0,
  222. ['JobType']=1,
  223. ['JobBranch']=1,
  224. ['JobStage']=2,
  225. ['OpenLevel']=55,
  226. ['OpenNeedCost']={{114,1}},
  227. ['Pos']=65,
  228. ['order']=89,
  229. ['SuperSkill']={{1,11136}},
  230. ['beforeSkill']=0,
  231. ['SkillBranch']=3,
  232. ['PressPoint']=9,
  233. ['StartPressPoint']=9,
  234. },
  235. [11037]={
  236. ['SkillId']=11037,
  237. ['SkillType']=1,
  238. ['MaxLv']=50,
  239. ['SkillQuality']=0,
  240. ['JobType']=1,
  241. ['JobBranch']=2,
  242. ['JobStage']=2,
  243. ['OpenLevel']=50,
  244. ['OpenNeedCost']={{113,1}},
  245. ['Pos']=60,
  246. ['order']=90,
  247. ['SuperSkill']={{2,11237}},
  248. ['beforeSkill']=0,
  249. ['SkillBranch']=3,
  250. ['PressPoint']=9,
  251. ['StartPressPoint']=9,
  252. },
  253. [11038]={
  254. ['SkillId']=11038,
  255. ['SkillType']=1,
  256. ['MaxLv']=50,
  257. ['SkillQuality']=0,
  258. ['JobType']=1,
  259. ['JobBranch']=2,
  260. ['JobStage']=2,
  261. ['OpenLevel']=60,
  262. ['OpenNeedCost']={{114,1}},
  263. ['Pos']=70,
  264. ['order']=88,
  265. ['SuperSkill']={{2,11238}},
  266. ['beforeSkill']=0,
  267. ['SkillBranch']=3,
  268. ['PressPoint']=9,
  269. ['StartPressPoint']=9,
  270. },
  271. [11039]={
  272. ['SkillId']=11039,
  273. ['SkillType']=1,
  274. ['MaxLv']=50,
  275. ['SkillQuality']=0,
  276. ['JobType']=1,
  277. ['JobBranch']=2,
  278. ['JobStage']=2,
  279. ['OpenLevel']=55,
  280. ['OpenNeedCost']={{114,1}},
  281. ['Pos']=65,
  282. ['order']=89,
  283. ['SuperSkill']={{2,11239}},
  284. ['beforeSkill']=0,
  285. ['SkillBranch']=3,
  286. ['PressPoint']=9,
  287. ['StartPressPoint']=9,
  288. },
  289. [11040]={
  290. ['SkillId']=11040,
  291. ['SkillType']=1,
  292. ['MaxLv']=50,
  293. ['SkillQuality']=0,
  294. ['JobType']=1,
  295. ['JobBranch']=2,
  296. ['JobStage']=2,
  297. ['OpenLevel']=65,
  298. ['OpenNeedCost']={{114,1}},
  299. ['Pos']=75,
  300. ['order']=87,
  301. ['SuperSkill']={{2,11240}},
  302. ['beforeSkill']=0,
  303. ['SkillBranch']=3,
  304. ['PressPoint']=9,
  305. ['StartPressPoint']=9,
  306. },
  307. [11041]={
  308. ['SkillId']=11041,
  309. ['SkillType']=1,
  310. ['MaxLv']=50,
  311. ['SkillQuality']=0,
  312. ['JobType']=1,
  313. ['JobBranch']=2,
  314. ['JobStage']=2,
  315. ['OpenLevel']=40,
  316. ['OpenNeedCost']={{113,1}},
  317. ['Pos']=50,
  318. ['order']=92,
  319. ['SuperSkill']={{2,11231}},
  320. ['beforeSkill']=0,
  321. ['SkillBranch']=3,
  322. ['PressPoint']=9,
  323. ['StartPressPoint']=9,
  324. },
  325. [11042]={
  326. ['SkillId']=11042,
  327. ['SkillType']=1,
  328. ['MaxLv']=50,
  329. ['SkillQuality']=0,
  330. ['JobType']=1,
  331. ['JobBranch']=2,
  332. ['JobStage']=2,
  333. ['OpenLevel']=45,
  334. ['OpenNeedCost']={{113,1}},
  335. ['Pos']=55,
  336. ['order']=91,
  337. ['SuperSkill']={{2,11232}},
  338. ['beforeSkill']=0,
  339. ['SkillBranch']=3,
  340. ['PressPoint']=9,
  341. ['StartPressPoint']=9,
  342. },
  343. [11043]={
  344. ['SkillId']=11043,
  345. ['SkillType']=1,
  346. ['MaxLv']=50,
  347. ['SkillQuality']=0,
  348. ['JobType']=1,
  349. ['JobBranch']=1,
  350. ['JobStage']=3,
  351. ['OpenLevel']=70,
  352. ['OpenNeedCost']={{191,1}},
  353. ['Pos']=80,
  354. ['order']=86,
  355. ['SuperSkill']={{1,11143}},
  356. ['beforeSkill']=0,
  357. ['SkillBranch']=3,
  358. ['PressPoint']=21,
  359. ['StartPressPoint']=21,
  360. },
  361. [11044]={
  362. ['SkillId']=11044,
  363. ['SkillType']=1,
  364. ['MaxLv']=50,
  365. ['SkillQuality']=0,
  366. ['JobType']=1,
  367. ['JobBranch']=1,
  368. ['JobStage']=3,
  369. ['OpenLevel']=75,
  370. ['OpenNeedCost']={{191,1}},
  371. ['Pos']=85,
  372. ['order']=85,
  373. ['SuperSkill']={{1,11144}},
  374. ['beforeSkill']=0,
  375. ['SkillBranch']=3,
  376. ['PressPoint']=21,
  377. ['StartPressPoint']=21,
  378. },
  379. [11045]={
  380. ['SkillId']=11045,
  381. ['SkillType']=1,
  382. ['MaxLv']=50,
  383. ['SkillQuality']=0,
  384. ['JobType']=1,
  385. ['JobBranch']=2,
  386. ['JobStage']=3,
  387. ['OpenLevel']=70,
  388. ['OpenNeedCost']={{191,1}},
  389. ['Pos']=80,
  390. ['order']=86,
  391. ['SuperSkill']={{2,11245}},
  392. ['beforeSkill']=0,
  393. ['SkillBranch']=3,
  394. ['PressPoint']=21,
  395. ['StartPressPoint']=21,
  396. },
  397. [11046]={
  398. ['SkillId']=11046,
  399. ['SkillType']=1,
  400. ['MaxLv']=50,
  401. ['SkillQuality']=0,
  402. ['JobType']=1,
  403. ['JobBranch']=2,
  404. ['JobStage']=3,
  405. ['OpenLevel']=75,
  406. ['OpenNeedCost']={{191,1}},
  407. ['Pos']=85,
  408. ['order']=85,
  409. ['SuperSkill']={{2,11246}},
  410. ['beforeSkill']=0,
  411. ['SkillBranch']=3,
  412. ['PressPoint']=21,
  413. ['StartPressPoint']=21,
  414. },
  415. [11125]={
  416. ['SkillId']=11125,
  417. ['SkillType']=1,
  418. ['MaxLv']=50,
  419. ['SkillQuality']=3,
  420. ['JobType']=1,
  421. ['JobBranch']=1,
  422. ['JobStage']=3,
  423. ['OpenLevel']=78,
  424. ['OpenNeedCost']={{200,1}},
  425. ['Pos']=16,
  426. ['order']=96,
  427. ['beforeSkill']=11025,
  428. ['SkillBranch']=0,
  429. ['PressPoint']=30,
  430. ['StartPressPoint']=180,
  431. },
  432. [11126]={
  433. ['SkillId']=11126,
  434. ['SkillType']=1,
  435. ['MaxLv']=50,
  436. ['SkillQuality']=3,
  437. ['JobType']=1,
  438. ['JobBranch']=1,
  439. ['JobStage']=3,
  440. ['OpenLevel']=79,
  441. ['OpenNeedCost']={{200,1}},
  442. ['Pos']=21,
  443. ['order']=95,
  444. ['beforeSkill']=11026,
  445. ['SkillBranch']=0,
  446. ['PressPoint']=30,
  447. ['StartPressPoint']=180,
  448. },
  449. [11127]={
  450. ['SkillId']=11127,
  451. ['SkillType']=1,
  452. ['MaxLv']=50,
  453. ['SkillQuality']=3,
  454. ['JobType']=1,
  455. ['JobBranch']=1,
  456. ['JobStage']=3,
  457. ['OpenLevel']=80,
  458. ['OpenNeedCost']={{200,1}},
  459. ['Pos']=26,
  460. ['order']=94,
  461. ['beforeSkill']=11027,
  462. ['SkillBranch']=0,
  463. ['PressPoint']=30,
  464. ['StartPressPoint']=180,
  465. },
  466. [11128]={
  467. ['SkillId']=11128,
  468. ['SkillType']=1,
  469. ['MaxLv']=50,
  470. ['SkillQuality']=3,
  471. ['JobType']=1,
  472. ['JobBranch']=1,
  473. ['JobStage']=3,
  474. ['OpenLevel']=76,
  475. ['OpenNeedCost']={{200,1}},
  476. ['Pos']=10,
  477. ['order']=98,
  478. ['beforeSkill']=11028,
  479. ['SkillBranch']=0,
  480. ['PressPoint']=30,
  481. ['StartPressPoint']=180,
  482. },
  483. [11129]={
  484. ['SkillId']=11129,
  485. ['SkillType']=1,
  486. ['MaxLv']=50,
  487. ['SkillQuality']=3,
  488. ['JobType']=1,
  489. ['JobBranch']=1,
  490. ['JobStage']=3,
  491. ['OpenLevel']=77,
  492. ['OpenNeedCost']={{200,1}},
  493. ['Pos']=13,
  494. ['order']=97,
  495. ['beforeSkill']=11029,
  496. ['SkillBranch']=0,
  497. ['PressPoint']=30,
  498. ['StartPressPoint']=180,
  499. },
  500. [11130]={
  501. ['SkillId']=11130,
  502. ['SkillType']=1,
  503. ['MaxLv']=50,
  504. ['SkillQuality']=3,
  505. ['JobType']=1,
  506. ['JobBranch']=1,
  507. ['JobStage']=3,
  508. ['OpenLevel']=81,
  509. ['OpenNeedCost']={{200,1}},
  510. ['Pos']=31,
  511. ['order']=93,
  512. ['beforeSkill']=11030,
  513. ['SkillBranch']=0,
  514. ['PressPoint']=30,
  515. ['StartPressPoint']=180,
  516. },
  517. [11131]={
  518. ['SkillId']=11131,
  519. ['SkillType']=1,
  520. ['MaxLv']=50,
  521. ['SkillQuality']=3,
  522. ['JobType']=1,
  523. ['JobBranch']=1,
  524. ['JobStage']=3,
  525. ['OpenLevel']=82,
  526. ['OpenNeedCost']={{200,1}},
  527. ['Pos']=50,
  528. ['order']=92,
  529. ['beforeSkill']=11031,
  530. ['SkillBranch']=0,
  531. ['PressPoint']=30,
  532. ['StartPressPoint']=480,
  533. },
  534. [11132]={
  535. ['SkillId']=11132,
  536. ['SkillType']=1,
  537. ['MaxLv']=50,
  538. ['SkillQuality']=3,
  539. ['JobType']=1,
  540. ['JobBranch']=1,
  541. ['JobStage']=3,
  542. ['OpenLevel']=83,
  543. ['OpenNeedCost']={{200,1}},
  544. ['Pos']=55,
  545. ['order']=91,
  546. ['beforeSkill']=11032,
  547. ['SkillBranch']=0,
  548. ['PressPoint']=30,
  549. ['StartPressPoint']=480,
  550. },
  551. [11133]={
  552. ['SkillId']=11133,
  553. ['SkillType']=1,
  554. ['MaxLv']=50,
  555. ['SkillQuality']=3,
  556. ['JobType']=1,
  557. ['JobBranch']=1,
  558. ['JobStage']=3,
  559. ['OpenLevel']=86,
  560. ['OpenNeedCost']={{200,1}},
  561. ['Pos']=70,
  562. ['order']=88,
  563. ['beforeSkill']=11033,
  564. ['SkillBranch']=0,
  565. ['PressPoint']=30,
  566. ['StartPressPoint']=480,
  567. },
  568. [11134]={
  569. ['SkillId']=11134,
  570. ['SkillType']=1,
  571. ['MaxLv']=50,
  572. ['SkillQuality']=3,
  573. ['JobType']=1,
  574. ['JobBranch']=1,
  575. ['JobStage']=3,
  576. ['OpenLevel']=84,
  577. ['OpenNeedCost']={{200,1}},
  578. ['Pos']=60,
  579. ['order']=90,
  580. ['beforeSkill']=11034,
  581. ['SkillBranch']=0,
  582. ['PressPoint']=30,
  583. ['StartPressPoint']=480,
  584. },
  585. [11135]={
  586. ['SkillId']=11135,
  587. ['SkillType']=1,
  588. ['MaxLv']=50,
  589. ['SkillQuality']=3,
  590. ['JobType']=1,
  591. ['JobBranch']=1,
  592. ['JobStage']=3,
  593. ['OpenLevel']=87,
  594. ['OpenNeedCost']={{200,1}},
  595. ['Pos']=75,
  596. ['order']=87,
  597. ['beforeSkill']=11035,
  598. ['SkillBranch']=0,
  599. ['PressPoint']=30,
  600. ['StartPressPoint']=480,
  601. },
  602. [11136]={
  603. ['SkillId']=11136,
  604. ['SkillType']=1,
  605. ['MaxLv']=50,
  606. ['SkillQuality']=3,
  607. ['JobType']=1,
  608. ['JobBranch']=1,
  609. ['JobStage']=3,
  610. ['OpenLevel']=85,
  611. ['OpenNeedCost']={{200,1}},
  612. ['Pos']=65,
  613. ['order']=89,
  614. ['beforeSkill']=11036,
  615. ['SkillBranch']=0,
  616. ['PressPoint']=30,
  617. ['StartPressPoint']=480,
  618. },
  619. [11143]={
  620. ['SkillId']=11143,
  621. ['SkillType']=1,
  622. ['MaxLv']=50,
  623. ['SkillQuality']=3,
  624. ['JobType']=1,
  625. ['JobBranch']=1,
  626. ['JobStage']=3,
  627. ['OpenLevel']=90,
  628. ['OpenNeedCost']={{200,1}},
  629. ['Pos']=80,
  630. ['order']=86,
  631. ['beforeSkill']=11043,
  632. ['SkillBranch']=0,
  633. ['PressPoint']=30,
  634. ['StartPressPoint']=1080,
  635. },
  636. [11144]={
  637. ['SkillId']=11144,
  638. ['SkillType']=1,
  639. ['MaxLv']=50,
  640. ['SkillQuality']=3,
  641. ['JobType']=1,
  642. ['JobBranch']=1,
  643. ['JobStage']=3,
  644. ['OpenLevel']=92,
  645. ['OpenNeedCost']={{200,1}},
  646. ['Pos']=85,
  647. ['order']=85,
  648. ['beforeSkill']=11044,
  649. ['SkillBranch']=0,
  650. ['PressPoint']=30,
  651. ['StartPressPoint']=1080,
  652. },
  653. [11225]={
  654. ['SkillId']=11225,
  655. ['SkillType']=1,
  656. ['MaxLv']=50,
  657. ['SkillQuality']=3,
  658. ['JobType']=1,
  659. ['JobBranch']=2,
  660. ['JobStage']=3,
  661. ['OpenLevel']=78,
  662. ['OpenNeedCost']={{200,1}},
  663. ['Pos']=16,
  664. ['order']=96,
  665. ['beforeSkill']=11025,
  666. ['SkillBranch']=0,
  667. ['PressPoint']=30,
  668. ['StartPressPoint']=180,
  669. },
  670. [11226]={
  671. ['SkillId']=11226,
  672. ['SkillType']=1,
  673. ['MaxLv']=50,
  674. ['SkillQuality']=3,
  675. ['JobType']=1,
  676. ['JobBranch']=2,
  677. ['JobStage']=3,
  678. ['OpenLevel']=79,
  679. ['OpenNeedCost']={{200,1}},
  680. ['Pos']=21,
  681. ['order']=95,
  682. ['beforeSkill']=11026,
  683. ['SkillBranch']=0,
  684. ['PressPoint']=30,
  685. ['StartPressPoint']=180,
  686. },
  687. [11227]={
  688. ['SkillId']=11227,
  689. ['SkillType']=1,
  690. ['MaxLv']=50,
  691. ['SkillQuality']=3,
  692. ['JobType']=1,
  693. ['JobBranch']=2,
  694. ['JobStage']=3,
  695. ['OpenLevel']=80,
  696. ['OpenNeedCost']={{200,1}},
  697. ['Pos']=26,
  698. ['order']=94,
  699. ['beforeSkill']=11027,
  700. ['SkillBranch']=0,
  701. ['PressPoint']=30,
  702. ['StartPressPoint']=180,
  703. },
  704. [11228]={
  705. ['SkillId']=11228,
  706. ['SkillType']=1,
  707. ['MaxLv']=50,
  708. ['SkillQuality']=3,
  709. ['JobType']=1,
  710. ['JobBranch']=2,
  711. ['JobStage']=3,
  712. ['OpenLevel']=76,
  713. ['OpenNeedCost']={{200,1}},
  714. ['Pos']=10,
  715. ['order']=98,
  716. ['beforeSkill']=11028,
  717. ['SkillBranch']=0,
  718. ['PressPoint']=30,
  719. ['StartPressPoint']=180,
  720. },
  721. [11229]={
  722. ['SkillId']=11229,
  723. ['SkillType']=1,
  724. ['MaxLv']=50,
  725. ['SkillQuality']=3,
  726. ['JobType']=1,
  727. ['JobBranch']=2,
  728. ['JobStage']=3,
  729. ['OpenLevel']=77,
  730. ['OpenNeedCost']={{200,1}},
  731. ['Pos']=13,
  732. ['order']=97,
  733. ['beforeSkill']=11029,
  734. ['SkillBranch']=0,
  735. ['PressPoint']=30,
  736. ['StartPressPoint']=180,
  737. },
  738. [11230]={
  739. ['SkillId']=11230,
  740. ['SkillType']=1,
  741. ['MaxLv']=50,
  742. ['SkillQuality']=3,
  743. ['JobType']=1,
  744. ['JobBranch']=2,
  745. ['JobStage']=3,
  746. ['OpenLevel']=81,
  747. ['OpenNeedCost']={{200,1}},
  748. ['Pos']=31,
  749. ['order']=93,
  750. ['beforeSkill']=11030,
  751. ['SkillBranch']=0,
  752. ['PressPoint']=30,
  753. ['StartPressPoint']=180,
  754. },
  755. [11231]={
  756. ['SkillId']=11231,
  757. ['SkillType']=1,
  758. ['MaxLv']=50,
  759. ['SkillQuality']=3,
  760. ['JobType']=1,
  761. ['JobBranch']=2,
  762. ['JobStage']=3,
  763. ['OpenLevel']=82,
  764. ['OpenNeedCost']={{200,1}},
  765. ['Pos']=50,
  766. ['order']=92,
  767. ['beforeSkill']=11041,
  768. ['SkillBranch']=0,
  769. ['PressPoint']=30,
  770. ['StartPressPoint']=480,
  771. },
  772. [11232]={
  773. ['SkillId']=11232,
  774. ['SkillType']=1,
  775. ['MaxLv']=50,
  776. ['SkillQuality']=3,
  777. ['JobType']=1,
  778. ['JobBranch']=2,
  779. ['JobStage']=3,
  780. ['OpenLevel']=83,
  781. ['OpenNeedCost']={{200,1}},
  782. ['Pos']=55,
  783. ['order']=91,
  784. ['beforeSkill']=11042,
  785. ['SkillBranch']=0,
  786. ['PressPoint']=30,
  787. ['StartPressPoint']=480,
  788. },
  789. [11237]={
  790. ['SkillId']=11237,
  791. ['SkillType']=1,
  792. ['MaxLv']=50,
  793. ['SkillQuality']=3,
  794. ['JobType']=1,
  795. ['JobBranch']=2,
  796. ['JobStage']=3,
  797. ['OpenLevel']=84,
  798. ['OpenNeedCost']={{200,1}},
  799. ['Pos']=60,
  800. ['order']=90,
  801. ['beforeSkill']=11037,
  802. ['SkillBranch']=0,
  803. ['PressPoint']=30,
  804. ['StartPressPoint']=480,
  805. },
  806. [11238]={
  807. ['SkillId']=11238,
  808. ['SkillType']=1,
  809. ['MaxLv']=50,
  810. ['SkillQuality']=3,
  811. ['JobType']=1,
  812. ['JobBranch']=2,
  813. ['JobStage']=3,
  814. ['OpenLevel']=86,
  815. ['OpenNeedCost']={{200,1}},
  816. ['Pos']=70,
  817. ['order']=88,
  818. ['beforeSkill']=11038,
  819. ['SkillBranch']=0,
  820. ['PressPoint']=30,
  821. ['StartPressPoint']=480,
  822. },
  823. [11239]={
  824. ['SkillId']=11239,
  825. ['SkillType']=1,
  826. ['MaxLv']=50,
  827. ['SkillQuality']=3,
  828. ['JobType']=1,
  829. ['JobBranch']=2,
  830. ['JobStage']=3,
  831. ['OpenLevel']=85,
  832. ['OpenNeedCost']={{200,1}},
  833. ['Pos']=65,
  834. ['order']=89,
  835. ['beforeSkill']=11039,
  836. ['SkillBranch']=0,
  837. ['PressPoint']=30,
  838. ['StartPressPoint']=480,
  839. },
  840. [11240]={
  841. ['SkillId']=11240,
  842. ['SkillType']=1,
  843. ['MaxLv']=50,
  844. ['SkillQuality']=3,
  845. ['JobType']=1,
  846. ['JobBranch']=2,
  847. ['JobStage']=3,
  848. ['OpenLevel']=87,
  849. ['OpenNeedCost']={{200,1}},
  850. ['Pos']=75,
  851. ['order']=87,
  852. ['beforeSkill']=11040,
  853. ['SkillBranch']=0,
  854. ['PressPoint']=30,
  855. ['StartPressPoint']=480,
  856. },
  857. [11245]={
  858. ['SkillId']=11245,
  859. ['SkillType']=1,
  860. ['MaxLv']=50,
  861. ['SkillQuality']=3,
  862. ['JobType']=1,
  863. ['JobBranch']=2,
  864. ['JobStage']=3,
  865. ['OpenLevel']=90,
  866. ['OpenNeedCost']={{200,1}},
  867. ['Pos']=80,
  868. ['order']=86,
  869. ['beforeSkill']=11045,
  870. ['SkillBranch']=0,
  871. ['PressPoint']=30,
  872. ['StartPressPoint']=1080,
  873. },
  874. [11246]={
  875. ['SkillId']=11246,
  876. ['SkillType']=1,
  877. ['MaxLv']=50,
  878. ['SkillQuality']=3,
  879. ['JobType']=1,
  880. ['JobBranch']=2,
  881. ['JobStage']=3,
  882. ['OpenLevel']=92,
  883. ['OpenNeedCost']={{200,1}},
  884. ['Pos']=85,
  885. ['order']=85,
  886. ['beforeSkill']=11046,
  887. ['SkillBranch']=0,
  888. ['PressPoint']=30,
  889. ['StartPressPoint']=1080,
  890. },
  891. [12021]={
  892. ['SkillId']=12021,
  893. ['SkillType']=1,
  894. ['MaxLv']=50,
  895. ['SkillQuality']=0,
  896. ['JobType']=4,
  897. ['JobBranch']=0,
  898. ['JobStage']=1,
  899. ['OpenLevel']=10,
  900. ['OpenNeedCost']={{1,1000},},
  901. ['Pos']=10,
  902. ['order']=98,
  903. ['SuperSkill']={{1,12121},{2,12221}},
  904. ['beforeSkill']=0,
  905. ['SkillBranch']=3,
  906. ['PressPoint']=3,
  907. ['StartPressPoint']=3,
  908. },
  909. [12022]={
  910. ['SkillId']=12022,
  911. ['SkillType']=1,
  912. ['MaxLv']=50,
  913. ['SkillQuality']=0,
  914. ['JobType']=4,
  915. ['JobBranch']=0,
  916. ['JobStage']=1,
  917. ['OpenLevel']=21,
  918. ['OpenNeedCost']={{113,1}},
  919. ['Pos']=21,
  920. ['order']=95,
  921. ['SuperSkill']={{1,12122},{2,12222}},
  922. ['beforeSkill']=0,
  923. ['SkillBranch']=3,
  924. ['PressPoint']=3,
  925. ['StartPressPoint']=3,
  926. },
  927. [12023]={
  928. ['SkillId']=12023,
  929. ['SkillType']=1,
  930. ['MaxLv']=50,
  931. ['SkillQuality']=0,
  932. ['JobType']=4,
  933. ['JobBranch']=0,
  934. ['JobStage']=1,
  935. ['OpenLevel']=26,
  936. ['OpenNeedCost']={{113,1}},
  937. ['Pos']=26,
  938. ['order']=94,
  939. ['SuperSkill']={{1,12123},{2,12223}},
  940. ['beforeSkill']=0,
  941. ['SkillBranch']=3,
  942. ['PressPoint']=3,
  943. ['StartPressPoint']=3,
  944. },
  945. [12024]={
  946. ['SkillId']=12024,
  947. ['SkillType']=1,
  948. ['MaxLv']=50,
  949. ['SkillQuality']=0,
  950. ['JobType']=4,
  951. ['JobBranch']=0,
  952. ['JobStage']=1,
  953. ['OpenLevel']=13,
  954. ['OpenNeedCost']={{1,2000},},
  955. ['Pos']=13,
  956. ['order']=97,
  957. ['SuperSkill']={{1,12124},{2,12224}},
  958. ['beforeSkill']=0,
  959. ['SkillBranch']=3,
  960. ['PressPoint']=3,
  961. ['StartPressPoint']=3,
  962. },
  963. [12025]={
  964. ['SkillId']=12025,
  965. ['SkillType']=1,
  966. ['MaxLv']=50,
  967. ['SkillQuality']=0,
  968. ['JobType']=4,
  969. ['JobBranch']=0,
  970. ['JobStage']=1,
  971. ['OpenLevel']=16,
  972. ['OpenNeedCost']={{1,3000},},
  973. ['Pos']=16,
  974. ['order']=96,
  975. ['SuperSkill']={{1,12125},{2,12225}},
  976. ['beforeSkill']=0,
  977. ['SkillBranch']=3,
  978. ['PressPoint']=3,
  979. ['StartPressPoint']=3,
  980. },
  981. [12026]={
  982. ['SkillId']=12026,
  983. ['SkillType']=1,
  984. ['MaxLv']=50,
  985. ['SkillQuality']=0,
  986. ['JobType']=4,
  987. ['JobBranch']=0,
  988. ['JobStage']=1,
  989. ['OpenLevel']=31,
  990. ['OpenNeedCost']={{113,1}},
  991. ['Pos']=31,
  992. ['order']=93,
  993. ['SuperSkill']={{1,12126},{2,12226}},
  994. ['beforeSkill']=0,
  995. ['SkillBranch']=3,
  996. ['PressPoint']=3,
  997. ['StartPressPoint']=3,
  998. },
  999. [12027]={
  1000. ['SkillId']=12027,
  1001. ['SkillType']=1,
  1002. ['MaxLv']=50,
  1003. ['SkillQuality']=0,
  1004. ['JobType']=4,
  1005. ['JobBranch']=1,
  1006. ['JobStage']=2,
  1007. ['OpenLevel']=40,
  1008. ['OpenNeedCost']={{113,1}},
  1009. ['Pos']=50,
  1010. ['order']=92,
  1011. ['SuperSkill']={{1,12127}},
  1012. ['beforeSkill']=0,
  1013. ['SkillBranch']=3,
  1014. ['PressPoint']=9,
  1015. ['StartPressPoint']=9,
  1016. },
  1017. [12028]={
  1018. ['SkillId']=12028,
  1019. ['SkillType']=1,
  1020. ['MaxLv']=50,
  1021. ['SkillQuality']=0,
  1022. ['JobType']=4,
  1023. ['JobBranch']=1,
  1024. ['JobStage']=2,
  1025. ['OpenLevel']=45,
  1026. ['OpenNeedCost']={{113,1}},
  1027. ['Pos']=55,
  1028. ['order']=91,
  1029. ['SuperSkill']={{1,12128}},
  1030. ['beforeSkill']=0,
  1031. ['SkillBranch']=3,
  1032. ['PressPoint']=9,
  1033. ['StartPressPoint']=9,
  1034. },
  1035. [12029]={
  1036. ['SkillId']=12029,
  1037. ['SkillType']=1,
  1038. ['MaxLv']=50,
  1039. ['SkillQuality']=0,
  1040. ['JobType']=4,
  1041. ['JobBranch']=1,
  1042. ['JobStage']=2,
  1043. ['OpenLevel']=50,
  1044. ['OpenNeedCost']={{113,1}},
  1045. ['Pos']=60,
  1046. ['order']=90,
  1047. ['SuperSkill']={{1,12129}},
  1048. ['beforeSkill']=0,
  1049. ['SkillBranch']=3,
  1050. ['PressPoint']=9,
  1051. ['StartPressPoint']=9,
  1052. },
  1053. [12030]={
  1054. ['SkillId']=12030,
  1055. ['SkillType']=1,
  1056. ['MaxLv']=50,
  1057. ['SkillQuality']=0,
  1058. ['JobType']=4,
  1059. ['JobBranch']=1,
  1060. ['JobStage']=2,
  1061. ['OpenLevel']=60,
  1062. ['OpenNeedCost']={{114,1}},
  1063. ['Pos']=70,
  1064. ['order']=88,
  1065. ['SuperSkill']={{1,12130}},
  1066. ['beforeSkill']=0,
  1067. ['SkillBranch']=3,
  1068. ['PressPoint']=9,
  1069. ['StartPressPoint']=9,
  1070. },
  1071. [12031]={
  1072. ['SkillId']=12031,
  1073. ['SkillType']=1,
  1074. ['MaxLv']=50,
  1075. ['SkillQuality']=0,
  1076. ['JobType']=4,
  1077. ['JobBranch']=1,
  1078. ['JobStage']=2,
  1079. ['OpenLevel']=55,
  1080. ['OpenNeedCost']={{114,1}},
  1081. ['Pos']=65,
  1082. ['order']=89,
  1083. ['SuperSkill']={{1,12131}},
  1084. ['beforeSkill']=0,
  1085. ['SkillBranch']=3,
  1086. ['PressPoint']=9,
  1087. ['StartPressPoint']=9,
  1088. },
  1089. [12032]={
  1090. ['SkillId']=12032,
  1091. ['SkillType']=1,
  1092. ['MaxLv']=50,
  1093. ['SkillQuality']=0,
  1094. ['JobType']=4,
  1095. ['JobBranch']=1,
  1096. ['JobStage']=2,
  1097. ['OpenLevel']=65,
  1098. ['OpenNeedCost']={{114,1}},
  1099. ['Pos']=75,
  1100. ['order']=87,
  1101. ['SuperSkill']={{1,12132}},
  1102. ['beforeSkill']=0,
  1103. ['SkillBranch']=3,
  1104. ['PressPoint']=9,
  1105. ['StartPressPoint']=9,
  1106. },
  1107. [12033]={
  1108. ['SkillId']=12033,
  1109. ['SkillType']=1,
  1110. ['MaxLv']=50,
  1111. ['SkillQuality']=0,
  1112. ['JobType']=4,
  1113. ['JobBranch']=2,
  1114. ['JobStage']=2,
  1115. ['OpenLevel']=50,
  1116. ['OpenNeedCost']={{113,1}},
  1117. ['Pos']=60,
  1118. ['order']=90,
  1119. ['SuperSkill']={{2,12233}},
  1120. ['beforeSkill']=0,
  1121. ['SkillBranch']=3,
  1122. ['PressPoint']=9,
  1123. ['StartPressPoint']=9,
  1124. },
  1125. [12034]={
  1126. ['SkillId']=12034,
  1127. ['SkillType']=1,
  1128. ['MaxLv']=50,
  1129. ['SkillQuality']=0,
  1130. ['JobType']=4,
  1131. ['JobBranch']=2,
  1132. ['JobStage']=2,
  1133. ['OpenLevel']=60,
  1134. ['OpenNeedCost']={{114,1}},
  1135. ['Pos']=70,
  1136. ['order']=88,
  1137. ['SuperSkill']={{2,12234}},
  1138. ['beforeSkill']=0,
  1139. ['SkillBranch']=3,
  1140. ['PressPoint']=9,
  1141. ['StartPressPoint']=9,
  1142. },
  1143. [12035]={
  1144. ['SkillId']=12035,
  1145. ['SkillType']=1,
  1146. ['MaxLv']=50,
  1147. ['SkillQuality']=0,
  1148. ['JobType']=4,
  1149. ['JobBranch']=2,
  1150. ['JobStage']=2,
  1151. ['OpenLevel']=55,
  1152. ['OpenNeedCost']={{114,1}},
  1153. ['Pos']=65,
  1154. ['order']=89,
  1155. ['SuperSkill']={{2,12235}},
  1156. ['beforeSkill']=0,
  1157. ['SkillBranch']=3,
  1158. ['PressPoint']=9,
  1159. ['StartPressPoint']=9,
  1160. },
  1161. [12036]={
  1162. ['SkillId']=12036,
  1163. ['SkillType']=1,
  1164. ['MaxLv']=50,
  1165. ['SkillQuality']=0,
  1166. ['JobType']=4,
  1167. ['JobBranch']=2,
  1168. ['JobStage']=2,
  1169. ['OpenLevel']=65,
  1170. ['OpenNeedCost']={{114,1}},
  1171. ['Pos']=75,
  1172. ['order']=87,
  1173. ['SuperSkill']={{2,12236}},
  1174. ['beforeSkill']=0,
  1175. ['SkillBranch']=3,
  1176. ['PressPoint']=9,
  1177. ['StartPressPoint']=9,
  1178. },
  1179. [12037]={
  1180. ['SkillId']=12037,
  1181. ['SkillType']=1,
  1182. ['MaxLv']=50,
  1183. ['SkillQuality']=0,
  1184. ['JobType']=4,
  1185. ['JobBranch']=2,
  1186. ['JobStage']=2,
  1187. ['OpenLevel']=40,
  1188. ['OpenNeedCost']={{113,1}},
  1189. ['Pos']=50,
  1190. ['order']=92,
  1191. ['SuperSkill']={{2,12227}},
  1192. ['beforeSkill']=0,
  1193. ['SkillBranch']=3,
  1194. ['PressPoint']=9,
  1195. ['StartPressPoint']=9,
  1196. },
  1197. [12038]={
  1198. ['SkillId']=12038,
  1199. ['SkillType']=1,
  1200. ['MaxLv']=50,
  1201. ['SkillQuality']=0,
  1202. ['JobType']=4,
  1203. ['JobBranch']=2,
  1204. ['JobStage']=2,
  1205. ['OpenLevel']=45,
  1206. ['OpenNeedCost']={{113,1}},
  1207. ['Pos']=55,
  1208. ['order']=91,
  1209. ['SuperSkill']={{2,12228}},
  1210. ['beforeSkill']=0,
  1211. ['SkillBranch']=3,
  1212. ['PressPoint']=9,
  1213. ['StartPressPoint']=9,
  1214. },
  1215. [12039]={
  1216. ['SkillId']=12039,
  1217. ['SkillType']=1,
  1218. ['MaxLv']=50,
  1219. ['SkillQuality']=0,
  1220. ['JobType']=4,
  1221. ['JobBranch']=1,
  1222. ['JobStage']=3,
  1223. ['OpenLevel']=70,
  1224. ['OpenNeedCost']={{191,1}},
  1225. ['Pos']=80,
  1226. ['order']=86,
  1227. ['SuperSkill']={{1,12139}},
  1228. ['beforeSkill']=0,
  1229. ['SkillBranch']=3,
  1230. ['PressPoint']=21,
  1231. ['StartPressPoint']=21,
  1232. },
  1233. [12040]={
  1234. ['SkillId']=12040,
  1235. ['SkillType']=1,
  1236. ['MaxLv']=50,
  1237. ['SkillQuality']=0,
  1238. ['JobType']=4,
  1239. ['JobBranch']=1,
  1240. ['JobStage']=3,
  1241. ['OpenLevel']=75,
  1242. ['OpenNeedCost']={{191,1}},
  1243. ['Pos']=85,
  1244. ['order']=85,
  1245. ['SuperSkill']={{1,12140}},
  1246. ['beforeSkill']=0,
  1247. ['SkillBranch']=3,
  1248. ['PressPoint']=21,
  1249. ['StartPressPoint']=21,
  1250. },
  1251. [12041]={
  1252. ['SkillId']=12041,
  1253. ['SkillType']=1,
  1254. ['MaxLv']=50,
  1255. ['SkillQuality']=0,
  1256. ['JobType']=4,
  1257. ['JobBranch']=2,
  1258. ['JobStage']=3,
  1259. ['OpenLevel']=70,
  1260. ['OpenNeedCost']={{191,1}},
  1261. ['Pos']=80,
  1262. ['order']=86,
  1263. ['SuperSkill']={{2,12241}},
  1264. ['beforeSkill']=0,
  1265. ['SkillBranch']=3,
  1266. ['PressPoint']=21,
  1267. ['StartPressPoint']=21,
  1268. },
  1269. [12042]={
  1270. ['SkillId']=12042,
  1271. ['SkillType']=1,
  1272. ['MaxLv']=50,
  1273. ['SkillQuality']=0,
  1274. ['JobType']=4,
  1275. ['JobBranch']=2,
  1276. ['JobStage']=3,
  1277. ['OpenLevel']=75,
  1278. ['OpenNeedCost']={{191,1}},
  1279. ['Pos']=85,
  1280. ['order']=85,
  1281. ['SuperSkill']={{2,12242}},
  1282. ['beforeSkill']=0,
  1283. ['SkillBranch']=3,
  1284. ['PressPoint']=21,
  1285. ['StartPressPoint']=21,
  1286. },
  1287. [12121]={
  1288. ['SkillId']=12121,
  1289. ['SkillType']=1,
  1290. ['MaxLv']=50,
  1291. ['SkillQuality']=3,
  1292. ['JobType']=4,
  1293. ['JobBranch']=1,
  1294. ['JobStage']=3,
  1295. ['OpenLevel']=76,
  1296. ['OpenNeedCost']={{200,1}},
  1297. ['Pos']=10,
  1298. ['order']=98,
  1299. ['beforeSkill']=12021,
  1300. ['SkillBranch']=0,
  1301. ['PressPoint']=30,
  1302. ['StartPressPoint']=180,
  1303. },
  1304. [12122]={
  1305. ['SkillId']=12122,
  1306. ['SkillType']=1,
  1307. ['MaxLv']=50,
  1308. ['SkillQuality']=3,
  1309. ['JobType']=4,
  1310. ['JobBranch']=1,
  1311. ['JobStage']=3,
  1312. ['OpenLevel']=79,
  1313. ['OpenNeedCost']={{200,1}},
  1314. ['Pos']=21,
  1315. ['order']=95,
  1316. ['beforeSkill']=12022,
  1317. ['SkillBranch']=0,
  1318. ['PressPoint']=30,
  1319. ['StartPressPoint']=180,
  1320. },
  1321. [12123]={
  1322. ['SkillId']=12123,
  1323. ['SkillType']=1,
  1324. ['MaxLv']=50,
  1325. ['SkillQuality']=3,
  1326. ['JobType']=4,
  1327. ['JobBranch']=1,
  1328. ['JobStage']=3,
  1329. ['OpenLevel']=80,
  1330. ['OpenNeedCost']={{200,1}},
  1331. ['Pos']=26,
  1332. ['order']=94,
  1333. ['beforeSkill']=12023,
  1334. ['SkillBranch']=0,
  1335. ['PressPoint']=30,
  1336. ['StartPressPoint']=180,
  1337. },
  1338. [12124]={
  1339. ['SkillId']=12124,
  1340. ['SkillType']=1,
  1341. ['MaxLv']=50,
  1342. ['SkillQuality']=3,
  1343. ['JobType']=4,
  1344. ['JobBranch']=1,
  1345. ['JobStage']=3,
  1346. ['OpenLevel']=77,
  1347. ['OpenNeedCost']={{200,1}},
  1348. ['Pos']=13,
  1349. ['order']=97,
  1350. ['beforeSkill']=12024,
  1351. ['SkillBranch']=0,
  1352. ['PressPoint']=30,
  1353. ['StartPressPoint']=180,
  1354. },
  1355. [12125]={
  1356. ['SkillId']=12125,
  1357. ['SkillType']=1,
  1358. ['MaxLv']=50,
  1359. ['SkillQuality']=3,
  1360. ['JobType']=4,
  1361. ['JobBranch']=1,
  1362. ['JobStage']=3,
  1363. ['OpenLevel']=78,
  1364. ['OpenNeedCost']={{200,1}},
  1365. ['Pos']=16,
  1366. ['order']=96,
  1367. ['beforeSkill']=12025,
  1368. ['SkillBranch']=0,
  1369. ['PressPoint']=30,
  1370. ['StartPressPoint']=180,
  1371. },
  1372. [12126]={
  1373. ['SkillId']=12126,
  1374. ['SkillType']=1,
  1375. ['MaxLv']=50,
  1376. ['SkillQuality']=3,
  1377. ['JobType']=4,
  1378. ['JobBranch']=1,
  1379. ['JobStage']=3,
  1380. ['OpenLevel']=81,
  1381. ['OpenNeedCost']={{200,1}},
  1382. ['Pos']=31,
  1383. ['order']=93,
  1384. ['beforeSkill']=12026,
  1385. ['SkillBranch']=0,
  1386. ['PressPoint']=30,
  1387. ['StartPressPoint']=180,
  1388. },
  1389. [12127]={
  1390. ['SkillId']=12127,
  1391. ['SkillType']=1,
  1392. ['MaxLv']=50,
  1393. ['SkillQuality']=3,
  1394. ['JobType']=4,
  1395. ['JobBranch']=1,
  1396. ['JobStage']=3,
  1397. ['OpenLevel']=82,
  1398. ['OpenNeedCost']={{200,1}},
  1399. ['Pos']=50,
  1400. ['order']=92,
  1401. ['beforeSkill']=12027,
  1402. ['SkillBranch']=0,
  1403. ['PressPoint']=30,
  1404. ['StartPressPoint']=480,
  1405. },
  1406. [12128]={
  1407. ['SkillId']=12128,
  1408. ['SkillType']=1,
  1409. ['MaxLv']=50,
  1410. ['SkillQuality']=3,
  1411. ['JobType']=4,
  1412. ['JobBranch']=1,
  1413. ['JobStage']=3,
  1414. ['OpenLevel']=83,
  1415. ['OpenNeedCost']={{200,1}},
  1416. ['Pos']=55,
  1417. ['order']=91,
  1418. ['beforeSkill']=12028,
  1419. ['SkillBranch']=0,
  1420. ['PressPoint']=30,
  1421. ['StartPressPoint']=480,
  1422. },
  1423. [12129]={
  1424. ['SkillId']=12129,
  1425. ['SkillType']=1,
  1426. ['MaxLv']=50,
  1427. ['SkillQuality']=3,
  1428. ['JobType']=4,
  1429. ['JobBranch']=1,
  1430. ['JobStage']=3,
  1431. ['OpenLevel']=84,
  1432. ['OpenNeedCost']={{200,1}},
  1433. ['Pos']=60,
  1434. ['order']=90,
  1435. ['beforeSkill']=12029,
  1436. ['SkillBranch']=0,
  1437. ['PressPoint']=30,
  1438. ['StartPressPoint']=480,
  1439. },
  1440. [12130]={
  1441. ['SkillId']=12130,
  1442. ['SkillType']=1,
  1443. ['MaxLv']=50,
  1444. ['SkillQuality']=3,
  1445. ['JobType']=4,
  1446. ['JobBranch']=1,
  1447. ['JobStage']=3,
  1448. ['OpenLevel']=86,
  1449. ['OpenNeedCost']={{200,1}},
  1450. ['Pos']=70,
  1451. ['order']=88,
  1452. ['beforeSkill']=12030,
  1453. ['SkillBranch']=0,
  1454. ['PressPoint']=30,
  1455. ['StartPressPoint']=480,
  1456. },
  1457. [12131]={
  1458. ['SkillId']=12131,
  1459. ['SkillType']=1,
  1460. ['MaxLv']=50,
  1461. ['SkillQuality']=3,
  1462. ['JobType']=4,
  1463. ['JobBranch']=1,
  1464. ['JobStage']=3,
  1465. ['OpenLevel']=85,
  1466. ['OpenNeedCost']={{200,1}},
  1467. ['Pos']=65,
  1468. ['order']=89,
  1469. ['beforeSkill']=12031,
  1470. ['SkillBranch']=0,
  1471. ['PressPoint']=30,
  1472. ['StartPressPoint']=480,
  1473. },
  1474. [12132]={
  1475. ['SkillId']=12132,
  1476. ['SkillType']=1,
  1477. ['MaxLv']=50,
  1478. ['SkillQuality']=3,
  1479. ['JobType']=4,
  1480. ['JobBranch']=1,
  1481. ['JobStage']=3,
  1482. ['OpenLevel']=87,
  1483. ['OpenNeedCost']={{200,1}},
  1484. ['Pos']=75,
  1485. ['order']=87,
  1486. ['beforeSkill']=12032,
  1487. ['SkillBranch']=0,
  1488. ['PressPoint']=30,
  1489. ['StartPressPoint']=480,
  1490. },
  1491. [12139]={
  1492. ['SkillId']=12139,
  1493. ['SkillType']=1,
  1494. ['MaxLv']=50,
  1495. ['SkillQuality']=3,
  1496. ['JobType']=4,
  1497. ['JobBranch']=1,
  1498. ['JobStage']=3,
  1499. ['OpenLevel']=90,
  1500. ['OpenNeedCost']={{200,1}},
  1501. ['Pos']=80,
  1502. ['order']=86,
  1503. ['beforeSkill']=12039,
  1504. ['SkillBranch']=0,
  1505. ['PressPoint']=30,
  1506. ['StartPressPoint']=1080,
  1507. },
  1508. [12140]={
  1509. ['SkillId']=12140,
  1510. ['SkillType']=1,
  1511. ['MaxLv']=50,
  1512. ['SkillQuality']=3,
  1513. ['JobType']=4,
  1514. ['JobBranch']=1,
  1515. ['JobStage']=3,
  1516. ['OpenLevel']=92,
  1517. ['OpenNeedCost']={{200,1}},
  1518. ['Pos']=85,
  1519. ['order']=85,
  1520. ['beforeSkill']=12040,
  1521. ['SkillBranch']=0,
  1522. ['PressPoint']=30,
  1523. ['StartPressPoint']=1080,
  1524. },
  1525. [12221]={
  1526. ['SkillId']=12221,
  1527. ['SkillType']=1,
  1528. ['MaxLv']=50,
  1529. ['SkillQuality']=3,
  1530. ['JobType']=4,
  1531. ['JobBranch']=2,
  1532. ['JobStage']=3,
  1533. ['OpenLevel']=76,
  1534. ['OpenNeedCost']={{200,1}},
  1535. ['Pos']=10,
  1536. ['order']=98,
  1537. ['beforeSkill']=12021,
  1538. ['SkillBranch']=0,
  1539. ['PressPoint']=30,
  1540. ['StartPressPoint']=180,
  1541. },
  1542. [12222]={
  1543. ['SkillId']=12222,
  1544. ['SkillType']=1,
  1545. ['MaxLv']=50,
  1546. ['SkillQuality']=3,
  1547. ['JobType']=4,
  1548. ['JobBranch']=2,
  1549. ['JobStage']=3,
  1550. ['OpenLevel']=79,
  1551. ['OpenNeedCost']={{200,1}},
  1552. ['Pos']=21,
  1553. ['order']=95,
  1554. ['beforeSkill']=12022,
  1555. ['SkillBranch']=0,
  1556. ['PressPoint']=30,
  1557. ['StartPressPoint']=180,
  1558. },
  1559. [12223]={
  1560. ['SkillId']=12223,
  1561. ['SkillType']=1,
  1562. ['MaxLv']=50,
  1563. ['SkillQuality']=3,
  1564. ['JobType']=4,
  1565. ['JobBranch']=2,
  1566. ['JobStage']=3,
  1567. ['OpenLevel']=80,
  1568. ['OpenNeedCost']={{200,1}},
  1569. ['Pos']=26,
  1570. ['order']=94,
  1571. ['beforeSkill']=12023,
  1572. ['SkillBranch']=0,
  1573. ['PressPoint']=30,
  1574. ['StartPressPoint']=180,
  1575. },
  1576. [12224]={
  1577. ['SkillId']=12224,
  1578. ['SkillType']=1,
  1579. ['MaxLv']=50,
  1580. ['SkillQuality']=3,
  1581. ['JobType']=4,
  1582. ['JobBranch']=2,
  1583. ['JobStage']=3,
  1584. ['OpenLevel']=77,
  1585. ['OpenNeedCost']={{200,1}},
  1586. ['Pos']=13,
  1587. ['order']=97,
  1588. ['beforeSkill']=12024,
  1589. ['SkillBranch']=0,
  1590. ['PressPoint']=30,
  1591. ['StartPressPoint']=180,
  1592. },
  1593. [12225]={
  1594. ['SkillId']=12225,
  1595. ['SkillType']=1,
  1596. ['MaxLv']=50,
  1597. ['SkillQuality']=3,
  1598. ['JobType']=4,
  1599. ['JobBranch']=2,
  1600. ['JobStage']=3,
  1601. ['OpenLevel']=78,
  1602. ['OpenNeedCost']={{200,1}},
  1603. ['Pos']=16,
  1604. ['order']=96,
  1605. ['beforeSkill']=12025,
  1606. ['SkillBranch']=0,
  1607. ['PressPoint']=30,
  1608. ['StartPressPoint']=180,
  1609. },
  1610. [12226]={
  1611. ['SkillId']=12226,
  1612. ['SkillType']=1,
  1613. ['MaxLv']=50,
  1614. ['SkillQuality']=3,
  1615. ['JobType']=4,
  1616. ['JobBranch']=2,
  1617. ['JobStage']=3,
  1618. ['OpenLevel']=81,
  1619. ['OpenNeedCost']={{200,1}},
  1620. ['Pos']=31,
  1621. ['order']=93,
  1622. ['beforeSkill']=12026,
  1623. ['SkillBranch']=0,
  1624. ['PressPoint']=30,
  1625. ['StartPressPoint']=180,
  1626. },
  1627. [12227]={
  1628. ['SkillId']=12227,
  1629. ['SkillType']=1,
  1630. ['MaxLv']=50,
  1631. ['SkillQuality']=3,
  1632. ['JobType']=4,
  1633. ['JobBranch']=2,
  1634. ['JobStage']=3,
  1635. ['OpenLevel']=82,
  1636. ['OpenNeedCost']={{200,1}},
  1637. ['Pos']=50,
  1638. ['order']=92,
  1639. ['beforeSkill']=12037,
  1640. ['SkillBranch']=0,
  1641. ['PressPoint']=30,
  1642. ['StartPressPoint']=480,
  1643. },
  1644. [12228]={
  1645. ['SkillId']=12228,
  1646. ['SkillType']=1,
  1647. ['MaxLv']=50,
  1648. ['SkillQuality']=3,
  1649. ['JobType']=4,
  1650. ['JobBranch']=2,
  1651. ['JobStage']=3,
  1652. ['OpenLevel']=83,
  1653. ['OpenNeedCost']={{200,1}},
  1654. ['Pos']=55,
  1655. ['order']=91,
  1656. ['beforeSkill']=12038,
  1657. ['SkillBranch']=0,
  1658. ['PressPoint']=30,
  1659. ['StartPressPoint']=480,
  1660. },
  1661. [12233]={
  1662. ['SkillId']=12233,
  1663. ['SkillType']=1,
  1664. ['MaxLv']=50,
  1665. ['SkillQuality']=3,
  1666. ['JobType']=4,
  1667. ['JobBranch']=2,
  1668. ['JobStage']=3,
  1669. ['OpenLevel']=84,
  1670. ['OpenNeedCost']={{200,1}},
  1671. ['Pos']=60,
  1672. ['order']=90,
  1673. ['beforeSkill']=12033,
  1674. ['SkillBranch']=0,
  1675. ['PressPoint']=30,
  1676. ['StartPressPoint']=480,
  1677. },
  1678. [12234]={
  1679. ['SkillId']=12234,
  1680. ['SkillType']=1,
  1681. ['MaxLv']=50,
  1682. ['SkillQuality']=3,
  1683. ['JobType']=4,
  1684. ['JobBranch']=2,
  1685. ['JobStage']=3,
  1686. ['OpenLevel']=86,
  1687. ['OpenNeedCost']={{200,1}},
  1688. ['Pos']=70,
  1689. ['order']=88,
  1690. ['beforeSkill']=12034,
  1691. ['SkillBranch']=0,
  1692. ['PressPoint']=30,
  1693. ['StartPressPoint']=480,
  1694. },
  1695. [12235]={
  1696. ['SkillId']=12235,
  1697. ['SkillType']=1,
  1698. ['MaxLv']=50,
  1699. ['SkillQuality']=3,
  1700. ['JobType']=4,
  1701. ['JobBranch']=2,
  1702. ['JobStage']=3,
  1703. ['OpenLevel']=85,
  1704. ['OpenNeedCost']={{200,1}},
  1705. ['Pos']=65,
  1706. ['order']=89,
  1707. ['beforeSkill']=12035,
  1708. ['SkillBranch']=0,
  1709. ['PressPoint']=30,
  1710. ['StartPressPoint']=480,
  1711. },
  1712. [12236]={
  1713. ['SkillId']=12236,
  1714. ['SkillType']=1,
  1715. ['MaxLv']=50,
  1716. ['SkillQuality']=3,
  1717. ['JobType']=4,
  1718. ['JobBranch']=2,
  1719. ['JobStage']=3,
  1720. ['OpenLevel']=87,
  1721. ['OpenNeedCost']={{200,1}},
  1722. ['Pos']=75,
  1723. ['order']=87,
  1724. ['beforeSkill']=12036,
  1725. ['SkillBranch']=0,
  1726. ['PressPoint']=30,
  1727. ['StartPressPoint']=480,
  1728. },
  1729. [12241]={
  1730. ['SkillId']=12241,
  1731. ['SkillType']=1,
  1732. ['MaxLv']=50,
  1733. ['SkillQuality']=3,
  1734. ['JobType']=4,
  1735. ['JobBranch']=2,
  1736. ['JobStage']=3,
  1737. ['OpenLevel']=90,
  1738. ['OpenNeedCost']={{200,1}},
  1739. ['Pos']=80,
  1740. ['order']=86,
  1741. ['beforeSkill']=12041,
  1742. ['SkillBranch']=0,
  1743. ['PressPoint']=30,
  1744. ['StartPressPoint']=1080,
  1745. },
  1746. [12242]={
  1747. ['SkillId']=12242,
  1748. ['SkillType']=1,
  1749. ['MaxLv']=50,
  1750. ['SkillQuality']=3,
  1751. ['JobType']=4,
  1752. ['JobBranch']=2,
  1753. ['JobStage']=3,
  1754. ['OpenLevel']=92,
  1755. ['OpenNeedCost']={{200,1}},
  1756. ['Pos']=85,
  1757. ['order']=85,
  1758. ['beforeSkill']=12042,
  1759. ['SkillBranch']=0,
  1760. ['PressPoint']=30,
  1761. ['StartPressPoint']=1080,
  1762. },
  1763. [13022]={
  1764. ['SkillId']=13022,
  1765. ['SkillType']=1,
  1766. ['MaxLv']=50,
  1767. ['SkillQuality']=0,
  1768. ['JobType']=3,
  1769. ['JobBranch']=1,
  1770. ['JobStage']=2,
  1771. ['OpenLevel']=45,
  1772. ['OpenNeedCost']={{113,1}},
  1773. ['Pos']=55,
  1774. ['order']=91,
  1775. ['SuperSkill']={{1,13122}},
  1776. ['beforeSkill']=0,
  1777. ['SkillBranch']=3,
  1778. ['PressPoint']=9,
  1779. ['StartPressPoint']=9,
  1780. },
  1781. [13023]={
  1782. ['SkillId']=13023,
  1783. ['SkillType']=1,
  1784. ['MaxLv']=50,
  1785. ['SkillQuality']=0,
  1786. ['JobType']=3,
  1787. ['JobBranch']=0,
  1788. ['JobStage']=1,
  1789. ['OpenLevel']=13,
  1790. ['OpenNeedCost']={{1,2000},},
  1791. ['Pos']=13,
  1792. ['order']=97,
  1793. ['SuperSkill']={{1,13123},{2,13223}},
  1794. ['beforeSkill']=0,
  1795. ['SkillBranch']=3,
  1796. ['PressPoint']=3,
  1797. ['StartPressPoint']=3,
  1798. },
  1799. [13024]={
  1800. ['SkillId']=13024,
  1801. ['SkillType']=1,
  1802. ['MaxLv']=50,
  1803. ['SkillQuality']=0,
  1804. ['JobType']=3,
  1805. ['JobBranch']=0,
  1806. ['JobStage']=1,
  1807. ['OpenLevel']=10,
  1808. ['OpenNeedCost']={{1,1000},},
  1809. ['Pos']=10,
  1810. ['order']=98,
  1811. ['SuperSkill']={{1,13124},{2,13224}},
  1812. ['beforeSkill']=0,
  1813. ['SkillBranch']=3,
  1814. ['PressPoint']=3,
  1815. ['StartPressPoint']=3,
  1816. },
  1817. [13025]={
  1818. ['SkillId']=13025,
  1819. ['SkillType']=1,
  1820. ['MaxLv']=50,
  1821. ['SkillQuality']=0,
  1822. ['JobType']=3,
  1823. ['JobBranch']=0,
  1824. ['JobStage']=1,
  1825. ['OpenLevel']=31,
  1826. ['OpenNeedCost']={{113,1}},
  1827. ['Pos']=31,
  1828. ['order']=93,
  1829. ['SuperSkill']={{1,13125},{2,13225}},
  1830. ['beforeSkill']=0,
  1831. ['SkillBranch']=3,
  1832. ['PressPoint']=3,
  1833. ['StartPressPoint']=3,
  1834. },
  1835. [13026]={
  1836. ['SkillId']=13026,
  1837. ['SkillType']=1,
  1838. ['MaxLv']=50,
  1839. ['SkillQuality']=0,
  1840. ['JobType']=3,
  1841. ['JobBranch']=0,
  1842. ['JobStage']=1,
  1843. ['OpenLevel']=21,
  1844. ['OpenNeedCost']={{113,1}},
  1845. ['Pos']=21,
  1846. ['order']=95,
  1847. ['SuperSkill']={{1,13126},{2,13226}},
  1848. ['beforeSkill']=0,
  1849. ['SkillBranch']=3,
  1850. ['PressPoint']=3,
  1851. ['StartPressPoint']=3,
  1852. },
  1853. [13027]={
  1854. ['SkillId']=13027,
  1855. ['SkillType']=1,
  1856. ['MaxLv']=50,
  1857. ['SkillQuality']=0,
  1858. ['JobType']=3,
  1859. ['JobBranch']=0,
  1860. ['JobStage']=1,
  1861. ['OpenLevel']=16,
  1862. ['OpenNeedCost']={{1,3000},},
  1863. ['Pos']=16,
  1864. ['order']=96,
  1865. ['SuperSkill']={{1,13127},{2,13227}},
  1866. ['beforeSkill']=0,
  1867. ['SkillBranch']=3,
  1868. ['PressPoint']=3,
  1869. ['StartPressPoint']=3,
  1870. },
  1871. [13028]={
  1872. ['SkillId']=13028,
  1873. ['SkillType']=1,
  1874. ['MaxLv']=50,
  1875. ['SkillQuality']=0,
  1876. ['JobType']=3,
  1877. ['JobBranch']=0,
  1878. ['JobStage']=1,
  1879. ['OpenLevel']=26,
  1880. ['OpenNeedCost']={{113,1}},
  1881. ['Pos']=26,
  1882. ['order']=94,
  1883. ['SuperSkill']={{1,13128},{2,13228}},
  1884. ['beforeSkill']=0,
  1885. ['SkillBranch']=3,
  1886. ['PressPoint']=3,
  1887. ['StartPressPoint']=3,
  1888. },
  1889. [13029]={
  1890. ['SkillId']=13029,
  1891. ['SkillType']=1,
  1892. ['MaxLv']=50,
  1893. ['SkillQuality']=0,
  1894. ['JobType']=3,
  1895. ['JobBranch']=1,
  1896. ['JobStage']=2,
  1897. ['OpenLevel']=40,
  1898. ['OpenNeedCost']={{113,1}},
  1899. ['Pos']=50,
  1900. ['order']=92,
  1901. ['SuperSkill']={{1,13129}},
  1902. ['beforeSkill']=0,
  1903. ['SkillBranch']=3,
  1904. ['PressPoint']=9,
  1905. ['StartPressPoint']=9,
  1906. },
  1907. [13030]={
  1908. ['SkillId']=13030,
  1909. ['SkillType']=1,
  1910. ['MaxLv']=50,
  1911. ['SkillQuality']=0,
  1912. ['JobType']=3,
  1913. ['JobBranch']=1,
  1914. ['JobStage']=2,
  1915. ['OpenLevel']=50,
  1916. ['OpenNeedCost']={{113,1}},
  1917. ['Pos']=60,
  1918. ['order']=90,
  1919. ['SuperSkill']={{1,13130}},
  1920. ['beforeSkill']=0,
  1921. ['SkillBranch']=3,
  1922. ['PressPoint']=9,
  1923. ['StartPressPoint']=9,
  1924. },
  1925. [13031]={
  1926. ['SkillId']=13031,
  1927. ['SkillType']=1,
  1928. ['MaxLv']=50,
  1929. ['SkillQuality']=0,
  1930. ['JobType']=3,
  1931. ['JobBranch']=1,
  1932. ['JobStage']=2,
  1933. ['OpenLevel']=65,
  1934. ['OpenNeedCost']={{114,1}},
  1935. ['Pos']=75,
  1936. ['order']=87,
  1937. ['SuperSkill']={{1,13131}},
  1938. ['beforeSkill']=0,
  1939. ['SkillBranch']=3,
  1940. ['PressPoint']=9,
  1941. ['StartPressPoint']=9,
  1942. },
  1943. [13032]={
  1944. ['SkillId']=13032,
  1945. ['SkillType']=1,
  1946. ['MaxLv']=50,
  1947. ['SkillQuality']=0,
  1948. ['JobType']=3,
  1949. ['JobBranch']=1,
  1950. ['JobStage']=2,
  1951. ['OpenLevel']=55,
  1952. ['OpenNeedCost']={{114,1}},
  1953. ['Pos']=65,
  1954. ['order']=89,
  1955. ['SuperSkill']={{1,13132}},
  1956. ['beforeSkill']=0,
  1957. ['SkillBranch']=3,
  1958. ['PressPoint']=9,
  1959. ['StartPressPoint']=9,
  1960. },
  1961. [13033]={
  1962. ['SkillId']=13033,
  1963. ['SkillType']=1,
  1964. ['MaxLv']=50,
  1965. ['SkillQuality']=0,
  1966. ['JobType']=3,
  1967. ['JobBranch']=1,
  1968. ['JobStage']=2,
  1969. ['OpenLevel']=60,
  1970. ['OpenNeedCost']={{114,1}},
  1971. ['Pos']=70,
  1972. ['order']=88,
  1973. ['SuperSkill']={{1,13133}},
  1974. ['beforeSkill']=0,
  1975. ['SkillBranch']=3,
  1976. ['PressPoint']=9,
  1977. ['StartPressPoint']=9,
  1978. },
  1979. [13034]={
  1980. ['SkillId']=13034,
  1981. ['SkillType']=1,
  1982. ['MaxLv']=50,
  1983. ['SkillQuality']=0,
  1984. ['JobType']=3,
  1985. ['JobBranch']=2,
  1986. ['JobStage']=2,
  1987. ['OpenLevel']=50,
  1988. ['OpenNeedCost']={{113,1}},
  1989. ['Pos']=60,
  1990. ['order']=90,
  1991. ['SuperSkill']={{2,13234}},
  1992. ['beforeSkill']=0,
  1993. ['SkillBranch']=3,
  1994. ['PressPoint']=9,
  1995. ['StartPressPoint']=9,
  1996. },
  1997. [13035]={
  1998. ['SkillId']=13035,
  1999. ['SkillType']=1,
  2000. ['MaxLv']=50,
  2001. ['SkillQuality']=0,
  2002. ['JobType']=3,
  2003. ['JobBranch']=2,
  2004. ['JobStage']=2,
  2005. ['OpenLevel']=60,
  2006. ['OpenNeedCost']={{114,1}},
  2007. ['Pos']=70,
  2008. ['order']=88,
  2009. ['SuperSkill']={{2,13235}},
  2010. ['beforeSkill']=0,
  2011. ['SkillBranch']=3,
  2012. ['PressPoint']=9,
  2013. ['StartPressPoint']=9,
  2014. },
  2015. [13036]={
  2016. ['SkillId']=13036,
  2017. ['SkillType']=1,
  2018. ['MaxLv']=50,
  2019. ['SkillQuality']=0,
  2020. ['JobType']=3,
  2021. ['JobBranch']=2,
  2022. ['JobStage']=2,
  2023. ['OpenLevel']=55,
  2024. ['OpenNeedCost']={{114,1}},
  2025. ['Pos']=65,
  2026. ['order']=89,
  2027. ['SuperSkill']={{2,13236}},
  2028. ['beforeSkill']=0,
  2029. ['SkillBranch']=3,
  2030. ['PressPoint']=9,
  2031. ['StartPressPoint']=9,
  2032. },
  2033. [13037]={
  2034. ['SkillId']=13037,
  2035. ['SkillType']=1,
  2036. ['MaxLv']=50,
  2037. ['SkillQuality']=0,
  2038. ['JobType']=3,
  2039. ['JobBranch']=2,
  2040. ['JobStage']=2,
  2041. ['OpenLevel']=65,
  2042. ['OpenNeedCost']={{114,1}},
  2043. ['Pos']=75,
  2044. ['order']=87,
  2045. ['SuperSkill']={{2,13237}},
  2046. ['beforeSkill']=0,
  2047. ['SkillBranch']=3,
  2048. ['PressPoint']=9,
  2049. ['StartPressPoint']=9,
  2050. },
  2051. [13038]={
  2052. ['SkillId']=13038,
  2053. ['SkillType']=1,
  2054. ['MaxLv']=50,
  2055. ['SkillQuality']=0,
  2056. ['JobType']=3,
  2057. ['JobBranch']=2,
  2058. ['JobStage']=2,
  2059. ['OpenLevel']=45,
  2060. ['OpenNeedCost']={{113,1}},
  2061. ['Pos']=55,
  2062. ['order']=91,
  2063. ['SuperSkill']={{2,13222}},
  2064. ['beforeSkill']=0,
  2065. ['SkillBranch']=3,
  2066. ['PressPoint']=9,
  2067. ['StartPressPoint']=9,
  2068. },
  2069. [13039]={
  2070. ['SkillId']=13039,
  2071. ['SkillType']=1,
  2072. ['MaxLv']=50,
  2073. ['SkillQuality']=0,
  2074. ['JobType']=3,
  2075. ['JobBranch']=2,
  2076. ['JobStage']=2,
  2077. ['OpenLevel']=40,
  2078. ['OpenNeedCost']={{113,1}},
  2079. ['Pos']=50,
  2080. ['order']=92,
  2081. ['SuperSkill']={{2,13229}},
  2082. ['beforeSkill']=0,
  2083. ['SkillBranch']=3,
  2084. ['PressPoint']=9,
  2085. ['StartPressPoint']=9,
  2086. },
  2087. [13040]={
  2088. ['SkillId']=13040,
  2089. ['SkillType']=1,
  2090. ['MaxLv']=50,
  2091. ['SkillQuality']=0,
  2092. ['JobType']=3,
  2093. ['JobBranch']=1,
  2094. ['JobStage']=3,
  2095. ['OpenLevel']=70,
  2096. ['OpenNeedCost']={{191,1}},
  2097. ['Pos']=80,
  2098. ['order']=86,
  2099. ['SuperSkill']={{1,13140}},
  2100. ['beforeSkill']=0,
  2101. ['SkillBranch']=3,
  2102. ['PressPoint']=21,
  2103. ['StartPressPoint']=21,
  2104. },
  2105. [13041]={
  2106. ['SkillId']=13041,
  2107. ['SkillType']=1,
  2108. ['MaxLv']=50,
  2109. ['SkillQuality']=0,
  2110. ['JobType']=3,
  2111. ['JobBranch']=1,
  2112. ['JobStage']=3,
  2113. ['OpenLevel']=75,
  2114. ['OpenNeedCost']={{191,1}},
  2115. ['Pos']=85,
  2116. ['order']=85,
  2117. ['SuperSkill']={{1,13141}},
  2118. ['beforeSkill']=0,
  2119. ['SkillBranch']=3,
  2120. ['PressPoint']=21,
  2121. ['StartPressPoint']=21,
  2122. },
  2123. [13042]={
  2124. ['SkillId']=13042,
  2125. ['SkillType']=1,
  2126. ['MaxLv']=50,
  2127. ['SkillQuality']=0,
  2128. ['JobType']=3,
  2129. ['JobBranch']=2,
  2130. ['JobStage']=3,
  2131. ['OpenLevel']=70,
  2132. ['OpenNeedCost']={{191,1}},
  2133. ['Pos']=80,
  2134. ['order']=86,
  2135. ['SuperSkill']={{2,13242}},
  2136. ['beforeSkill']=0,
  2137. ['SkillBranch']=3,
  2138. ['PressPoint']=21,
  2139. ['StartPressPoint']=21,
  2140. },
  2141. [13043]={
  2142. ['SkillId']=13043,
  2143. ['SkillType']=1,
  2144. ['MaxLv']=50,
  2145. ['SkillQuality']=0,
  2146. ['JobType']=3,
  2147. ['JobBranch']=2,
  2148. ['JobStage']=3,
  2149. ['OpenLevel']=75,
  2150. ['OpenNeedCost']={{191,1}},
  2151. ['Pos']=85,
  2152. ['order']=85,
  2153. ['SuperSkill']={{2,13243}},
  2154. ['beforeSkill']=0,
  2155. ['SkillBranch']=3,
  2156. ['PressPoint']=21,
  2157. ['StartPressPoint']=21,
  2158. },
  2159. [13122]={
  2160. ['SkillId']=13122,
  2161. ['SkillType']=1,
  2162. ['MaxLv']=50,
  2163. ['SkillQuality']=3,
  2164. ['JobType']=3,
  2165. ['JobBranch']=1,
  2166. ['JobStage']=3,
  2167. ['OpenLevel']=83,
  2168. ['OpenNeedCost']={{200,1}},
  2169. ['Pos']=55,
  2170. ['order']=91,
  2171. ['beforeSkill']=13022,
  2172. ['SkillBranch']=0,
  2173. ['PressPoint']=30,
  2174. ['StartPressPoint']=480,
  2175. },
  2176. [13123]={
  2177. ['SkillId']=13123,
  2178. ['SkillType']=1,
  2179. ['MaxLv']=50,
  2180. ['SkillQuality']=3,
  2181. ['JobType']=3,
  2182. ['JobBranch']=1,
  2183. ['JobStage']=3,
  2184. ['OpenLevel']=77,
  2185. ['OpenNeedCost']={{200,1}},
  2186. ['Pos']=13,
  2187. ['order']=97,
  2188. ['beforeSkill']=13023,
  2189. ['SkillBranch']=0,
  2190. ['PressPoint']=30,
  2191. ['StartPressPoint']=180,
  2192. },
  2193. [13124]={
  2194. ['SkillId']=13124,
  2195. ['SkillType']=1,
  2196. ['MaxLv']=50,
  2197. ['SkillQuality']=3,
  2198. ['JobType']=3,
  2199. ['JobBranch']=1,
  2200. ['JobStage']=3,
  2201. ['OpenLevel']=76,
  2202. ['OpenNeedCost']={{200,1}},
  2203. ['Pos']=10,
  2204. ['order']=98,
  2205. ['beforeSkill']=13024,
  2206. ['SkillBranch']=0,
  2207. ['PressPoint']=30,
  2208. ['StartPressPoint']=180,
  2209. },
  2210. [13125]={
  2211. ['SkillId']=13125,
  2212. ['SkillType']=1,
  2213. ['MaxLv']=50,
  2214. ['SkillQuality']=3,
  2215. ['JobType']=3,
  2216. ['JobBranch']=1,
  2217. ['JobStage']=3,
  2218. ['OpenLevel']=81,
  2219. ['OpenNeedCost']={{200,1}},
  2220. ['Pos']=31,
  2221. ['order']=93,
  2222. ['beforeSkill']=13025,
  2223. ['SkillBranch']=0,
  2224. ['PressPoint']=30,
  2225. ['StartPressPoint']=180,
  2226. },
  2227. [13126]={
  2228. ['SkillId']=13126,
  2229. ['SkillType']=1,
  2230. ['MaxLv']=50,
  2231. ['SkillQuality']=3,
  2232. ['JobType']=3,
  2233. ['JobBranch']=1,
  2234. ['JobStage']=3,
  2235. ['OpenLevel']=79,
  2236. ['OpenNeedCost']={{200,1}},
  2237. ['Pos']=21,
  2238. ['order']=95,
  2239. ['beforeSkill']=13026,
  2240. ['SkillBranch']=0,
  2241. ['PressPoint']=30,
  2242. ['StartPressPoint']=180,
  2243. },
  2244. [13127]={
  2245. ['SkillId']=13127,
  2246. ['SkillType']=1,
  2247. ['MaxLv']=50,
  2248. ['SkillQuality']=3,
  2249. ['JobType']=3,
  2250. ['JobBranch']=1,
  2251. ['JobStage']=3,
  2252. ['OpenLevel']=78,
  2253. ['OpenNeedCost']={{200,1}},
  2254. ['Pos']=16,
  2255. ['order']=96,
  2256. ['beforeSkill']=13027,
  2257. ['SkillBranch']=0,
  2258. ['PressPoint']=30,
  2259. ['StartPressPoint']=180,
  2260. },
  2261. [13128]={
  2262. ['SkillId']=13128,
  2263. ['SkillType']=1,
  2264. ['MaxLv']=50,
  2265. ['SkillQuality']=3,
  2266. ['JobType']=3,
  2267. ['JobBranch']=1,
  2268. ['JobStage']=3,
  2269. ['OpenLevel']=80,
  2270. ['OpenNeedCost']={{200,1}},
  2271. ['Pos']=26,
  2272. ['order']=94,
  2273. ['beforeSkill']=13028,
  2274. ['SkillBranch']=0,
  2275. ['PressPoint']=30,
  2276. ['StartPressPoint']=180,
  2277. },
  2278. [13129]={
  2279. ['SkillId']=13129,
  2280. ['SkillType']=1,
  2281. ['MaxLv']=50,
  2282. ['SkillQuality']=3,
  2283. ['JobType']=3,
  2284. ['JobBranch']=1,
  2285. ['JobStage']=3,
  2286. ['OpenLevel']=82,
  2287. ['OpenNeedCost']={{200,1}},
  2288. ['Pos']=50,
  2289. ['order']=92,
  2290. ['beforeSkill']=13029,
  2291. ['SkillBranch']=0,
  2292. ['PressPoint']=30,
  2293. ['StartPressPoint']=480,
  2294. },
  2295. [13130]={
  2296. ['SkillId']=13130,
  2297. ['SkillType']=1,
  2298. ['MaxLv']=50,
  2299. ['SkillQuality']=3,
  2300. ['JobType']=3,
  2301. ['JobBranch']=1,
  2302. ['JobStage']=3,
  2303. ['OpenLevel']=84,
  2304. ['OpenNeedCost']={{200,1}},
  2305. ['Pos']=60,
  2306. ['order']=90,
  2307. ['beforeSkill']=13030,
  2308. ['SkillBranch']=0,
  2309. ['PressPoint']=30,
  2310. ['StartPressPoint']=480,
  2311. },
  2312. [13131]={
  2313. ['SkillId']=13131,
  2314. ['SkillType']=1,
  2315. ['MaxLv']=50,
  2316. ['SkillQuality']=3,
  2317. ['JobType']=3,
  2318. ['JobBranch']=1,
  2319. ['JobStage']=3,
  2320. ['OpenLevel']=87,
  2321. ['OpenNeedCost']={{200,1}},
  2322. ['Pos']=75,
  2323. ['order']=87,
  2324. ['beforeSkill']=13031,
  2325. ['SkillBranch']=0,
  2326. ['PressPoint']=30,
  2327. ['StartPressPoint']=480,
  2328. },
  2329. [13132]={
  2330. ['SkillId']=13132,
  2331. ['SkillType']=1,
  2332. ['MaxLv']=50,
  2333. ['SkillQuality']=3,
  2334. ['JobType']=3,
  2335. ['JobBranch']=1,
  2336. ['JobStage']=3,
  2337. ['OpenLevel']=85,
  2338. ['OpenNeedCost']={{200,1}},
  2339. ['Pos']=65,
  2340. ['order']=89,
  2341. ['beforeSkill']=13032,
  2342. ['SkillBranch']=0,
  2343. ['PressPoint']=30,
  2344. ['StartPressPoint']=480,
  2345. },
  2346. [13133]={
  2347. ['SkillId']=13133,
  2348. ['SkillType']=1,
  2349. ['MaxLv']=50,
  2350. ['SkillQuality']=3,
  2351. ['JobType']=3,
  2352. ['JobBranch']=1,
  2353. ['JobStage']=3,
  2354. ['OpenLevel']=86,
  2355. ['OpenNeedCost']={{200,1}},
  2356. ['Pos']=70,
  2357. ['order']=88,
  2358. ['beforeSkill']=13033,
  2359. ['SkillBranch']=0,
  2360. ['PressPoint']=30,
  2361. ['StartPressPoint']=480,
  2362. },
  2363. [13140]={
  2364. ['SkillId']=13140,
  2365. ['SkillType']=1,
  2366. ['MaxLv']=50,
  2367. ['SkillQuality']=3,
  2368. ['JobType']=3,
  2369. ['JobBranch']=1,
  2370. ['JobStage']=3,
  2371. ['OpenLevel']=90,
  2372. ['OpenNeedCost']={{200,1}},
  2373. ['Pos']=80,
  2374. ['order']=86,
  2375. ['beforeSkill']=13040,
  2376. ['SkillBranch']=0,
  2377. ['PressPoint']=30,
  2378. ['StartPressPoint']=1080,
  2379. },
  2380. [13141]={
  2381. ['SkillId']=13141,
  2382. ['SkillType']=1,
  2383. ['MaxLv']=50,
  2384. ['SkillQuality']=3,
  2385. ['JobType']=3,
  2386. ['JobBranch']=1,
  2387. ['JobStage']=3,
  2388. ['OpenLevel']=92,
  2389. ['OpenNeedCost']={{200,1}},
  2390. ['Pos']=85,
  2391. ['order']=85,
  2392. ['beforeSkill']=13041,
  2393. ['SkillBranch']=0,
  2394. ['PressPoint']=30,
  2395. ['StartPressPoint']=1080,
  2396. },
  2397. [13222]={
  2398. ['SkillId']=13222,
  2399. ['SkillType']=1,
  2400. ['MaxLv']=50,
  2401. ['SkillQuality']=3,
  2402. ['JobType']=3,
  2403. ['JobBranch']=2,
  2404. ['JobStage']=3,
  2405. ['OpenLevel']=83,
  2406. ['OpenNeedCost']={{200,1}},
  2407. ['Pos']=55,
  2408. ['order']=91,
  2409. ['beforeSkill']=13038,
  2410. ['SkillBranch']=0,
  2411. ['PressPoint']=30,
  2412. ['StartPressPoint']=480,
  2413. },
  2414. [13223]={
  2415. ['SkillId']=13223,
  2416. ['SkillType']=1,
  2417. ['MaxLv']=50,
  2418. ['SkillQuality']=3,
  2419. ['JobType']=3,
  2420. ['JobBranch']=2,
  2421. ['JobStage']=3,
  2422. ['OpenLevel']=77,
  2423. ['OpenNeedCost']={{200,1}},
  2424. ['Pos']=13,
  2425. ['order']=97,
  2426. ['beforeSkill']=13023,
  2427. ['SkillBranch']=0,
  2428. ['PressPoint']=30,
  2429. ['StartPressPoint']=180,
  2430. },
  2431. [13224]={
  2432. ['SkillId']=13224,
  2433. ['SkillType']=1,
  2434. ['MaxLv']=50,
  2435. ['SkillQuality']=3,
  2436. ['JobType']=3,
  2437. ['JobBranch']=2,
  2438. ['JobStage']=3,
  2439. ['OpenLevel']=76,
  2440. ['OpenNeedCost']={{200,1}},
  2441. ['Pos']=10,
  2442. ['order']=98,
  2443. ['beforeSkill']=13024,
  2444. ['SkillBranch']=0,
  2445. ['PressPoint']=30,
  2446. ['StartPressPoint']=180,
  2447. },
  2448. [13225]={
  2449. ['SkillId']=13225,
  2450. ['SkillType']=1,
  2451. ['MaxLv']=50,
  2452. ['SkillQuality']=3,
  2453. ['JobType']=3,
  2454. ['JobBranch']=2,
  2455. ['JobStage']=3,
  2456. ['OpenLevel']=81,
  2457. ['OpenNeedCost']={{200,1}},
  2458. ['Pos']=31,
  2459. ['order']=93,
  2460. ['beforeSkill']=13025,
  2461. ['SkillBranch']=0,
  2462. ['PressPoint']=30,
  2463. ['StartPressPoint']=180,
  2464. },
  2465. [13226]={
  2466. ['SkillId']=13226,
  2467. ['SkillType']=1,
  2468. ['MaxLv']=50,
  2469. ['SkillQuality']=3,
  2470. ['JobType']=3,
  2471. ['JobBranch']=2,
  2472. ['JobStage']=3,
  2473. ['OpenLevel']=79,
  2474. ['OpenNeedCost']={{200,1}},
  2475. ['Pos']=21,
  2476. ['order']=95,
  2477. ['beforeSkill']=13026,
  2478. ['SkillBranch']=0,
  2479. ['PressPoint']=30,
  2480. ['StartPressPoint']=180,
  2481. },
  2482. [13227]={
  2483. ['SkillId']=13227,
  2484. ['SkillType']=1,
  2485. ['MaxLv']=50,
  2486. ['SkillQuality']=3,
  2487. ['JobType']=3,
  2488. ['JobBranch']=2,
  2489. ['JobStage']=3,
  2490. ['OpenLevel']=78,
  2491. ['OpenNeedCost']={{200,1}},
  2492. ['Pos']=16,
  2493. ['order']=96,
  2494. ['beforeSkill']=13027,
  2495. ['SkillBranch']=0,
  2496. ['PressPoint']=30,
  2497. ['StartPressPoint']=180,
  2498. },
  2499. [13228]={
  2500. ['SkillId']=13228,
  2501. ['SkillType']=1,
  2502. ['MaxLv']=50,
  2503. ['SkillQuality']=3,
  2504. ['JobType']=3,
  2505. ['JobBranch']=2,
  2506. ['JobStage']=3,
  2507. ['OpenLevel']=80,
  2508. ['OpenNeedCost']={{200,1}},
  2509. ['Pos']=26,
  2510. ['order']=94,
  2511. ['beforeSkill']=13028,
  2512. ['SkillBranch']=0,
  2513. ['PressPoint']=30,
  2514. ['StartPressPoint']=180,
  2515. },
  2516. [13229]={
  2517. ['SkillId']=13229,
  2518. ['SkillType']=1,
  2519. ['MaxLv']=50,
  2520. ['SkillQuality']=3,
  2521. ['JobType']=3,
  2522. ['JobBranch']=2,
  2523. ['JobStage']=3,
  2524. ['OpenLevel']=82,
  2525. ['OpenNeedCost']={{200,1}},
  2526. ['Pos']=50,
  2527. ['order']=92,
  2528. ['beforeSkill']=13039,
  2529. ['SkillBranch']=0,
  2530. ['PressPoint']=30,
  2531. ['StartPressPoint']=480,
  2532. },
  2533. [13234]={
  2534. ['SkillId']=13234,
  2535. ['SkillType']=1,
  2536. ['MaxLv']=50,
  2537. ['SkillQuality']=3,
  2538. ['JobType']=3,
  2539. ['JobBranch']=2,
  2540. ['JobStage']=3,
  2541. ['OpenLevel']=84,
  2542. ['OpenNeedCost']={{200,1}},
  2543. ['Pos']=60,
  2544. ['order']=90,
  2545. ['beforeSkill']=13034,
  2546. ['SkillBranch']=0,
  2547. ['PressPoint']=30,
  2548. ['StartPressPoint']=480,
  2549. },
  2550. [13235]={
  2551. ['SkillId']=13235,
  2552. ['SkillType']=1,
  2553. ['MaxLv']=50,
  2554. ['SkillQuality']=3,
  2555. ['JobType']=3,
  2556. ['JobBranch']=2,
  2557. ['JobStage']=3,
  2558. ['OpenLevel']=86,
  2559. ['OpenNeedCost']={{200,1}},
  2560. ['Pos']=70,
  2561. ['order']=88,
  2562. ['beforeSkill']=13035,
  2563. ['SkillBranch']=0,
  2564. ['PressPoint']=30,
  2565. ['StartPressPoint']=480,
  2566. },
  2567. [13236]={
  2568. ['SkillId']=13236,
  2569. ['SkillType']=1,
  2570. ['MaxLv']=50,
  2571. ['SkillQuality']=3,
  2572. ['JobType']=3,
  2573. ['JobBranch']=2,
  2574. ['JobStage']=3,
  2575. ['OpenLevel']=85,
  2576. ['OpenNeedCost']={{200,1}},
  2577. ['Pos']=65,
  2578. ['order']=89,
  2579. ['beforeSkill']=13036,
  2580. ['SkillBranch']=0,
  2581. ['PressPoint']=30,
  2582. ['StartPressPoint']=480,
  2583. },
  2584. [13237]={
  2585. ['SkillId']=13237,
  2586. ['SkillType']=1,
  2587. ['MaxLv']=50,
  2588. ['SkillQuality']=3,
  2589. ['JobType']=3,
  2590. ['JobBranch']=2,
  2591. ['JobStage']=3,
  2592. ['OpenLevel']=87,
  2593. ['OpenNeedCost']={{200,1}},
  2594. ['Pos']=75,
  2595. ['order']=87,
  2596. ['beforeSkill']=13037,
  2597. ['SkillBranch']=0,
  2598. ['PressPoint']=30,
  2599. ['StartPressPoint']=480,
  2600. },
  2601. [13242]={
  2602. ['SkillId']=13242,
  2603. ['SkillType']=1,
  2604. ['MaxLv']=50,
  2605. ['SkillQuality']=3,
  2606. ['JobType']=3,
  2607. ['JobBranch']=2,
  2608. ['JobStage']=3,
  2609. ['OpenLevel']=90,
  2610. ['OpenNeedCost']={{200,1}},
  2611. ['Pos']=80,
  2612. ['order']=86,
  2613. ['beforeSkill']=13042,
  2614. ['SkillBranch']=0,
  2615. ['PressPoint']=30,
  2616. ['StartPressPoint']=1080,
  2617. },
  2618. [13243]={
  2619. ['SkillId']=13243,
  2620. ['SkillType']=1,
  2621. ['MaxLv']=50,
  2622. ['SkillQuality']=3,
  2623. ['JobType']=3,
  2624. ['JobBranch']=2,
  2625. ['JobStage']=3,
  2626. ['OpenLevel']=92,
  2627. ['OpenNeedCost']={{200,1}},
  2628. ['Pos']=85,
  2629. ['order']=85,
  2630. ['beforeSkill']=13043,
  2631. ['SkillBranch']=0,
  2632. ['PressPoint']=30,
  2633. ['StartPressPoint']=1080,
  2634. },
  2635. [14022]={
  2636. ['SkillId']=14022,
  2637. ['SkillType']=1,
  2638. ['MaxLv']=50,
  2639. ['SkillQuality']=0,
  2640. ['JobType']=2,
  2641. ['JobBranch']=0,
  2642. ['JobStage']=1,
  2643. ['OpenLevel']=21,
  2644. ['OpenNeedCost']={{113,1}},
  2645. ['Pos']=21,
  2646. ['order']=95,
  2647. ['SuperSkill']={{1,14122},{2,14222}},
  2648. ['beforeSkill']=0,
  2649. ['SkillBranch']=3,
  2650. ['PressPoint']=3,
  2651. ['StartPressPoint']=3,
  2652. },
  2653. [14023]={
  2654. ['SkillId']=14023,
  2655. ['SkillType']=1,
  2656. ['MaxLv']=50,
  2657. ['SkillQuality']=0,
  2658. ['JobType']=2,
  2659. ['JobBranch']=0,
  2660. ['JobStage']=1,
  2661. ['OpenLevel']=10,
  2662. ['OpenNeedCost']={{1,1000},},
  2663. ['Pos']=10,
  2664. ['order']=98,
  2665. ['SuperSkill']={{1,14123},{2,14223}},
  2666. ['beforeSkill']=0,
  2667. ['SkillBranch']=3,
  2668. ['PressPoint']=3,
  2669. ['StartPressPoint']=3,
  2670. },
  2671. [14024]={
  2672. ['SkillId']=14024,
  2673. ['SkillType']=1,
  2674. ['MaxLv']=50,
  2675. ['SkillQuality']=0,
  2676. ['JobType']=2,
  2677. ['JobBranch']=0,
  2678. ['JobStage']=1,
  2679. ['OpenLevel']=26,
  2680. ['OpenNeedCost']={{113,1}},
  2681. ['Pos']=26,
  2682. ['order']=94,
  2683. ['SuperSkill']={{1,14124},{2,14224}},
  2684. ['beforeSkill']=0,
  2685. ['SkillBranch']=3,
  2686. ['PressPoint']=3,
  2687. ['StartPressPoint']=3,
  2688. },
  2689. [14025]={
  2690. ['SkillId']=14025,
  2691. ['SkillType']=1,
  2692. ['MaxLv']=50,
  2693. ['SkillQuality']=0,
  2694. ['JobType']=2,
  2695. ['JobBranch']=0,
  2696. ['JobStage']=1,
  2697. ['OpenLevel']=16,
  2698. ['OpenNeedCost']={{1,3000},},
  2699. ['Pos']=16,
  2700. ['order']=96,
  2701. ['SuperSkill']={{1,14125},{2,14225}},
  2702. ['beforeSkill']=0,
  2703. ['SkillBranch']=3,
  2704. ['PressPoint']=3,
  2705. ['StartPressPoint']=3,
  2706. },
  2707. [14026]={
  2708. ['SkillId']=14026,
  2709. ['SkillType']=1,
  2710. ['MaxLv']=50,
  2711. ['SkillQuality']=0,
  2712. ['JobType']=2,
  2713. ['JobBranch']=0,
  2714. ['JobStage']=1,
  2715. ['OpenLevel']=13,
  2716. ['OpenNeedCost']={{1,2000},},
  2717. ['Pos']=13,
  2718. ['order']=97,
  2719. ['SuperSkill']={{1,14126},{2,14226}},
  2720. ['beforeSkill']=0,
  2721. ['SkillBranch']=3,
  2722. ['PressPoint']=3,
  2723. ['StartPressPoint']=3,
  2724. },
  2725. [14027]={
  2726. ['SkillId']=14027,
  2727. ['SkillType']=1,
  2728. ['MaxLv']=50,
  2729. ['SkillQuality']=0,
  2730. ['JobType']=2,
  2731. ['JobBranch']=0,
  2732. ['JobStage']=1,
  2733. ['OpenLevel']=31,
  2734. ['OpenNeedCost']={{113,1}},
  2735. ['Pos']=31,
  2736. ['order']=93,
  2737. ['SuperSkill']={{1,14127},{2,14227}},
  2738. ['beforeSkill']=0,
  2739. ['SkillBranch']=3,
  2740. ['PressPoint']=3,
  2741. ['StartPressPoint']=3,
  2742. },
  2743. [14028]={
  2744. ['SkillId']=14028,
  2745. ['SkillType']=1,
  2746. ['MaxLv']=50,
  2747. ['SkillQuality']=0,
  2748. ['JobType']=2,
  2749. ['JobBranch']=1,
  2750. ['JobStage']=2,
  2751. ['OpenLevel']=45,
  2752. ['OpenNeedCost']={{113,1}},
  2753. ['Pos']=55,
  2754. ['order']=91,
  2755. ['SuperSkill']={{1,14128}},
  2756. ['beforeSkill']=0,
  2757. ['SkillBranch']=3,
  2758. ['PressPoint']=9,
  2759. ['StartPressPoint']=9,
  2760. },
  2761. [14029]={
  2762. ['SkillId']=14029,
  2763. ['SkillType']=1,
  2764. ['MaxLv']=50,
  2765. ['SkillQuality']=0,
  2766. ['JobType']=2,
  2767. ['JobBranch']=1,
  2768. ['JobStage']=2,
  2769. ['OpenLevel']=40,
  2770. ['OpenNeedCost']={{113,1}},
  2771. ['Pos']=50,
  2772. ['order']=92,
  2773. ['SuperSkill']={{1,14129}},
  2774. ['beforeSkill']=0,
  2775. ['SkillBranch']=3,
  2776. ['PressPoint']=9,
  2777. ['StartPressPoint']=9,
  2778. },
  2779. [14030]={
  2780. ['SkillId']=14030,
  2781. ['SkillType']=1,
  2782. ['MaxLv']=50,
  2783. ['SkillQuality']=0,
  2784. ['JobType']=2,
  2785. ['JobBranch']=1,
  2786. ['JobStage']=2,
  2787. ['OpenLevel']=50,
  2788. ['OpenNeedCost']={{113,1}},
  2789. ['Pos']=60,
  2790. ['order']=90,
  2791. ['SuperSkill']={{1,14130}},
  2792. ['beforeSkill']=0,
  2793. ['SkillBranch']=3,
  2794. ['PressPoint']=9,
  2795. ['StartPressPoint']=9,
  2796. },
  2797. [14031]={
  2798. ['SkillId']=14031,
  2799. ['SkillType']=1,
  2800. ['MaxLv']=50,
  2801. ['SkillQuality']=0,
  2802. ['JobType']=2,
  2803. ['JobBranch']=1,
  2804. ['JobStage']=2,
  2805. ['OpenLevel']=65,
  2806. ['OpenNeedCost']={{114,1}},
  2807. ['Pos']=75,
  2808. ['order']=87,
  2809. ['SuperSkill']={{1,14131}},
  2810. ['beforeSkill']=0,
  2811. ['SkillBranch']=3,
  2812. ['PressPoint']=9,
  2813. ['StartPressPoint']=9,
  2814. },
  2815. [14032]={
  2816. ['SkillId']=14032,
  2817. ['SkillType']=1,
  2818. ['MaxLv']=50,
  2819. ['SkillQuality']=0,
  2820. ['JobType']=2,
  2821. ['JobBranch']=1,
  2822. ['JobStage']=2,
  2823. ['OpenLevel']=55,
  2824. ['OpenNeedCost']={{114,1}},
  2825. ['Pos']=65,
  2826. ['order']=89,
  2827. ['SuperSkill']={{1,14132}},
  2828. ['beforeSkill']=0,
  2829. ['SkillBranch']=3,
  2830. ['PressPoint']=9,
  2831. ['StartPressPoint']=9,
  2832. },
  2833. [14033]={
  2834. ['SkillId']=14033,
  2835. ['SkillType']=1,
  2836. ['MaxLv']=50,
  2837. ['SkillQuality']=0,
  2838. ['JobType']=2,
  2839. ['JobBranch']=1,
  2840. ['JobStage']=2,
  2841. ['OpenLevel']=60,
  2842. ['OpenNeedCost']={{114,1}},
  2843. ['Pos']=70,
  2844. ['order']=88,
  2845. ['SuperSkill']={{1,14133}},
  2846. ['beforeSkill']=0,
  2847. ['SkillBranch']=3,
  2848. ['PressPoint']=9,
  2849. ['StartPressPoint']=9,
  2850. },
  2851. [14034]={
  2852. ['SkillId']=14034,
  2853. ['SkillType']=1,
  2854. ['MaxLv']=50,
  2855. ['SkillQuality']=0,
  2856. ['JobType']=2,
  2857. ['JobBranch']=2,
  2858. ['JobStage']=2,
  2859. ['OpenLevel']=60,
  2860. ['OpenNeedCost']={{114,1}},
  2861. ['Pos']=70,
  2862. ['order']=88,
  2863. ['SuperSkill']={{2,14234}},
  2864. ['beforeSkill']=0,
  2865. ['SkillBranch']=3,
  2866. ['PressPoint']=9,
  2867. ['StartPressPoint']=9,
  2868. },
  2869. [14035]={
  2870. ['SkillId']=14035,
  2871. ['SkillType']=1,
  2872. ['MaxLv']=50,
  2873. ['SkillQuality']=0,
  2874. ['JobType']=2,
  2875. ['JobBranch']=2,
  2876. ['JobStage']=2,
  2877. ['OpenLevel']=50,
  2878. ['OpenNeedCost']={{113,1}},
  2879. ['Pos']=60,
  2880. ['order']=90,
  2881. ['SuperSkill']={{2,14235}},
  2882. ['beforeSkill']=0,
  2883. ['SkillBranch']=3,
  2884. ['PressPoint']=9,
  2885. ['StartPressPoint']=9,
  2886. },
  2887. [14036]={
  2888. ['SkillId']=14036,
  2889. ['SkillType']=1,
  2890. ['MaxLv']=50,
  2891. ['SkillQuality']=0,
  2892. ['JobType']=2,
  2893. ['JobBranch']=2,
  2894. ['JobStage']=2,
  2895. ['OpenLevel']=55,
  2896. ['OpenNeedCost']={{114,1}},
  2897. ['Pos']=65,
  2898. ['order']=89,
  2899. ['SuperSkill']={{2,14236}},
  2900. ['beforeSkill']=0,
  2901. ['SkillBranch']=3,
  2902. ['PressPoint']=9,
  2903. ['StartPressPoint']=9,
  2904. },
  2905. [14037]={
  2906. ['SkillId']=14037,
  2907. ['SkillType']=1,
  2908. ['MaxLv']=50,
  2909. ['SkillQuality']=0,
  2910. ['JobType']=2,
  2911. ['JobBranch']=2,
  2912. ['JobStage']=2,
  2913. ['OpenLevel']=65,
  2914. ['OpenNeedCost']={{114,1}},
  2915. ['Pos']=75,
  2916. ['order']=87,
  2917. ['SuperSkill']={{2,14237}},
  2918. ['beforeSkill']=0,
  2919. ['SkillBranch']=3,
  2920. ['PressPoint']=9,
  2921. ['StartPressPoint']=9,
  2922. },
  2923. [14038]={
  2924. ['SkillId']=14038,
  2925. ['SkillType']=1,
  2926. ['MaxLv']=50,
  2927. ['SkillQuality']=0,
  2928. ['JobType']=2,
  2929. ['JobBranch']=2,
  2930. ['JobStage']=2,
  2931. ['OpenLevel']=45,
  2932. ['OpenNeedCost']={{113,1}},
  2933. ['Pos']=55,
  2934. ['order']=91,
  2935. ['SuperSkill']={{2,14228}},
  2936. ['beforeSkill']=0,
  2937. ['SkillBranch']=3,
  2938. ['PressPoint']=9,
  2939. ['StartPressPoint']=9,
  2940. },
  2941. [14039]={
  2942. ['SkillId']=14039,
  2943. ['SkillType']=1,
  2944. ['MaxLv']=50,
  2945. ['SkillQuality']=0,
  2946. ['JobType']=2,
  2947. ['JobBranch']=2,
  2948. ['JobStage']=2,
  2949. ['OpenLevel']=40,
  2950. ['OpenNeedCost']={{113,1}},
  2951. ['Pos']=50,
  2952. ['order']=92,
  2953. ['SuperSkill']={{2,14229}},
  2954. ['beforeSkill']=0,
  2955. ['SkillBranch']=3,
  2956. ['PressPoint']=9,
  2957. ['StartPressPoint']=9,
  2958. },
  2959. [14040]={
  2960. ['SkillId']=14040,
  2961. ['SkillType']=1,
  2962. ['MaxLv']=50,
  2963. ['SkillQuality']=0,
  2964. ['JobType']=2,
  2965. ['JobBranch']=1,
  2966. ['JobStage']=3,
  2967. ['OpenLevel']=70,
  2968. ['OpenNeedCost']={{191,1}},
  2969. ['Pos']=80,
  2970. ['order']=86,
  2971. ['SuperSkill']={{1,14140}},
  2972. ['beforeSkill']=0,
  2973. ['SkillBranch']=3,
  2974. ['PressPoint']=21,
  2975. ['StartPressPoint']=21,
  2976. },
  2977. [14041]={
  2978. ['SkillId']=14041,
  2979. ['SkillType']=1,
  2980. ['MaxLv']=50,
  2981. ['SkillQuality']=0,
  2982. ['JobType']=2,
  2983. ['JobBranch']=1,
  2984. ['JobStage']=3,
  2985. ['OpenLevel']=75,
  2986. ['OpenNeedCost']={{191,1}},
  2987. ['Pos']=85,
  2988. ['order']=85,
  2989. ['SuperSkill']={{1,14141}},
  2990. ['beforeSkill']=0,
  2991. ['SkillBranch']=3,
  2992. ['PressPoint']=21,
  2993. ['StartPressPoint']=21,
  2994. },
  2995. [14042]={
  2996. ['SkillId']=14042,
  2997. ['SkillType']=1,
  2998. ['MaxLv']=50,
  2999. ['SkillQuality']=0,
  3000. ['JobType']=2,
  3001. ['JobBranch']=2,
  3002. ['JobStage']=3,
  3003. ['OpenLevel']=70,
  3004. ['OpenNeedCost']={{191,1}},
  3005. ['Pos']=80,
  3006. ['order']=86,
  3007. ['SuperSkill']={{2,14242}},
  3008. ['beforeSkill']=0,
  3009. ['SkillBranch']=3,
  3010. ['PressPoint']=21,
  3011. ['StartPressPoint']=21,
  3012. },
  3013. [14043]={
  3014. ['SkillId']=14043,
  3015. ['SkillType']=1,
  3016. ['MaxLv']=50,
  3017. ['SkillQuality']=0,
  3018. ['JobType']=2,
  3019. ['JobBranch']=2,
  3020. ['JobStage']=3,
  3021. ['OpenLevel']=75,
  3022. ['OpenNeedCost']={{191,1}},
  3023. ['Pos']=85,
  3024. ['order']=85,
  3025. ['SuperSkill']={{2,14243}},
  3026. ['beforeSkill']=0,
  3027. ['SkillBranch']=3,
  3028. ['PressPoint']=21,
  3029. ['StartPressPoint']=21,
  3030. },
  3031. [14122]={
  3032. ['SkillId']=14122,
  3033. ['SkillType']=1,
  3034. ['MaxLv']=50,
  3035. ['SkillQuality']=3,
  3036. ['JobType']=2,
  3037. ['JobBranch']=1,
  3038. ['JobStage']=3,
  3039. ['OpenLevel']=79,
  3040. ['OpenNeedCost']={{200,1}},
  3041. ['Pos']=21,
  3042. ['order']=95,
  3043. ['beforeSkill']=14022,
  3044. ['SkillBranch']=0,
  3045. ['PressPoint']=30,
  3046. ['StartPressPoint']=180,
  3047. },
  3048. [14123]={
  3049. ['SkillId']=14123,
  3050. ['SkillType']=1,
  3051. ['MaxLv']=50,
  3052. ['SkillQuality']=3,
  3053. ['JobType']=2,
  3054. ['JobBranch']=1,
  3055. ['JobStage']=3,
  3056. ['OpenLevel']=76,
  3057. ['OpenNeedCost']={{200,1}},
  3058. ['Pos']=10,
  3059. ['order']=98,
  3060. ['beforeSkill']=14023,
  3061. ['SkillBranch']=0,
  3062. ['PressPoint']=30,
  3063. ['StartPressPoint']=180,
  3064. },
  3065. [14124]={
  3066. ['SkillId']=14124,
  3067. ['SkillType']=1,
  3068. ['MaxLv']=50,
  3069. ['SkillQuality']=3,
  3070. ['JobType']=2,
  3071. ['JobBranch']=1,
  3072. ['JobStage']=3,
  3073. ['OpenLevel']=80,
  3074. ['OpenNeedCost']={{200,1}},
  3075. ['Pos']=26,
  3076. ['order']=94,
  3077. ['beforeSkill']=14024,
  3078. ['SkillBranch']=0,
  3079. ['PressPoint']=30,
  3080. ['StartPressPoint']=180,
  3081. },
  3082. [14125]={
  3083. ['SkillId']=14125,
  3084. ['SkillType']=1,
  3085. ['MaxLv']=50,
  3086. ['SkillQuality']=3,
  3087. ['JobType']=2,
  3088. ['JobBranch']=1,
  3089. ['JobStage']=3,
  3090. ['OpenLevel']=78,
  3091. ['OpenNeedCost']={{200,1}},
  3092. ['Pos']=16,
  3093. ['order']=96,
  3094. ['beforeSkill']=14025,
  3095. ['SkillBranch']=0,
  3096. ['PressPoint']=30,
  3097. ['StartPressPoint']=180,
  3098. },
  3099. [14126]={
  3100. ['SkillId']=14126,
  3101. ['SkillType']=1,
  3102. ['MaxLv']=50,
  3103. ['SkillQuality']=3,
  3104. ['JobType']=2,
  3105. ['JobBranch']=1,
  3106. ['JobStage']=3,
  3107. ['OpenLevel']=77,
  3108. ['OpenNeedCost']={{200,1}},
  3109. ['Pos']=13,
  3110. ['order']=97,
  3111. ['beforeSkill']=14026,
  3112. ['SkillBranch']=0,
  3113. ['PressPoint']=30,
  3114. ['StartPressPoint']=180,
  3115. },
  3116. [14127]={
  3117. ['SkillId']=14127,
  3118. ['SkillType']=1,
  3119. ['MaxLv']=50,
  3120. ['SkillQuality']=3,
  3121. ['JobType']=2,
  3122. ['JobBranch']=1,
  3123. ['JobStage']=3,
  3124. ['OpenLevel']=81,
  3125. ['OpenNeedCost']={{200,1}},
  3126. ['Pos']=31,
  3127. ['order']=93,
  3128. ['beforeSkill']=14027,
  3129. ['SkillBranch']=0,
  3130. ['PressPoint']=30,
  3131. ['StartPressPoint']=180,
  3132. },
  3133. [14128]={
  3134. ['SkillId']=14128,
  3135. ['SkillType']=1,
  3136. ['MaxLv']=50,
  3137. ['SkillQuality']=3,
  3138. ['JobType']=2,
  3139. ['JobBranch']=1,
  3140. ['JobStage']=3,
  3141. ['OpenLevel']=83,
  3142. ['OpenNeedCost']={{200,1}},
  3143. ['Pos']=55,
  3144. ['order']=91,
  3145. ['beforeSkill']=14028,
  3146. ['SkillBranch']=0,
  3147. ['PressPoint']=30,
  3148. ['StartPressPoint']=480,
  3149. },
  3150. [14129]={
  3151. ['SkillId']=14129,
  3152. ['SkillType']=1,
  3153. ['MaxLv']=50,
  3154. ['SkillQuality']=3,
  3155. ['JobType']=2,
  3156. ['JobBranch']=1,
  3157. ['JobStage']=3,
  3158. ['OpenLevel']=82,
  3159. ['OpenNeedCost']={{200,1}},
  3160. ['Pos']=50,
  3161. ['order']=92,
  3162. ['beforeSkill']=14029,
  3163. ['SkillBranch']=0,
  3164. ['PressPoint']=30,
  3165. ['StartPressPoint']=480,
  3166. },
  3167. [14130]={
  3168. ['SkillId']=14130,
  3169. ['SkillType']=1,
  3170. ['MaxLv']=50,
  3171. ['SkillQuality']=3,
  3172. ['JobType']=2,
  3173. ['JobBranch']=1,
  3174. ['JobStage']=3,
  3175. ['OpenLevel']=84,
  3176. ['OpenNeedCost']={{200,1}},
  3177. ['Pos']=60,
  3178. ['order']=90,
  3179. ['beforeSkill']=14030,
  3180. ['SkillBranch']=0,
  3181. ['PressPoint']=30,
  3182. ['StartPressPoint']=480,
  3183. },
  3184. [14131]={
  3185. ['SkillId']=14131,
  3186. ['SkillType']=1,
  3187. ['MaxLv']=50,
  3188. ['SkillQuality']=3,
  3189. ['JobType']=2,
  3190. ['JobBranch']=1,
  3191. ['JobStage']=3,
  3192. ['OpenLevel']=87,
  3193. ['OpenNeedCost']={{200,1}},
  3194. ['Pos']=75,
  3195. ['order']=87,
  3196. ['beforeSkill']=14031,
  3197. ['SkillBranch']=0,
  3198. ['PressPoint']=30,
  3199. ['StartPressPoint']=480,
  3200. },
  3201. [14132]={
  3202. ['SkillId']=14132,
  3203. ['SkillType']=1,
  3204. ['MaxLv']=50,
  3205. ['SkillQuality']=3,
  3206. ['JobType']=2,
  3207. ['JobBranch']=1,
  3208. ['JobStage']=3,
  3209. ['OpenLevel']=85,
  3210. ['OpenNeedCost']={{200,1}},
  3211. ['Pos']=65,
  3212. ['order']=89,
  3213. ['beforeSkill']=14032,
  3214. ['SkillBranch']=0,
  3215. ['PressPoint']=30,
  3216. ['StartPressPoint']=480,
  3217. },
  3218. [14133]={
  3219. ['SkillId']=14133,
  3220. ['SkillType']=1,
  3221. ['MaxLv']=50,
  3222. ['SkillQuality']=3,
  3223. ['JobType']=2,
  3224. ['JobBranch']=1,
  3225. ['JobStage']=3,
  3226. ['OpenLevel']=86,
  3227. ['OpenNeedCost']={{200,1}},
  3228. ['Pos']=70,
  3229. ['order']=88,
  3230. ['beforeSkill']=14033,
  3231. ['SkillBranch']=0,
  3232. ['PressPoint']=30,
  3233. ['StartPressPoint']=480,
  3234. },
  3235. [14140]={
  3236. ['SkillId']=14140,
  3237. ['SkillType']=1,
  3238. ['MaxLv']=50,
  3239. ['SkillQuality']=3,
  3240. ['JobType']=2,
  3241. ['JobBranch']=1,
  3242. ['JobStage']=3,
  3243. ['OpenLevel']=90,
  3244. ['OpenNeedCost']={{200,1}},
  3245. ['Pos']=80,
  3246. ['order']=86,
  3247. ['beforeSkill']=14040,
  3248. ['SkillBranch']=0,
  3249. ['PressPoint']=30,
  3250. ['StartPressPoint']=1080,
  3251. },
  3252. [14141]={
  3253. ['SkillId']=14141,
  3254. ['SkillType']=1,
  3255. ['MaxLv']=50,
  3256. ['SkillQuality']=3,
  3257. ['JobType']=2,
  3258. ['JobBranch']=1,
  3259. ['JobStage']=3,
  3260. ['OpenLevel']=92,
  3261. ['OpenNeedCost']={{200,1}},
  3262. ['Pos']=85,
  3263. ['order']=85,
  3264. ['beforeSkill']=14041,
  3265. ['SkillBranch']=0,
  3266. ['PressPoint']=30,
  3267. ['StartPressPoint']=1080,
  3268. },
  3269. [14222]={
  3270. ['SkillId']=14222,
  3271. ['SkillType']=1,
  3272. ['MaxLv']=50,
  3273. ['SkillQuality']=3,
  3274. ['JobType']=2,
  3275. ['JobBranch']=2,
  3276. ['JobStage']=3,
  3277. ['OpenLevel']=79,
  3278. ['OpenNeedCost']={{200,1}},
  3279. ['Pos']=21,
  3280. ['order']=95,
  3281. ['beforeSkill']=14022,
  3282. ['SkillBranch']=0,
  3283. ['PressPoint']=30,
  3284. ['StartPressPoint']=180,
  3285. },
  3286. [14223]={
  3287. ['SkillId']=14223,
  3288. ['SkillType']=1,
  3289. ['MaxLv']=50,
  3290. ['SkillQuality']=3,
  3291. ['JobType']=2,
  3292. ['JobBranch']=2,
  3293. ['JobStage']=3,
  3294. ['OpenLevel']=76,
  3295. ['OpenNeedCost']={{200,1}},
  3296. ['Pos']=10,
  3297. ['order']=98,
  3298. ['beforeSkill']=14023,
  3299. ['SkillBranch']=0,
  3300. ['PressPoint']=30,
  3301. ['StartPressPoint']=180,
  3302. },
  3303. [14224]={
  3304. ['SkillId']=14224,
  3305. ['SkillType']=1,
  3306. ['MaxLv']=50,
  3307. ['SkillQuality']=3,
  3308. ['JobType']=2,
  3309. ['JobBranch']=2,
  3310. ['JobStage']=3,
  3311. ['OpenLevel']=80,
  3312. ['OpenNeedCost']={{200,1}},
  3313. ['Pos']=26,
  3314. ['order']=94,
  3315. ['beforeSkill']=14024,
  3316. ['SkillBranch']=0,
  3317. ['PressPoint']=30,
  3318. ['StartPressPoint']=180,
  3319. },
  3320. [14225]={
  3321. ['SkillId']=14225,
  3322. ['SkillType']=1,
  3323. ['MaxLv']=50,
  3324. ['SkillQuality']=3,
  3325. ['JobType']=2,
  3326. ['JobBranch']=2,
  3327. ['JobStage']=3,
  3328. ['OpenLevel']=78,
  3329. ['OpenNeedCost']={{200,1}},
  3330. ['Pos']=16,
  3331. ['order']=96,
  3332. ['beforeSkill']=14025,
  3333. ['SkillBranch']=0,
  3334. ['PressPoint']=30,
  3335. ['StartPressPoint']=180,
  3336. },
  3337. [14226]={
  3338. ['SkillId']=14226,
  3339. ['SkillType']=1,
  3340. ['MaxLv']=50,
  3341. ['SkillQuality']=3,
  3342. ['JobType']=2,
  3343. ['JobBranch']=2,
  3344. ['JobStage']=3,
  3345. ['OpenLevel']=77,
  3346. ['OpenNeedCost']={{200,1}},
  3347. ['Pos']=13,
  3348. ['order']=97,
  3349. ['beforeSkill']=14026,
  3350. ['SkillBranch']=0,
  3351. ['PressPoint']=30,
  3352. ['StartPressPoint']=180,
  3353. },
  3354. [14227]={
  3355. ['SkillId']=14227,
  3356. ['SkillType']=1,
  3357. ['MaxLv']=50,
  3358. ['SkillQuality']=3,
  3359. ['JobType']=2,
  3360. ['JobBranch']=2,
  3361. ['JobStage']=3,
  3362. ['OpenLevel']=81,
  3363. ['OpenNeedCost']={{200,1}},
  3364. ['Pos']=31,
  3365. ['order']=93,
  3366. ['beforeSkill']=14027,
  3367. ['SkillBranch']=0,
  3368. ['PressPoint']=30,
  3369. ['StartPressPoint']=180,
  3370. },
  3371. [14228]={
  3372. ['SkillId']=14228,
  3373. ['SkillType']=1,
  3374. ['MaxLv']=50,
  3375. ['SkillQuality']=3,
  3376. ['JobType']=2,
  3377. ['JobBranch']=2,
  3378. ['JobStage']=3,
  3379. ['OpenLevel']=83,
  3380. ['OpenNeedCost']={{200,1}},
  3381. ['Pos']=55,
  3382. ['order']=91,
  3383. ['beforeSkill']=14038,
  3384. ['SkillBranch']=0,
  3385. ['PressPoint']=30,
  3386. ['StartPressPoint']=480,
  3387. },
  3388. [14229]={
  3389. ['SkillId']=14229,
  3390. ['SkillType']=1,
  3391. ['MaxLv']=50,
  3392. ['SkillQuality']=3,
  3393. ['JobType']=2,
  3394. ['JobBranch']=2,
  3395. ['JobStage']=3,
  3396. ['OpenLevel']=82,
  3397. ['OpenNeedCost']={{200,1}},
  3398. ['Pos']=50,
  3399. ['order']=92,
  3400. ['beforeSkill']=14039,
  3401. ['SkillBranch']=0,
  3402. ['PressPoint']=30,
  3403. ['StartPressPoint']=480,
  3404. },
  3405. [14234]={
  3406. ['SkillId']=14234,
  3407. ['SkillType']=1,
  3408. ['MaxLv']=50,
  3409. ['SkillQuality']=3,
  3410. ['JobType']=2,
  3411. ['JobBranch']=2,
  3412. ['JobStage']=3,
  3413. ['OpenLevel']=86,
  3414. ['OpenNeedCost']={{200,1}},
  3415. ['Pos']=70,
  3416. ['order']=88,
  3417. ['beforeSkill']=14034,
  3418. ['SkillBranch']=0,
  3419. ['PressPoint']=30,
  3420. ['StartPressPoint']=480,
  3421. },
  3422. [14235]={
  3423. ['SkillId']=14235,
  3424. ['SkillType']=1,
  3425. ['MaxLv']=50,
  3426. ['SkillQuality']=3,
  3427. ['JobType']=2,
  3428. ['JobBranch']=2,
  3429. ['JobStage']=3,
  3430. ['OpenLevel']=84,
  3431. ['OpenNeedCost']={{200,1}},
  3432. ['Pos']=60,
  3433. ['order']=90,
  3434. ['beforeSkill']=14035,
  3435. ['SkillBranch']=0,
  3436. ['PressPoint']=30,
  3437. ['StartPressPoint']=480,
  3438. },
  3439. [14236]={
  3440. ['SkillId']=14236,
  3441. ['SkillType']=1,
  3442. ['MaxLv']=50,
  3443. ['SkillQuality']=3,
  3444. ['JobType']=2,
  3445. ['JobBranch']=2,
  3446. ['JobStage']=3,
  3447. ['OpenLevel']=85,
  3448. ['OpenNeedCost']={{200,1}},
  3449. ['Pos']=65,
  3450. ['order']=89,
  3451. ['beforeSkill']=14036,
  3452. ['SkillBranch']=0,
  3453. ['PressPoint']=30,
  3454. ['StartPressPoint']=480,
  3455. },
  3456. [14237]={
  3457. ['SkillId']=14237,
  3458. ['SkillType']=1,
  3459. ['MaxLv']=50,
  3460. ['SkillQuality']=3,
  3461. ['JobType']=2,
  3462. ['JobBranch']=2,
  3463. ['JobStage']=3,
  3464. ['OpenLevel']=87,
  3465. ['OpenNeedCost']={{200,1}},
  3466. ['Pos']=75,
  3467. ['order']=87,
  3468. ['beforeSkill']=14037,
  3469. ['SkillBranch']=0,
  3470. ['PressPoint']=30,
  3471. ['StartPressPoint']=480,
  3472. },
  3473. [14242]={
  3474. ['SkillId']=14242,
  3475. ['SkillType']=1,
  3476. ['MaxLv']=50,
  3477. ['SkillQuality']=3,
  3478. ['JobType']=2,
  3479. ['JobBranch']=2,
  3480. ['JobStage']=3,
  3481. ['OpenLevel']=90,
  3482. ['OpenNeedCost']={{200,1}},
  3483. ['Pos']=80,
  3484. ['order']=86,
  3485. ['beforeSkill']=14042,
  3486. ['SkillBranch']=0,
  3487. ['PressPoint']=30,
  3488. ['StartPressPoint']=1080,
  3489. },
  3490. [14243]={
  3491. ['SkillId']=14243,
  3492. ['SkillType']=1,
  3493. ['MaxLv']=50,
  3494. ['SkillQuality']=3,
  3495. ['JobType']=2,
  3496. ['JobBranch']=2,
  3497. ['JobStage']=3,
  3498. ['OpenLevel']=92,
  3499. ['OpenNeedCost']={{200,1}},
  3500. ['Pos']=85,
  3501. ['order']=85,
  3502. ['beforeSkill']=14043,
  3503. ['SkillBranch']=0,
  3504. ['PressPoint']=30,
  3505. ['StartPressPoint']=1080,
  3506. },
  3507. [15022]={
  3508. ['SkillId']=15022,
  3509. ['SkillType']=1,
  3510. ['MaxLv']=50,
  3511. ['SkillQuality']=0,
  3512. ['JobType']=5,
  3513. ['JobBranch']=0,
  3514. ['JobStage']=1,
  3515. ['OpenLevel']=10,
  3516. ['OpenNeedCost']={{1,1000},},
  3517. ['Pos']=10,
  3518. ['order']=98,
  3519. ['SuperSkill']={{1,15122},{2,15222}},
  3520. ['beforeSkill']=0,
  3521. ['SkillBranch']=3,
  3522. ['PressPoint']=3,
  3523. ['StartPressPoint']=3,
  3524. },
  3525. [15023]={
  3526. ['SkillId']=15023,
  3527. ['SkillType']=1,
  3528. ['MaxLv']=50,
  3529. ['SkillQuality']=0,
  3530. ['JobType']=5,
  3531. ['JobBranch']=0,
  3532. ['JobStage']=1,
  3533. ['OpenLevel']=21,
  3534. ['OpenNeedCost']={{113,1}},
  3535. ['Pos']=21,
  3536. ['order']=95,
  3537. ['SuperSkill']={{1,15123},{2,15223}},
  3538. ['beforeSkill']=0,
  3539. ['SkillBranch']=3,
  3540. ['PressPoint']=3,
  3541. ['StartPressPoint']=3,
  3542. },
  3543. [15024]={
  3544. ['SkillId']=15024,
  3545. ['SkillType']=1,
  3546. ['MaxLv']=50,
  3547. ['SkillQuality']=0,
  3548. ['JobType']=5,
  3549. ['JobBranch']=0,
  3550. ['JobStage']=1,
  3551. ['OpenLevel']=26,
  3552. ['OpenNeedCost']={{113,1}},
  3553. ['Pos']=26,
  3554. ['order']=94,
  3555. ['SuperSkill']={{1,15124},{2,15224}},
  3556. ['beforeSkill']=0,
  3557. ['SkillBranch']=3,
  3558. ['PressPoint']=3,
  3559. ['StartPressPoint']=3,
  3560. },
  3561. [15025]={
  3562. ['SkillId']=15025,
  3563. ['SkillType']=1,
  3564. ['MaxLv']=50,
  3565. ['SkillQuality']=0,
  3566. ['JobType']=5,
  3567. ['JobBranch']=0,
  3568. ['JobStage']=1,
  3569. ['OpenLevel']=16,
  3570. ['OpenNeedCost']={{1,3000},},
  3571. ['Pos']=16,
  3572. ['order']=96,
  3573. ['SuperSkill']={{1,15125},{2,15225}},
  3574. ['beforeSkill']=0,
  3575. ['SkillBranch']=3,
  3576. ['PressPoint']=3,
  3577. ['StartPressPoint']=3,
  3578. },
  3579. [15026]={
  3580. ['SkillId']=15026,
  3581. ['SkillType']=1,
  3582. ['MaxLv']=50,
  3583. ['SkillQuality']=0,
  3584. ['JobType']=5,
  3585. ['JobBranch']=0,
  3586. ['JobStage']=1,
  3587. ['OpenLevel']=13,
  3588. ['OpenNeedCost']={{1,2000},},
  3589. ['Pos']=13,
  3590. ['order']=97,
  3591. ['SuperSkill']={{1,15126},{2,15226}},
  3592. ['beforeSkill']=0,
  3593. ['SkillBranch']=3,
  3594. ['PressPoint']=3,
  3595. ['StartPressPoint']=3,
  3596. },
  3597. [15027]={
  3598. ['SkillId']=15027,
  3599. ['SkillType']=1,
  3600. ['MaxLv']=50,
  3601. ['SkillQuality']=0,
  3602. ['JobType']=5,
  3603. ['JobBranch']=0,
  3604. ['JobStage']=1,
  3605. ['OpenLevel']=31,
  3606. ['OpenNeedCost']={{113,1}},
  3607. ['Pos']=31,
  3608. ['order']=93,
  3609. ['SuperSkill']={{1,15127},{2,15227}},
  3610. ['beforeSkill']=0,
  3611. ['SkillBranch']=3,
  3612. ['PressPoint']=3,
  3613. ['StartPressPoint']=3,
  3614. },
  3615. [15028]={
  3616. ['SkillId']=15028,
  3617. ['SkillType']=1,
  3618. ['MaxLv']=50,
  3619. ['SkillQuality']=0,
  3620. ['JobType']=5,
  3621. ['JobBranch']=1,
  3622. ['JobStage']=2,
  3623. ['OpenLevel']=45,
  3624. ['OpenNeedCost']={{113,1}},
  3625. ['Pos']=55,
  3626. ['order']=91,
  3627. ['SuperSkill']={{1,15128}},
  3628. ['beforeSkill']=0,
  3629. ['SkillBranch']=3,
  3630. ['PressPoint']=9,
  3631. ['StartPressPoint']=9,
  3632. },
  3633. [15029]={
  3634. ['SkillId']=15029,
  3635. ['SkillType']=1,
  3636. ['MaxLv']=50,
  3637. ['SkillQuality']=0,
  3638. ['JobType']=5,
  3639. ['JobBranch']=1,
  3640. ['JobStage']=2,
  3641. ['OpenLevel']=40,
  3642. ['OpenNeedCost']={{113,1}},
  3643. ['Pos']=50,
  3644. ['order']=92,
  3645. ['SuperSkill']={{1,15129}},
  3646. ['beforeSkill']=0,
  3647. ['SkillBranch']=3,
  3648. ['PressPoint']=9,
  3649. ['StartPressPoint']=9,
  3650. },
  3651. [15030]={
  3652. ['SkillId']=15030,
  3653. ['SkillType']=1,
  3654. ['MaxLv']=50,
  3655. ['SkillQuality']=0,
  3656. ['JobType']=5,
  3657. ['JobBranch']=1,
  3658. ['JobStage']=2,
  3659. ['OpenLevel']=60,
  3660. ['OpenNeedCost']={{114,1}},
  3661. ['Pos']=70,
  3662. ['order']=88,
  3663. ['SuperSkill']={{1,15130}},
  3664. ['beforeSkill']=0,
  3665. ['SkillBranch']=3,
  3666. ['PressPoint']=9,
  3667. ['StartPressPoint']=9,
  3668. },
  3669. [15031]={
  3670. ['SkillId']=15031,
  3671. ['SkillType']=1,
  3672. ['MaxLv']=50,
  3673. ['SkillQuality']=0,
  3674. ['JobType']=5,
  3675. ['JobBranch']=1,
  3676. ['JobStage']=2,
  3677. ['OpenLevel']=50,
  3678. ['OpenNeedCost']={{113,1}},
  3679. ['Pos']=60,
  3680. ['order']=90,
  3681. ['SuperSkill']={{1,15131}},
  3682. ['beforeSkill']=0,
  3683. ['SkillBranch']=3,
  3684. ['PressPoint']=9,
  3685. ['StartPressPoint']=9,
  3686. },
  3687. [15032]={
  3688. ['SkillId']=15032,
  3689. ['SkillType']=1,
  3690. ['MaxLv']=50,
  3691. ['SkillQuality']=0,
  3692. ['JobType']=5,
  3693. ['JobBranch']=1,
  3694. ['JobStage']=2,
  3695. ['OpenLevel']=55,
  3696. ['OpenNeedCost']={{114,1}},
  3697. ['Pos']=65,
  3698. ['order']=89,
  3699. ['SuperSkill']={{1,15132}},
  3700. ['beforeSkill']=0,
  3701. ['SkillBranch']=3,
  3702. ['PressPoint']=9,
  3703. ['StartPressPoint']=9,
  3704. },
  3705. [15033]={
  3706. ['SkillId']=15033,
  3707. ['SkillType']=1,
  3708. ['MaxLv']=50,
  3709. ['SkillQuality']=0,
  3710. ['JobType']=5,
  3711. ['JobBranch']=1,
  3712. ['JobStage']=2,
  3713. ['OpenLevel']=65,
  3714. ['OpenNeedCost']={{114,1}},
  3715. ['Pos']=75,
  3716. ['order']=87,
  3717. ['SuperSkill']={{1,15133}},
  3718. ['beforeSkill']=0,
  3719. ['SkillBranch']=3,
  3720. ['PressPoint']=9,
  3721. ['StartPressPoint']=9,
  3722. },
  3723. [15034]={
  3724. ['SkillId']=15034,
  3725. ['SkillType']=1,
  3726. ['MaxLv']=50,
  3727. ['SkillQuality']=0,
  3728. ['JobType']=5,
  3729. ['JobBranch']=2,
  3730. ['JobStage']=2,
  3731. ['OpenLevel']=60,
  3732. ['OpenNeedCost']={{114,1}},
  3733. ['Pos']=70,
  3734. ['order']=88,
  3735. ['SuperSkill']={{2,15234}},
  3736. ['beforeSkill']=0,
  3737. ['SkillBranch']=3,
  3738. ['PressPoint']=9,
  3739. ['StartPressPoint']=9,
  3740. },
  3741. [15035]={
  3742. ['SkillId']=15035,
  3743. ['SkillType']=1,
  3744. ['MaxLv']=50,
  3745. ['SkillQuality']=0,
  3746. ['JobType']=5,
  3747. ['JobBranch']=2,
  3748. ['JobStage']=2,
  3749. ['OpenLevel']=50,
  3750. ['OpenNeedCost']={{113,1}},
  3751. ['Pos']=60,
  3752. ['order']=90,
  3753. ['SuperSkill']={{2,15235}},
  3754. ['beforeSkill']=0,
  3755. ['SkillBranch']=3,
  3756. ['PressPoint']=9,
  3757. ['StartPressPoint']=9,
  3758. },
  3759. [15036]={
  3760. ['SkillId']=15036,
  3761. ['SkillType']=1,
  3762. ['MaxLv']=50,
  3763. ['SkillQuality']=0,
  3764. ['JobType']=5,
  3765. ['JobBranch']=2,
  3766. ['JobStage']=2,
  3767. ['OpenLevel']=55,
  3768. ['OpenNeedCost']={{114,1}},
  3769. ['Pos']=65,
  3770. ['order']=89,
  3771. ['SuperSkill']={{2,15236}},
  3772. ['beforeSkill']=0,
  3773. ['SkillBranch']=3,
  3774. ['PressPoint']=9,
  3775. ['StartPressPoint']=9,
  3776. },
  3777. [15037]={
  3778. ['SkillId']=15037,
  3779. ['SkillType']=1,
  3780. ['MaxLv']=50,
  3781. ['SkillQuality']=0,
  3782. ['JobType']=5,
  3783. ['JobBranch']=2,
  3784. ['JobStage']=2,
  3785. ['OpenLevel']=65,
  3786. ['OpenNeedCost']={{114,1}},
  3787. ['Pos']=75,
  3788. ['order']=87,
  3789. ['SuperSkill']={{2,15237}},
  3790. ['beforeSkill']=0,
  3791. ['SkillBranch']=3,
  3792. ['PressPoint']=9,
  3793. ['StartPressPoint']=9,
  3794. },
  3795. [15038]={
  3796. ['SkillId']=15038,
  3797. ['SkillType']=1,
  3798. ['MaxLv']=50,
  3799. ['SkillQuality']=0,
  3800. ['JobType']=5,
  3801. ['JobBranch']=2,
  3802. ['JobStage']=2,
  3803. ['OpenLevel']=45,
  3804. ['OpenNeedCost']={{113,1}},
  3805. ['Pos']=55,
  3806. ['order']=91,
  3807. ['SuperSkill']={{2,15228}},
  3808. ['beforeSkill']=0,
  3809. ['SkillBranch']=3,
  3810. ['PressPoint']=9,
  3811. ['StartPressPoint']=9,
  3812. },
  3813. [15039]={
  3814. ['SkillId']=15039,
  3815. ['SkillType']=1,
  3816. ['MaxLv']=50,
  3817. ['SkillQuality']=0,
  3818. ['JobType']=5,
  3819. ['JobBranch']=2,
  3820. ['JobStage']=2,
  3821. ['OpenLevel']=40,
  3822. ['OpenNeedCost']={{113,1}},
  3823. ['Pos']=50,
  3824. ['order']=92,
  3825. ['SuperSkill']={{2,15229}},
  3826. ['beforeSkill']=0,
  3827. ['SkillBranch']=3,
  3828. ['PressPoint']=9,
  3829. ['StartPressPoint']=9,
  3830. },
  3831. [15040]={
  3832. ['SkillId']=15040,
  3833. ['SkillType']=1,
  3834. ['MaxLv']=50,
  3835. ['SkillQuality']=0,
  3836. ['JobType']=5,
  3837. ['JobBranch']=1,
  3838. ['JobStage']=3,
  3839. ['OpenLevel']=70,
  3840. ['OpenNeedCost']={{191,1}},
  3841. ['Pos']=80,
  3842. ['order']=86,
  3843. ['SuperSkill']={{1,15140}},
  3844. ['beforeSkill']=0,
  3845. ['SkillBranch']=3,
  3846. ['PressPoint']=21,
  3847. ['StartPressPoint']=21,
  3848. },
  3849. [15041]={
  3850. ['SkillId']=15041,
  3851. ['SkillType']=1,
  3852. ['MaxLv']=50,
  3853. ['SkillQuality']=0,
  3854. ['JobType']=5,
  3855. ['JobBranch']=1,
  3856. ['JobStage']=3,
  3857. ['OpenLevel']=75,
  3858. ['OpenNeedCost']={{191,1}},
  3859. ['Pos']=85,
  3860. ['order']=85,
  3861. ['SuperSkill']={{1,15141}},
  3862. ['beforeSkill']=0,
  3863. ['SkillBranch']=3,
  3864. ['PressPoint']=21,
  3865. ['StartPressPoint']=21,
  3866. },
  3867. [15042]={
  3868. ['SkillId']=15042,
  3869. ['SkillType']=1,
  3870. ['MaxLv']=50,
  3871. ['SkillQuality']=0,
  3872. ['JobType']=5,
  3873. ['JobBranch']=2,
  3874. ['JobStage']=3,
  3875. ['OpenLevel']=70,
  3876. ['OpenNeedCost']={{191,1}},
  3877. ['Pos']=80,
  3878. ['order']=86,
  3879. ['SuperSkill']={{2,15242}},
  3880. ['beforeSkill']=0,
  3881. ['SkillBranch']=3,
  3882. ['PressPoint']=21,
  3883. ['StartPressPoint']=21,
  3884. },
  3885. [15043]={
  3886. ['SkillId']=15043,
  3887. ['SkillType']=1,
  3888. ['MaxLv']=50,
  3889. ['SkillQuality']=0,
  3890. ['JobType']=5,
  3891. ['JobBranch']=2,
  3892. ['JobStage']=3,
  3893. ['OpenLevel']=75,
  3894. ['OpenNeedCost']={{191,1}},
  3895. ['Pos']=85,
  3896. ['order']=85,
  3897. ['SuperSkill']={{2,15243}},
  3898. ['beforeSkill']=0,
  3899. ['SkillBranch']=3,
  3900. ['PressPoint']=21,
  3901. ['StartPressPoint']=21,
  3902. },
  3903. [15122]={
  3904. ['SkillId']=15122,
  3905. ['SkillType']=1,
  3906. ['MaxLv']=50,
  3907. ['SkillQuality']=3,
  3908. ['JobType']=5,
  3909. ['JobBranch']=1,
  3910. ['JobStage']=3,
  3911. ['OpenLevel']=76,
  3912. ['OpenNeedCost']={{200,1}},
  3913. ['Pos']=10,
  3914. ['order']=98,
  3915. ['beforeSkill']=15022,
  3916. ['SkillBranch']=0,
  3917. ['PressPoint']=30,
  3918. ['StartPressPoint']=180,
  3919. },
  3920. [15123]={
  3921. ['SkillId']=15123,
  3922. ['SkillType']=1,
  3923. ['MaxLv']=50,
  3924. ['SkillQuality']=3,
  3925. ['JobType']=5,
  3926. ['JobBranch']=1,
  3927. ['JobStage']=3,
  3928. ['OpenLevel']=79,
  3929. ['OpenNeedCost']={{200,1}},
  3930. ['Pos']=21,
  3931. ['order']=95,
  3932. ['beforeSkill']=15023,
  3933. ['SkillBranch']=0,
  3934. ['PressPoint']=30,
  3935. ['StartPressPoint']=180,
  3936. },
  3937. [15124]={
  3938. ['SkillId']=15124,
  3939. ['SkillType']=1,
  3940. ['MaxLv']=50,
  3941. ['SkillQuality']=3,
  3942. ['JobType']=5,
  3943. ['JobBranch']=1,
  3944. ['JobStage']=3,
  3945. ['OpenLevel']=80,
  3946. ['OpenNeedCost']={{200,1}},
  3947. ['Pos']=26,
  3948. ['order']=94,
  3949. ['beforeSkill']=15024,
  3950. ['SkillBranch']=0,
  3951. ['PressPoint']=30,
  3952. ['StartPressPoint']=180,
  3953. },
  3954. [15125]={
  3955. ['SkillId']=15125,
  3956. ['SkillType']=1,
  3957. ['MaxLv']=50,
  3958. ['SkillQuality']=3,
  3959. ['JobType']=5,
  3960. ['JobBranch']=1,
  3961. ['JobStage']=3,
  3962. ['OpenLevel']=78,
  3963. ['OpenNeedCost']={{200,1}},
  3964. ['Pos']=16,
  3965. ['order']=96,
  3966. ['beforeSkill']=15025,
  3967. ['SkillBranch']=0,
  3968. ['PressPoint']=30,
  3969. ['StartPressPoint']=180,
  3970. },
  3971. [15126]={
  3972. ['SkillId']=15126,
  3973. ['SkillType']=1,
  3974. ['MaxLv']=50,
  3975. ['SkillQuality']=3,
  3976. ['JobType']=5,
  3977. ['JobBranch']=1,
  3978. ['JobStage']=3,
  3979. ['OpenLevel']=77,
  3980. ['OpenNeedCost']={{200,1}},
  3981. ['Pos']=13,
  3982. ['order']=97,
  3983. ['beforeSkill']=15026,
  3984. ['SkillBranch']=0,
  3985. ['PressPoint']=30,
  3986. ['StartPressPoint']=180,
  3987. },
  3988. [15127]={
  3989. ['SkillId']=15127,
  3990. ['SkillType']=1,
  3991. ['MaxLv']=50,
  3992. ['SkillQuality']=3,
  3993. ['JobType']=5,
  3994. ['JobBranch']=1,
  3995. ['JobStage']=3,
  3996. ['OpenLevel']=81,
  3997. ['OpenNeedCost']={{200,1}},
  3998. ['Pos']=31,
  3999. ['order']=93,
  4000. ['beforeSkill']=15027,
  4001. ['SkillBranch']=0,
  4002. ['PressPoint']=30,
  4003. ['StartPressPoint']=180,
  4004. },
  4005. [15128]={
  4006. ['SkillId']=15128,
  4007. ['SkillType']=1,
  4008. ['MaxLv']=50,
  4009. ['SkillQuality']=3,
  4010. ['JobType']=5,
  4011. ['JobBranch']=1,
  4012. ['JobStage']=3,
  4013. ['OpenLevel']=83,
  4014. ['OpenNeedCost']={{200,1}},
  4015. ['Pos']=55,
  4016. ['order']=91,
  4017. ['beforeSkill']=15028,
  4018. ['SkillBranch']=0,
  4019. ['PressPoint']=30,
  4020. ['StartPressPoint']=480,
  4021. },
  4022. [15129]={
  4023. ['SkillId']=15129,
  4024. ['SkillType']=1,
  4025. ['MaxLv']=50,
  4026. ['SkillQuality']=3,
  4027. ['JobType']=5,
  4028. ['JobBranch']=1,
  4029. ['JobStage']=3,
  4030. ['OpenLevel']=82,
  4031. ['OpenNeedCost']={{200,1}},
  4032. ['Pos']=50,
  4033. ['order']=92,
  4034. ['beforeSkill']=15029,
  4035. ['SkillBranch']=0,
  4036. ['PressPoint']=30,
  4037. ['StartPressPoint']=480,
  4038. },
  4039. [15130]={
  4040. ['SkillId']=15130,
  4041. ['SkillType']=1,
  4042. ['MaxLv']=50,
  4043. ['SkillQuality']=3,
  4044. ['JobType']=5,
  4045. ['JobBranch']=1,
  4046. ['JobStage']=3,
  4047. ['OpenLevel']=86,
  4048. ['OpenNeedCost']={{200,1}},
  4049. ['Pos']=70,
  4050. ['order']=88,
  4051. ['beforeSkill']=15030,
  4052. ['SkillBranch']=0,
  4053. ['PressPoint']=30,
  4054. ['StartPressPoint']=480,
  4055. },
  4056. [15131]={
  4057. ['SkillId']=15131,
  4058. ['SkillType']=1,
  4059. ['MaxLv']=50,
  4060. ['SkillQuality']=3,
  4061. ['JobType']=5,
  4062. ['JobBranch']=1,
  4063. ['JobStage']=3,
  4064. ['OpenLevel']=84,
  4065. ['OpenNeedCost']={{200,1}},
  4066. ['Pos']=60,
  4067. ['order']=90,
  4068. ['beforeSkill']=15031,
  4069. ['SkillBranch']=0,
  4070. ['PressPoint']=30,
  4071. ['StartPressPoint']=480,
  4072. },
  4073. [15132]={
  4074. ['SkillId']=15132,
  4075. ['SkillType']=1,
  4076. ['MaxLv']=50,
  4077. ['SkillQuality']=3,
  4078. ['JobType']=5,
  4079. ['JobBranch']=1,
  4080. ['JobStage']=3,
  4081. ['OpenLevel']=85,
  4082. ['OpenNeedCost']={{200,1}},
  4083. ['Pos']=65,
  4084. ['order']=89,
  4085. ['beforeSkill']=15032,
  4086. ['SkillBranch']=0,
  4087. ['PressPoint']=30,
  4088. ['StartPressPoint']=480,
  4089. },
  4090. [15133]={
  4091. ['SkillId']=15133,
  4092. ['SkillType']=1,
  4093. ['MaxLv']=50,
  4094. ['SkillQuality']=3,
  4095. ['JobType']=5,
  4096. ['JobBranch']=1,
  4097. ['JobStage']=3,
  4098. ['OpenLevel']=87,
  4099. ['OpenNeedCost']={{200,1}},
  4100. ['Pos']=75,
  4101. ['order']=87,
  4102. ['beforeSkill']=15033,
  4103. ['SkillBranch']=0,
  4104. ['PressPoint']=30,
  4105. ['StartPressPoint']=480,
  4106. },
  4107. [15140]={
  4108. ['SkillId']=15140,
  4109. ['SkillType']=1,
  4110. ['MaxLv']=50,
  4111. ['SkillQuality']=3,
  4112. ['JobType']=5,
  4113. ['JobBranch']=1,
  4114. ['JobStage']=3,
  4115. ['OpenLevel']=90,
  4116. ['OpenNeedCost']={{200,1}},
  4117. ['Pos']=80,
  4118. ['order']=86,
  4119. ['beforeSkill']=15040,
  4120. ['SkillBranch']=0,
  4121. ['PressPoint']=30,
  4122. ['StartPressPoint']=1080,
  4123. },
  4124. [15141]={
  4125. ['SkillId']=15141,
  4126. ['SkillType']=1,
  4127. ['MaxLv']=50,
  4128. ['SkillQuality']=3,
  4129. ['JobType']=5,
  4130. ['JobBranch']=1,
  4131. ['JobStage']=3,
  4132. ['OpenLevel']=92,
  4133. ['OpenNeedCost']={{200,1}},
  4134. ['Pos']=85,
  4135. ['order']=85,
  4136. ['beforeSkill']=15041,
  4137. ['SkillBranch']=0,
  4138. ['PressPoint']=30,
  4139. ['StartPressPoint']=1080,
  4140. },
  4141. [15222]={
  4142. ['SkillId']=15222,
  4143. ['SkillType']=1,
  4144. ['MaxLv']=50,
  4145. ['SkillQuality']=3,
  4146. ['JobType']=5,
  4147. ['JobBranch']=2,
  4148. ['JobStage']=3,
  4149. ['OpenLevel']=76,
  4150. ['OpenNeedCost']={{200,1}},
  4151. ['Pos']=10,
  4152. ['order']=98,
  4153. ['beforeSkill']=15022,
  4154. ['SkillBranch']=0,
  4155. ['PressPoint']=30,
  4156. ['StartPressPoint']=180,
  4157. },
  4158. [15223]={
  4159. ['SkillId']=15223,
  4160. ['SkillType']=1,
  4161. ['MaxLv']=50,
  4162. ['SkillQuality']=3,
  4163. ['JobType']=5,
  4164. ['JobBranch']=2,
  4165. ['JobStage']=3,
  4166. ['OpenLevel']=79,
  4167. ['OpenNeedCost']={{200,1}},
  4168. ['Pos']=21,
  4169. ['order']=95,
  4170. ['beforeSkill']=15023,
  4171. ['SkillBranch']=0,
  4172. ['PressPoint']=30,
  4173. ['StartPressPoint']=180,
  4174. },
  4175. [15224]={
  4176. ['SkillId']=15224,
  4177. ['SkillType']=1,
  4178. ['MaxLv']=50,
  4179. ['SkillQuality']=3,
  4180. ['JobType']=5,
  4181. ['JobBranch']=2,
  4182. ['JobStage']=3,
  4183. ['OpenLevel']=80,
  4184. ['OpenNeedCost']={{200,1}},
  4185. ['Pos']=26,
  4186. ['order']=94,
  4187. ['beforeSkill']=15024,
  4188. ['SkillBranch']=0,
  4189. ['PressPoint']=30,
  4190. ['StartPressPoint']=180,
  4191. },
  4192. [15225]={
  4193. ['SkillId']=15225,
  4194. ['SkillType']=1,
  4195. ['MaxLv']=50,
  4196. ['SkillQuality']=3,
  4197. ['JobType']=5,
  4198. ['JobBranch']=2,
  4199. ['JobStage']=3,
  4200. ['OpenLevel']=78,
  4201. ['OpenNeedCost']={{200,1}},
  4202. ['Pos']=16,
  4203. ['order']=96,
  4204. ['beforeSkill']=15025,
  4205. ['SkillBranch']=0,
  4206. ['PressPoint']=30,
  4207. ['StartPressPoint']=180,
  4208. },
  4209. [15226]={
  4210. ['SkillId']=15226,
  4211. ['SkillType']=1,
  4212. ['MaxLv']=50,
  4213. ['SkillQuality']=3,
  4214. ['JobType']=5,
  4215. ['JobBranch']=2,
  4216. ['JobStage']=3,
  4217. ['OpenLevel']=77,
  4218. ['OpenNeedCost']={{200,1}},
  4219. ['Pos']=13,
  4220. ['order']=97,
  4221. ['beforeSkill']=15026,
  4222. ['SkillBranch']=0,
  4223. ['PressPoint']=30,
  4224. ['StartPressPoint']=180,
  4225. },
  4226. [15227]={
  4227. ['SkillId']=15227,
  4228. ['SkillType']=1,
  4229. ['MaxLv']=50,
  4230. ['SkillQuality']=3,
  4231. ['JobType']=5,
  4232. ['JobBranch']=2,
  4233. ['JobStage']=3,
  4234. ['OpenLevel']=81,
  4235. ['OpenNeedCost']={{200,1}},
  4236. ['Pos']=31,
  4237. ['order']=93,
  4238. ['beforeSkill']=15027,
  4239. ['SkillBranch']=0,
  4240. ['PressPoint']=30,
  4241. ['StartPressPoint']=180,
  4242. },
  4243. [15228]={
  4244. ['SkillId']=15228,
  4245. ['SkillType']=1,
  4246. ['MaxLv']=50,
  4247. ['SkillQuality']=3,
  4248. ['JobType']=5,
  4249. ['JobBranch']=2,
  4250. ['JobStage']=3,
  4251. ['OpenLevel']=83,
  4252. ['OpenNeedCost']={{200,1}},
  4253. ['Pos']=55,
  4254. ['order']=91,
  4255. ['beforeSkill']=15038,
  4256. ['SkillBranch']=0,
  4257. ['PressPoint']=30,
  4258. ['StartPressPoint']=480,
  4259. },
  4260. [15229]={
  4261. ['SkillId']=15229,
  4262. ['SkillType']=1,
  4263. ['MaxLv']=50,
  4264. ['SkillQuality']=3,
  4265. ['JobType']=5,
  4266. ['JobBranch']=2,
  4267. ['JobStage']=3,
  4268. ['OpenLevel']=82,
  4269. ['OpenNeedCost']={{200,1}},
  4270. ['Pos']=50,
  4271. ['order']=92,
  4272. ['beforeSkill']=15039,
  4273. ['SkillBranch']=0,
  4274. ['PressPoint']=30,
  4275. ['StartPressPoint']=480,
  4276. },
  4277. [15234]={
  4278. ['SkillId']=15234,
  4279. ['SkillType']=1,
  4280. ['MaxLv']=50,
  4281. ['SkillQuality']=3,
  4282. ['JobType']=5,
  4283. ['JobBranch']=2,
  4284. ['JobStage']=3,
  4285. ['OpenLevel']=86,
  4286. ['OpenNeedCost']={{200,1}},
  4287. ['Pos']=70,
  4288. ['order']=88,
  4289. ['beforeSkill']=15034,
  4290. ['SkillBranch']=0,
  4291. ['PressPoint']=30,
  4292. ['StartPressPoint']=480,
  4293. },
  4294. [15235]={
  4295. ['SkillId']=15235,
  4296. ['SkillType']=1,
  4297. ['MaxLv']=50,
  4298. ['SkillQuality']=3,
  4299. ['JobType']=5,
  4300. ['JobBranch']=2,
  4301. ['JobStage']=3,
  4302. ['OpenLevel']=84,
  4303. ['OpenNeedCost']={{200,1}},
  4304. ['Pos']=60,
  4305. ['order']=90,
  4306. ['beforeSkill']=15035,
  4307. ['SkillBranch']=0,
  4308. ['PressPoint']=30,
  4309. ['StartPressPoint']=480,
  4310. },
  4311. [15236]={
  4312. ['SkillId']=15236,
  4313. ['SkillType']=1,
  4314. ['MaxLv']=50,
  4315. ['SkillQuality']=3,
  4316. ['JobType']=5,
  4317. ['JobBranch']=2,
  4318. ['JobStage']=3,
  4319. ['OpenLevel']=85,
  4320. ['OpenNeedCost']={{200,1}},
  4321. ['Pos']=65,
  4322. ['order']=89,
  4323. ['beforeSkill']=15036,
  4324. ['SkillBranch']=0,
  4325. ['PressPoint']=30,
  4326. ['StartPressPoint']=480,
  4327. },
  4328. [15237]={
  4329. ['SkillId']=15237,
  4330. ['SkillType']=1,
  4331. ['MaxLv']=50,
  4332. ['SkillQuality']=3,
  4333. ['JobType']=5,
  4334. ['JobBranch']=2,
  4335. ['JobStage']=3,
  4336. ['OpenLevel']=87,
  4337. ['OpenNeedCost']={{200,1}},
  4338. ['Pos']=75,
  4339. ['order']=87,
  4340. ['beforeSkill']=15037,
  4341. ['SkillBranch']=0,
  4342. ['PressPoint']=30,
  4343. ['StartPressPoint']=480,
  4344. },
  4345. [15242]={
  4346. ['SkillId']=15242,
  4347. ['SkillType']=1,
  4348. ['MaxLv']=50,
  4349. ['SkillQuality']=3,
  4350. ['JobType']=5,
  4351. ['JobBranch']=2,
  4352. ['JobStage']=3,
  4353. ['OpenLevel']=90,
  4354. ['OpenNeedCost']={{200,1}},
  4355. ['Pos']=80,
  4356. ['order']=86,
  4357. ['beforeSkill']=15042,
  4358. ['SkillBranch']=0,
  4359. ['PressPoint']=30,
  4360. ['StartPressPoint']=1080,
  4361. },
  4362. [15243]={
  4363. ['SkillId']=15243,
  4364. ['SkillType']=1,
  4365. ['MaxLv']=50,
  4366. ['SkillQuality']=3,
  4367. ['JobType']=5,
  4368. ['JobBranch']=2,
  4369. ['JobStage']=3,
  4370. ['OpenLevel']=92,
  4371. ['OpenNeedCost']={{200,1}},
  4372. ['Pos']=85,
  4373. ['order']=85,
  4374. ['beforeSkill']=15043,
  4375. ['SkillBranch']=0,
  4376. ['PressPoint']=30,
  4377. ['StartPressPoint']=1080,
  4378. },
  4379. }
  4380. return SkillTreeCfg