ParterSkillTreeCfg.lua 85 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863
  1. local ParterSkillTreeCfg = {
  2. [21025]={
  3. ['SkillId']=21025,
  4. ['Name']='PSTCfg_Name_21125',
  5. ['SkillType']=1,
  6. ['MaxLv']=50,
  7. ['SkillQuality']=0,
  8. ['JobType']=1,
  9. ['JobBranch']=0,
  10. ['JobStage']=1,
  11. ['ParterID']=10010,
  12. ['OpenLevel']=16,
  13. ['OpenNeedCost']={{1,3000},},
  14. ['Pos']=16,
  15. ['order']=96,
  16. ['SuperSkill']={{1,21125},{2,21225}},
  17. ['beforeSkill']=0,
  18. ['SkillBranch']=3,
  19. ['PressPoint']=3,
  20. ['StartPressPoint']=3,
  21. },
  22. [21026]={
  23. ['SkillId']=21026,
  24. ['Name']='PSTCfg_Name_21026',
  25. ['SkillType']=1,
  26. ['MaxLv']=50,
  27. ['SkillQuality']=0,
  28. ['JobType']=1,
  29. ['JobBranch']=0,
  30. ['JobStage']=1,
  31. ['ParterID']=10010,
  32. ['OpenLevel']=21,
  33. ['OpenNeedCost']={{113,1}},
  34. ['Pos']=21,
  35. ['order']=95,
  36. ['SuperSkill']={{1,21126},{2,21226}},
  37. ['beforeSkill']=0,
  38. ['SkillBranch']=3,
  39. ['PressPoint']=3,
  40. ['StartPressPoint']=3,
  41. },
  42. [21027]={
  43. ['SkillId']=21027,
  44. ['Name']='PSTCfg_Name_21127',
  45. ['SkillType']=1,
  46. ['MaxLv']=50,
  47. ['SkillQuality']=0,
  48. ['JobType']=1,
  49. ['JobBranch']=0,
  50. ['JobStage']=1,
  51. ['ParterID']=10010,
  52. ['OpenLevel']=26,
  53. ['OpenNeedCost']={{113,1}},
  54. ['Pos']=26,
  55. ['order']=94,
  56. ['SuperSkill']={{1,21127},{2,21227}},
  57. ['beforeSkill']=0,
  58. ['SkillBranch']=3,
  59. ['PressPoint']=3,
  60. ['StartPressPoint']=3,
  61. },
  62. [21028]={
  63. ['SkillId']=21028,
  64. ['Name']='PSTCfg_Name_21028',
  65. ['SkillType']=1,
  66. ['MaxLv']=50,
  67. ['SkillQuality']=0,
  68. ['JobType']=1,
  69. ['JobBranch']=0,
  70. ['JobStage']=1,
  71. ['ParterID']=10010,
  72. ['OpenLevel']=10,
  73. ['OpenNeedCost']={{1,1000},},
  74. ['Pos']=10,
  75. ['order']=98,
  76. ['SuperSkill']={{1,21128},{2,21228}},
  77. ['beforeSkill']=0,
  78. ['SkillBranch']=3,
  79. ['PressPoint']=3,
  80. ['StartPressPoint']=3,
  81. },
  82. [21029]={
  83. ['SkillId']=21029,
  84. ['Name']='PSTCfg_Name_21129',
  85. ['SkillType']=1,
  86. ['MaxLv']=50,
  87. ['SkillQuality']=0,
  88. ['JobType']=1,
  89. ['JobBranch']=0,
  90. ['JobStage']=1,
  91. ['ParterID']=10010,
  92. ['OpenLevel']=13,
  93. ['OpenNeedCost']={{1,2000},},
  94. ['Pos']=13,
  95. ['order']=97,
  96. ['SuperSkill']={{1,21129},{2,21229}},
  97. ['beforeSkill']=0,
  98. ['SkillBranch']=3,
  99. ['PressPoint']=3,
  100. ['StartPressPoint']=3,
  101. },
  102. [21030]={
  103. ['SkillId']=21030,
  104. ['Name']='PSTCfg_Name_21030',
  105. ['SkillType']=1,
  106. ['MaxLv']=50,
  107. ['SkillQuality']=0,
  108. ['JobType']=1,
  109. ['JobBranch']=0,
  110. ['JobStage']=1,
  111. ['ParterID']=10010,
  112. ['OpenLevel']=31,
  113. ['OpenNeedCost']={{113,1}},
  114. ['Pos']=31,
  115. ['order']=93,
  116. ['SuperSkill']={{1,21130},{2,21230}},
  117. ['beforeSkill']=0,
  118. ['SkillBranch']=3,
  119. ['PressPoint']=3,
  120. ['StartPressPoint']=3,
  121. },
  122. [21031]={
  123. ['SkillId']=21031,
  124. ['Name']='PSTCfg_Name_21131',
  125. ['SkillType']=1,
  126. ['MaxLv']=50,
  127. ['SkillQuality']=0,
  128. ['JobType']=1,
  129. ['JobBranch']=1,
  130. ['JobStage']=2,
  131. ['ParterID']=10021,
  132. ['OpenLevel']=40,
  133. ['OpenNeedCost']={{113,1}},
  134. ['Pos']=50,
  135. ['order']=92,
  136. ['SuperSkill']={{1,21131}},
  137. ['beforeSkill']=0,
  138. ['SkillBranch']=3,
  139. ['PressPoint']=9,
  140. ['StartPressPoint']=9,
  141. },
  142. [21032]={
  143. ['SkillId']=21032,
  144. ['Name']='PSTCfg_Name_21032',
  145. ['SkillType']=1,
  146. ['MaxLv']=50,
  147. ['SkillQuality']=0,
  148. ['JobType']=1,
  149. ['JobBranch']=1,
  150. ['JobStage']=2,
  151. ['ParterID']=10021,
  152. ['OpenLevel']=45,
  153. ['OpenNeedCost']={{113,1}},
  154. ['Pos']=55,
  155. ['order']=91,
  156. ['SuperSkill']={{1,21132}},
  157. ['beforeSkill']=0,
  158. ['SkillBranch']=3,
  159. ['PressPoint']=9,
  160. ['StartPressPoint']=9,
  161. },
  162. [21033]={
  163. ['SkillId']=21033,
  164. ['Name']='PSTCfg_Name_21133',
  165. ['SkillType']=1,
  166. ['MaxLv']=50,
  167. ['SkillQuality']=0,
  168. ['JobType']=1,
  169. ['JobBranch']=1,
  170. ['JobStage']=2,
  171. ['ParterID']=10021,
  172. ['OpenLevel']=60,
  173. ['OpenNeedCost']={{114,1}},
  174. ['Pos']=70,
  175. ['order']=88,
  176. ['SuperSkill']={{1,21133}},
  177. ['beforeSkill']=0,
  178. ['SkillBranch']=3,
  179. ['PressPoint']=9,
  180. ['StartPressPoint']=9,
  181. },
  182. [21034]={
  183. ['SkillId']=21034,
  184. ['Name']='PSTCfg_Name_21034',
  185. ['SkillType']=1,
  186. ['MaxLv']=50,
  187. ['SkillQuality']=0,
  188. ['JobType']=1,
  189. ['JobBranch']=1,
  190. ['JobStage']=2,
  191. ['ParterID']=10021,
  192. ['OpenLevel']=50,
  193. ['OpenNeedCost']={{113,1}},
  194. ['Pos']=60,
  195. ['order']=90,
  196. ['SuperSkill']={{1,21134}},
  197. ['beforeSkill']=0,
  198. ['SkillBranch']=3,
  199. ['PressPoint']=9,
  200. ['StartPressPoint']=9,
  201. },
  202. [21035]={
  203. ['SkillId']=21035,
  204. ['Name']='PSTCfg_Name_21135',
  205. ['SkillType']=1,
  206. ['MaxLv']=50,
  207. ['SkillQuality']=0,
  208. ['JobType']=1,
  209. ['JobBranch']=1,
  210. ['JobStage']=2,
  211. ['ParterID']=10021,
  212. ['OpenLevel']=65,
  213. ['OpenNeedCost']={{114,1}},
  214. ['Pos']=75,
  215. ['order']=87,
  216. ['SuperSkill']={{1,21135}},
  217. ['beforeSkill']=0,
  218. ['SkillBranch']=3,
  219. ['PressPoint']=9,
  220. ['StartPressPoint']=9,
  221. },
  222. [21036]={
  223. ['SkillId']=21036,
  224. ['Name']='PSTCfg_Name_21036',
  225. ['SkillType']=1,
  226. ['MaxLv']=50,
  227. ['SkillQuality']=0,
  228. ['JobType']=1,
  229. ['JobBranch']=1,
  230. ['JobStage']=2,
  231. ['ParterID']=10021,
  232. ['OpenLevel']=55,
  233. ['OpenNeedCost']={{114,1}},
  234. ['Pos']=65,
  235. ['order']=89,
  236. ['SuperSkill']={{1,21136}},
  237. ['beforeSkill']=0,
  238. ['SkillBranch']=3,
  239. ['PressPoint']=9,
  240. ['StartPressPoint']=9,
  241. },
  242. [21037]={
  243. ['SkillId']=21037,
  244. ['Name']='PSTCfg_Name_21037',
  245. ['SkillType']=1,
  246. ['MaxLv']=50,
  247. ['SkillQuality']=0,
  248. ['JobType']=1,
  249. ['JobBranch']=2,
  250. ['JobStage']=2,
  251. ['ParterID']=10022,
  252. ['OpenLevel']=50,
  253. ['OpenNeedCost']={{113,1}},
  254. ['Pos']=60,
  255. ['order']=90,
  256. ['SuperSkill']={{2,21237}},
  257. ['beforeSkill']=0,
  258. ['SkillBranch']=3,
  259. ['PressPoint']=9,
  260. ['StartPressPoint']=9,
  261. },
  262. [21038]={
  263. ['SkillId']=21038,
  264. ['Name']='PSTCfg_Name_21038',
  265. ['SkillType']=1,
  266. ['MaxLv']=50,
  267. ['SkillQuality']=0,
  268. ['JobType']=1,
  269. ['JobBranch']=2,
  270. ['JobStage']=2,
  271. ['ParterID']=10022,
  272. ['OpenLevel']=60,
  273. ['OpenNeedCost']={{114,1}},
  274. ['Pos']=70,
  275. ['order']=88,
  276. ['SuperSkill']={{2,21238}},
  277. ['beforeSkill']=0,
  278. ['SkillBranch']=3,
  279. ['PressPoint']=9,
  280. ['StartPressPoint']=9,
  281. },
  282. [21039]={
  283. ['SkillId']=21039,
  284. ['Name']='PSTCfg_Name_21239',
  285. ['SkillType']=1,
  286. ['MaxLv']=50,
  287. ['SkillQuality']=0,
  288. ['JobType']=1,
  289. ['JobBranch']=2,
  290. ['JobStage']=2,
  291. ['ParterID']=10022,
  292. ['OpenLevel']=55,
  293. ['OpenNeedCost']={{114,1}},
  294. ['Pos']=65,
  295. ['order']=89,
  296. ['SuperSkill']={{2,21239}},
  297. ['beforeSkill']=0,
  298. ['SkillBranch']=3,
  299. ['PressPoint']=9,
  300. ['StartPressPoint']=9,
  301. },
  302. [21040]={
  303. ['SkillId']=21040,
  304. ['Name']='PSTCfg_Name_21040',
  305. ['SkillType']=1,
  306. ['MaxLv']=50,
  307. ['SkillQuality']=0,
  308. ['JobType']=1,
  309. ['JobBranch']=2,
  310. ['JobStage']=2,
  311. ['ParterID']=10022,
  312. ['OpenLevel']=65,
  313. ['OpenNeedCost']={{114,1}},
  314. ['Pos']=75,
  315. ['order']=87,
  316. ['SuperSkill']={{2,21240}},
  317. ['beforeSkill']=0,
  318. ['SkillBranch']=3,
  319. ['PressPoint']=9,
  320. ['StartPressPoint']=9,
  321. },
  322. [21041]={
  323. ['SkillId']=21041,
  324. ['Name']='PSTCfg_Name_21131',
  325. ['SkillType']=1,
  326. ['MaxLv']=50,
  327. ['SkillQuality']=0,
  328. ['JobType']=1,
  329. ['JobBranch']=2,
  330. ['JobStage']=2,
  331. ['ParterID']=10022,
  332. ['OpenLevel']=40,
  333. ['OpenNeedCost']={{113,1}},
  334. ['Pos']=50,
  335. ['order']=92,
  336. ['SuperSkill']={{2,21231}},
  337. ['beforeSkill']=0,
  338. ['SkillBranch']=3,
  339. ['PressPoint']=9,
  340. ['StartPressPoint']=9,
  341. },
  342. [21042]={
  343. ['SkillId']=21042,
  344. ['Name']='PSTCfg_Name_21032',
  345. ['SkillType']=1,
  346. ['MaxLv']=50,
  347. ['SkillQuality']=0,
  348. ['JobType']=1,
  349. ['JobBranch']=2,
  350. ['JobStage']=2,
  351. ['ParterID']=10022,
  352. ['OpenLevel']=45,
  353. ['OpenNeedCost']={{113,1}},
  354. ['Pos']=55,
  355. ['order']=91,
  356. ['SuperSkill']={{2,21232}},
  357. ['beforeSkill']=0,
  358. ['SkillBranch']=3,
  359. ['PressPoint']=9,
  360. ['StartPressPoint']=9,
  361. },
  362. [21043]={
  363. ['SkillId']=21043,
  364. ['Name']='PSTCfg_Name_21143',
  365. ['SkillType']=1,
  366. ['MaxLv']=50,
  367. ['SkillQuality']=0,
  368. ['JobType']=1,
  369. ['JobBranch']=1,
  370. ['JobStage']=3,
  371. ['ParterID']=10031,
  372. ['OpenLevel']=70,
  373. ['OpenNeedCost']={{191,1}},
  374. ['Pos']=80,
  375. ['order']=86,
  376. ['SuperSkill']={{1,21143}},
  377. ['beforeSkill']=0,
  378. ['SkillBranch']=3,
  379. ['PressPoint']=21,
  380. ['StartPressPoint']=21,
  381. },
  382. [21044]={
  383. ['SkillId']=21044,
  384. ['Name']='PSTCfg_Name_21144',
  385. ['SkillType']=1,
  386. ['MaxLv']=50,
  387. ['SkillQuality']=0,
  388. ['JobType']=1,
  389. ['JobBranch']=1,
  390. ['JobStage']=3,
  391. ['ParterID']=10031,
  392. ['OpenLevel']=75,
  393. ['OpenNeedCost']={{191,1}},
  394. ['Pos']=85,
  395. ['order']=85,
  396. ['SuperSkill']={{1,21144}},
  397. ['beforeSkill']=0,
  398. ['SkillBranch']=3,
  399. ['PressPoint']=21,
  400. ['StartPressPoint']=21,
  401. },
  402. [21045]={
  403. ['SkillId']=21045,
  404. ['Name']='PSTCfg_Name_21245',
  405. ['SkillType']=1,
  406. ['MaxLv']=50,
  407. ['SkillQuality']=0,
  408. ['JobType']=1,
  409. ['JobBranch']=2,
  410. ['JobStage']=3,
  411. ['ParterID']=10032,
  412. ['OpenLevel']=70,
  413. ['OpenNeedCost']={{191,1}},
  414. ['Pos']=80,
  415. ['order']=86,
  416. ['SuperSkill']={{2,21245}},
  417. ['beforeSkill']=0,
  418. ['SkillBranch']=3,
  419. ['PressPoint']=21,
  420. ['StartPressPoint']=21,
  421. },
  422. [21046]={
  423. ['SkillId']=21046,
  424. ['Name']='PSTCfg_Name_21046',
  425. ['SkillType']=1,
  426. ['MaxLv']=50,
  427. ['SkillQuality']=0,
  428. ['JobType']=1,
  429. ['JobBranch']=2,
  430. ['JobStage']=3,
  431. ['ParterID']=10032,
  432. ['OpenLevel']=75,
  433. ['OpenNeedCost']={{191,1}},
  434. ['Pos']=85,
  435. ['order']=85,
  436. ['SuperSkill']={{2,21246}},
  437. ['beforeSkill']=0,
  438. ['SkillBranch']=3,
  439. ['PressPoint']=21,
  440. ['StartPressPoint']=21,
  441. },
  442. [21125]={
  443. ['SkillId']=21125,
  444. ['Name']='PSTCfg_Name_21125',
  445. ['SkillType']=1,
  446. ['MaxLv']=50,
  447. ['SkillQuality']=3,
  448. ['JobType']=1,
  449. ['JobBranch']=1,
  450. ['JobStage']=3,
  451. ['ParterID']=10031,
  452. ['OpenLevel']=78,
  453. ['OpenNeedCost']={{200,1}},
  454. ['Pos']=16,
  455. ['order']=96,
  456. ['beforeSkill']=21025,
  457. ['SkillBranch']=0,
  458. ['PressPoint']=30,
  459. ['StartPressPoint']=180,
  460. },
  461. [21126]={
  462. ['SkillId']=21126,
  463. ['Name']='PSTCfg_Name_21026',
  464. ['SkillType']=1,
  465. ['MaxLv']=50,
  466. ['SkillQuality']=3,
  467. ['JobType']=1,
  468. ['JobBranch']=1,
  469. ['JobStage']=3,
  470. ['ParterID']=10031,
  471. ['OpenLevel']=79,
  472. ['OpenNeedCost']={{200,1}},
  473. ['Pos']=21,
  474. ['order']=95,
  475. ['beforeSkill']=21026,
  476. ['SkillBranch']=0,
  477. ['PressPoint']=30,
  478. ['StartPressPoint']=180,
  479. },
  480. [21127]={
  481. ['SkillId']=21127,
  482. ['Name']='PSTCfg_Name_21127',
  483. ['SkillType']=1,
  484. ['MaxLv']=50,
  485. ['SkillQuality']=3,
  486. ['JobType']=1,
  487. ['JobBranch']=1,
  488. ['JobStage']=3,
  489. ['ParterID']=10031,
  490. ['OpenLevel']=80,
  491. ['OpenNeedCost']={{200,1}},
  492. ['Pos']=26,
  493. ['order']=94,
  494. ['beforeSkill']=21027,
  495. ['SkillBranch']=0,
  496. ['PressPoint']=30,
  497. ['StartPressPoint']=180,
  498. },
  499. [21128]={
  500. ['SkillId']=21128,
  501. ['Name']='PSTCfg_Name_21028',
  502. ['SkillType']=1,
  503. ['MaxLv']=50,
  504. ['SkillQuality']=3,
  505. ['JobType']=1,
  506. ['JobBranch']=1,
  507. ['JobStage']=3,
  508. ['ParterID']=10031,
  509. ['OpenLevel']=76,
  510. ['OpenNeedCost']={{200,1}},
  511. ['Pos']=10,
  512. ['order']=98,
  513. ['beforeSkill']=21028,
  514. ['SkillBranch']=0,
  515. ['PressPoint']=30,
  516. ['StartPressPoint']=180,
  517. },
  518. [21129]={
  519. ['SkillId']=21129,
  520. ['Name']='PSTCfg_Name_21129',
  521. ['SkillType']=1,
  522. ['MaxLv']=50,
  523. ['SkillQuality']=3,
  524. ['JobType']=1,
  525. ['JobBranch']=1,
  526. ['JobStage']=3,
  527. ['ParterID']=10031,
  528. ['OpenLevel']=77,
  529. ['OpenNeedCost']={{200,1}},
  530. ['Pos']=13,
  531. ['order']=97,
  532. ['beforeSkill']=21029,
  533. ['SkillBranch']=0,
  534. ['PressPoint']=30,
  535. ['StartPressPoint']=180,
  536. },
  537. [21130]={
  538. ['SkillId']=21130,
  539. ['Name']='PSTCfg_Name_21030',
  540. ['SkillType']=1,
  541. ['MaxLv']=50,
  542. ['SkillQuality']=3,
  543. ['JobType']=1,
  544. ['JobBranch']=1,
  545. ['JobStage']=3,
  546. ['ParterID']=10031,
  547. ['OpenLevel']=81,
  548. ['OpenNeedCost']={{200,1}},
  549. ['Pos']=31,
  550. ['order']=93,
  551. ['beforeSkill']=21030,
  552. ['SkillBranch']=0,
  553. ['PressPoint']=30,
  554. ['StartPressPoint']=180,
  555. },
  556. [21131]={
  557. ['SkillId']=21131,
  558. ['Name']='PSTCfg_Name_21131',
  559. ['SkillType']=1,
  560. ['MaxLv']=50,
  561. ['SkillQuality']=3,
  562. ['JobType']=1,
  563. ['JobBranch']=1,
  564. ['JobStage']=3,
  565. ['ParterID']=10031,
  566. ['OpenLevel']=82,
  567. ['OpenNeedCost']={{200,1}},
  568. ['Pos']=50,
  569. ['order']=92,
  570. ['beforeSkill']=21031,
  571. ['SkillBranch']=0,
  572. ['PressPoint']=30,
  573. ['StartPressPoint']=480,
  574. },
  575. [21132]={
  576. ['SkillId']=21132,
  577. ['Name']='PSTCfg_Name_21032',
  578. ['SkillType']=1,
  579. ['MaxLv']=50,
  580. ['SkillQuality']=3,
  581. ['JobType']=1,
  582. ['JobBranch']=1,
  583. ['JobStage']=3,
  584. ['ParterID']=10031,
  585. ['OpenLevel']=83,
  586. ['OpenNeedCost']={{200,1}},
  587. ['Pos']=55,
  588. ['order']=91,
  589. ['beforeSkill']=21032,
  590. ['SkillBranch']=0,
  591. ['PressPoint']=30,
  592. ['StartPressPoint']=480,
  593. },
  594. [21133]={
  595. ['SkillId']=21133,
  596. ['Name']='PSTCfg_Name_21133',
  597. ['SkillType']=1,
  598. ['MaxLv']=50,
  599. ['SkillQuality']=3,
  600. ['JobType']=1,
  601. ['JobBranch']=1,
  602. ['JobStage']=3,
  603. ['ParterID']=10031,
  604. ['OpenLevel']=86,
  605. ['OpenNeedCost']={{200,1}},
  606. ['Pos']=70,
  607. ['order']=88,
  608. ['beforeSkill']=21033,
  609. ['SkillBranch']=0,
  610. ['PressPoint']=30,
  611. ['StartPressPoint']=480,
  612. },
  613. [21134]={
  614. ['SkillId']=21134,
  615. ['Name']='PSTCfg_Name_21034',
  616. ['SkillType']=1,
  617. ['MaxLv']=50,
  618. ['SkillQuality']=3,
  619. ['JobType']=1,
  620. ['JobBranch']=1,
  621. ['JobStage']=3,
  622. ['ParterID']=10031,
  623. ['OpenLevel']=84,
  624. ['OpenNeedCost']={{200,1}},
  625. ['Pos']=60,
  626. ['order']=90,
  627. ['beforeSkill']=21034,
  628. ['SkillBranch']=0,
  629. ['PressPoint']=30,
  630. ['StartPressPoint']=480,
  631. },
  632. [21135]={
  633. ['SkillId']=21135,
  634. ['Name']='PSTCfg_Name_21135',
  635. ['SkillType']=1,
  636. ['MaxLv']=50,
  637. ['SkillQuality']=3,
  638. ['JobType']=1,
  639. ['JobBranch']=1,
  640. ['JobStage']=3,
  641. ['ParterID']=10031,
  642. ['OpenLevel']=87,
  643. ['OpenNeedCost']={{200,1}},
  644. ['Pos']=75,
  645. ['order']=87,
  646. ['beforeSkill']=21035,
  647. ['SkillBranch']=0,
  648. ['PressPoint']=30,
  649. ['StartPressPoint']=480,
  650. },
  651. [21136]={
  652. ['SkillId']=21136,
  653. ['Name']='PSTCfg_Name_21036',
  654. ['SkillType']=1,
  655. ['MaxLv']=50,
  656. ['SkillQuality']=3,
  657. ['JobType']=1,
  658. ['JobBranch']=1,
  659. ['JobStage']=3,
  660. ['ParterID']=10031,
  661. ['OpenLevel']=85,
  662. ['OpenNeedCost']={{200,1}},
  663. ['Pos']=65,
  664. ['order']=89,
  665. ['beforeSkill']=21036,
  666. ['SkillBranch']=0,
  667. ['PressPoint']=30,
  668. ['StartPressPoint']=480,
  669. },
  670. [21143]={
  671. ['SkillId']=21143,
  672. ['Name']='PSTCfg_Name_21143',
  673. ['SkillType']=1,
  674. ['MaxLv']=50,
  675. ['SkillQuality']=3,
  676. ['JobType']=1,
  677. ['JobBranch']=1,
  678. ['JobStage']=3,
  679. ['ParterID']=10031,
  680. ['OpenLevel']=90,
  681. ['OpenNeedCost']={{200,1}},
  682. ['Pos']=80,
  683. ['order']=86,
  684. ['beforeSkill']=21043,
  685. ['SkillBranch']=0,
  686. ['PressPoint']=30,
  687. ['StartPressPoint']=1080,
  688. },
  689. [21144]={
  690. ['SkillId']=21144,
  691. ['Name']='PSTCfg_Name_21144',
  692. ['SkillType']=1,
  693. ['MaxLv']=50,
  694. ['SkillQuality']=3,
  695. ['JobType']=1,
  696. ['JobBranch']=1,
  697. ['JobStage']=3,
  698. ['ParterID']=10031,
  699. ['OpenLevel']=92,
  700. ['OpenNeedCost']={{200,1}},
  701. ['Pos']=85,
  702. ['order']=85,
  703. ['beforeSkill']=21044,
  704. ['SkillBranch']=0,
  705. ['PressPoint']=30,
  706. ['StartPressPoint']=1080,
  707. },
  708. [21225]={
  709. ['SkillId']=21225,
  710. ['Name']='PSTCfg_Name_21125',
  711. ['SkillType']=1,
  712. ['MaxLv']=50,
  713. ['SkillQuality']=3,
  714. ['JobType']=1,
  715. ['JobBranch']=2,
  716. ['JobStage']=3,
  717. ['ParterID']=10032,
  718. ['OpenLevel']=78,
  719. ['OpenNeedCost']={{200,1}},
  720. ['Pos']=16,
  721. ['order']=96,
  722. ['beforeSkill']=21025,
  723. ['SkillBranch']=0,
  724. ['PressPoint']=30,
  725. ['StartPressPoint']=180,
  726. },
  727. [21226]={
  728. ['SkillId']=21226,
  729. ['Name']='PSTCfg_Name_21026',
  730. ['SkillType']=1,
  731. ['MaxLv']=50,
  732. ['SkillQuality']=3,
  733. ['JobType']=1,
  734. ['JobBranch']=2,
  735. ['JobStage']=3,
  736. ['ParterID']=10032,
  737. ['OpenLevel']=79,
  738. ['OpenNeedCost']={{200,1}},
  739. ['Pos']=21,
  740. ['order']=95,
  741. ['beforeSkill']=21026,
  742. ['SkillBranch']=0,
  743. ['PressPoint']=30,
  744. ['StartPressPoint']=180,
  745. },
  746. [21227]={
  747. ['SkillId']=21227,
  748. ['Name']='PSTCfg_Name_21127',
  749. ['SkillType']=1,
  750. ['MaxLv']=50,
  751. ['SkillQuality']=3,
  752. ['JobType']=1,
  753. ['JobBranch']=2,
  754. ['JobStage']=3,
  755. ['ParterID']=10032,
  756. ['OpenLevel']=80,
  757. ['OpenNeedCost']={{200,1}},
  758. ['Pos']=26,
  759. ['order']=94,
  760. ['beforeSkill']=21027,
  761. ['SkillBranch']=0,
  762. ['PressPoint']=30,
  763. ['StartPressPoint']=180,
  764. },
  765. [21228]={
  766. ['SkillId']=21228,
  767. ['Name']='PSTCfg_Name_21028',
  768. ['SkillType']=1,
  769. ['MaxLv']=50,
  770. ['SkillQuality']=3,
  771. ['JobType']=1,
  772. ['JobBranch']=2,
  773. ['JobStage']=3,
  774. ['ParterID']=10032,
  775. ['OpenLevel']=76,
  776. ['OpenNeedCost']={{200,1}},
  777. ['Pos']=10,
  778. ['order']=98,
  779. ['beforeSkill']=21028,
  780. ['SkillBranch']=0,
  781. ['PressPoint']=30,
  782. ['StartPressPoint']=180,
  783. },
  784. [21229]={
  785. ['SkillId']=21229,
  786. ['Name']='PSTCfg_Name_21129',
  787. ['SkillType']=1,
  788. ['MaxLv']=50,
  789. ['SkillQuality']=3,
  790. ['JobType']=1,
  791. ['JobBranch']=2,
  792. ['JobStage']=3,
  793. ['ParterID']=10032,
  794. ['OpenLevel']=77,
  795. ['OpenNeedCost']={{200,1}},
  796. ['Pos']=13,
  797. ['order']=97,
  798. ['beforeSkill']=21029,
  799. ['SkillBranch']=0,
  800. ['PressPoint']=30,
  801. ['StartPressPoint']=180,
  802. },
  803. [21230]={
  804. ['SkillId']=21230,
  805. ['Name']='PSTCfg_Name_21030',
  806. ['SkillType']=1,
  807. ['MaxLv']=50,
  808. ['SkillQuality']=3,
  809. ['JobType']=1,
  810. ['JobBranch']=2,
  811. ['JobStage']=3,
  812. ['ParterID']=10032,
  813. ['OpenLevel']=81,
  814. ['OpenNeedCost']={{200,1}},
  815. ['Pos']=31,
  816. ['order']=93,
  817. ['beforeSkill']=21030,
  818. ['SkillBranch']=0,
  819. ['PressPoint']=30,
  820. ['StartPressPoint']=180,
  821. },
  822. [21231]={
  823. ['SkillId']=21231,
  824. ['Name']='PSTCfg_Name_21131',
  825. ['SkillType']=1,
  826. ['MaxLv']=50,
  827. ['SkillQuality']=3,
  828. ['JobType']=1,
  829. ['JobBranch']=2,
  830. ['JobStage']=3,
  831. ['ParterID']=10032,
  832. ['OpenLevel']=82,
  833. ['OpenNeedCost']={{200,1}},
  834. ['Pos']=50,
  835. ['order']=92,
  836. ['beforeSkill']=21041,
  837. ['SkillBranch']=0,
  838. ['PressPoint']=30,
  839. ['StartPressPoint']=480,
  840. },
  841. [21232]={
  842. ['SkillId']=21232,
  843. ['Name']='PSTCfg_Name_21032',
  844. ['SkillType']=1,
  845. ['MaxLv']=50,
  846. ['SkillQuality']=3,
  847. ['JobType']=1,
  848. ['JobBranch']=2,
  849. ['JobStage']=3,
  850. ['ParterID']=10032,
  851. ['OpenLevel']=83,
  852. ['OpenNeedCost']={{200,1}},
  853. ['Pos']=55,
  854. ['order']=91,
  855. ['beforeSkill']=21042,
  856. ['SkillBranch']=0,
  857. ['PressPoint']=30,
  858. ['StartPressPoint']=480,
  859. },
  860. [21237]={
  861. ['SkillId']=21237,
  862. ['Name']='PSTCfg_Name_21037',
  863. ['SkillType']=1,
  864. ['MaxLv']=50,
  865. ['SkillQuality']=3,
  866. ['JobType']=1,
  867. ['JobBranch']=2,
  868. ['JobStage']=3,
  869. ['ParterID']=10032,
  870. ['OpenLevel']=84,
  871. ['OpenNeedCost']={{200,1}},
  872. ['Pos']=60,
  873. ['order']=90,
  874. ['beforeSkill']=21037,
  875. ['SkillBranch']=0,
  876. ['PressPoint']=30,
  877. ['StartPressPoint']=480,
  878. },
  879. [21238]={
  880. ['SkillId']=21238,
  881. ['Name']='PSTCfg_Name_21038',
  882. ['SkillType']=1,
  883. ['MaxLv']=50,
  884. ['SkillQuality']=3,
  885. ['JobType']=1,
  886. ['JobBranch']=2,
  887. ['JobStage']=3,
  888. ['ParterID']=10032,
  889. ['OpenLevel']=86,
  890. ['OpenNeedCost']={{200,1}},
  891. ['Pos']=70,
  892. ['order']=88,
  893. ['beforeSkill']=21038,
  894. ['SkillBranch']=0,
  895. ['PressPoint']=30,
  896. ['StartPressPoint']=480,
  897. },
  898. [21239]={
  899. ['SkillId']=21239,
  900. ['Name']='PSTCfg_Name_21239',
  901. ['SkillType']=1,
  902. ['MaxLv']=50,
  903. ['SkillQuality']=3,
  904. ['JobType']=1,
  905. ['JobBranch']=2,
  906. ['JobStage']=3,
  907. ['ParterID']=10032,
  908. ['OpenLevel']=85,
  909. ['OpenNeedCost']={{200,1}},
  910. ['Pos']=65,
  911. ['order']=89,
  912. ['beforeSkill']=21039,
  913. ['SkillBranch']=0,
  914. ['PressPoint']=30,
  915. ['StartPressPoint']=480,
  916. },
  917. [21240]={
  918. ['SkillId']=21240,
  919. ['Name']='PSTCfg_Name_21040',
  920. ['SkillType']=1,
  921. ['MaxLv']=50,
  922. ['SkillQuality']=3,
  923. ['JobType']=1,
  924. ['JobBranch']=2,
  925. ['JobStage']=3,
  926. ['ParterID']=10032,
  927. ['OpenLevel']=87,
  928. ['OpenNeedCost']={{200,1}},
  929. ['Pos']=75,
  930. ['order']=87,
  931. ['beforeSkill']=21040,
  932. ['SkillBranch']=0,
  933. ['PressPoint']=30,
  934. ['StartPressPoint']=480,
  935. },
  936. [21245]={
  937. ['SkillId']=21245,
  938. ['Name']='PSTCfg_Name_21245',
  939. ['SkillType']=1,
  940. ['MaxLv']=50,
  941. ['SkillQuality']=3,
  942. ['JobType']=1,
  943. ['JobBranch']=2,
  944. ['JobStage']=3,
  945. ['ParterID']=10032,
  946. ['OpenLevel']=90,
  947. ['OpenNeedCost']={{200,1}},
  948. ['Pos']=80,
  949. ['order']=86,
  950. ['beforeSkill']=21045,
  951. ['SkillBranch']=0,
  952. ['PressPoint']=30,
  953. ['StartPressPoint']=1080,
  954. },
  955. [21246]={
  956. ['SkillId']=21246,
  957. ['Name']='PSTCfg_Name_21046',
  958. ['SkillType']=1,
  959. ['MaxLv']=50,
  960. ['SkillQuality']=3,
  961. ['JobType']=1,
  962. ['JobBranch']=2,
  963. ['JobStage']=3,
  964. ['ParterID']=10032,
  965. ['OpenLevel']=92,
  966. ['OpenNeedCost']={{200,1}},
  967. ['Pos']=85,
  968. ['order']=85,
  969. ['beforeSkill']=21046,
  970. ['SkillBranch']=0,
  971. ['PressPoint']=30,
  972. ['StartPressPoint']=1080,
  973. },
  974. [22021]={
  975. ['SkillId']=22021,
  976. ['Name']='PSTCfg_Name_22021',
  977. ['SkillType']=1,
  978. ['MaxLv']=50,
  979. ['SkillQuality']=0,
  980. ['JobType']=4,
  981. ['JobBranch']=0,
  982. ['JobStage']=1,
  983. ['ParterID']=20010,
  984. ['OpenLevel']=10,
  985. ['OpenNeedCost']={{1,1000},},
  986. ['Pos']=10,
  987. ['order']=98,
  988. ['SuperSkill']={{1,22121},{2,22221}},
  989. ['beforeSkill']=0,
  990. ['SkillBranch']=3,
  991. ['PressPoint']=3,
  992. ['StartPressPoint']=3,
  993. },
  994. [22022]={
  995. ['SkillId']=22022,
  996. ['Name']='PSTCfg_Name_22122',
  997. ['SkillType']=1,
  998. ['MaxLv']=50,
  999. ['SkillQuality']=0,
  1000. ['JobType']=4,
  1001. ['JobBranch']=0,
  1002. ['JobStage']=1,
  1003. ['ParterID']=20010,
  1004. ['OpenLevel']=21,
  1005. ['OpenNeedCost']={{113,1}},
  1006. ['Pos']=21,
  1007. ['order']=95,
  1008. ['SuperSkill']={{1,22122},{2,22222}},
  1009. ['beforeSkill']=0,
  1010. ['SkillBranch']=3,
  1011. ['PressPoint']=3,
  1012. ['StartPressPoint']=3,
  1013. },
  1014. [22023]={
  1015. ['SkillId']=22023,
  1016. ['Name']='PSTCfg_Name_22023',
  1017. ['SkillType']=1,
  1018. ['MaxLv']=50,
  1019. ['SkillQuality']=0,
  1020. ['JobType']=4,
  1021. ['JobBranch']=0,
  1022. ['JobStage']=1,
  1023. ['ParterID']=20010,
  1024. ['OpenLevel']=26,
  1025. ['OpenNeedCost']={{113,1}},
  1026. ['Pos']=26,
  1027. ['order']=94,
  1028. ['SuperSkill']={{1,22123},{2,22223}},
  1029. ['beforeSkill']=0,
  1030. ['SkillBranch']=3,
  1031. ['PressPoint']=3,
  1032. ['StartPressPoint']=3,
  1033. },
  1034. [22024]={
  1035. ['SkillId']=22024,
  1036. ['Name']='PSTCfg_Name_22124',
  1037. ['SkillType']=1,
  1038. ['MaxLv']=50,
  1039. ['SkillQuality']=0,
  1040. ['JobType']=4,
  1041. ['JobBranch']=0,
  1042. ['JobStage']=1,
  1043. ['ParterID']=20010,
  1044. ['OpenLevel']=13,
  1045. ['OpenNeedCost']={{1,2000},},
  1046. ['Pos']=13,
  1047. ['order']=97,
  1048. ['SuperSkill']={{1,22124},{2,22224}},
  1049. ['beforeSkill']=0,
  1050. ['SkillBranch']=3,
  1051. ['PressPoint']=3,
  1052. ['StartPressPoint']=3,
  1053. },
  1054. [22025]={
  1055. ['SkillId']=22025,
  1056. ['Name']='PSTCfg_Name_22025',
  1057. ['SkillType']=1,
  1058. ['MaxLv']=50,
  1059. ['SkillQuality']=0,
  1060. ['JobType']=4,
  1061. ['JobBranch']=0,
  1062. ['JobStage']=1,
  1063. ['ParterID']=20010,
  1064. ['OpenLevel']=16,
  1065. ['OpenNeedCost']={{1,3000},},
  1066. ['Pos']=16,
  1067. ['order']=96,
  1068. ['SuperSkill']={{1,22125},{2,22225}},
  1069. ['beforeSkill']=0,
  1070. ['SkillBranch']=3,
  1071. ['PressPoint']=3,
  1072. ['StartPressPoint']=3,
  1073. },
  1074. [22026]={
  1075. ['SkillId']=22026,
  1076. ['Name']='PSTCfg_Name_22126',
  1077. ['SkillType']=1,
  1078. ['MaxLv']=50,
  1079. ['SkillQuality']=0,
  1080. ['JobType']=4,
  1081. ['JobBranch']=0,
  1082. ['JobStage']=1,
  1083. ['ParterID']=20010,
  1084. ['OpenLevel']=31,
  1085. ['OpenNeedCost']={{113,1}},
  1086. ['Pos']=31,
  1087. ['order']=93,
  1088. ['SuperSkill']={{1,22126},{2,22226}},
  1089. ['beforeSkill']=0,
  1090. ['SkillBranch']=3,
  1091. ['PressPoint']=3,
  1092. ['StartPressPoint']=3,
  1093. },
  1094. [22027]={
  1095. ['SkillId']=22027,
  1096. ['Name']='PSTCfg_Name_22027',
  1097. ['SkillType']=1,
  1098. ['MaxLv']=50,
  1099. ['SkillQuality']=0,
  1100. ['JobType']=4,
  1101. ['JobBranch']=1,
  1102. ['JobStage']=2,
  1103. ['ParterID']=20021,
  1104. ['OpenLevel']=40,
  1105. ['OpenNeedCost']={{113,1}},
  1106. ['Pos']=50,
  1107. ['order']=92,
  1108. ['SuperSkill']={{1,22127}},
  1109. ['beforeSkill']=0,
  1110. ['SkillBranch']=3,
  1111. ['PressPoint']=9,
  1112. ['StartPressPoint']=9,
  1113. },
  1114. [22028]={
  1115. ['SkillId']=22028,
  1116. ['Name']='PSTCfg_Name_22128',
  1117. ['SkillType']=1,
  1118. ['MaxLv']=50,
  1119. ['SkillQuality']=0,
  1120. ['JobType']=4,
  1121. ['JobBranch']=1,
  1122. ['JobStage']=2,
  1123. ['ParterID']=20021,
  1124. ['OpenLevel']=45,
  1125. ['OpenNeedCost']={{113,1}},
  1126. ['Pos']=55,
  1127. ['order']=91,
  1128. ['SuperSkill']={{1,22128}},
  1129. ['beforeSkill']=0,
  1130. ['SkillBranch']=3,
  1131. ['PressPoint']=9,
  1132. ['StartPressPoint']=9,
  1133. },
  1134. [22029]={
  1135. ['SkillId']=22029,
  1136. ['Name']='PSTCfg_Name_22029',
  1137. ['SkillType']=1,
  1138. ['MaxLv']=50,
  1139. ['SkillQuality']=0,
  1140. ['JobType']=4,
  1141. ['JobBranch']=1,
  1142. ['JobStage']=2,
  1143. ['ParterID']=20021,
  1144. ['OpenLevel']=50,
  1145. ['OpenNeedCost']={{113,1}},
  1146. ['Pos']=60,
  1147. ['order']=90,
  1148. ['SuperSkill']={{1,22129}},
  1149. ['beforeSkill']=0,
  1150. ['SkillBranch']=3,
  1151. ['PressPoint']=9,
  1152. ['StartPressPoint']=9,
  1153. },
  1154. [22030]={
  1155. ['SkillId']=22030,
  1156. ['Name']='PSTCfg_Name_22130',
  1157. ['SkillType']=1,
  1158. ['MaxLv']=50,
  1159. ['SkillQuality']=0,
  1160. ['JobType']=4,
  1161. ['JobBranch']=1,
  1162. ['JobStage']=2,
  1163. ['ParterID']=20021,
  1164. ['OpenLevel']=60,
  1165. ['OpenNeedCost']={{114,1}},
  1166. ['Pos']=70,
  1167. ['order']=88,
  1168. ['SuperSkill']={{1,22130}},
  1169. ['beforeSkill']=0,
  1170. ['SkillBranch']=3,
  1171. ['PressPoint']=9,
  1172. ['StartPressPoint']=9,
  1173. },
  1174. [22031]={
  1175. ['SkillId']=22031,
  1176. ['Name']='PSTCfg_Name_22031',
  1177. ['SkillType']=1,
  1178. ['MaxLv']=50,
  1179. ['SkillQuality']=0,
  1180. ['JobType']=4,
  1181. ['JobBranch']=1,
  1182. ['JobStage']=2,
  1183. ['ParterID']=20021,
  1184. ['OpenLevel']=55,
  1185. ['OpenNeedCost']={{114,1}},
  1186. ['Pos']=65,
  1187. ['order']=89,
  1188. ['SuperSkill']={{1,22131}},
  1189. ['beforeSkill']=0,
  1190. ['SkillBranch']=3,
  1191. ['PressPoint']=9,
  1192. ['StartPressPoint']=9,
  1193. },
  1194. [22032]={
  1195. ['SkillId']=22032,
  1196. ['Name']='PSTCfg_Name_22132',
  1197. ['SkillType']=1,
  1198. ['MaxLv']=50,
  1199. ['SkillQuality']=0,
  1200. ['JobType']=4,
  1201. ['JobBranch']=1,
  1202. ['JobStage']=2,
  1203. ['ParterID']=20021,
  1204. ['OpenLevel']=65,
  1205. ['OpenNeedCost']={{114,1}},
  1206. ['Pos']=75,
  1207. ['order']=87,
  1208. ['SuperSkill']={{1,22132}},
  1209. ['beforeSkill']=0,
  1210. ['SkillBranch']=3,
  1211. ['PressPoint']=9,
  1212. ['StartPressPoint']=9,
  1213. },
  1214. [22033]={
  1215. ['SkillId']=22033,
  1216. ['Name']='PSTCfg_Name_22033',
  1217. ['SkillType']=1,
  1218. ['MaxLv']=50,
  1219. ['SkillQuality']=0,
  1220. ['JobType']=4,
  1221. ['JobBranch']=2,
  1222. ['JobStage']=2,
  1223. ['ParterID']=20022,
  1224. ['OpenLevel']=50,
  1225. ['OpenNeedCost']={{113,1}},
  1226. ['Pos']=60,
  1227. ['order']=90,
  1228. ['SuperSkill']={{2,22233}},
  1229. ['beforeSkill']=0,
  1230. ['SkillBranch']=3,
  1231. ['PressPoint']=9,
  1232. ['StartPressPoint']=9,
  1233. },
  1234. [22034]={
  1235. ['SkillId']=22034,
  1236. ['Name']='PSTCfg_Name_22234',
  1237. ['SkillType']=1,
  1238. ['MaxLv']=50,
  1239. ['SkillQuality']=0,
  1240. ['JobType']=4,
  1241. ['JobBranch']=2,
  1242. ['JobStage']=2,
  1243. ['ParterID']=20022,
  1244. ['OpenLevel']=60,
  1245. ['OpenNeedCost']={{114,1}},
  1246. ['Pos']=70,
  1247. ['order']=88,
  1248. ['SuperSkill']={{2,22234}},
  1249. ['beforeSkill']=0,
  1250. ['SkillBranch']=3,
  1251. ['PressPoint']=9,
  1252. ['StartPressPoint']=9,
  1253. },
  1254. [22035]={
  1255. ['SkillId']=22035,
  1256. ['Name']='PSTCfg_Name_22035',
  1257. ['SkillType']=1,
  1258. ['MaxLv']=50,
  1259. ['SkillQuality']=0,
  1260. ['JobType']=4,
  1261. ['JobBranch']=2,
  1262. ['JobStage']=2,
  1263. ['ParterID']=20022,
  1264. ['OpenLevel']=55,
  1265. ['OpenNeedCost']={{114,1}},
  1266. ['Pos']=65,
  1267. ['order']=89,
  1268. ['SuperSkill']={{2,22235}},
  1269. ['beforeSkill']=0,
  1270. ['SkillBranch']=3,
  1271. ['PressPoint']=9,
  1272. ['StartPressPoint']=9,
  1273. },
  1274. [22036]={
  1275. ['SkillId']=22036,
  1276. ['Name']='PSTCfg_Name_22236',
  1277. ['SkillType']=1,
  1278. ['MaxLv']=50,
  1279. ['SkillQuality']=0,
  1280. ['JobType']=4,
  1281. ['JobBranch']=2,
  1282. ['JobStage']=2,
  1283. ['ParterID']=20022,
  1284. ['OpenLevel']=65,
  1285. ['OpenNeedCost']={{114,1}},
  1286. ['Pos']=75,
  1287. ['order']=87,
  1288. ['SuperSkill']={{2,22236}},
  1289. ['beforeSkill']=0,
  1290. ['SkillBranch']=3,
  1291. ['PressPoint']=9,
  1292. ['StartPressPoint']=9,
  1293. },
  1294. [22037]={
  1295. ['SkillId']=22037,
  1296. ['Name']='PSTCfg_Name_22027',
  1297. ['SkillType']=1,
  1298. ['MaxLv']=50,
  1299. ['SkillQuality']=0,
  1300. ['JobType']=4,
  1301. ['JobBranch']=2,
  1302. ['JobStage']=2,
  1303. ['ParterID']=20022,
  1304. ['OpenLevel']=40,
  1305. ['OpenNeedCost']={{113,1}},
  1306. ['Pos']=50,
  1307. ['order']=92,
  1308. ['SuperSkill']={{2,22227}},
  1309. ['beforeSkill']=0,
  1310. ['SkillBranch']=3,
  1311. ['PressPoint']=9,
  1312. ['StartPressPoint']=9,
  1313. },
  1314. [22038]={
  1315. ['SkillId']=22038,
  1316. ['Name']='PSTCfg_Name_22128',
  1317. ['SkillType']=1,
  1318. ['MaxLv']=50,
  1319. ['SkillQuality']=0,
  1320. ['JobType']=4,
  1321. ['JobBranch']=2,
  1322. ['JobStage']=2,
  1323. ['ParterID']=20022,
  1324. ['OpenLevel']=45,
  1325. ['OpenNeedCost']={{113,1}},
  1326. ['Pos']=55,
  1327. ['order']=91,
  1328. ['SuperSkill']={{2,22228}},
  1329. ['beforeSkill']=0,
  1330. ['SkillBranch']=3,
  1331. ['PressPoint']=9,
  1332. ['StartPressPoint']=9,
  1333. },
  1334. [22039]={
  1335. ['SkillId']=22039,
  1336. ['Name']='PSTCfg_Name_22139',
  1337. ['SkillType']=1,
  1338. ['MaxLv']=50,
  1339. ['SkillQuality']=0,
  1340. ['JobType']=4,
  1341. ['JobBranch']=1,
  1342. ['JobStage']=3,
  1343. ['ParterID']=20031,
  1344. ['OpenLevel']=70,
  1345. ['OpenNeedCost']={{191,1}},
  1346. ['Pos']=80,
  1347. ['order']=86,
  1348. ['SuperSkill']={{1,22139}},
  1349. ['beforeSkill']=0,
  1350. ['SkillBranch']=3,
  1351. ['PressPoint']=21,
  1352. ['StartPressPoint']=21,
  1353. },
  1354. [22040]={
  1355. ['SkillId']=22040,
  1356. ['Name']='PSTCfg_Name_22140',
  1357. ['SkillType']=1,
  1358. ['MaxLv']=50,
  1359. ['SkillQuality']=0,
  1360. ['JobType']=4,
  1361. ['JobBranch']=1,
  1362. ['JobStage']=3,
  1363. ['ParterID']=20031,
  1364. ['OpenLevel']=75,
  1365. ['OpenNeedCost']={{191,1}},
  1366. ['Pos']=85,
  1367. ['order']=85,
  1368. ['SuperSkill']={{1,22140}},
  1369. ['beforeSkill']=0,
  1370. ['SkillBranch']=3,
  1371. ['PressPoint']=21,
  1372. ['StartPressPoint']=21,
  1373. },
  1374. [22041]={
  1375. ['SkillId']=22041,
  1376. ['Name']='PSTCfg_Name_22041',
  1377. ['SkillType']=1,
  1378. ['MaxLv']=50,
  1379. ['SkillQuality']=0,
  1380. ['JobType']=4,
  1381. ['JobBranch']=2,
  1382. ['JobStage']=3,
  1383. ['ParterID']=20032,
  1384. ['OpenLevel']=70,
  1385. ['OpenNeedCost']={{191,1}},
  1386. ['Pos']=80,
  1387. ['order']=86,
  1388. ['SuperSkill']={{2,22241}},
  1389. ['beforeSkill']=0,
  1390. ['SkillBranch']=3,
  1391. ['PressPoint']=21,
  1392. ['StartPressPoint']=21,
  1393. },
  1394. [22042]={
  1395. ['SkillId']=22042,
  1396. ['Name']='PSTCfg_Name_22042',
  1397. ['SkillType']=1,
  1398. ['MaxLv']=50,
  1399. ['SkillQuality']=0,
  1400. ['JobType']=4,
  1401. ['JobBranch']=2,
  1402. ['JobStage']=3,
  1403. ['ParterID']=20032,
  1404. ['OpenLevel']=75,
  1405. ['OpenNeedCost']={{191,1}},
  1406. ['Pos']=85,
  1407. ['order']=85,
  1408. ['SuperSkill']={{2,22242}},
  1409. ['beforeSkill']=0,
  1410. ['SkillBranch']=3,
  1411. ['PressPoint']=21,
  1412. ['StartPressPoint']=21,
  1413. },
  1414. [22121]={
  1415. ['SkillId']=22121,
  1416. ['Name']='PSTCfg_Name_22021',
  1417. ['SkillType']=1,
  1418. ['MaxLv']=50,
  1419. ['SkillQuality']=3,
  1420. ['JobType']=4,
  1421. ['JobBranch']=1,
  1422. ['JobStage']=3,
  1423. ['ParterID']=20031,
  1424. ['OpenLevel']=76,
  1425. ['OpenNeedCost']={{200,1}},
  1426. ['Pos']=10,
  1427. ['order']=98,
  1428. ['beforeSkill']=22021,
  1429. ['SkillBranch']=0,
  1430. ['PressPoint']=30,
  1431. ['StartPressPoint']=180,
  1432. },
  1433. [22122]={
  1434. ['SkillId']=22122,
  1435. ['Name']='PSTCfg_Name_22122',
  1436. ['SkillType']=1,
  1437. ['MaxLv']=50,
  1438. ['SkillQuality']=3,
  1439. ['JobType']=4,
  1440. ['JobBranch']=1,
  1441. ['JobStage']=3,
  1442. ['ParterID']=20031,
  1443. ['OpenLevel']=79,
  1444. ['OpenNeedCost']={{200,1}},
  1445. ['Pos']=21,
  1446. ['order']=95,
  1447. ['beforeSkill']=22022,
  1448. ['SkillBranch']=0,
  1449. ['PressPoint']=30,
  1450. ['StartPressPoint']=180,
  1451. },
  1452. [22123]={
  1453. ['SkillId']=22123,
  1454. ['Name']='PSTCfg_Name_22023',
  1455. ['SkillType']=1,
  1456. ['MaxLv']=50,
  1457. ['SkillQuality']=3,
  1458. ['JobType']=4,
  1459. ['JobBranch']=1,
  1460. ['JobStage']=3,
  1461. ['ParterID']=20031,
  1462. ['OpenLevel']=80,
  1463. ['OpenNeedCost']={{200,1}},
  1464. ['Pos']=26,
  1465. ['order']=94,
  1466. ['beforeSkill']=22023,
  1467. ['SkillBranch']=0,
  1468. ['PressPoint']=30,
  1469. ['StartPressPoint']=180,
  1470. },
  1471. [22124]={
  1472. ['SkillId']=22124,
  1473. ['Name']='PSTCfg_Name_22124',
  1474. ['SkillType']=1,
  1475. ['MaxLv']=50,
  1476. ['SkillQuality']=3,
  1477. ['JobType']=4,
  1478. ['JobBranch']=1,
  1479. ['JobStage']=3,
  1480. ['ParterID']=20031,
  1481. ['OpenLevel']=77,
  1482. ['OpenNeedCost']={{200,1}},
  1483. ['Pos']=13,
  1484. ['order']=97,
  1485. ['beforeSkill']=22024,
  1486. ['SkillBranch']=0,
  1487. ['PressPoint']=30,
  1488. ['StartPressPoint']=180,
  1489. },
  1490. [22125]={
  1491. ['SkillId']=22125,
  1492. ['Name']='PSTCfg_Name_22025',
  1493. ['SkillType']=1,
  1494. ['MaxLv']=50,
  1495. ['SkillQuality']=3,
  1496. ['JobType']=4,
  1497. ['JobBranch']=1,
  1498. ['JobStage']=3,
  1499. ['ParterID']=20031,
  1500. ['OpenLevel']=78,
  1501. ['OpenNeedCost']={{200,1}},
  1502. ['Pos']=16,
  1503. ['order']=96,
  1504. ['beforeSkill']=22025,
  1505. ['SkillBranch']=0,
  1506. ['PressPoint']=30,
  1507. ['StartPressPoint']=180,
  1508. },
  1509. [22126]={
  1510. ['SkillId']=22126,
  1511. ['Name']='PSTCfg_Name_22126',
  1512. ['SkillType']=1,
  1513. ['MaxLv']=50,
  1514. ['SkillQuality']=3,
  1515. ['JobType']=4,
  1516. ['JobBranch']=1,
  1517. ['JobStage']=3,
  1518. ['ParterID']=20031,
  1519. ['OpenLevel']=81,
  1520. ['OpenNeedCost']={{200,1}},
  1521. ['Pos']=31,
  1522. ['order']=93,
  1523. ['beforeSkill']=22026,
  1524. ['SkillBranch']=0,
  1525. ['PressPoint']=30,
  1526. ['StartPressPoint']=180,
  1527. },
  1528. [22127]={
  1529. ['SkillId']=22127,
  1530. ['Name']='PSTCfg_Name_22027',
  1531. ['SkillType']=1,
  1532. ['MaxLv']=50,
  1533. ['SkillQuality']=3,
  1534. ['JobType']=4,
  1535. ['JobBranch']=1,
  1536. ['JobStage']=3,
  1537. ['ParterID']=20031,
  1538. ['OpenLevel']=82,
  1539. ['OpenNeedCost']={{200,1}},
  1540. ['Pos']=50,
  1541. ['order']=92,
  1542. ['beforeSkill']=22027,
  1543. ['SkillBranch']=0,
  1544. ['PressPoint']=30,
  1545. ['StartPressPoint']=480,
  1546. },
  1547. [22128]={
  1548. ['SkillId']=22128,
  1549. ['Name']='PSTCfg_Name_22128',
  1550. ['SkillType']=1,
  1551. ['MaxLv']=50,
  1552. ['SkillQuality']=3,
  1553. ['JobType']=4,
  1554. ['JobBranch']=1,
  1555. ['JobStage']=3,
  1556. ['ParterID']=20031,
  1557. ['OpenLevel']=83,
  1558. ['OpenNeedCost']={{200,1}},
  1559. ['Pos']=55,
  1560. ['order']=91,
  1561. ['beforeSkill']=22028,
  1562. ['SkillBranch']=0,
  1563. ['PressPoint']=30,
  1564. ['StartPressPoint']=480,
  1565. },
  1566. [22129]={
  1567. ['SkillId']=22129,
  1568. ['Name']='PSTCfg_Name_22029',
  1569. ['SkillType']=1,
  1570. ['MaxLv']=50,
  1571. ['SkillQuality']=3,
  1572. ['JobType']=4,
  1573. ['JobBranch']=1,
  1574. ['JobStage']=3,
  1575. ['ParterID']=20031,
  1576. ['OpenLevel']=84,
  1577. ['OpenNeedCost']={{200,1}},
  1578. ['Pos']=60,
  1579. ['order']=90,
  1580. ['beforeSkill']=22029,
  1581. ['SkillBranch']=0,
  1582. ['PressPoint']=30,
  1583. ['StartPressPoint']=480,
  1584. },
  1585. [22130]={
  1586. ['SkillId']=22130,
  1587. ['Name']='PSTCfg_Name_22130',
  1588. ['SkillType']=1,
  1589. ['MaxLv']=50,
  1590. ['SkillQuality']=3,
  1591. ['JobType']=4,
  1592. ['JobBranch']=1,
  1593. ['JobStage']=3,
  1594. ['ParterID']=20031,
  1595. ['OpenLevel']=86,
  1596. ['OpenNeedCost']={{200,1}},
  1597. ['Pos']=70,
  1598. ['order']=88,
  1599. ['beforeSkill']=22030,
  1600. ['SkillBranch']=0,
  1601. ['PressPoint']=30,
  1602. ['StartPressPoint']=480,
  1603. },
  1604. [22131]={
  1605. ['SkillId']=22131,
  1606. ['Name']='PSTCfg_Name_22031',
  1607. ['SkillType']=1,
  1608. ['MaxLv']=50,
  1609. ['SkillQuality']=3,
  1610. ['JobType']=4,
  1611. ['JobBranch']=1,
  1612. ['JobStage']=3,
  1613. ['ParterID']=20031,
  1614. ['OpenLevel']=85,
  1615. ['OpenNeedCost']={{200,1}},
  1616. ['Pos']=65,
  1617. ['order']=89,
  1618. ['beforeSkill']=22031,
  1619. ['SkillBranch']=0,
  1620. ['PressPoint']=30,
  1621. ['StartPressPoint']=480,
  1622. },
  1623. [22132]={
  1624. ['SkillId']=22132,
  1625. ['Name']='PSTCfg_Name_22132',
  1626. ['SkillType']=1,
  1627. ['MaxLv']=50,
  1628. ['SkillQuality']=3,
  1629. ['JobType']=4,
  1630. ['JobBranch']=1,
  1631. ['JobStage']=3,
  1632. ['ParterID']=20031,
  1633. ['OpenLevel']=87,
  1634. ['OpenNeedCost']={{200,1}},
  1635. ['Pos']=75,
  1636. ['order']=87,
  1637. ['beforeSkill']=22032,
  1638. ['SkillBranch']=0,
  1639. ['PressPoint']=30,
  1640. ['StartPressPoint']=480,
  1641. },
  1642. [22139]={
  1643. ['SkillId']=22139,
  1644. ['Name']='PSTCfg_Name_22139',
  1645. ['SkillType']=1,
  1646. ['MaxLv']=50,
  1647. ['SkillQuality']=3,
  1648. ['JobType']=4,
  1649. ['JobBranch']=1,
  1650. ['JobStage']=3,
  1651. ['ParterID']=20031,
  1652. ['OpenLevel']=90,
  1653. ['OpenNeedCost']={{200,1}},
  1654. ['Pos']=80,
  1655. ['order']=86,
  1656. ['beforeSkill']=22039,
  1657. ['SkillBranch']=0,
  1658. ['PressPoint']=30,
  1659. ['StartPressPoint']=1080,
  1660. },
  1661. [22140]={
  1662. ['SkillId']=22140,
  1663. ['Name']='PSTCfg_Name_22140',
  1664. ['SkillType']=1,
  1665. ['MaxLv']=50,
  1666. ['SkillQuality']=3,
  1667. ['JobType']=4,
  1668. ['JobBranch']=1,
  1669. ['JobStage']=3,
  1670. ['ParterID']=20031,
  1671. ['OpenLevel']=92,
  1672. ['OpenNeedCost']={{200,1}},
  1673. ['Pos']=85,
  1674. ['order']=85,
  1675. ['beforeSkill']=22040,
  1676. ['SkillBranch']=0,
  1677. ['PressPoint']=30,
  1678. ['StartPressPoint']=1080,
  1679. },
  1680. [22221]={
  1681. ['SkillId']=22221,
  1682. ['Name']='PSTCfg_Name_22021',
  1683. ['SkillType']=1,
  1684. ['MaxLv']=50,
  1685. ['SkillQuality']=3,
  1686. ['JobType']=4,
  1687. ['JobBranch']=2,
  1688. ['JobStage']=3,
  1689. ['ParterID']=20032,
  1690. ['OpenLevel']=76,
  1691. ['OpenNeedCost']={{200,1}},
  1692. ['Pos']=10,
  1693. ['order']=98,
  1694. ['beforeSkill']=22021,
  1695. ['SkillBranch']=0,
  1696. ['PressPoint']=30,
  1697. ['StartPressPoint']=180,
  1698. },
  1699. [22222]={
  1700. ['SkillId']=22222,
  1701. ['Name']='PSTCfg_Name_22122',
  1702. ['SkillType']=1,
  1703. ['MaxLv']=50,
  1704. ['SkillQuality']=3,
  1705. ['JobType']=4,
  1706. ['JobBranch']=2,
  1707. ['JobStage']=3,
  1708. ['ParterID']=20032,
  1709. ['OpenLevel']=79,
  1710. ['OpenNeedCost']={{200,1}},
  1711. ['Pos']=21,
  1712. ['order']=95,
  1713. ['beforeSkill']=22022,
  1714. ['SkillBranch']=0,
  1715. ['PressPoint']=30,
  1716. ['StartPressPoint']=180,
  1717. },
  1718. [22223]={
  1719. ['SkillId']=22223,
  1720. ['Name']='PSTCfg_Name_22023',
  1721. ['SkillType']=1,
  1722. ['MaxLv']=50,
  1723. ['SkillQuality']=3,
  1724. ['JobType']=4,
  1725. ['JobBranch']=2,
  1726. ['JobStage']=3,
  1727. ['ParterID']=20032,
  1728. ['OpenLevel']=80,
  1729. ['OpenNeedCost']={{200,1}},
  1730. ['Pos']=26,
  1731. ['order']=94,
  1732. ['beforeSkill']=22023,
  1733. ['SkillBranch']=0,
  1734. ['PressPoint']=30,
  1735. ['StartPressPoint']=180,
  1736. },
  1737. [22224]={
  1738. ['SkillId']=22224,
  1739. ['Name']='PSTCfg_Name_22124',
  1740. ['SkillType']=1,
  1741. ['MaxLv']=50,
  1742. ['SkillQuality']=3,
  1743. ['JobType']=4,
  1744. ['JobBranch']=2,
  1745. ['JobStage']=3,
  1746. ['ParterID']=20032,
  1747. ['OpenLevel']=77,
  1748. ['OpenNeedCost']={{200,1}},
  1749. ['Pos']=13,
  1750. ['order']=97,
  1751. ['beforeSkill']=22024,
  1752. ['SkillBranch']=0,
  1753. ['PressPoint']=30,
  1754. ['StartPressPoint']=180,
  1755. },
  1756. [22225]={
  1757. ['SkillId']=22225,
  1758. ['Name']='PSTCfg_Name_22025',
  1759. ['SkillType']=1,
  1760. ['MaxLv']=50,
  1761. ['SkillQuality']=3,
  1762. ['JobType']=4,
  1763. ['JobBranch']=2,
  1764. ['JobStage']=3,
  1765. ['ParterID']=20032,
  1766. ['OpenLevel']=78,
  1767. ['OpenNeedCost']={{200,1}},
  1768. ['Pos']=16,
  1769. ['order']=96,
  1770. ['beforeSkill']=22025,
  1771. ['SkillBranch']=0,
  1772. ['PressPoint']=30,
  1773. ['StartPressPoint']=180,
  1774. },
  1775. [22226]={
  1776. ['SkillId']=22226,
  1777. ['Name']='PSTCfg_Name_22126',
  1778. ['SkillType']=1,
  1779. ['MaxLv']=50,
  1780. ['SkillQuality']=3,
  1781. ['JobType']=4,
  1782. ['JobBranch']=2,
  1783. ['JobStage']=3,
  1784. ['ParterID']=20032,
  1785. ['OpenLevel']=81,
  1786. ['OpenNeedCost']={{200,1}},
  1787. ['Pos']=31,
  1788. ['order']=93,
  1789. ['beforeSkill']=22026,
  1790. ['SkillBranch']=0,
  1791. ['PressPoint']=30,
  1792. ['StartPressPoint']=180,
  1793. },
  1794. [22227]={
  1795. ['SkillId']=22227,
  1796. ['Name']='PSTCfg_Name_22027',
  1797. ['SkillType']=1,
  1798. ['MaxLv']=50,
  1799. ['SkillQuality']=3,
  1800. ['JobType']=4,
  1801. ['JobBranch']=2,
  1802. ['JobStage']=3,
  1803. ['ParterID']=20032,
  1804. ['OpenLevel']=82,
  1805. ['OpenNeedCost']={{200,1}},
  1806. ['Pos']=50,
  1807. ['order']=92,
  1808. ['beforeSkill']=22037,
  1809. ['SkillBranch']=0,
  1810. ['PressPoint']=30,
  1811. ['StartPressPoint']=480,
  1812. },
  1813. [22228]={
  1814. ['SkillId']=22228,
  1815. ['Name']='PSTCfg_Name_22128',
  1816. ['SkillType']=1,
  1817. ['MaxLv']=50,
  1818. ['SkillQuality']=3,
  1819. ['JobType']=4,
  1820. ['JobBranch']=2,
  1821. ['JobStage']=3,
  1822. ['ParterID']=20032,
  1823. ['OpenLevel']=83,
  1824. ['OpenNeedCost']={{200,1}},
  1825. ['Pos']=55,
  1826. ['order']=91,
  1827. ['beforeSkill']=22038,
  1828. ['SkillBranch']=0,
  1829. ['PressPoint']=30,
  1830. ['StartPressPoint']=480,
  1831. },
  1832. [22233]={
  1833. ['SkillId']=22233,
  1834. ['Name']='PSTCfg_Name_22033',
  1835. ['SkillType']=1,
  1836. ['MaxLv']=50,
  1837. ['SkillQuality']=3,
  1838. ['JobType']=4,
  1839. ['JobBranch']=2,
  1840. ['JobStage']=3,
  1841. ['ParterID']=20032,
  1842. ['OpenLevel']=84,
  1843. ['OpenNeedCost']={{200,1}},
  1844. ['Pos']=60,
  1845. ['order']=90,
  1846. ['beforeSkill']=22033,
  1847. ['SkillBranch']=0,
  1848. ['PressPoint']=30,
  1849. ['StartPressPoint']=480,
  1850. },
  1851. [22234]={
  1852. ['SkillId']=22234,
  1853. ['Name']='PSTCfg_Name_22234',
  1854. ['SkillType']=1,
  1855. ['MaxLv']=50,
  1856. ['SkillQuality']=3,
  1857. ['JobType']=4,
  1858. ['JobBranch']=2,
  1859. ['JobStage']=3,
  1860. ['ParterID']=20032,
  1861. ['OpenLevel']=86,
  1862. ['OpenNeedCost']={{200,1}},
  1863. ['Pos']=70,
  1864. ['order']=88,
  1865. ['beforeSkill']=22034,
  1866. ['SkillBranch']=0,
  1867. ['PressPoint']=30,
  1868. ['StartPressPoint']=480,
  1869. },
  1870. [22235]={
  1871. ['SkillId']=22235,
  1872. ['Name']='PSTCfg_Name_22035',
  1873. ['SkillType']=1,
  1874. ['MaxLv']=50,
  1875. ['SkillQuality']=3,
  1876. ['JobType']=4,
  1877. ['JobBranch']=2,
  1878. ['JobStage']=3,
  1879. ['ParterID']=20032,
  1880. ['OpenLevel']=85,
  1881. ['OpenNeedCost']={{200,1}},
  1882. ['Pos']=65,
  1883. ['order']=89,
  1884. ['beforeSkill']=22035,
  1885. ['SkillBranch']=0,
  1886. ['PressPoint']=30,
  1887. ['StartPressPoint']=480,
  1888. },
  1889. [22236]={
  1890. ['SkillId']=22236,
  1891. ['Name']='PSTCfg_Name_22236',
  1892. ['SkillType']=1,
  1893. ['MaxLv']=50,
  1894. ['SkillQuality']=3,
  1895. ['JobType']=4,
  1896. ['JobBranch']=2,
  1897. ['JobStage']=3,
  1898. ['ParterID']=20032,
  1899. ['OpenLevel']=87,
  1900. ['OpenNeedCost']={{200,1}},
  1901. ['Pos']=75,
  1902. ['order']=87,
  1903. ['beforeSkill']=22036,
  1904. ['SkillBranch']=0,
  1905. ['PressPoint']=30,
  1906. ['StartPressPoint']=480,
  1907. },
  1908. [22241]={
  1909. ['SkillId']=22241,
  1910. ['Name']='PSTCfg_Name_22041',
  1911. ['SkillType']=1,
  1912. ['MaxLv']=50,
  1913. ['SkillQuality']=3,
  1914. ['JobType']=4,
  1915. ['JobBranch']=2,
  1916. ['JobStage']=3,
  1917. ['ParterID']=20032,
  1918. ['OpenLevel']=90,
  1919. ['OpenNeedCost']={{200,1}},
  1920. ['Pos']=80,
  1921. ['order']=86,
  1922. ['beforeSkill']=22041,
  1923. ['SkillBranch']=0,
  1924. ['PressPoint']=30,
  1925. ['StartPressPoint']=1080,
  1926. },
  1927. [22242]={
  1928. ['SkillId']=22242,
  1929. ['Name']='PSTCfg_Name_22042',
  1930. ['SkillType']=1,
  1931. ['MaxLv']=50,
  1932. ['SkillQuality']=3,
  1933. ['JobType']=4,
  1934. ['JobBranch']=2,
  1935. ['JobStage']=3,
  1936. ['ParterID']=20032,
  1937. ['OpenLevel']=92,
  1938. ['OpenNeedCost']={{200,1}},
  1939. ['Pos']=85,
  1940. ['order']=85,
  1941. ['beforeSkill']=22042,
  1942. ['SkillBranch']=0,
  1943. ['PressPoint']=30,
  1944. ['StartPressPoint']=1080,
  1945. },
  1946. [23022]={
  1947. ['SkillId']=23022,
  1948. ['Name']='PSTCfg_Name_23122',
  1949. ['SkillType']=1,
  1950. ['MaxLv']=50,
  1951. ['SkillQuality']=0,
  1952. ['JobType']=3,
  1953. ['JobBranch']=1,
  1954. ['JobStage']=2,
  1955. ['ParterID']=30021,
  1956. ['OpenLevel']=45,
  1957. ['OpenNeedCost']={{113,1}},
  1958. ['Pos']=55,
  1959. ['order']=91,
  1960. ['SuperSkill']={{1,23122}},
  1961. ['beforeSkill']=0,
  1962. ['SkillBranch']=3,
  1963. ['PressPoint']=9,
  1964. ['StartPressPoint']=9,
  1965. },
  1966. [23023]={
  1967. ['SkillId']=23023,
  1968. ['Name']='PSTCfg_Name_23223',
  1969. ['SkillType']=1,
  1970. ['MaxLv']=50,
  1971. ['SkillQuality']=0,
  1972. ['JobType']=3,
  1973. ['JobBranch']=0,
  1974. ['JobStage']=1,
  1975. ['ParterID']=30010,
  1976. ['OpenLevel']=13,
  1977. ['OpenNeedCost']={{1,2000},},
  1978. ['Pos']=13,
  1979. ['order']=97,
  1980. ['SuperSkill']={{1,23123},{2,23223}},
  1981. ['beforeSkill']=0,
  1982. ['SkillBranch']=3,
  1983. ['PressPoint']=3,
  1984. ['StartPressPoint']=3,
  1985. },
  1986. [23024]={
  1987. ['SkillId']=23024,
  1988. ['Name']='PSTCfg_Name_23124',
  1989. ['SkillType']=1,
  1990. ['MaxLv']=50,
  1991. ['SkillQuality']=0,
  1992. ['JobType']=3,
  1993. ['JobBranch']=0,
  1994. ['JobStage']=1,
  1995. ['ParterID']=30010,
  1996. ['OpenLevel']=10,
  1997. ['OpenNeedCost']={{1,1000},},
  1998. ['Pos']=10,
  1999. ['order']=98,
  2000. ['SuperSkill']={{1,23124},{2,23224}},
  2001. ['beforeSkill']=0,
  2002. ['SkillBranch']=3,
  2003. ['PressPoint']=3,
  2004. ['StartPressPoint']=3,
  2005. },
  2006. [23025]={
  2007. ['SkillId']=23025,
  2008. ['Name']='PSTCfg_Name_23225',
  2009. ['SkillType']=1,
  2010. ['MaxLv']=50,
  2011. ['SkillQuality']=0,
  2012. ['JobType']=3,
  2013. ['JobBranch']=0,
  2014. ['JobStage']=1,
  2015. ['ParterID']=30010,
  2016. ['OpenLevel']=31,
  2017. ['OpenNeedCost']={{113,1}},
  2018. ['Pos']=31,
  2019. ['order']=93,
  2020. ['SuperSkill']={{1,23125},{2,23225}},
  2021. ['beforeSkill']=0,
  2022. ['SkillBranch']=3,
  2023. ['PressPoint']=3,
  2024. ['StartPressPoint']=3,
  2025. },
  2026. [23026]={
  2027. ['SkillId']=23026,
  2028. ['Name']='PSTCfg_Name_23126',
  2029. ['SkillType']=1,
  2030. ['MaxLv']=50,
  2031. ['SkillQuality']=0,
  2032. ['JobType']=3,
  2033. ['JobBranch']=0,
  2034. ['JobStage']=1,
  2035. ['ParterID']=30010,
  2036. ['OpenLevel']=21,
  2037. ['OpenNeedCost']={{113,1}},
  2038. ['Pos']=21,
  2039. ['order']=95,
  2040. ['SuperSkill']={{1,23126},{2,23226}},
  2041. ['beforeSkill']=0,
  2042. ['SkillBranch']=3,
  2043. ['PressPoint']=3,
  2044. ['StartPressPoint']=3,
  2045. },
  2046. [23027]={
  2047. ['SkillId']=23027,
  2048. ['Name']='PSTCfg_Name_23027',
  2049. ['SkillType']=1,
  2050. ['MaxLv']=50,
  2051. ['SkillQuality']=0,
  2052. ['JobType']=3,
  2053. ['JobBranch']=0,
  2054. ['JobStage']=1,
  2055. ['ParterID']=30010,
  2056. ['OpenLevel']=16,
  2057. ['OpenNeedCost']={{1,3000},},
  2058. ['Pos']=16,
  2059. ['order']=96,
  2060. ['SuperSkill']={{1,23127},{2,23227}},
  2061. ['beforeSkill']=0,
  2062. ['SkillBranch']=3,
  2063. ['PressPoint']=3,
  2064. ['StartPressPoint']=3,
  2065. },
  2066. [23028]={
  2067. ['SkillId']=23028,
  2068. ['Name']='PSTCfg_Name_23128',
  2069. ['SkillType']=1,
  2070. ['MaxLv']=50,
  2071. ['SkillQuality']=0,
  2072. ['JobType']=3,
  2073. ['JobBranch']=0,
  2074. ['JobStage']=1,
  2075. ['ParterID']=30010,
  2076. ['OpenLevel']=26,
  2077. ['OpenNeedCost']={{113,1}},
  2078. ['Pos']=26,
  2079. ['order']=94,
  2080. ['SuperSkill']={{1,23128},{2,23228}},
  2081. ['beforeSkill']=0,
  2082. ['SkillBranch']=3,
  2083. ['PressPoint']=3,
  2084. ['StartPressPoint']=3,
  2085. },
  2086. [23029]={
  2087. ['SkillId']=23029,
  2088. ['Name']='PSTCfg_Name_23029',
  2089. ['SkillType']=1,
  2090. ['MaxLv']=50,
  2091. ['SkillQuality']=0,
  2092. ['JobType']=3,
  2093. ['JobBranch']=1,
  2094. ['JobStage']=2,
  2095. ['ParterID']=30021,
  2096. ['OpenLevel']=40,
  2097. ['OpenNeedCost']={{113,1}},
  2098. ['Pos']=50,
  2099. ['order']=92,
  2100. ['SuperSkill']={{1,23129}},
  2101. ['beforeSkill']=0,
  2102. ['SkillBranch']=3,
  2103. ['PressPoint']=9,
  2104. ['StartPressPoint']=9,
  2105. },
  2106. [23030]={
  2107. ['SkillId']=23030,
  2108. ['Name']='PSTCfg_Name_23130',
  2109. ['SkillType']=1,
  2110. ['MaxLv']=50,
  2111. ['SkillQuality']=0,
  2112. ['JobType']=3,
  2113. ['JobBranch']=1,
  2114. ['JobStage']=2,
  2115. ['ParterID']=30021,
  2116. ['OpenLevel']=50,
  2117. ['OpenNeedCost']={{113,1}},
  2118. ['Pos']=60,
  2119. ['order']=90,
  2120. ['SuperSkill']={{1,23130}},
  2121. ['beforeSkill']=0,
  2122. ['SkillBranch']=3,
  2123. ['PressPoint']=9,
  2124. ['StartPressPoint']=9,
  2125. },
  2126. [23031]={
  2127. ['SkillId']=23031,
  2128. ['Name']='PSTCfg_Name_23031',
  2129. ['SkillType']=1,
  2130. ['MaxLv']=50,
  2131. ['SkillQuality']=0,
  2132. ['JobType']=3,
  2133. ['JobBranch']=1,
  2134. ['JobStage']=2,
  2135. ['ParterID']=30021,
  2136. ['OpenLevel']=65,
  2137. ['OpenNeedCost']={{114,1}},
  2138. ['Pos']=75,
  2139. ['order']=87,
  2140. ['SuperSkill']={{1,23131}},
  2141. ['beforeSkill']=0,
  2142. ['SkillBranch']=3,
  2143. ['PressPoint']=9,
  2144. ['StartPressPoint']=9,
  2145. },
  2146. [23032]={
  2147. ['SkillId']=23032,
  2148. ['Name']='PSTCfg_Name_23132',
  2149. ['SkillType']=1,
  2150. ['MaxLv']=50,
  2151. ['SkillQuality']=0,
  2152. ['JobType']=3,
  2153. ['JobBranch']=1,
  2154. ['JobStage']=2,
  2155. ['ParterID']=30021,
  2156. ['OpenLevel']=55,
  2157. ['OpenNeedCost']={{114,1}},
  2158. ['Pos']=65,
  2159. ['order']=89,
  2160. ['SuperSkill']={{1,23132}},
  2161. ['beforeSkill']=0,
  2162. ['SkillBranch']=3,
  2163. ['PressPoint']=9,
  2164. ['StartPressPoint']=9,
  2165. },
  2166. [23033]={
  2167. ['SkillId']=23033,
  2168. ['Name']='PSTCfg_Name_23033',
  2169. ['SkillType']=1,
  2170. ['MaxLv']=50,
  2171. ['SkillQuality']=0,
  2172. ['JobType']=3,
  2173. ['JobBranch']=1,
  2174. ['JobStage']=2,
  2175. ['ParterID']=30021,
  2176. ['OpenLevel']=60,
  2177. ['OpenNeedCost']={{114,1}},
  2178. ['Pos']=70,
  2179. ['order']=88,
  2180. ['SuperSkill']={{1,23133}},
  2181. ['beforeSkill']=0,
  2182. ['SkillBranch']=3,
  2183. ['PressPoint']=9,
  2184. ['StartPressPoint']=9,
  2185. },
  2186. [23034]={
  2187. ['SkillId']=23034,
  2188. ['Name']='PSTCfg_Name_23034',
  2189. ['SkillType']=1,
  2190. ['MaxLv']=50,
  2191. ['SkillQuality']=0,
  2192. ['JobType']=3,
  2193. ['JobBranch']=2,
  2194. ['JobStage']=2,
  2195. ['ParterID']=30022,
  2196. ['OpenLevel']=50,
  2197. ['OpenNeedCost']={{113,1}},
  2198. ['Pos']=60,
  2199. ['order']=90,
  2200. ['SuperSkill']={{2,23234}},
  2201. ['beforeSkill']=0,
  2202. ['SkillBranch']=3,
  2203. ['PressPoint']=9,
  2204. ['StartPressPoint']=9,
  2205. },
  2206. [23035]={
  2207. ['SkillId']=23035,
  2208. ['Name']='PSTCfg_Name_23035',
  2209. ['SkillType']=1,
  2210. ['MaxLv']=50,
  2211. ['SkillQuality']=0,
  2212. ['JobType']=3,
  2213. ['JobBranch']=2,
  2214. ['JobStage']=2,
  2215. ['ParterID']=30022,
  2216. ['OpenLevel']=60,
  2217. ['OpenNeedCost']={{114,1}},
  2218. ['Pos']=70,
  2219. ['order']=88,
  2220. ['SuperSkill']={{2,23235}},
  2221. ['beforeSkill']=0,
  2222. ['SkillBranch']=3,
  2223. ['PressPoint']=9,
  2224. ['StartPressPoint']=9,
  2225. },
  2226. [23036]={
  2227. ['SkillId']=23036,
  2228. ['Name']='PSTCfg_Name_23236',
  2229. ['SkillType']=1,
  2230. ['MaxLv']=50,
  2231. ['SkillQuality']=0,
  2232. ['JobType']=3,
  2233. ['JobBranch']=2,
  2234. ['JobStage']=2,
  2235. ['ParterID']=30022,
  2236. ['OpenLevel']=55,
  2237. ['OpenNeedCost']={{114,1}},
  2238. ['Pos']=65,
  2239. ['order']=89,
  2240. ['SuperSkill']={{2,23236}},
  2241. ['beforeSkill']=0,
  2242. ['SkillBranch']=3,
  2243. ['PressPoint']=9,
  2244. ['StartPressPoint']=9,
  2245. },
  2246. [23037]={
  2247. ['SkillId']=23037,
  2248. ['Name']='PSTCfg_Name_23237',
  2249. ['SkillType']=1,
  2250. ['MaxLv']=50,
  2251. ['SkillQuality']=0,
  2252. ['JobType']=3,
  2253. ['JobBranch']=2,
  2254. ['JobStage']=2,
  2255. ['ParterID']=30022,
  2256. ['OpenLevel']=65,
  2257. ['OpenNeedCost']={{114,1}},
  2258. ['Pos']=75,
  2259. ['order']=87,
  2260. ['SuperSkill']={{2,23237}},
  2261. ['beforeSkill']=0,
  2262. ['SkillBranch']=3,
  2263. ['PressPoint']=9,
  2264. ['StartPressPoint']=9,
  2265. },
  2266. [23038]={
  2267. ['SkillId']=23038,
  2268. ['Name']='PSTCfg_Name_23122',
  2269. ['SkillType']=1,
  2270. ['MaxLv']=50,
  2271. ['SkillQuality']=0,
  2272. ['JobType']=3,
  2273. ['JobBranch']=2,
  2274. ['JobStage']=2,
  2275. ['ParterID']=30022,
  2276. ['OpenLevel']=45,
  2277. ['OpenNeedCost']={{113,1}},
  2278. ['Pos']=55,
  2279. ['order']=91,
  2280. ['SuperSkill']={{2,23222}},
  2281. ['beforeSkill']=0,
  2282. ['SkillBranch']=3,
  2283. ['PressPoint']=9,
  2284. ['StartPressPoint']=9,
  2285. },
  2286. [23039]={
  2287. ['SkillId']=23039,
  2288. ['Name']='PSTCfg_Name_23029',
  2289. ['SkillType']=1,
  2290. ['MaxLv']=50,
  2291. ['SkillQuality']=0,
  2292. ['JobType']=3,
  2293. ['JobBranch']=2,
  2294. ['JobStage']=2,
  2295. ['ParterID']=30022,
  2296. ['OpenLevel']=40,
  2297. ['OpenNeedCost']={{113,1}},
  2298. ['Pos']=50,
  2299. ['order']=92,
  2300. ['SuperSkill']={{2,23229}},
  2301. ['beforeSkill']=0,
  2302. ['SkillBranch']=3,
  2303. ['PressPoint']=9,
  2304. ['StartPressPoint']=9,
  2305. },
  2306. [23040]={
  2307. ['SkillId']=23040,
  2308. ['Name']='PSTCfg_Name_23140',
  2309. ['SkillType']=1,
  2310. ['MaxLv']=50,
  2311. ['SkillQuality']=0,
  2312. ['JobType']=3,
  2313. ['JobBranch']=1,
  2314. ['JobStage']=3,
  2315. ['ParterID']=30031,
  2316. ['OpenLevel']=70,
  2317. ['OpenNeedCost']={{191,1}},
  2318. ['Pos']=80,
  2319. ['order']=86,
  2320. ['SuperSkill']={{1,23140}},
  2321. ['beforeSkill']=0,
  2322. ['SkillBranch']=3,
  2323. ['PressPoint']=21,
  2324. ['StartPressPoint']=21,
  2325. },
  2326. [23041]={
  2327. ['SkillId']=23041,
  2328. ['Name']='PSTCfg_Name_23141',
  2329. ['SkillType']=1,
  2330. ['MaxLv']=50,
  2331. ['SkillQuality']=0,
  2332. ['JobType']=3,
  2333. ['JobBranch']=1,
  2334. ['JobStage']=3,
  2335. ['ParterID']=30031,
  2336. ['OpenLevel']=75,
  2337. ['OpenNeedCost']={{191,1}},
  2338. ['Pos']=85,
  2339. ['order']=85,
  2340. ['SuperSkill']={{1,23141}},
  2341. ['beforeSkill']=0,
  2342. ['SkillBranch']=3,
  2343. ['PressPoint']=21,
  2344. ['StartPressPoint']=21,
  2345. },
  2346. [23042]={
  2347. ['SkillId']=23042,
  2348. ['Name']='PSTCfg_Name_23042',
  2349. ['SkillType']=1,
  2350. ['MaxLv']=50,
  2351. ['SkillQuality']=0,
  2352. ['JobType']=3,
  2353. ['JobBranch']=2,
  2354. ['JobStage']=3,
  2355. ['ParterID']=30032,
  2356. ['OpenLevel']=70,
  2357. ['OpenNeedCost']={{191,1}},
  2358. ['Pos']=80,
  2359. ['order']=86,
  2360. ['SuperSkill']={{2,23242}},
  2361. ['beforeSkill']=0,
  2362. ['SkillBranch']=3,
  2363. ['PressPoint']=21,
  2364. ['StartPressPoint']=21,
  2365. },
  2366. [23043]={
  2367. ['SkillId']=23043,
  2368. ['Name']='PSTCfg_Name_23243',
  2369. ['SkillType']=1,
  2370. ['MaxLv']=50,
  2371. ['SkillQuality']=0,
  2372. ['JobType']=3,
  2373. ['JobBranch']=2,
  2374. ['JobStage']=3,
  2375. ['ParterID']=30032,
  2376. ['OpenLevel']=75,
  2377. ['OpenNeedCost']={{191,1}},
  2378. ['Pos']=85,
  2379. ['order']=85,
  2380. ['SuperSkill']={{2,23243}},
  2381. ['beforeSkill']=0,
  2382. ['SkillBranch']=3,
  2383. ['PressPoint']=21,
  2384. ['StartPressPoint']=21,
  2385. },
  2386. [23122]={
  2387. ['SkillId']=23122,
  2388. ['Name']='PSTCfg_Name_23122',
  2389. ['SkillType']=1,
  2390. ['MaxLv']=50,
  2391. ['SkillQuality']=3,
  2392. ['JobType']=3,
  2393. ['JobBranch']=1,
  2394. ['JobStage']=3,
  2395. ['ParterID']=30031,
  2396. ['OpenLevel']=83,
  2397. ['OpenNeedCost']={{200,1}},
  2398. ['Pos']=55,
  2399. ['order']=91,
  2400. ['beforeSkill']=23022,
  2401. ['SkillBranch']=0,
  2402. ['PressPoint']=30,
  2403. ['StartPressPoint']=480,
  2404. },
  2405. [23123]={
  2406. ['SkillId']=23123,
  2407. ['Name']='PSTCfg_Name_23223',
  2408. ['SkillType']=1,
  2409. ['MaxLv']=50,
  2410. ['SkillQuality']=3,
  2411. ['JobType']=3,
  2412. ['JobBranch']=1,
  2413. ['JobStage']=3,
  2414. ['ParterID']=30031,
  2415. ['OpenLevel']=77,
  2416. ['OpenNeedCost']={{200,1}},
  2417. ['Pos']=13,
  2418. ['order']=97,
  2419. ['beforeSkill']=23023,
  2420. ['SkillBranch']=0,
  2421. ['PressPoint']=30,
  2422. ['StartPressPoint']=180,
  2423. },
  2424. [23124]={
  2425. ['SkillId']=23124,
  2426. ['Name']='PSTCfg_Name_23124',
  2427. ['SkillType']=1,
  2428. ['MaxLv']=50,
  2429. ['SkillQuality']=3,
  2430. ['JobType']=3,
  2431. ['JobBranch']=1,
  2432. ['JobStage']=3,
  2433. ['ParterID']=30031,
  2434. ['OpenLevel']=76,
  2435. ['OpenNeedCost']={{200,1}},
  2436. ['Pos']=10,
  2437. ['order']=98,
  2438. ['beforeSkill']=23024,
  2439. ['SkillBranch']=0,
  2440. ['PressPoint']=30,
  2441. ['StartPressPoint']=180,
  2442. },
  2443. [23125]={
  2444. ['SkillId']=23125,
  2445. ['Name']='PSTCfg_Name_23225',
  2446. ['SkillType']=1,
  2447. ['MaxLv']=50,
  2448. ['SkillQuality']=3,
  2449. ['JobType']=3,
  2450. ['JobBranch']=1,
  2451. ['JobStage']=3,
  2452. ['ParterID']=30031,
  2453. ['OpenLevel']=81,
  2454. ['OpenNeedCost']={{200,1}},
  2455. ['Pos']=31,
  2456. ['order']=93,
  2457. ['beforeSkill']=23025,
  2458. ['SkillBranch']=0,
  2459. ['PressPoint']=30,
  2460. ['StartPressPoint']=180,
  2461. },
  2462. [23126]={
  2463. ['SkillId']=23126,
  2464. ['Name']='PSTCfg_Name_23126',
  2465. ['SkillType']=1,
  2466. ['MaxLv']=50,
  2467. ['SkillQuality']=3,
  2468. ['JobType']=3,
  2469. ['JobBranch']=1,
  2470. ['JobStage']=3,
  2471. ['ParterID']=30031,
  2472. ['OpenLevel']=79,
  2473. ['OpenNeedCost']={{200,1}},
  2474. ['Pos']=21,
  2475. ['order']=95,
  2476. ['beforeSkill']=23026,
  2477. ['SkillBranch']=0,
  2478. ['PressPoint']=30,
  2479. ['StartPressPoint']=180,
  2480. },
  2481. [23127]={
  2482. ['SkillId']=23127,
  2483. ['Name']='PSTCfg_Name_23027',
  2484. ['SkillType']=1,
  2485. ['MaxLv']=50,
  2486. ['SkillQuality']=3,
  2487. ['JobType']=3,
  2488. ['JobBranch']=1,
  2489. ['JobStage']=3,
  2490. ['ParterID']=30031,
  2491. ['OpenLevel']=78,
  2492. ['OpenNeedCost']={{200,1}},
  2493. ['Pos']=16,
  2494. ['order']=96,
  2495. ['beforeSkill']=23027,
  2496. ['SkillBranch']=0,
  2497. ['PressPoint']=30,
  2498. ['StartPressPoint']=180,
  2499. },
  2500. [23128]={
  2501. ['SkillId']=23128,
  2502. ['Name']='PSTCfg_Name_23128',
  2503. ['SkillType']=1,
  2504. ['MaxLv']=50,
  2505. ['SkillQuality']=3,
  2506. ['JobType']=3,
  2507. ['JobBranch']=1,
  2508. ['JobStage']=3,
  2509. ['ParterID']=30031,
  2510. ['OpenLevel']=80,
  2511. ['OpenNeedCost']={{200,1}},
  2512. ['Pos']=26,
  2513. ['order']=94,
  2514. ['beforeSkill']=23028,
  2515. ['SkillBranch']=0,
  2516. ['PressPoint']=30,
  2517. ['StartPressPoint']=180,
  2518. },
  2519. [23129]={
  2520. ['SkillId']=23129,
  2521. ['Name']='PSTCfg_Name_23029',
  2522. ['SkillType']=1,
  2523. ['MaxLv']=50,
  2524. ['SkillQuality']=3,
  2525. ['JobType']=3,
  2526. ['JobBranch']=1,
  2527. ['JobStage']=3,
  2528. ['ParterID']=30031,
  2529. ['OpenLevel']=82,
  2530. ['OpenNeedCost']={{200,1}},
  2531. ['Pos']=50,
  2532. ['order']=92,
  2533. ['beforeSkill']=23029,
  2534. ['SkillBranch']=0,
  2535. ['PressPoint']=30,
  2536. ['StartPressPoint']=480,
  2537. },
  2538. [23130]={
  2539. ['SkillId']=23130,
  2540. ['Name']='PSTCfg_Name_23130',
  2541. ['SkillType']=1,
  2542. ['MaxLv']=50,
  2543. ['SkillQuality']=3,
  2544. ['JobType']=3,
  2545. ['JobBranch']=1,
  2546. ['JobStage']=3,
  2547. ['ParterID']=30031,
  2548. ['OpenLevel']=84,
  2549. ['OpenNeedCost']={{200,1}},
  2550. ['Pos']=60,
  2551. ['order']=90,
  2552. ['beforeSkill']=23030,
  2553. ['SkillBranch']=0,
  2554. ['PressPoint']=30,
  2555. ['StartPressPoint']=480,
  2556. },
  2557. [23131]={
  2558. ['SkillId']=23131,
  2559. ['Name']='PSTCfg_Name_23031',
  2560. ['SkillType']=1,
  2561. ['MaxLv']=50,
  2562. ['SkillQuality']=3,
  2563. ['JobType']=3,
  2564. ['JobBranch']=1,
  2565. ['JobStage']=3,
  2566. ['ParterID']=30031,
  2567. ['OpenLevel']=87,
  2568. ['OpenNeedCost']={{200,1}},
  2569. ['Pos']=75,
  2570. ['order']=87,
  2571. ['beforeSkill']=23031,
  2572. ['SkillBranch']=0,
  2573. ['PressPoint']=30,
  2574. ['StartPressPoint']=480,
  2575. },
  2576. [23132]={
  2577. ['SkillId']=23132,
  2578. ['Name']='PSTCfg_Name_23132',
  2579. ['SkillType']=1,
  2580. ['MaxLv']=50,
  2581. ['SkillQuality']=3,
  2582. ['JobType']=3,
  2583. ['JobBranch']=1,
  2584. ['JobStage']=3,
  2585. ['ParterID']=30031,
  2586. ['OpenLevel']=85,
  2587. ['OpenNeedCost']={{200,1}},
  2588. ['Pos']=65,
  2589. ['order']=89,
  2590. ['beforeSkill']=23032,
  2591. ['SkillBranch']=0,
  2592. ['PressPoint']=30,
  2593. ['StartPressPoint']=480,
  2594. },
  2595. [23133]={
  2596. ['SkillId']=23133,
  2597. ['Name']='PSTCfg_Name_23033',
  2598. ['SkillType']=1,
  2599. ['MaxLv']=50,
  2600. ['SkillQuality']=3,
  2601. ['JobType']=3,
  2602. ['JobBranch']=1,
  2603. ['JobStage']=3,
  2604. ['ParterID']=30031,
  2605. ['OpenLevel']=86,
  2606. ['OpenNeedCost']={{200,1}},
  2607. ['Pos']=70,
  2608. ['order']=88,
  2609. ['beforeSkill']=23033,
  2610. ['SkillBranch']=0,
  2611. ['PressPoint']=30,
  2612. ['StartPressPoint']=480,
  2613. },
  2614. [23140]={
  2615. ['SkillId']=23140,
  2616. ['Name']='PSTCfg_Name_23140',
  2617. ['SkillType']=1,
  2618. ['MaxLv']=50,
  2619. ['SkillQuality']=3,
  2620. ['JobType']=3,
  2621. ['JobBranch']=1,
  2622. ['JobStage']=3,
  2623. ['ParterID']=30031,
  2624. ['OpenLevel']=90,
  2625. ['OpenNeedCost']={{200,1}},
  2626. ['Pos']=80,
  2627. ['order']=86,
  2628. ['beforeSkill']=23040,
  2629. ['SkillBranch']=0,
  2630. ['PressPoint']=30,
  2631. ['StartPressPoint']=1080,
  2632. },
  2633. [23141]={
  2634. ['SkillId']=23141,
  2635. ['Name']='PSTCfg_Name_23141',
  2636. ['SkillType']=1,
  2637. ['MaxLv']=50,
  2638. ['SkillQuality']=3,
  2639. ['JobType']=3,
  2640. ['JobBranch']=1,
  2641. ['JobStage']=3,
  2642. ['ParterID']=30031,
  2643. ['OpenLevel']=92,
  2644. ['OpenNeedCost']={{200,1}},
  2645. ['Pos']=85,
  2646. ['order']=85,
  2647. ['beforeSkill']=23041,
  2648. ['SkillBranch']=0,
  2649. ['PressPoint']=30,
  2650. ['StartPressPoint']=1080,
  2651. },
  2652. [23222]={
  2653. ['SkillId']=23222,
  2654. ['Name']='PSTCfg_Name_23122',
  2655. ['SkillType']=1,
  2656. ['MaxLv']=50,
  2657. ['SkillQuality']=3,
  2658. ['JobType']=3,
  2659. ['JobBranch']=2,
  2660. ['JobStage']=3,
  2661. ['ParterID']=30032,
  2662. ['OpenLevel']=83,
  2663. ['OpenNeedCost']={{200,1}},
  2664. ['Pos']=55,
  2665. ['order']=91,
  2666. ['beforeSkill']=23038,
  2667. ['SkillBranch']=0,
  2668. ['PressPoint']=30,
  2669. ['StartPressPoint']=480,
  2670. },
  2671. [23223]={
  2672. ['SkillId']=23223,
  2673. ['Name']='PSTCfg_Name_23223',
  2674. ['SkillType']=1,
  2675. ['MaxLv']=50,
  2676. ['SkillQuality']=3,
  2677. ['JobType']=3,
  2678. ['JobBranch']=2,
  2679. ['JobStage']=3,
  2680. ['ParterID']=30032,
  2681. ['OpenLevel']=77,
  2682. ['OpenNeedCost']={{200,1}},
  2683. ['Pos']=13,
  2684. ['order']=97,
  2685. ['beforeSkill']=23023,
  2686. ['SkillBranch']=0,
  2687. ['PressPoint']=30,
  2688. ['StartPressPoint']=180,
  2689. },
  2690. [23224]={
  2691. ['SkillId']=23224,
  2692. ['Name']='PSTCfg_Name_23124',
  2693. ['SkillType']=1,
  2694. ['MaxLv']=50,
  2695. ['SkillQuality']=3,
  2696. ['JobType']=3,
  2697. ['JobBranch']=2,
  2698. ['JobStage']=3,
  2699. ['ParterID']=30032,
  2700. ['OpenLevel']=76,
  2701. ['OpenNeedCost']={{200,1}},
  2702. ['Pos']=10,
  2703. ['order']=98,
  2704. ['beforeSkill']=23024,
  2705. ['SkillBranch']=0,
  2706. ['PressPoint']=30,
  2707. ['StartPressPoint']=180,
  2708. },
  2709. [23225]={
  2710. ['SkillId']=23225,
  2711. ['Name']='PSTCfg_Name_23225',
  2712. ['SkillType']=1,
  2713. ['MaxLv']=50,
  2714. ['SkillQuality']=3,
  2715. ['JobType']=3,
  2716. ['JobBranch']=2,
  2717. ['JobStage']=3,
  2718. ['ParterID']=30032,
  2719. ['OpenLevel']=81,
  2720. ['OpenNeedCost']={{200,1}},
  2721. ['Pos']=31,
  2722. ['order']=93,
  2723. ['beforeSkill']=23025,
  2724. ['SkillBranch']=0,
  2725. ['PressPoint']=30,
  2726. ['StartPressPoint']=180,
  2727. },
  2728. [23226]={
  2729. ['SkillId']=23226,
  2730. ['Name']='PSTCfg_Name_23126',
  2731. ['SkillType']=1,
  2732. ['MaxLv']=50,
  2733. ['SkillQuality']=3,
  2734. ['JobType']=3,
  2735. ['JobBranch']=2,
  2736. ['JobStage']=3,
  2737. ['ParterID']=30032,
  2738. ['OpenLevel']=79,
  2739. ['OpenNeedCost']={{200,1}},
  2740. ['Pos']=21,
  2741. ['order']=95,
  2742. ['beforeSkill']=23026,
  2743. ['SkillBranch']=0,
  2744. ['PressPoint']=30,
  2745. ['StartPressPoint']=180,
  2746. },
  2747. [23227]={
  2748. ['SkillId']=23227,
  2749. ['Name']='PSTCfg_Name_23027',
  2750. ['SkillType']=1,
  2751. ['MaxLv']=50,
  2752. ['SkillQuality']=3,
  2753. ['JobType']=3,
  2754. ['JobBranch']=2,
  2755. ['JobStage']=3,
  2756. ['ParterID']=30032,
  2757. ['OpenLevel']=78,
  2758. ['OpenNeedCost']={{200,1}},
  2759. ['Pos']=16,
  2760. ['order']=96,
  2761. ['beforeSkill']=23027,
  2762. ['SkillBranch']=0,
  2763. ['PressPoint']=30,
  2764. ['StartPressPoint']=180,
  2765. },
  2766. [23228]={
  2767. ['SkillId']=23228,
  2768. ['Name']='PSTCfg_Name_23128',
  2769. ['SkillType']=1,
  2770. ['MaxLv']=50,
  2771. ['SkillQuality']=3,
  2772. ['JobType']=3,
  2773. ['JobBranch']=2,
  2774. ['JobStage']=3,
  2775. ['ParterID']=30032,
  2776. ['OpenLevel']=80,
  2777. ['OpenNeedCost']={{200,1}},
  2778. ['Pos']=26,
  2779. ['order']=94,
  2780. ['beforeSkill']=23028,
  2781. ['SkillBranch']=0,
  2782. ['PressPoint']=30,
  2783. ['StartPressPoint']=180,
  2784. },
  2785. [23229]={
  2786. ['SkillId']=23229,
  2787. ['Name']='PSTCfg_Name_23029',
  2788. ['SkillType']=1,
  2789. ['MaxLv']=50,
  2790. ['SkillQuality']=3,
  2791. ['JobType']=3,
  2792. ['JobBranch']=2,
  2793. ['JobStage']=3,
  2794. ['ParterID']=30032,
  2795. ['OpenLevel']=82,
  2796. ['OpenNeedCost']={{200,1}},
  2797. ['Pos']=50,
  2798. ['order']=92,
  2799. ['beforeSkill']=23039,
  2800. ['SkillBranch']=0,
  2801. ['PressPoint']=30,
  2802. ['StartPressPoint']=480,
  2803. },
  2804. [23234]={
  2805. ['SkillId']=23234,
  2806. ['Name']='PSTCfg_Name_23034',
  2807. ['SkillType']=1,
  2808. ['MaxLv']=50,
  2809. ['SkillQuality']=3,
  2810. ['JobType']=3,
  2811. ['JobBranch']=2,
  2812. ['JobStage']=3,
  2813. ['ParterID']=30032,
  2814. ['OpenLevel']=84,
  2815. ['OpenNeedCost']={{200,1}},
  2816. ['Pos']=60,
  2817. ['order']=90,
  2818. ['beforeSkill']=23034,
  2819. ['SkillBranch']=0,
  2820. ['PressPoint']=30,
  2821. ['StartPressPoint']=480,
  2822. },
  2823. [23235]={
  2824. ['SkillId']=23235,
  2825. ['Name']='PSTCfg_Name_23035',
  2826. ['SkillType']=1,
  2827. ['MaxLv']=50,
  2828. ['SkillQuality']=3,
  2829. ['JobType']=3,
  2830. ['JobBranch']=2,
  2831. ['JobStage']=3,
  2832. ['ParterID']=30032,
  2833. ['OpenLevel']=86,
  2834. ['OpenNeedCost']={{200,1}},
  2835. ['Pos']=70,
  2836. ['order']=88,
  2837. ['beforeSkill']=23035,
  2838. ['SkillBranch']=0,
  2839. ['PressPoint']=30,
  2840. ['StartPressPoint']=480,
  2841. },
  2842. [23236]={
  2843. ['SkillId']=23236,
  2844. ['Name']='PSTCfg_Name_23236',
  2845. ['SkillType']=1,
  2846. ['MaxLv']=50,
  2847. ['SkillQuality']=3,
  2848. ['JobType']=3,
  2849. ['JobBranch']=2,
  2850. ['JobStage']=3,
  2851. ['ParterID']=30032,
  2852. ['OpenLevel']=85,
  2853. ['OpenNeedCost']={{200,1}},
  2854. ['Pos']=65,
  2855. ['order']=89,
  2856. ['beforeSkill']=23036,
  2857. ['SkillBranch']=0,
  2858. ['PressPoint']=30,
  2859. ['StartPressPoint']=480,
  2860. },
  2861. [23237]={
  2862. ['SkillId']=23237,
  2863. ['Name']='PSTCfg_Name_23237',
  2864. ['SkillType']=1,
  2865. ['MaxLv']=50,
  2866. ['SkillQuality']=3,
  2867. ['JobType']=3,
  2868. ['JobBranch']=2,
  2869. ['JobStage']=3,
  2870. ['ParterID']=30032,
  2871. ['OpenLevel']=87,
  2872. ['OpenNeedCost']={{200,1}},
  2873. ['Pos']=75,
  2874. ['order']=87,
  2875. ['beforeSkill']=23037,
  2876. ['SkillBranch']=0,
  2877. ['PressPoint']=30,
  2878. ['StartPressPoint']=480,
  2879. },
  2880. [23242]={
  2881. ['SkillId']=23242,
  2882. ['Name']='PSTCfg_Name_23042',
  2883. ['SkillType']=1,
  2884. ['MaxLv']=50,
  2885. ['SkillQuality']=3,
  2886. ['JobType']=3,
  2887. ['JobBranch']=2,
  2888. ['JobStage']=3,
  2889. ['ParterID']=30032,
  2890. ['OpenLevel']=90,
  2891. ['OpenNeedCost']={{200,1}},
  2892. ['Pos']=80,
  2893. ['order']=86,
  2894. ['beforeSkill']=23042,
  2895. ['SkillBranch']=0,
  2896. ['PressPoint']=30,
  2897. ['StartPressPoint']=1080,
  2898. },
  2899. [23243]={
  2900. ['SkillId']=23243,
  2901. ['Name']='PSTCfg_Name_23243',
  2902. ['SkillType']=1,
  2903. ['MaxLv']=50,
  2904. ['SkillQuality']=3,
  2905. ['JobType']=3,
  2906. ['JobBranch']=2,
  2907. ['JobStage']=3,
  2908. ['ParterID']=30032,
  2909. ['OpenLevel']=92,
  2910. ['OpenNeedCost']={{200,1}},
  2911. ['Pos']=85,
  2912. ['order']=85,
  2913. ['beforeSkill']=23043,
  2914. ['SkillBranch']=0,
  2915. ['PressPoint']=30,
  2916. ['StartPressPoint']=1080,
  2917. },
  2918. [24022]={
  2919. ['SkillId']=24022,
  2920. ['Name']='PSTCfg_Name_24022',
  2921. ['SkillType']=1,
  2922. ['MaxLv']=50,
  2923. ['SkillQuality']=0,
  2924. ['JobType']=2,
  2925. ['JobBranch']=0,
  2926. ['JobStage']=1,
  2927. ['ParterID']=40010,
  2928. ['OpenLevel']=21,
  2929. ['OpenNeedCost']={{113,1}},
  2930. ['Pos']=21,
  2931. ['order']=95,
  2932. ['SuperSkill']={{1,24122},{2,24222}},
  2933. ['beforeSkill']=0,
  2934. ['SkillBranch']=3,
  2935. ['PressPoint']=3,
  2936. ['StartPressPoint']=3,
  2937. },
  2938. [24023]={
  2939. ['SkillId']=24023,
  2940. ['Name']='PSTCfg_Name_24123',
  2941. ['SkillType']=1,
  2942. ['MaxLv']=50,
  2943. ['SkillQuality']=0,
  2944. ['JobType']=2,
  2945. ['JobBranch']=0,
  2946. ['JobStage']=1,
  2947. ['ParterID']=40010,
  2948. ['OpenLevel']=10,
  2949. ['OpenNeedCost']={{1,1000},},
  2950. ['Pos']=10,
  2951. ['order']=98,
  2952. ['SuperSkill']={{1,24123},{2,24223}},
  2953. ['beforeSkill']=0,
  2954. ['SkillBranch']=3,
  2955. ['PressPoint']=3,
  2956. ['StartPressPoint']=3,
  2957. },
  2958. [24024]={
  2959. ['SkillId']=24024,
  2960. ['Name']='PSTCfg_Name_24024',
  2961. ['SkillType']=1,
  2962. ['MaxLv']=50,
  2963. ['SkillQuality']=0,
  2964. ['JobType']=2,
  2965. ['JobBranch']=0,
  2966. ['JobStage']=1,
  2967. ['ParterID']=40010,
  2968. ['OpenLevel']=26,
  2969. ['OpenNeedCost']={{113,1}},
  2970. ['Pos']=26,
  2971. ['order']=94,
  2972. ['SuperSkill']={{1,24124},{2,24224}},
  2973. ['beforeSkill']=0,
  2974. ['SkillBranch']=3,
  2975. ['PressPoint']=3,
  2976. ['StartPressPoint']=3,
  2977. },
  2978. [24025]={
  2979. ['SkillId']=24025,
  2980. ['Name']='PSTCfg_Name_24125',
  2981. ['SkillType']=1,
  2982. ['MaxLv']=50,
  2983. ['SkillQuality']=0,
  2984. ['JobType']=2,
  2985. ['JobBranch']=0,
  2986. ['JobStage']=1,
  2987. ['ParterID']=40010,
  2988. ['OpenLevel']=16,
  2989. ['OpenNeedCost']={{1,3000},},
  2990. ['Pos']=16,
  2991. ['order']=96,
  2992. ['SuperSkill']={{1,24125},{2,24225}},
  2993. ['beforeSkill']=0,
  2994. ['SkillBranch']=3,
  2995. ['PressPoint']=3,
  2996. ['StartPressPoint']=3,
  2997. },
  2998. [24026]={
  2999. ['SkillId']=24026,
  3000. ['Name']='PSTCfg_Name_24026',
  3001. ['SkillType']=1,
  3002. ['MaxLv']=50,
  3003. ['SkillQuality']=0,
  3004. ['JobType']=2,
  3005. ['JobBranch']=0,
  3006. ['JobStage']=1,
  3007. ['ParterID']=40010,
  3008. ['OpenLevel']=13,
  3009. ['OpenNeedCost']={{1,2000},},
  3010. ['Pos']=13,
  3011. ['order']=97,
  3012. ['SuperSkill']={{1,24126},{2,24226}},
  3013. ['beforeSkill']=0,
  3014. ['SkillBranch']=3,
  3015. ['PressPoint']=3,
  3016. ['StartPressPoint']=3,
  3017. },
  3018. [24027]={
  3019. ['SkillId']=24027,
  3020. ['Name']='PSTCfg_Name_24127',
  3021. ['SkillType']=1,
  3022. ['MaxLv']=50,
  3023. ['SkillQuality']=0,
  3024. ['JobType']=2,
  3025. ['JobBranch']=0,
  3026. ['JobStage']=1,
  3027. ['ParterID']=40010,
  3028. ['OpenLevel']=31,
  3029. ['OpenNeedCost']={{113,1}},
  3030. ['Pos']=31,
  3031. ['order']=93,
  3032. ['SuperSkill']={{1,24127},{2,24227}},
  3033. ['beforeSkill']=0,
  3034. ['SkillBranch']=3,
  3035. ['PressPoint']=3,
  3036. ['StartPressPoint']=3,
  3037. },
  3038. [24028]={
  3039. ['SkillId']=24028,
  3040. ['Name']='PSTCfg_Name_24028',
  3041. ['SkillType']=1,
  3042. ['MaxLv']=50,
  3043. ['SkillQuality']=0,
  3044. ['JobType']=2,
  3045. ['JobBranch']=1,
  3046. ['JobStage']=2,
  3047. ['ParterID']=40021,
  3048. ['OpenLevel']=45,
  3049. ['OpenNeedCost']={{113,1}},
  3050. ['Pos']=55,
  3051. ['order']=91,
  3052. ['SuperSkill']={{1,24128}},
  3053. ['beforeSkill']=0,
  3054. ['SkillBranch']=3,
  3055. ['PressPoint']=9,
  3056. ['StartPressPoint']=9,
  3057. },
  3058. [24029]={
  3059. ['SkillId']=24029,
  3060. ['Name']='PSTCfg_Name_24129',
  3061. ['SkillType']=1,
  3062. ['MaxLv']=50,
  3063. ['SkillQuality']=0,
  3064. ['JobType']=2,
  3065. ['JobBranch']=1,
  3066. ['JobStage']=2,
  3067. ['ParterID']=40021,
  3068. ['OpenLevel']=40,
  3069. ['OpenNeedCost']={{113,1}},
  3070. ['Pos']=50,
  3071. ['order']=92,
  3072. ['SuperSkill']={{1,24129}},
  3073. ['beforeSkill']=0,
  3074. ['SkillBranch']=3,
  3075. ['PressPoint']=9,
  3076. ['StartPressPoint']=9,
  3077. },
  3078. [24030]={
  3079. ['SkillId']=24030,
  3080. ['Name']='PSTCfg_Name_24030',
  3081. ['SkillType']=1,
  3082. ['MaxLv']=50,
  3083. ['SkillQuality']=0,
  3084. ['JobType']=2,
  3085. ['JobBranch']=1,
  3086. ['JobStage']=2,
  3087. ['ParterID']=40021,
  3088. ['OpenLevel']=50,
  3089. ['OpenNeedCost']={{113,1}},
  3090. ['Pos']=60,
  3091. ['order']=90,
  3092. ['SuperSkill']={{1,24130}},
  3093. ['beforeSkill']=0,
  3094. ['SkillBranch']=3,
  3095. ['PressPoint']=9,
  3096. ['StartPressPoint']=9,
  3097. },
  3098. [24031]={
  3099. ['SkillId']=24031,
  3100. ['Name']='PSTCfg_Name_24031',
  3101. ['SkillType']=1,
  3102. ['MaxLv']=50,
  3103. ['SkillQuality']=0,
  3104. ['JobType']=2,
  3105. ['JobBranch']=1,
  3106. ['JobStage']=2,
  3107. ['ParterID']=40021,
  3108. ['OpenLevel']=65,
  3109. ['OpenNeedCost']={{114,1}},
  3110. ['Pos']=75,
  3111. ['order']=87,
  3112. ['SuperSkill']={{1,24131}},
  3113. ['beforeSkill']=0,
  3114. ['SkillBranch']=3,
  3115. ['PressPoint']=9,
  3116. ['StartPressPoint']=9,
  3117. },
  3118. [24032]={
  3119. ['SkillId']=24032,
  3120. ['Name']='PSTCfg_Name_24132',
  3121. ['SkillType']=1,
  3122. ['MaxLv']=50,
  3123. ['SkillQuality']=0,
  3124. ['JobType']=2,
  3125. ['JobBranch']=1,
  3126. ['JobStage']=2,
  3127. ['ParterID']=40021,
  3128. ['OpenLevel']=55,
  3129. ['OpenNeedCost']={{114,1}},
  3130. ['Pos']=65,
  3131. ['order']=89,
  3132. ['SuperSkill']={{1,24132}},
  3133. ['beforeSkill']=0,
  3134. ['SkillBranch']=3,
  3135. ['PressPoint']=9,
  3136. ['StartPressPoint']=9,
  3137. },
  3138. [24033]={
  3139. ['SkillId']=24033,
  3140. ['Name']='PSTCfg_Name_24133',
  3141. ['SkillType']=1,
  3142. ['MaxLv']=50,
  3143. ['SkillQuality']=0,
  3144. ['JobType']=2,
  3145. ['JobBranch']=1,
  3146. ['JobStage']=2,
  3147. ['ParterID']=40021,
  3148. ['OpenLevel']=60,
  3149. ['OpenNeedCost']={{114,1}},
  3150. ['Pos']=70,
  3151. ['order']=88,
  3152. ['SuperSkill']={{1,24133}},
  3153. ['beforeSkill']=0,
  3154. ['SkillBranch']=3,
  3155. ['PressPoint']=9,
  3156. ['StartPressPoint']=9,
  3157. },
  3158. [24034]={
  3159. ['SkillId']=24034,
  3160. ['Name']='PSTCfg_Name_24234',
  3161. ['SkillType']=1,
  3162. ['MaxLv']=50,
  3163. ['SkillQuality']=0,
  3164. ['JobType']=2,
  3165. ['JobBranch']=2,
  3166. ['JobStage']=2,
  3167. ['ParterID']=40022,
  3168. ['OpenLevel']=60,
  3169. ['OpenNeedCost']={{114,1}},
  3170. ['Pos']=70,
  3171. ['order']=88,
  3172. ['SuperSkill']={{2,24234}},
  3173. ['beforeSkill']=0,
  3174. ['SkillBranch']=3,
  3175. ['PressPoint']=9,
  3176. ['StartPressPoint']=9,
  3177. },
  3178. [24035]={
  3179. ['SkillId']=24035,
  3180. ['Name']='PSTCfg_Name_24235',
  3181. ['SkillType']=1,
  3182. ['MaxLv']=50,
  3183. ['SkillQuality']=0,
  3184. ['JobType']=2,
  3185. ['JobBranch']=2,
  3186. ['JobStage']=2,
  3187. ['ParterID']=40022,
  3188. ['OpenLevel']=50,
  3189. ['OpenNeedCost']={{113,1}},
  3190. ['Pos']=60,
  3191. ['order']=90,
  3192. ['SuperSkill']={{2,24235}},
  3193. ['beforeSkill']=0,
  3194. ['SkillBranch']=3,
  3195. ['PressPoint']=9,
  3196. ['StartPressPoint']=9,
  3197. },
  3198. [24036]={
  3199. ['SkillId']=24036,
  3200. ['Name']='PSTCfg_Name_24236',
  3201. ['SkillType']=1,
  3202. ['MaxLv']=50,
  3203. ['SkillQuality']=0,
  3204. ['JobType']=2,
  3205. ['JobBranch']=2,
  3206. ['JobStage']=2,
  3207. ['ParterID']=40022,
  3208. ['OpenLevel']=55,
  3209. ['OpenNeedCost']={{114,1}},
  3210. ['Pos']=65,
  3211. ['order']=89,
  3212. ['SuperSkill']={{2,24236}},
  3213. ['beforeSkill']=0,
  3214. ['SkillBranch']=3,
  3215. ['PressPoint']=9,
  3216. ['StartPressPoint']=9,
  3217. },
  3218. [24037]={
  3219. ['SkillId']=24037,
  3220. ['Name']='PSTCfg_Name_24037',
  3221. ['SkillType']=1,
  3222. ['MaxLv']=50,
  3223. ['SkillQuality']=0,
  3224. ['JobType']=2,
  3225. ['JobBranch']=2,
  3226. ['JobStage']=2,
  3227. ['ParterID']=40022,
  3228. ['OpenLevel']=65,
  3229. ['OpenNeedCost']={{114,1}},
  3230. ['Pos']=75,
  3231. ['order']=87,
  3232. ['SuperSkill']={{2,24237}},
  3233. ['beforeSkill']=0,
  3234. ['SkillBranch']=3,
  3235. ['PressPoint']=9,
  3236. ['StartPressPoint']=9,
  3237. },
  3238. [24038]={
  3239. ['SkillId']=24038,
  3240. ['Name']='PSTCfg_Name_24028',
  3241. ['SkillType']=1,
  3242. ['MaxLv']=50,
  3243. ['SkillQuality']=0,
  3244. ['JobType']=2,
  3245. ['JobBranch']=2,
  3246. ['JobStage']=2,
  3247. ['ParterID']=40022,
  3248. ['OpenLevel']=45,
  3249. ['OpenNeedCost']={{113,1}},
  3250. ['Pos']=55,
  3251. ['order']=91,
  3252. ['SuperSkill']={{2,24228}},
  3253. ['beforeSkill']=0,
  3254. ['SkillBranch']=3,
  3255. ['PressPoint']=9,
  3256. ['StartPressPoint']=9,
  3257. },
  3258. [24039]={
  3259. ['SkillId']=24039,
  3260. ['Name']='PSTCfg_Name_24129',
  3261. ['SkillType']=1,
  3262. ['MaxLv']=50,
  3263. ['SkillQuality']=0,
  3264. ['JobType']=2,
  3265. ['JobBranch']=2,
  3266. ['JobStage']=2,
  3267. ['ParterID']=40022,
  3268. ['OpenLevel']=40,
  3269. ['OpenNeedCost']={{113,1}},
  3270. ['Pos']=50,
  3271. ['order']=92,
  3272. ['SuperSkill']={{2,24229}},
  3273. ['beforeSkill']=0,
  3274. ['SkillBranch']=3,
  3275. ['PressPoint']=9,
  3276. ['StartPressPoint']=9,
  3277. },
  3278. [24040]={
  3279. ['SkillId']=24040,
  3280. ['Name']='PSTCfg_Name_24140',
  3281. ['SkillType']=1,
  3282. ['MaxLv']=50,
  3283. ['SkillQuality']=0,
  3284. ['JobType']=2,
  3285. ['JobBranch']=1,
  3286. ['JobStage']=3,
  3287. ['ParterID']=40031,
  3288. ['OpenLevel']=70,
  3289. ['OpenNeedCost']={{191,1}},
  3290. ['Pos']=80,
  3291. ['order']=86,
  3292. ['SuperSkill']={{1,24140}},
  3293. ['beforeSkill']=0,
  3294. ['SkillBranch']=3,
  3295. ['PressPoint']=21,
  3296. ['StartPressPoint']=21,
  3297. },
  3298. [24041]={
  3299. ['SkillId']=24041,
  3300. ['Name']='PSTCfg_Name_24141',
  3301. ['SkillType']=1,
  3302. ['MaxLv']=50,
  3303. ['SkillQuality']=0,
  3304. ['JobType']=2,
  3305. ['JobBranch']=1,
  3306. ['JobStage']=3,
  3307. ['ParterID']=40031,
  3308. ['OpenLevel']=75,
  3309. ['OpenNeedCost']={{191,1}},
  3310. ['Pos']=85,
  3311. ['order']=85,
  3312. ['SuperSkill']={{1,24141}},
  3313. ['beforeSkill']=0,
  3314. ['SkillBranch']=3,
  3315. ['PressPoint']=21,
  3316. ['StartPressPoint']=21,
  3317. },
  3318. [24042]={
  3319. ['SkillId']=24042,
  3320. ['Name']='PSTCfg_Name_24042',
  3321. ['SkillType']=1,
  3322. ['MaxLv']=50,
  3323. ['SkillQuality']=0,
  3324. ['JobType']=2,
  3325. ['JobBranch']=2,
  3326. ['JobStage']=3,
  3327. ['ParterID']=40032,
  3328. ['OpenLevel']=70,
  3329. ['OpenNeedCost']={{191,1}},
  3330. ['Pos']=80,
  3331. ['order']=86,
  3332. ['SuperSkill']={{2,24242}},
  3333. ['beforeSkill']=0,
  3334. ['SkillBranch']=3,
  3335. ['PressPoint']=21,
  3336. ['StartPressPoint']=21,
  3337. },
  3338. [24043]={
  3339. ['SkillId']=24043,
  3340. ['Name']='PSTCfg_Name_24243',
  3341. ['SkillType']=1,
  3342. ['MaxLv']=50,
  3343. ['SkillQuality']=0,
  3344. ['JobType']=2,
  3345. ['JobBranch']=2,
  3346. ['JobStage']=3,
  3347. ['ParterID']=40032,
  3348. ['OpenLevel']=75,
  3349. ['OpenNeedCost']={{191,1}},
  3350. ['Pos']=85,
  3351. ['order']=85,
  3352. ['SuperSkill']={{2,24243}},
  3353. ['beforeSkill']=0,
  3354. ['SkillBranch']=3,
  3355. ['PressPoint']=21,
  3356. ['StartPressPoint']=21,
  3357. },
  3358. [24122]={
  3359. ['SkillId']=24122,
  3360. ['Name']='PSTCfg_Name_24022',
  3361. ['SkillType']=1,
  3362. ['MaxLv']=50,
  3363. ['SkillQuality']=3,
  3364. ['JobType']=2,
  3365. ['JobBranch']=1,
  3366. ['JobStage']=3,
  3367. ['ParterID']=40031,
  3368. ['OpenLevel']=79,
  3369. ['OpenNeedCost']={{200,1}},
  3370. ['Pos']=21,
  3371. ['order']=95,
  3372. ['beforeSkill']=24022,
  3373. ['SkillBranch']=0,
  3374. ['PressPoint']=30,
  3375. ['StartPressPoint']=180,
  3376. },
  3377. [24123]={
  3378. ['SkillId']=24123,
  3379. ['Name']='PSTCfg_Name_24123',
  3380. ['SkillType']=1,
  3381. ['MaxLv']=50,
  3382. ['SkillQuality']=3,
  3383. ['JobType']=2,
  3384. ['JobBranch']=1,
  3385. ['JobStage']=3,
  3386. ['ParterID']=40031,
  3387. ['OpenLevel']=76,
  3388. ['OpenNeedCost']={{200,1}},
  3389. ['Pos']=10,
  3390. ['order']=98,
  3391. ['beforeSkill']=24023,
  3392. ['SkillBranch']=0,
  3393. ['PressPoint']=30,
  3394. ['StartPressPoint']=180,
  3395. },
  3396. [24124]={
  3397. ['SkillId']=24124,
  3398. ['Name']='PSTCfg_Name_24024',
  3399. ['SkillType']=1,
  3400. ['MaxLv']=50,
  3401. ['SkillQuality']=3,
  3402. ['JobType']=2,
  3403. ['JobBranch']=1,
  3404. ['JobStage']=3,
  3405. ['ParterID']=40031,
  3406. ['OpenLevel']=80,
  3407. ['OpenNeedCost']={{200,1}},
  3408. ['Pos']=26,
  3409. ['order']=94,
  3410. ['beforeSkill']=24024,
  3411. ['SkillBranch']=0,
  3412. ['PressPoint']=30,
  3413. ['StartPressPoint']=180,
  3414. },
  3415. [24125]={
  3416. ['SkillId']=24125,
  3417. ['Name']='PSTCfg_Name_24125',
  3418. ['SkillType']=1,
  3419. ['MaxLv']=50,
  3420. ['SkillQuality']=3,
  3421. ['JobType']=2,
  3422. ['JobBranch']=1,
  3423. ['JobStage']=3,
  3424. ['ParterID']=40031,
  3425. ['OpenLevel']=78,
  3426. ['OpenNeedCost']={{200,1}},
  3427. ['Pos']=16,
  3428. ['order']=96,
  3429. ['beforeSkill']=24025,
  3430. ['SkillBranch']=0,
  3431. ['PressPoint']=30,
  3432. ['StartPressPoint']=180,
  3433. },
  3434. [24126]={
  3435. ['SkillId']=24126,
  3436. ['Name']='PSTCfg_Name_24026',
  3437. ['SkillType']=1,
  3438. ['MaxLv']=50,
  3439. ['SkillQuality']=3,
  3440. ['JobType']=2,
  3441. ['JobBranch']=1,
  3442. ['JobStage']=3,
  3443. ['ParterID']=40031,
  3444. ['OpenLevel']=77,
  3445. ['OpenNeedCost']={{200,1}},
  3446. ['Pos']=13,
  3447. ['order']=97,
  3448. ['beforeSkill']=24026,
  3449. ['SkillBranch']=0,
  3450. ['PressPoint']=30,
  3451. ['StartPressPoint']=180,
  3452. },
  3453. [24127]={
  3454. ['SkillId']=24127,
  3455. ['Name']='PSTCfg_Name_24127',
  3456. ['SkillType']=1,
  3457. ['MaxLv']=50,
  3458. ['SkillQuality']=3,
  3459. ['JobType']=2,
  3460. ['JobBranch']=1,
  3461. ['JobStage']=3,
  3462. ['ParterID']=40031,
  3463. ['OpenLevel']=81,
  3464. ['OpenNeedCost']={{200,1}},
  3465. ['Pos']=31,
  3466. ['order']=93,
  3467. ['beforeSkill']=24027,
  3468. ['SkillBranch']=0,
  3469. ['PressPoint']=30,
  3470. ['StartPressPoint']=180,
  3471. },
  3472. [24128]={
  3473. ['SkillId']=24128,
  3474. ['Name']='PSTCfg_Name_24028',
  3475. ['SkillType']=1,
  3476. ['MaxLv']=50,
  3477. ['SkillQuality']=3,
  3478. ['JobType']=2,
  3479. ['JobBranch']=1,
  3480. ['JobStage']=3,
  3481. ['ParterID']=40031,
  3482. ['OpenLevel']=83,
  3483. ['OpenNeedCost']={{200,1}},
  3484. ['Pos']=55,
  3485. ['order']=91,
  3486. ['beforeSkill']=24028,
  3487. ['SkillBranch']=0,
  3488. ['PressPoint']=30,
  3489. ['StartPressPoint']=480,
  3490. },
  3491. [24129]={
  3492. ['SkillId']=24129,
  3493. ['Name']='PSTCfg_Name_24129',
  3494. ['SkillType']=1,
  3495. ['MaxLv']=50,
  3496. ['SkillQuality']=3,
  3497. ['JobType']=2,
  3498. ['JobBranch']=1,
  3499. ['JobStage']=3,
  3500. ['ParterID']=40031,
  3501. ['OpenLevel']=82,
  3502. ['OpenNeedCost']={{200,1}},
  3503. ['Pos']=50,
  3504. ['order']=92,
  3505. ['beforeSkill']=24029,
  3506. ['SkillBranch']=0,
  3507. ['PressPoint']=30,
  3508. ['StartPressPoint']=480,
  3509. },
  3510. [24130]={
  3511. ['SkillId']=24130,
  3512. ['Name']='PSTCfg_Name_24030',
  3513. ['SkillType']=1,
  3514. ['MaxLv']=50,
  3515. ['SkillQuality']=3,
  3516. ['JobType']=2,
  3517. ['JobBranch']=1,
  3518. ['JobStage']=3,
  3519. ['ParterID']=40031,
  3520. ['OpenLevel']=84,
  3521. ['OpenNeedCost']={{200,1}},
  3522. ['Pos']=60,
  3523. ['order']=90,
  3524. ['beforeSkill']=24030,
  3525. ['SkillBranch']=0,
  3526. ['PressPoint']=30,
  3527. ['StartPressPoint']=480,
  3528. },
  3529. [24131]={
  3530. ['SkillId']=24131,
  3531. ['Name']='PSTCfg_Name_24031',
  3532. ['SkillType']=1,
  3533. ['MaxLv']=50,
  3534. ['SkillQuality']=3,
  3535. ['JobType']=2,
  3536. ['JobBranch']=1,
  3537. ['JobStage']=3,
  3538. ['ParterID']=40031,
  3539. ['OpenLevel']=87,
  3540. ['OpenNeedCost']={{200,1}},
  3541. ['Pos']=75,
  3542. ['order']=87,
  3543. ['beforeSkill']=24031,
  3544. ['SkillBranch']=0,
  3545. ['PressPoint']=30,
  3546. ['StartPressPoint']=480,
  3547. },
  3548. [24132]={
  3549. ['SkillId']=24132,
  3550. ['Name']='PSTCfg_Name_24132',
  3551. ['SkillType']=1,
  3552. ['MaxLv']=50,
  3553. ['SkillQuality']=3,
  3554. ['JobType']=2,
  3555. ['JobBranch']=1,
  3556. ['JobStage']=3,
  3557. ['ParterID']=40031,
  3558. ['OpenLevel']=85,
  3559. ['OpenNeedCost']={{200,1}},
  3560. ['Pos']=65,
  3561. ['order']=89,
  3562. ['beforeSkill']=24032,
  3563. ['SkillBranch']=0,
  3564. ['PressPoint']=30,
  3565. ['StartPressPoint']=480,
  3566. },
  3567. [24133]={
  3568. ['SkillId']=24133,
  3569. ['Name']='PSTCfg_Name_24133',
  3570. ['SkillType']=1,
  3571. ['MaxLv']=50,
  3572. ['SkillQuality']=3,
  3573. ['JobType']=2,
  3574. ['JobBranch']=1,
  3575. ['JobStage']=3,
  3576. ['ParterID']=40031,
  3577. ['OpenLevel']=86,
  3578. ['OpenNeedCost']={{200,1}},
  3579. ['Pos']=70,
  3580. ['order']=88,
  3581. ['beforeSkill']=24033,
  3582. ['SkillBranch']=0,
  3583. ['PressPoint']=30,
  3584. ['StartPressPoint']=480,
  3585. },
  3586. [24140]={
  3587. ['SkillId']=24140,
  3588. ['Name']='PSTCfg_Name_24140',
  3589. ['SkillType']=1,
  3590. ['MaxLv']=50,
  3591. ['SkillQuality']=3,
  3592. ['JobType']=2,
  3593. ['JobBranch']=1,
  3594. ['JobStage']=3,
  3595. ['ParterID']=40031,
  3596. ['OpenLevel']=90,
  3597. ['OpenNeedCost']={{200,1}},
  3598. ['Pos']=80,
  3599. ['order']=86,
  3600. ['beforeSkill']=24040,
  3601. ['SkillBranch']=0,
  3602. ['PressPoint']=30,
  3603. ['StartPressPoint']=1080,
  3604. },
  3605. [24141]={
  3606. ['SkillId']=24141,
  3607. ['Name']='PSTCfg_Name_24141',
  3608. ['SkillType']=1,
  3609. ['MaxLv']=50,
  3610. ['SkillQuality']=3,
  3611. ['JobType']=2,
  3612. ['JobBranch']=1,
  3613. ['JobStage']=3,
  3614. ['ParterID']=40031,
  3615. ['OpenLevel']=92,
  3616. ['OpenNeedCost']={{200,1}},
  3617. ['Pos']=85,
  3618. ['order']=85,
  3619. ['beforeSkill']=24041,
  3620. ['SkillBranch']=0,
  3621. ['PressPoint']=30,
  3622. ['StartPressPoint']=1080,
  3623. },
  3624. [24222]={
  3625. ['SkillId']=24222,
  3626. ['Name']='PSTCfg_Name_24022',
  3627. ['SkillType']=1,
  3628. ['MaxLv']=50,
  3629. ['SkillQuality']=3,
  3630. ['JobType']=2,
  3631. ['JobBranch']=2,
  3632. ['JobStage']=3,
  3633. ['ParterID']=40032,
  3634. ['OpenLevel']=79,
  3635. ['OpenNeedCost']={{200,1}},
  3636. ['Pos']=21,
  3637. ['order']=95,
  3638. ['beforeSkill']=24022,
  3639. ['SkillBranch']=0,
  3640. ['PressPoint']=30,
  3641. ['StartPressPoint']=180,
  3642. },
  3643. [24223]={
  3644. ['SkillId']=24223,
  3645. ['Name']='PSTCfg_Name_24123',
  3646. ['SkillType']=1,
  3647. ['MaxLv']=50,
  3648. ['SkillQuality']=3,
  3649. ['JobType']=2,
  3650. ['JobBranch']=2,
  3651. ['JobStage']=3,
  3652. ['ParterID']=40032,
  3653. ['OpenLevel']=76,
  3654. ['OpenNeedCost']={{200,1}},
  3655. ['Pos']=10,
  3656. ['order']=98,
  3657. ['beforeSkill']=24023,
  3658. ['SkillBranch']=0,
  3659. ['PressPoint']=30,
  3660. ['StartPressPoint']=180,
  3661. },
  3662. [24224]={
  3663. ['SkillId']=24224,
  3664. ['Name']='PSTCfg_Name_24024',
  3665. ['SkillType']=1,
  3666. ['MaxLv']=50,
  3667. ['SkillQuality']=3,
  3668. ['JobType']=2,
  3669. ['JobBranch']=2,
  3670. ['JobStage']=3,
  3671. ['ParterID']=40032,
  3672. ['OpenLevel']=80,
  3673. ['OpenNeedCost']={{200,1}},
  3674. ['Pos']=26,
  3675. ['order']=94,
  3676. ['beforeSkill']=24024,
  3677. ['SkillBranch']=0,
  3678. ['PressPoint']=30,
  3679. ['StartPressPoint']=180,
  3680. },
  3681. [24225]={
  3682. ['SkillId']=24225,
  3683. ['Name']='PSTCfg_Name_24125',
  3684. ['SkillType']=1,
  3685. ['MaxLv']=50,
  3686. ['SkillQuality']=3,
  3687. ['JobType']=2,
  3688. ['JobBranch']=2,
  3689. ['JobStage']=3,
  3690. ['ParterID']=40032,
  3691. ['OpenLevel']=78,
  3692. ['OpenNeedCost']={{200,1}},
  3693. ['Pos']=16,
  3694. ['order']=96,
  3695. ['beforeSkill']=24025,
  3696. ['SkillBranch']=0,
  3697. ['PressPoint']=30,
  3698. ['StartPressPoint']=180,
  3699. },
  3700. [24226]={
  3701. ['SkillId']=24226,
  3702. ['Name']='PSTCfg_Name_24026',
  3703. ['SkillType']=1,
  3704. ['MaxLv']=50,
  3705. ['SkillQuality']=3,
  3706. ['JobType']=2,
  3707. ['JobBranch']=2,
  3708. ['JobStage']=3,
  3709. ['ParterID']=40032,
  3710. ['OpenLevel']=77,
  3711. ['OpenNeedCost']={{200,1}},
  3712. ['Pos']=13,
  3713. ['order']=97,
  3714. ['beforeSkill']=24026,
  3715. ['SkillBranch']=0,
  3716. ['PressPoint']=30,
  3717. ['StartPressPoint']=180,
  3718. },
  3719. [24227]={
  3720. ['SkillId']=24227,
  3721. ['Name']='PSTCfg_Name_24127',
  3722. ['SkillType']=1,
  3723. ['MaxLv']=50,
  3724. ['SkillQuality']=3,
  3725. ['JobType']=2,
  3726. ['JobBranch']=2,
  3727. ['JobStage']=3,
  3728. ['ParterID']=40032,
  3729. ['OpenLevel']=81,
  3730. ['OpenNeedCost']={{200,1}},
  3731. ['Pos']=31,
  3732. ['order']=93,
  3733. ['beforeSkill']=24027,
  3734. ['SkillBranch']=0,
  3735. ['PressPoint']=30,
  3736. ['StartPressPoint']=180,
  3737. },
  3738. [24228]={
  3739. ['SkillId']=24228,
  3740. ['Name']='PSTCfg_Name_24028',
  3741. ['SkillType']=1,
  3742. ['MaxLv']=50,
  3743. ['SkillQuality']=3,
  3744. ['JobType']=2,
  3745. ['JobBranch']=2,
  3746. ['JobStage']=3,
  3747. ['ParterID']=40032,
  3748. ['OpenLevel']=83,
  3749. ['OpenNeedCost']={{200,1}},
  3750. ['Pos']=55,
  3751. ['order']=91,
  3752. ['beforeSkill']=24038,
  3753. ['SkillBranch']=0,
  3754. ['PressPoint']=30,
  3755. ['StartPressPoint']=480,
  3756. },
  3757. [24229]={
  3758. ['SkillId']=24229,
  3759. ['Name']='PSTCfg_Name_24129',
  3760. ['SkillType']=1,
  3761. ['MaxLv']=50,
  3762. ['SkillQuality']=3,
  3763. ['JobType']=2,
  3764. ['JobBranch']=2,
  3765. ['JobStage']=3,
  3766. ['ParterID']=40032,
  3767. ['OpenLevel']=82,
  3768. ['OpenNeedCost']={{200,1}},
  3769. ['Pos']=50,
  3770. ['order']=92,
  3771. ['beforeSkill']=24039,
  3772. ['SkillBranch']=0,
  3773. ['PressPoint']=30,
  3774. ['StartPressPoint']=480,
  3775. },
  3776. [24234]={
  3777. ['SkillId']=24234,
  3778. ['Name']='PSTCfg_Name_24234',
  3779. ['SkillType']=1,
  3780. ['MaxLv']=50,
  3781. ['SkillQuality']=3,
  3782. ['JobType']=2,
  3783. ['JobBranch']=2,
  3784. ['JobStage']=3,
  3785. ['ParterID']=40032,
  3786. ['OpenLevel']=86,
  3787. ['OpenNeedCost']={{200,1}},
  3788. ['Pos']=70,
  3789. ['order']=88,
  3790. ['beforeSkill']=24034,
  3791. ['SkillBranch']=0,
  3792. ['PressPoint']=30,
  3793. ['StartPressPoint']=480,
  3794. },
  3795. [24235]={
  3796. ['SkillId']=24235,
  3797. ['Name']='PSTCfg_Name_24235',
  3798. ['SkillType']=1,
  3799. ['MaxLv']=50,
  3800. ['SkillQuality']=3,
  3801. ['JobType']=2,
  3802. ['JobBranch']=2,
  3803. ['JobStage']=3,
  3804. ['ParterID']=40032,
  3805. ['OpenLevel']=84,
  3806. ['OpenNeedCost']={{200,1}},
  3807. ['Pos']=60,
  3808. ['order']=90,
  3809. ['beforeSkill']=24035,
  3810. ['SkillBranch']=0,
  3811. ['PressPoint']=30,
  3812. ['StartPressPoint']=480,
  3813. },
  3814. [24236]={
  3815. ['SkillId']=24236,
  3816. ['Name']='PSTCfg_Name_24236',
  3817. ['SkillType']=1,
  3818. ['MaxLv']=50,
  3819. ['SkillQuality']=3,
  3820. ['JobType']=2,
  3821. ['JobBranch']=2,
  3822. ['JobStage']=3,
  3823. ['ParterID']=40032,
  3824. ['OpenLevel']=85,
  3825. ['OpenNeedCost']={{200,1}},
  3826. ['Pos']=65,
  3827. ['order']=89,
  3828. ['beforeSkill']=24036,
  3829. ['SkillBranch']=0,
  3830. ['PressPoint']=30,
  3831. ['StartPressPoint']=480,
  3832. },
  3833. [24237]={
  3834. ['SkillId']=24237,
  3835. ['Name']='PSTCfg_Name_24037',
  3836. ['SkillType']=1,
  3837. ['MaxLv']=50,
  3838. ['SkillQuality']=3,
  3839. ['JobType']=2,
  3840. ['JobBranch']=2,
  3841. ['JobStage']=3,
  3842. ['ParterID']=40032,
  3843. ['OpenLevel']=87,
  3844. ['OpenNeedCost']={{200,1}},
  3845. ['Pos']=75,
  3846. ['order']=87,
  3847. ['beforeSkill']=24037,
  3848. ['SkillBranch']=0,
  3849. ['PressPoint']=30,
  3850. ['StartPressPoint']=480,
  3851. },
  3852. [24242]={
  3853. ['SkillId']=24242,
  3854. ['Name']='PSTCfg_Name_24042',
  3855. ['SkillType']=1,
  3856. ['MaxLv']=50,
  3857. ['SkillQuality']=3,
  3858. ['JobType']=2,
  3859. ['JobBranch']=2,
  3860. ['JobStage']=3,
  3861. ['ParterID']=40032,
  3862. ['OpenLevel']=90,
  3863. ['OpenNeedCost']={{200,1}},
  3864. ['Pos']=80,
  3865. ['order']=86,
  3866. ['beforeSkill']=24042,
  3867. ['SkillBranch']=0,
  3868. ['PressPoint']=30,
  3869. ['StartPressPoint']=1080,
  3870. },
  3871. [24243]={
  3872. ['SkillId']=24243,
  3873. ['Name']='PSTCfg_Name_24243',
  3874. ['SkillType']=1,
  3875. ['MaxLv']=50,
  3876. ['SkillQuality']=3,
  3877. ['JobType']=2,
  3878. ['JobBranch']=2,
  3879. ['JobStage']=3,
  3880. ['ParterID']=40032,
  3881. ['OpenLevel']=92,
  3882. ['OpenNeedCost']={{200,1}},
  3883. ['Pos']=85,
  3884. ['order']=85,
  3885. ['beforeSkill']=24043,
  3886. ['SkillBranch']=0,
  3887. ['PressPoint']=30,
  3888. ['StartPressPoint']=1080,
  3889. },
  3890. [25022]={
  3891. ['SkillId']=25022,
  3892. ['Name']='PSTCfg_Name_25222',
  3893. ['SkillType']=1,
  3894. ['MaxLv']=50,
  3895. ['SkillQuality']=0,
  3896. ['JobType']=5,
  3897. ['JobBranch']=0,
  3898. ['JobStage']=1,
  3899. ['ParterID']=50010,
  3900. ['OpenLevel']=10,
  3901. ['OpenNeedCost']={{1,1000},},
  3902. ['Pos']=10,
  3903. ['order']=98,
  3904. ['SuperSkill']={{1,25122},{2,25222}},
  3905. ['beforeSkill']=0,
  3906. ['SkillBranch']=3,
  3907. ['PressPoint']=3,
  3908. ['StartPressPoint']=3,
  3909. },
  3910. [25023]={
  3911. ['SkillId']=25023,
  3912. ['Name']='PSTCfg_Name_25223',
  3913. ['SkillType']=1,
  3914. ['MaxLv']=50,
  3915. ['SkillQuality']=0,
  3916. ['JobType']=5,
  3917. ['JobBranch']=0,
  3918. ['JobStage']=1,
  3919. ['ParterID']=50010,
  3920. ['OpenLevel']=21,
  3921. ['OpenNeedCost']={{113,1}},
  3922. ['Pos']=21,
  3923. ['order']=95,
  3924. ['SuperSkill']={{1,25123},{2,25223}},
  3925. ['beforeSkill']=0,
  3926. ['SkillBranch']=3,
  3927. ['PressPoint']=3,
  3928. ['StartPressPoint']=3,
  3929. },
  3930. [25024]={
  3931. ['SkillId']=25024,
  3932. ['Name']='PSTCfg_Name_25224',
  3933. ['SkillType']=1,
  3934. ['MaxLv']=50,
  3935. ['SkillQuality']=0,
  3936. ['JobType']=5,
  3937. ['JobBranch']=0,
  3938. ['JobStage']=1,
  3939. ['ParterID']=50010,
  3940. ['OpenLevel']=26,
  3941. ['OpenNeedCost']={{113,1}},
  3942. ['Pos']=26,
  3943. ['order']=94,
  3944. ['SuperSkill']={{1,25124},{2,25224}},
  3945. ['beforeSkill']=0,
  3946. ['SkillBranch']=3,
  3947. ['PressPoint']=3,
  3948. ['StartPressPoint']=3,
  3949. },
  3950. [25025]={
  3951. ['SkillId']=25025,
  3952. ['Name']='PSTCfg_Name_25025',
  3953. ['SkillType']=1,
  3954. ['MaxLv']=50,
  3955. ['SkillQuality']=0,
  3956. ['JobType']=5,
  3957. ['JobBranch']=0,
  3958. ['JobStage']=1,
  3959. ['ParterID']=50010,
  3960. ['OpenLevel']=16,
  3961. ['OpenNeedCost']={{1,3000},},
  3962. ['Pos']=16,
  3963. ['order']=96,
  3964. ['SuperSkill']={{1,25125},{2,25225}},
  3965. ['beforeSkill']=0,
  3966. ['SkillBranch']=3,
  3967. ['PressPoint']=3,
  3968. ['StartPressPoint']=3,
  3969. },
  3970. [25026]={
  3971. ['SkillId']=25026,
  3972. ['Name']='PSTCfg_Name_25226',
  3973. ['SkillType']=1,
  3974. ['MaxLv']=50,
  3975. ['SkillQuality']=0,
  3976. ['JobType']=5,
  3977. ['JobBranch']=0,
  3978. ['JobStage']=1,
  3979. ['ParterID']=50010,
  3980. ['OpenLevel']=13,
  3981. ['OpenNeedCost']={{1,2000},},
  3982. ['Pos']=13,
  3983. ['order']=97,
  3984. ['SuperSkill']={{1,25126},{2,25226}},
  3985. ['beforeSkill']=0,
  3986. ['SkillBranch']=3,
  3987. ['PressPoint']=3,
  3988. ['StartPressPoint']=3,
  3989. },
  3990. [25027]={
  3991. ['SkillId']=25027,
  3992. ['Name']='PSTCfg_Name_25127',
  3993. ['SkillType']=1,
  3994. ['MaxLv']=50,
  3995. ['SkillQuality']=0,
  3996. ['JobType']=5,
  3997. ['JobBranch']=0,
  3998. ['JobStage']=1,
  3999. ['ParterID']=50010,
  4000. ['OpenLevel']=31,
  4001. ['OpenNeedCost']={{113,1}},
  4002. ['Pos']=31,
  4003. ['order']=93,
  4004. ['SuperSkill']={{1,25127},{2,25227}},
  4005. ['beforeSkill']=0,
  4006. ['SkillBranch']=3,
  4007. ['PressPoint']=3,
  4008. ['StartPressPoint']=3,
  4009. },
  4010. [25028]={
  4011. ['SkillId']=25028,
  4012. ['Name']='PSTCfg_Name_25228',
  4013. ['SkillType']=1,
  4014. ['MaxLv']=50,
  4015. ['SkillQuality']=0,
  4016. ['JobType']=5,
  4017. ['JobBranch']=1,
  4018. ['JobStage']=2,
  4019. ['ParterID']=50021,
  4020. ['OpenLevel']=45,
  4021. ['OpenNeedCost']={{113,1}},
  4022. ['Pos']=55,
  4023. ['order']=91,
  4024. ['SuperSkill']={{1,25128}},
  4025. ['beforeSkill']=0,
  4026. ['SkillBranch']=3,
  4027. ['PressPoint']=9,
  4028. ['StartPressPoint']=9,
  4029. },
  4030. [25029]={
  4031. ['SkillId']=25029,
  4032. ['Name']='PSTCfg_Name_25129',
  4033. ['SkillType']=1,
  4034. ['MaxLv']=50,
  4035. ['SkillQuality']=0,
  4036. ['JobType']=5,
  4037. ['JobBranch']=1,
  4038. ['JobStage']=2,
  4039. ['ParterID']=50021,
  4040. ['OpenLevel']=40,
  4041. ['OpenNeedCost']={{113,1}},
  4042. ['Pos']=50,
  4043. ['order']=92,
  4044. ['SuperSkill']={{1,25129}},
  4045. ['beforeSkill']=0,
  4046. ['SkillBranch']=3,
  4047. ['PressPoint']=9,
  4048. ['StartPressPoint']=9,
  4049. },
  4050. [25030]={
  4051. ['SkillId']=25030,
  4052. ['Name']='PSTCfg_Name_25030',
  4053. ['SkillType']=1,
  4054. ['MaxLv']=50,
  4055. ['SkillQuality']=0,
  4056. ['JobType']=5,
  4057. ['JobBranch']=1,
  4058. ['JobStage']=2,
  4059. ['ParterID']=50021,
  4060. ['OpenLevel']=60,
  4061. ['OpenNeedCost']={{114,1}},
  4062. ['Pos']=70,
  4063. ['order']=88,
  4064. ['SuperSkill']={{1,25130}},
  4065. ['beforeSkill']=0,
  4066. ['SkillBranch']=3,
  4067. ['PressPoint']=9,
  4068. ['StartPressPoint']=9,
  4069. },
  4070. [25031]={
  4071. ['SkillId']=25031,
  4072. ['Name']='PSTCfg_Name_25131',
  4073. ['SkillType']=1,
  4074. ['MaxLv']=50,
  4075. ['SkillQuality']=0,
  4076. ['JobType']=5,
  4077. ['JobBranch']=1,
  4078. ['JobStage']=2,
  4079. ['ParterID']=50021,
  4080. ['OpenLevel']=50,
  4081. ['OpenNeedCost']={{113,1}},
  4082. ['Pos']=60,
  4083. ['order']=90,
  4084. ['SuperSkill']={{1,25131}},
  4085. ['beforeSkill']=0,
  4086. ['SkillBranch']=3,
  4087. ['PressPoint']=9,
  4088. ['StartPressPoint']=9,
  4089. },
  4090. [25032]={
  4091. ['SkillId']=25032,
  4092. ['Name']='PSTCfg_Name_25032',
  4093. ['SkillType']=1,
  4094. ['MaxLv']=50,
  4095. ['SkillQuality']=0,
  4096. ['JobType']=5,
  4097. ['JobBranch']=1,
  4098. ['JobStage']=2,
  4099. ['ParterID']=50021,
  4100. ['OpenLevel']=55,
  4101. ['OpenNeedCost']={{114,1}},
  4102. ['Pos']=65,
  4103. ['order']=89,
  4104. ['SuperSkill']={{1,25132}},
  4105. ['beforeSkill']=0,
  4106. ['SkillBranch']=3,
  4107. ['PressPoint']=9,
  4108. ['StartPressPoint']=9,
  4109. },
  4110. [25033]={
  4111. ['SkillId']=25033,
  4112. ['Name']='PSTCfg_Name_25133',
  4113. ['SkillType']=1,
  4114. ['MaxLv']=50,
  4115. ['SkillQuality']=0,
  4116. ['JobType']=5,
  4117. ['JobBranch']=1,
  4118. ['JobStage']=2,
  4119. ['ParterID']=50021,
  4120. ['OpenLevel']=65,
  4121. ['OpenNeedCost']={{114,1}},
  4122. ['Pos']=75,
  4123. ['order']=87,
  4124. ['SuperSkill']={{1,25133}},
  4125. ['beforeSkill']=0,
  4126. ['SkillBranch']=3,
  4127. ['PressPoint']=9,
  4128. ['StartPressPoint']=9,
  4129. },
  4130. [25034]={
  4131. ['SkillId']=25034,
  4132. ['Name']='PSTCfg_Name_25234',
  4133. ['SkillType']=1,
  4134. ['MaxLv']=50,
  4135. ['SkillQuality']=0,
  4136. ['JobType']=5,
  4137. ['JobBranch']=2,
  4138. ['JobStage']=2,
  4139. ['ParterID']=50022,
  4140. ['OpenLevel']=60,
  4141. ['OpenNeedCost']={{114,1}},
  4142. ['Pos']=70,
  4143. ['order']=88,
  4144. ['SuperSkill']={{2,25234}},
  4145. ['beforeSkill']=0,
  4146. ['SkillBranch']=3,
  4147. ['PressPoint']=9,
  4148. ['StartPressPoint']=9,
  4149. },
  4150. [25035]={
  4151. ['SkillId']=25035,
  4152. ['Name']='PSTCfg_Name_25035',
  4153. ['SkillType']=1,
  4154. ['MaxLv']=50,
  4155. ['SkillQuality']=0,
  4156. ['JobType']=5,
  4157. ['JobBranch']=2,
  4158. ['JobStage']=2,
  4159. ['ParterID']=50022,
  4160. ['OpenLevel']=50,
  4161. ['OpenNeedCost']={{113,1}},
  4162. ['Pos']=60,
  4163. ['order']=90,
  4164. ['SuperSkill']={{2,25235}},
  4165. ['beforeSkill']=0,
  4166. ['SkillBranch']=3,
  4167. ['PressPoint']=9,
  4168. ['StartPressPoint']=9,
  4169. },
  4170. [25036]={
  4171. ['SkillId']=25036,
  4172. ['Name']='PSTCfg_Name_25236',
  4173. ['SkillType']=1,
  4174. ['MaxLv']=50,
  4175. ['SkillQuality']=0,
  4176. ['JobType']=5,
  4177. ['JobBranch']=2,
  4178. ['JobStage']=2,
  4179. ['ParterID']=50022,
  4180. ['OpenLevel']=55,
  4181. ['OpenNeedCost']={{114,1}},
  4182. ['Pos']=65,
  4183. ['order']=89,
  4184. ['SuperSkill']={{2,25236}},
  4185. ['beforeSkill']=0,
  4186. ['SkillBranch']=3,
  4187. ['PressPoint']=9,
  4188. ['StartPressPoint']=9,
  4189. },
  4190. [25037]={
  4191. ['SkillId']=25037,
  4192. ['Name']='PSTCfg_Name_25037',
  4193. ['SkillType']=1,
  4194. ['MaxLv']=50,
  4195. ['SkillQuality']=0,
  4196. ['JobType']=5,
  4197. ['JobBranch']=2,
  4198. ['JobStage']=2,
  4199. ['ParterID']=50022,
  4200. ['OpenLevel']=65,
  4201. ['OpenNeedCost']={{114,1}},
  4202. ['Pos']=75,
  4203. ['order']=87,
  4204. ['SuperSkill']={{2,25237}},
  4205. ['beforeSkill']=0,
  4206. ['SkillBranch']=3,
  4207. ['PressPoint']=9,
  4208. ['StartPressPoint']=9,
  4209. },
  4210. [25038]={
  4211. ['SkillId']=25038,
  4212. ['Name']='PSTCfg_Name_25228',
  4213. ['SkillType']=1,
  4214. ['MaxLv']=50,
  4215. ['SkillQuality']=0,
  4216. ['JobType']=5,
  4217. ['JobBranch']=2,
  4218. ['JobStage']=2,
  4219. ['ParterID']=50022,
  4220. ['OpenLevel']=45,
  4221. ['OpenNeedCost']={{113,1}},
  4222. ['Pos']=55,
  4223. ['order']=91,
  4224. ['SuperSkill']={{2,25228}},
  4225. ['beforeSkill']=0,
  4226. ['SkillBranch']=3,
  4227. ['PressPoint']=9,
  4228. ['StartPressPoint']=9,
  4229. },
  4230. [25039]={
  4231. ['SkillId']=25039,
  4232. ['Name']='PSTCfg_Name_25129',
  4233. ['SkillType']=1,
  4234. ['MaxLv']=50,
  4235. ['SkillQuality']=0,
  4236. ['JobType']=5,
  4237. ['JobBranch']=2,
  4238. ['JobStage']=2,
  4239. ['ParterID']=50022,
  4240. ['OpenLevel']=40,
  4241. ['OpenNeedCost']={{113,1}},
  4242. ['Pos']=50,
  4243. ['order']=92,
  4244. ['SuperSkill']={{2,25229}},
  4245. ['beforeSkill']=0,
  4246. ['SkillBranch']=3,
  4247. ['PressPoint']=9,
  4248. ['StartPressPoint']=9,
  4249. },
  4250. [25040]={
  4251. ['SkillId']=25040,
  4252. ['Name']='PSTCfg_Name_25140',
  4253. ['SkillType']=1,
  4254. ['MaxLv']=50,
  4255. ['SkillQuality']=0,
  4256. ['JobType']=5,
  4257. ['JobBranch']=1,
  4258. ['JobStage']=3,
  4259. ['ParterID']=50031,
  4260. ['OpenLevel']=70,
  4261. ['OpenNeedCost']={{191,1}},
  4262. ['Pos']=80,
  4263. ['order']=86,
  4264. ['SuperSkill']={{1,25140}},
  4265. ['beforeSkill']=0,
  4266. ['SkillBranch']=3,
  4267. ['PressPoint']=21,
  4268. ['StartPressPoint']=21,
  4269. },
  4270. [25041]={
  4271. ['SkillId']=25041,
  4272. ['Name']='PSTCfg_Name_25141',
  4273. ['SkillType']=1,
  4274. ['MaxLv']=50,
  4275. ['SkillQuality']=0,
  4276. ['JobType']=5,
  4277. ['JobBranch']=1,
  4278. ['JobStage']=3,
  4279. ['ParterID']=50031,
  4280. ['OpenLevel']=75,
  4281. ['OpenNeedCost']={{191,1}},
  4282. ['Pos']=85,
  4283. ['order']=85,
  4284. ['SuperSkill']={{1,25141}},
  4285. ['beforeSkill']=0,
  4286. ['SkillBranch']=3,
  4287. ['PressPoint']=21,
  4288. ['StartPressPoint']=21,
  4289. },
  4290. [25042]={
  4291. ['SkillId']=25042,
  4292. ['Name']='PSTCfg_Name_25242',
  4293. ['SkillType']=1,
  4294. ['MaxLv']=50,
  4295. ['SkillQuality']=0,
  4296. ['JobType']=5,
  4297. ['JobBranch']=2,
  4298. ['JobStage']=3,
  4299. ['ParterID']=50032,
  4300. ['OpenLevel']=70,
  4301. ['OpenNeedCost']={{191,1}},
  4302. ['Pos']=80,
  4303. ['order']=86,
  4304. ['SuperSkill']={{2,25242}},
  4305. ['beforeSkill']=0,
  4306. ['SkillBranch']=3,
  4307. ['PressPoint']=21,
  4308. ['StartPressPoint']=21,
  4309. },
  4310. [25043]={
  4311. ['SkillId']=25043,
  4312. ['Name']='PSTCfg_Name_25243',
  4313. ['SkillType']=1,
  4314. ['MaxLv']=50,
  4315. ['SkillQuality']=0,
  4316. ['JobType']=5,
  4317. ['JobBranch']=2,
  4318. ['JobStage']=3,
  4319. ['ParterID']=50032,
  4320. ['OpenLevel']=75,
  4321. ['OpenNeedCost']={{191,1}},
  4322. ['Pos']=85,
  4323. ['order']=85,
  4324. ['SuperSkill']={{2,25243}},
  4325. ['beforeSkill']=0,
  4326. ['SkillBranch']=3,
  4327. ['PressPoint']=21,
  4328. ['StartPressPoint']=21,
  4329. },
  4330. [25122]={
  4331. ['SkillId']=25122,
  4332. ['Name']='PSTCfg_Name_25222',
  4333. ['SkillType']=1,
  4334. ['MaxLv']=50,
  4335. ['SkillQuality']=3,
  4336. ['JobType']=5,
  4337. ['JobBranch']=1,
  4338. ['JobStage']=3,
  4339. ['ParterID']=50031,
  4340. ['OpenLevel']=76,
  4341. ['OpenNeedCost']={{200,1}},
  4342. ['Pos']=10,
  4343. ['order']=98,
  4344. ['beforeSkill']=25022,
  4345. ['SkillBranch']=0,
  4346. ['PressPoint']=30,
  4347. ['StartPressPoint']=180,
  4348. },
  4349. [25123]={
  4350. ['SkillId']=25123,
  4351. ['Name']='PSTCfg_Name_25223',
  4352. ['SkillType']=1,
  4353. ['MaxLv']=50,
  4354. ['SkillQuality']=3,
  4355. ['JobType']=5,
  4356. ['JobBranch']=1,
  4357. ['JobStage']=3,
  4358. ['ParterID']=50031,
  4359. ['OpenLevel']=79,
  4360. ['OpenNeedCost']={{200,1}},
  4361. ['Pos']=21,
  4362. ['order']=95,
  4363. ['beforeSkill']=25023,
  4364. ['SkillBranch']=0,
  4365. ['PressPoint']=30,
  4366. ['StartPressPoint']=180,
  4367. },
  4368. [25124]={
  4369. ['SkillId']=25124,
  4370. ['Name']='PSTCfg_Name_25224',
  4371. ['SkillType']=1,
  4372. ['MaxLv']=50,
  4373. ['SkillQuality']=3,
  4374. ['JobType']=5,
  4375. ['JobBranch']=1,
  4376. ['JobStage']=3,
  4377. ['ParterID']=50031,
  4378. ['OpenLevel']=80,
  4379. ['OpenNeedCost']={{200,1}},
  4380. ['Pos']=26,
  4381. ['order']=94,
  4382. ['beforeSkill']=25024,
  4383. ['SkillBranch']=0,
  4384. ['PressPoint']=30,
  4385. ['StartPressPoint']=180,
  4386. },
  4387. [25125]={
  4388. ['SkillId']=25125,
  4389. ['Name']='PSTCfg_Name_25025',
  4390. ['SkillType']=1,
  4391. ['MaxLv']=50,
  4392. ['SkillQuality']=3,
  4393. ['JobType']=5,
  4394. ['JobBranch']=1,
  4395. ['JobStage']=3,
  4396. ['ParterID']=50031,
  4397. ['OpenLevel']=78,
  4398. ['OpenNeedCost']={{200,1}},
  4399. ['Pos']=16,
  4400. ['order']=96,
  4401. ['beforeSkill']=25025,
  4402. ['SkillBranch']=0,
  4403. ['PressPoint']=30,
  4404. ['StartPressPoint']=180,
  4405. },
  4406. [25126]={
  4407. ['SkillId']=25126,
  4408. ['Name']='PSTCfg_Name_25226',
  4409. ['SkillType']=1,
  4410. ['MaxLv']=50,
  4411. ['SkillQuality']=3,
  4412. ['JobType']=5,
  4413. ['JobBranch']=1,
  4414. ['JobStage']=3,
  4415. ['ParterID']=50031,
  4416. ['OpenLevel']=77,
  4417. ['OpenNeedCost']={{200,1}},
  4418. ['Pos']=13,
  4419. ['order']=97,
  4420. ['beforeSkill']=25026,
  4421. ['SkillBranch']=0,
  4422. ['PressPoint']=30,
  4423. ['StartPressPoint']=180,
  4424. },
  4425. [25127]={
  4426. ['SkillId']=25127,
  4427. ['Name']='PSTCfg_Name_25127',
  4428. ['SkillType']=1,
  4429. ['MaxLv']=50,
  4430. ['SkillQuality']=3,
  4431. ['JobType']=5,
  4432. ['JobBranch']=1,
  4433. ['JobStage']=3,
  4434. ['ParterID']=50031,
  4435. ['OpenLevel']=81,
  4436. ['OpenNeedCost']={{200,1}},
  4437. ['Pos']=31,
  4438. ['order']=93,
  4439. ['beforeSkill']=25027,
  4440. ['SkillBranch']=0,
  4441. ['PressPoint']=30,
  4442. ['StartPressPoint']=180,
  4443. },
  4444. [25128]={
  4445. ['SkillId']=25128,
  4446. ['Name']='PSTCfg_Name_25228',
  4447. ['SkillType']=1,
  4448. ['MaxLv']=50,
  4449. ['SkillQuality']=3,
  4450. ['JobType']=5,
  4451. ['JobBranch']=1,
  4452. ['JobStage']=3,
  4453. ['ParterID']=50031,
  4454. ['OpenLevel']=83,
  4455. ['OpenNeedCost']={{200,1}},
  4456. ['Pos']=55,
  4457. ['order']=91,
  4458. ['beforeSkill']=25028,
  4459. ['SkillBranch']=0,
  4460. ['PressPoint']=30,
  4461. ['StartPressPoint']=480,
  4462. },
  4463. [25129]={
  4464. ['SkillId']=25129,
  4465. ['Name']='PSTCfg_Name_25129',
  4466. ['SkillType']=1,
  4467. ['MaxLv']=50,
  4468. ['SkillQuality']=3,
  4469. ['JobType']=5,
  4470. ['JobBranch']=1,
  4471. ['JobStage']=3,
  4472. ['ParterID']=50031,
  4473. ['OpenLevel']=82,
  4474. ['OpenNeedCost']={{200,1}},
  4475. ['Pos']=50,
  4476. ['order']=92,
  4477. ['beforeSkill']=25029,
  4478. ['SkillBranch']=0,
  4479. ['PressPoint']=30,
  4480. ['StartPressPoint']=480,
  4481. },
  4482. [25130]={
  4483. ['SkillId']=25130,
  4484. ['Name']='PSTCfg_Name_25030',
  4485. ['SkillType']=1,
  4486. ['MaxLv']=50,
  4487. ['SkillQuality']=3,
  4488. ['JobType']=5,
  4489. ['JobBranch']=1,
  4490. ['JobStage']=3,
  4491. ['ParterID']=50031,
  4492. ['OpenLevel']=86,
  4493. ['OpenNeedCost']={{200,1}},
  4494. ['Pos']=70,
  4495. ['order']=88,
  4496. ['beforeSkill']=25030,
  4497. ['SkillBranch']=0,
  4498. ['PressPoint']=30,
  4499. ['StartPressPoint']=480,
  4500. },
  4501. [25131]={
  4502. ['SkillId']=25131,
  4503. ['Name']='PSTCfg_Name_25131',
  4504. ['SkillType']=1,
  4505. ['MaxLv']=50,
  4506. ['SkillQuality']=3,
  4507. ['JobType']=5,
  4508. ['JobBranch']=1,
  4509. ['JobStage']=3,
  4510. ['ParterID']=50031,
  4511. ['OpenLevel']=84,
  4512. ['OpenNeedCost']={{200,1}},
  4513. ['Pos']=60,
  4514. ['order']=90,
  4515. ['beforeSkill']=25031,
  4516. ['SkillBranch']=0,
  4517. ['PressPoint']=30,
  4518. ['StartPressPoint']=480,
  4519. },
  4520. [25132]={
  4521. ['SkillId']=25132,
  4522. ['Name']='PSTCfg_Name_25032',
  4523. ['SkillType']=1,
  4524. ['MaxLv']=50,
  4525. ['SkillQuality']=3,
  4526. ['JobType']=5,
  4527. ['JobBranch']=1,
  4528. ['JobStage']=3,
  4529. ['ParterID']=50031,
  4530. ['OpenLevel']=85,
  4531. ['OpenNeedCost']={{200,1}},
  4532. ['Pos']=65,
  4533. ['order']=89,
  4534. ['beforeSkill']=25032,
  4535. ['SkillBranch']=0,
  4536. ['PressPoint']=30,
  4537. ['StartPressPoint']=480,
  4538. },
  4539. [25133]={
  4540. ['SkillId']=25133,
  4541. ['Name']='PSTCfg_Name_25133',
  4542. ['SkillType']=1,
  4543. ['MaxLv']=50,
  4544. ['SkillQuality']=3,
  4545. ['JobType']=5,
  4546. ['JobBranch']=1,
  4547. ['JobStage']=3,
  4548. ['ParterID']=50031,
  4549. ['OpenLevel']=87,
  4550. ['OpenNeedCost']={{200,1}},
  4551. ['Pos']=75,
  4552. ['order']=87,
  4553. ['beforeSkill']=25033,
  4554. ['SkillBranch']=0,
  4555. ['PressPoint']=30,
  4556. ['StartPressPoint']=480,
  4557. },
  4558. [25140]={
  4559. ['SkillId']=25140,
  4560. ['Name']='PSTCfg_Name_25140',
  4561. ['SkillType']=1,
  4562. ['MaxLv']=50,
  4563. ['SkillQuality']=3,
  4564. ['JobType']=5,
  4565. ['JobBranch']=1,
  4566. ['JobStage']=3,
  4567. ['ParterID']=50031,
  4568. ['OpenLevel']=90,
  4569. ['OpenNeedCost']={{200,1}},
  4570. ['Pos']=80,
  4571. ['order']=86,
  4572. ['beforeSkill']=25040,
  4573. ['SkillBranch']=0,
  4574. ['PressPoint']=30,
  4575. ['StartPressPoint']=1080,
  4576. },
  4577. [25141]={
  4578. ['SkillId']=25141,
  4579. ['Name']='PSTCfg_Name_25141',
  4580. ['SkillType']=1,
  4581. ['MaxLv']=50,
  4582. ['SkillQuality']=3,
  4583. ['JobType']=5,
  4584. ['JobBranch']=1,
  4585. ['JobStage']=3,
  4586. ['ParterID']=50031,
  4587. ['OpenLevel']=92,
  4588. ['OpenNeedCost']={{200,1}},
  4589. ['Pos']=85,
  4590. ['order']=85,
  4591. ['beforeSkill']=25041,
  4592. ['SkillBranch']=0,
  4593. ['PressPoint']=30,
  4594. ['StartPressPoint']=1080,
  4595. },
  4596. [25222]={
  4597. ['SkillId']=25222,
  4598. ['Name']='PSTCfg_Name_25222',
  4599. ['SkillType']=1,
  4600. ['MaxLv']=50,
  4601. ['SkillQuality']=3,
  4602. ['JobType']=5,
  4603. ['JobBranch']=2,
  4604. ['JobStage']=3,
  4605. ['ParterID']=50032,
  4606. ['OpenLevel']=76,
  4607. ['OpenNeedCost']={{200,1}},
  4608. ['Pos']=10,
  4609. ['order']=98,
  4610. ['beforeSkill']=25022,
  4611. ['SkillBranch']=0,
  4612. ['PressPoint']=30,
  4613. ['StartPressPoint']=180,
  4614. },
  4615. [25223]={
  4616. ['SkillId']=25223,
  4617. ['Name']='PSTCfg_Name_25223',
  4618. ['SkillType']=1,
  4619. ['MaxLv']=50,
  4620. ['SkillQuality']=3,
  4621. ['JobType']=5,
  4622. ['JobBranch']=2,
  4623. ['JobStage']=3,
  4624. ['ParterID']=50032,
  4625. ['OpenLevel']=79,
  4626. ['OpenNeedCost']={{200,1}},
  4627. ['Pos']=21,
  4628. ['order']=95,
  4629. ['beforeSkill']=25023,
  4630. ['SkillBranch']=0,
  4631. ['PressPoint']=30,
  4632. ['StartPressPoint']=180,
  4633. },
  4634. [25224]={
  4635. ['SkillId']=25224,
  4636. ['Name']='PSTCfg_Name_25224',
  4637. ['SkillType']=1,
  4638. ['MaxLv']=50,
  4639. ['SkillQuality']=3,
  4640. ['JobType']=5,
  4641. ['JobBranch']=2,
  4642. ['JobStage']=3,
  4643. ['ParterID']=50032,
  4644. ['OpenLevel']=80,
  4645. ['OpenNeedCost']={{200,1}},
  4646. ['Pos']=26,
  4647. ['order']=94,
  4648. ['beforeSkill']=25024,
  4649. ['SkillBranch']=0,
  4650. ['PressPoint']=30,
  4651. ['StartPressPoint']=180,
  4652. },
  4653. [25225]={
  4654. ['SkillId']=25225,
  4655. ['Name']='PSTCfg_Name_25025',
  4656. ['SkillType']=1,
  4657. ['MaxLv']=50,
  4658. ['SkillQuality']=3,
  4659. ['JobType']=5,
  4660. ['JobBranch']=2,
  4661. ['JobStage']=3,
  4662. ['ParterID']=50032,
  4663. ['OpenLevel']=78,
  4664. ['OpenNeedCost']={{200,1}},
  4665. ['Pos']=16,
  4666. ['order']=96,
  4667. ['beforeSkill']=25025,
  4668. ['SkillBranch']=0,
  4669. ['PressPoint']=30,
  4670. ['StartPressPoint']=180,
  4671. },
  4672. [25226]={
  4673. ['SkillId']=25226,
  4674. ['Name']='PSTCfg_Name_25226',
  4675. ['SkillType']=1,
  4676. ['MaxLv']=50,
  4677. ['SkillQuality']=3,
  4678. ['JobType']=5,
  4679. ['JobBranch']=2,
  4680. ['JobStage']=3,
  4681. ['ParterID']=50032,
  4682. ['OpenLevel']=77,
  4683. ['OpenNeedCost']={{200,1}},
  4684. ['Pos']=13,
  4685. ['order']=97,
  4686. ['beforeSkill']=25026,
  4687. ['SkillBranch']=0,
  4688. ['PressPoint']=30,
  4689. ['StartPressPoint']=180,
  4690. },
  4691. [25227]={
  4692. ['SkillId']=25227,
  4693. ['Name']='PSTCfg_Name_25127',
  4694. ['SkillType']=1,
  4695. ['MaxLv']=50,
  4696. ['SkillQuality']=3,
  4697. ['JobType']=5,
  4698. ['JobBranch']=2,
  4699. ['JobStage']=3,
  4700. ['ParterID']=50032,
  4701. ['OpenLevel']=81,
  4702. ['OpenNeedCost']={{200,1}},
  4703. ['Pos']=31,
  4704. ['order']=93,
  4705. ['beforeSkill']=25027,
  4706. ['SkillBranch']=0,
  4707. ['PressPoint']=30,
  4708. ['StartPressPoint']=180,
  4709. },
  4710. [25228]={
  4711. ['SkillId']=25228,
  4712. ['Name']='PSTCfg_Name_25228',
  4713. ['SkillType']=1,
  4714. ['MaxLv']=50,
  4715. ['SkillQuality']=3,
  4716. ['JobType']=5,
  4717. ['JobBranch']=2,
  4718. ['JobStage']=3,
  4719. ['ParterID']=50032,
  4720. ['OpenLevel']=83,
  4721. ['OpenNeedCost']={{200,1}},
  4722. ['Pos']=55,
  4723. ['order']=91,
  4724. ['beforeSkill']=25038,
  4725. ['SkillBranch']=0,
  4726. ['PressPoint']=30,
  4727. ['StartPressPoint']=480,
  4728. },
  4729. [25229]={
  4730. ['SkillId']=25229,
  4731. ['Name']='PSTCfg_Name_25129',
  4732. ['SkillType']=1,
  4733. ['MaxLv']=50,
  4734. ['SkillQuality']=3,
  4735. ['JobType']=5,
  4736. ['JobBranch']=2,
  4737. ['JobStage']=3,
  4738. ['ParterID']=50032,
  4739. ['OpenLevel']=82,
  4740. ['OpenNeedCost']={{200,1}},
  4741. ['Pos']=50,
  4742. ['order']=92,
  4743. ['beforeSkill']=25039,
  4744. ['SkillBranch']=0,
  4745. ['PressPoint']=30,
  4746. ['StartPressPoint']=480,
  4747. },
  4748. [25234]={
  4749. ['SkillId']=25234,
  4750. ['Name']='PSTCfg_Name_25234',
  4751. ['SkillType']=1,
  4752. ['MaxLv']=50,
  4753. ['SkillQuality']=3,
  4754. ['JobType']=5,
  4755. ['JobBranch']=2,
  4756. ['JobStage']=3,
  4757. ['ParterID']=50032,
  4758. ['OpenLevel']=86,
  4759. ['OpenNeedCost']={{200,1}},
  4760. ['Pos']=70,
  4761. ['order']=88,
  4762. ['beforeSkill']=25034,
  4763. ['SkillBranch']=0,
  4764. ['PressPoint']=30,
  4765. ['StartPressPoint']=480,
  4766. },
  4767. [25235]={
  4768. ['SkillId']=25235,
  4769. ['Name']='PSTCfg_Name_25035',
  4770. ['SkillType']=1,
  4771. ['MaxLv']=50,
  4772. ['SkillQuality']=3,
  4773. ['JobType']=5,
  4774. ['JobBranch']=2,
  4775. ['JobStage']=3,
  4776. ['ParterID']=50032,
  4777. ['OpenLevel']=84,
  4778. ['OpenNeedCost']={{200,1}},
  4779. ['Pos']=60,
  4780. ['order']=90,
  4781. ['beforeSkill']=25035,
  4782. ['SkillBranch']=0,
  4783. ['PressPoint']=30,
  4784. ['StartPressPoint']=480,
  4785. },
  4786. [25236]={
  4787. ['SkillId']=25236,
  4788. ['Name']='PSTCfg_Name_25236',
  4789. ['SkillType']=1,
  4790. ['MaxLv']=50,
  4791. ['SkillQuality']=3,
  4792. ['JobType']=5,
  4793. ['JobBranch']=2,
  4794. ['JobStage']=3,
  4795. ['ParterID']=50032,
  4796. ['OpenLevel']=85,
  4797. ['OpenNeedCost']={{200,1}},
  4798. ['Pos']=65,
  4799. ['order']=89,
  4800. ['beforeSkill']=25036,
  4801. ['SkillBranch']=0,
  4802. ['PressPoint']=30,
  4803. ['StartPressPoint']=480,
  4804. },
  4805. [25237]={
  4806. ['SkillId']=25237,
  4807. ['Name']='PSTCfg_Name_25037',
  4808. ['SkillType']=1,
  4809. ['MaxLv']=50,
  4810. ['SkillQuality']=3,
  4811. ['JobType']=5,
  4812. ['JobBranch']=2,
  4813. ['JobStage']=3,
  4814. ['ParterID']=50032,
  4815. ['OpenLevel']=87,
  4816. ['OpenNeedCost']={{200,1}},
  4817. ['Pos']=75,
  4818. ['order']=87,
  4819. ['beforeSkill']=25037,
  4820. ['SkillBranch']=0,
  4821. ['PressPoint']=30,
  4822. ['StartPressPoint']=480,
  4823. },
  4824. [25242]={
  4825. ['SkillId']=25242,
  4826. ['Name']='PSTCfg_Name_25242',
  4827. ['SkillType']=1,
  4828. ['MaxLv']=50,
  4829. ['SkillQuality']=3,
  4830. ['JobType']=5,
  4831. ['JobBranch']=2,
  4832. ['JobStage']=3,
  4833. ['ParterID']=50032,
  4834. ['OpenLevel']=90,
  4835. ['OpenNeedCost']={{200,1}},
  4836. ['Pos']=80,
  4837. ['order']=86,
  4838. ['beforeSkill']=25042,
  4839. ['SkillBranch']=0,
  4840. ['PressPoint']=30,
  4841. ['StartPressPoint']=1080,
  4842. },
  4843. [25243]={
  4844. ['SkillId']=25243,
  4845. ['Name']='PSTCfg_Name_25243',
  4846. ['SkillType']=1,
  4847. ['MaxLv']=50,
  4848. ['SkillQuality']=3,
  4849. ['JobType']=5,
  4850. ['JobBranch']=2,
  4851. ['JobStage']=3,
  4852. ['ParterID']=50032,
  4853. ['OpenLevel']=92,
  4854. ['OpenNeedCost']={{200,1}},
  4855. ['Pos']=85,
  4856. ['order']=85,
  4857. ['beforeSkill']=25043,
  4858. ['SkillBranch']=0,
  4859. ['PressPoint']=30,
  4860. ['StartPressPoint']=1080,
  4861. },
  4862. }
  4863. return ParterSkillTreeCfg