SkillConfig.json 114 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436143714381439144014411442144314441445144614471448144914501451145214531454145514561457145814591460146114621463146414651466146714681469147014711472147314741475147614771478147914801481148214831484148514861487148814891490149114921493149414951496149714981499150015011502150315041505150615071508150915101511151215131514151515161517151815191520152115221523152415251526152715281529153015311532153315341535153615371538153915401541154215431544154515461547154815491550155115521553155415551556155715581559156015611562156315641565156615671568156915701571157215731574157515761577157815791580158115821583158415851586158715881589159015911592159315941595159615971598159916001601160216031604160516061607160816091610161116121613161416151616161716181619162016211622162316241625162616271628162916301631163216331634163516361637163816391640164116421643164416451646164716481649165016511652165316541655165616571658165916601661166216631664166516661667166816691670167116721673167416751676167716781679168016811682168316841685168616871688168916901691169216931694169516961697169816991700170117021703170417051706170717081709171017111712171317141715171617171718171917201721172217231724172517261727172817291730173117321733173417351736173717381739174017411742174317441745174617471748174917501751175217531754175517561757175817591760176117621763176417651766176717681769177017711772177317741775177617771778177917801781178217831784178517861787178817891790179117921793179417951796179717981799180018011802180318041805180618071808180918101811181218131814181518161817181818191820182118221823182418251826182718281829183018311832183318341835183618371838183918401841184218431844184518461847184818491850185118521853185418551856185718581859186018611862186318641865186618671868186918701871187218731874187518761877187818791880188118821883188418851886188718881889189018911892189318941895189618971898189919001901190219031904190519061907190819091910191119121913191419151916191719181919192019211922192319241925192619271928192919301931193219331934193519361937193819391940194119421943194419451946194719481949195019511952195319541955195619571958195919601961196219631964196519661967196819691970197119721973197419751976197719781979198019811982198319841985198619871988198919901991199219931994199519961997199819992000200120022003200420052006200720082009201020112012201320142015201620172018201920202021202220232024202520262027202820292030203120322033203420352036203720382039204020412042204320442045204620472048204920502051205220532054205520562057205820592060206120622063206420652066206720682069207020712072207320742075207620772078207920802081208220832084208520862087208820892090209120922093209420952096209720982099210021012102210321042105210621072108210921102111211221132114211521162117211821192120212121222123212421252126212721282129213021312132213321342135213621372138213921402141214221432144214521462147214821492150215121522153215421552156215721582159216021612162216321642165216621672168216921702171217221732174217521762177217821792180218121822183218421852186218721882189219021912192219321942195219621972198219922002201220222032204220522062207220822092210221122122213221422152216221722182219222022212222222322242225222622272228222922302231223222332234223522362237223822392240224122422243224422452246224722482249225022512252225322542255225622572258225922602261226222632264226522662267226822692270227122722273227422752276227722782279228022812282228322842285228622872288228922902291229222932294229522962297229822992300230123022303230423052306230723082309231023112312231323142315231623172318231923202321232223232324232523262327232823292330233123322333233423352336233723382339234023412342234323442345234623472348234923502351235223532354235523562357235823592360236123622363236423652366236723682369237023712372237323742375237623772378237923802381238223832384238523862387238823892390239123922393239423952396239723982399240024012402240324042405240624072408240924102411241224132414241524162417241824192420242124222423242424252426242724282429243024312432243324342435243624372438243924402441244224432444244524462447244824492450245124522453245424552456245724582459246024612462246324642465246624672468246924702471247224732474247524762477247824792480248124822483248424852486248724882489249024912492249324942495249624972498249925002501250225032504250525062507250825092510251125122513251425152516251725182519252025212522252325242525252625272528252925302531253225332534253525362537253825392540254125422543254425452546254725482549255025512552255325542555255625572558255925602561256225632564256525662567256825692570257125722573257425752576257725782579258025812582258325842585258625872588258925902591259225932594259525962597259825992600260126022603260426052606260726082609261026112612261326142615261626172618261926202621262226232624262526262627262826292630263126322633263426352636263726382639264026412642264326442645264626472648264926502651265226532654265526562657265826592660266126622663266426652666266726682669267026712672267326742675267626772678267926802681268226832684268526862687268826892690269126922693269426952696269726982699270027012702270327042705270627072708270927102711271227132714271527162717271827192720272127222723272427252726272727282729273027312732273327342735273627372738273927402741274227432744274527462747274827492750275127522753275427552756275727582759276027612762276327642765276627672768276927702771277227732774277527762777277827792780278127822783278427852786278727882789279027912792279327942795279627972798279928002801280228032804280528062807280828092810281128122813281428152816281728182819282028212822282328242825282628272828282928302831283228332834283528362837283828392840284128422843284428452846284728482849285028512852285328542855285628572858285928602861286228632864286528662867286828692870287128722873287428752876287728782879288028812882288328842885288628872888288928902891289228932894289528962897289828992900290129022903290429052906290729082909291029112912291329142915291629172918291929202921292229232924292529262927292829292930293129322933293429352936293729382939294029412942294329442945294629472948294929502951295229532954295529562957295829592960296129622963296429652966296729682969297029712972297329742975297629772978297929802981298229832984298529862987298829892990299129922993299429952996299729982999300030013002300330043005300630073008300930103011301230133014301530163017301830193020302130223023302430253026302730283029303030313032303330343035303630373038303930403041304230433044304530463047304830493050305130523053305430553056305730583059306030613062306330643065306630673068306930703071307230733074307530763077307830793080308130823083308430853086308730883089309030913092309330943095309630973098309931003101310231033104310531063107310831093110311131123113311431153116311731183119312031213122312331243125312631273128312931303131313231333134313531363137313831393140314131423143314431453146314731483149315031513152315331543155315631573158315931603161316231633164316531663167316831693170317131723173317431753176317731783179318031813182318331843185318631873188318931903191319231933194319531963197319831993200320132023203320432053206320732083209321032113212321332143215321632173218321932203221322232233224322532263227322832293230323132323233323432353236323732383239324032413242324332443245324632473248324932503251325232533254325532563257325832593260326132623263326432653266326732683269327032713272327332743275327632773278327932803281328232833284328532863287328832893290329132923293329432953296329732983299330033013302330333043305330633073308330933103311331233133314331533163317331833193320332133223323332433253326332733283329333033313332333333343335333633373338333933403341334233433344334533463347334833493350335133523353335433553356335733583359336033613362336333643365336633673368336933703371337233733374337533763377337833793380338133823383338433853386338733883389339033913392339333943395339633973398339934003401340234033404340534063407340834093410341134123413341434153416341734183419342034213422342334243425342634273428342934303431343234333434343534363437343834393440344134423443344434453446344734483449345034513452345334543455345634573458345934603461346234633464346534663467346834693470347134723473347434753476347734783479348034813482348334843485348634873488348934903491349234933494349534963497349834993500350135023503350435053506350735083509351035113512351335143515351635173518351935203521352235233524352535263527352835293530353135323533353435353536353735383539354035413542354335443545354635473548354935503551355235533554355535563557355835593560356135623563356435653566356735683569357035713572357335743575357635773578357935803581358235833584358535863587358835893590359135923593359435953596359735983599360036013602360336043605360636073608360936103611361236133614361536163617361836193620362136223623362436253626362736283629363036313632363336343635363636373638363936403641364236433644364536463647364836493650365136523653365436553656365736583659366036613662366336643665366636673668366936703671367236733674367536763677367836793680368136823683368436853686368736883689369036913692369336943695369636973698369937003701370237033704370537063707370837093710371137123713371437153716371737183719372037213722372337243725372637273728372937303731373237333734373537363737373837393740374137423743374437453746374737483749375037513752375337543755375637573758375937603761376237633764376537663767376837693770377137723773377437753776377737783779378037813782378337843785378637873788378937903791379237933794379537963797379837993800380138023803380438053806380738083809381038113812381338143815381638173818381938203821382238233824382538263827382838293830383138323833383438353836383738383839384038413842384338443845384638473848384938503851385238533854385538563857385838593860386138623863386438653866386738683869387038713872387338743875387638773878387938803881388238833884388538863887388838893890389138923893389438953896389738983899390039013902390339043905390639073908390939103911391239133914391539163917391839193920392139223923392439253926392739283929393039313932393339343935393639373938393939403941394239433944394539463947394839493950395139523953395439553956395739583959396039613962396339643965396639673968396939703971397239733974397539763977397839793980398139823983398439853986398739883989399039913992399339943995399639973998399940004001400240034004400540064007400840094010401140124013401440154016401740184019402040214022402340244025402640274028402940304031403240334034403540364037403840394040404140424043404440454046404740484049405040514052405340544055405640574058405940604061406240634064406540664067406840694070407140724073407440754076407740784079408040814082408340844085408640874088408940904091409240934094409540964097409840994100410141024103410441054106410741084109411041114112411341144115411641174118411941204121412241234124412541264127412841294130413141324133413441354136413741384139414041414142414341444145414641474148414941504151415241534154415541564157415841594160416141624163416441654166416741684169417041714172417341744175417641774178417941804181418241834184418541864187418841894190419141924193419441954196419741984199420042014202420342044205420642074208420942104211421242134214421542164217421842194220422142224223422442254226422742284229423042314232423342344235423642374238423942404241424242434244424542464247424842494250425142524253425442554256425742584259426042614262426342644265426642674268426942704271427242734274427542764277427842794280428142824283428442854286428742884289429042914292429342944295429642974298429943004301430243034304430543064307430843094310431143124313431443154316431743184319432043214322432343244325432643274328432943304331433243334334433543364337433843394340434143424343434443454346434743484349435043514352435343544355435643574358435943604361436243634364436543664367436843694370437143724373437443754376437743784379438043814382438343844385438643874388438943904391439243934394439543964397439843994400440144024403440444054406440744084409441044114412441344144415441644174418441944204421442244234424442544264427442844294430443144324433443444354436443744384439444044414442444344444445444644474448444944504451445244534454445544564457445844594460446144624463446444654466446744684469447044714472447344744475447644774478447944804481448244834484448544864487448844894490449144924493449444954496449744984499450045014502450345044505450645074508450945104511451245134514451545164517451845194520452145224523452445254526452745284529453045314532453345344535453645374538453945404541454245434544454545464547454845494550455145524553455445554556455745584559456045614562456345644565456645674568456945704571457245734574457545764577457845794580458145824583458445854586458745884589459045914592459345944595459645974598459946004601460246034604460546064607460846094610461146124613461446154616461746184619462046214622462346244625462646274628462946304631463246334634463546364637463846394640464146424643464446454646464746484649465046514652465346544655465646574658465946604661466246634664466546664667466846694670467146724673467446754676467746784679468046814682468346844685468646874688468946904691469246934694469546964697469846994700470147024703470447054706470747084709471047114712471347144715471647174718471947204721472247234724472547264727472847294730473147324733473447354736473747384739474047414742474347444745474647474748474947504751475247534754475547564757475847594760476147624763476447654766476747684769477047714772477347744775477647774778477947804781478247834784478547864787478847894790479147924793479447954796479747984799480048014802480348044805480648074808480948104811481248134814481548164817481848194820482148224823482448254826482748284829483048314832483348344835483648374838483948404841484248434844484548464847484848494850485148524853485448554856485748584859486048614862486348644865486648674868486948704871487248734874487548764877487848794880488148824883488448854886488748884889489048914892489348944895489648974898489949004901490249034904490549064907490849094910491149124913491449154916491749184919492049214922492349244925492649274928492949304931493249334934493549364937493849394940494149424943494449454946494749484949495049514952495349544955495649574958495949604961496249634964496549664967496849694970497149724973497449754976497749784979498049814982498349844985498649874988498949904991499249934994499549964997499849995000500150025003500450055006500750085009501050115012501350145015501650175018501950205021502250235024502550265027502850295030503150325033503450355036503750385039504050415042504350445045504650475048504950505051505250535054505550565057505850595060506150625063506450655066506750685069507050715072507350745075507650775078507950805081508250835084508550865087508850895090509150925093509450955096509750985099510051015102510351045105510651075108510951105111511251135114511551165117511851195120512151225123512451255126512751285129513051315132513351345135513651375138513951405141514251435144514551465147514851495150515151525153515451555156515751585159516051615162516351645165516651675168516951705171517251735174517551765177517851795180518151825183518451855186518751885189519051915192519351945195519651975198519952005201520252035204520552065207520852095210521152125213521452155216521752185219522052215222522352245225522652275228522952305231523252335234523552365237523852395240524152425243524452455246524752485249525052515252525352545255525652575258525952605261526252635264526552665267526852695270527152725273527452755276527752785279528052815282528352845285528652875288528952905291529252935294529552965297529852995300530153025303530453055306530753085309531053115312531353145315531653175318531953205321532253235324532553265327532853295330533153325333533453355336533753385339534053415342534353445345534653475348534953505351535253535354535553565357535853595360536153625363536453655366536753685369537053715372537353745375537653775378537953805381538253835384538553865387538853895390539153925393539453955396539753985399540054015402540354045405540654075408540954105411541254135414541554165417541854195420542154225423542454255426542754285429543054315432543354345435543654375438543954405441544254435444544554465447544854495450545154525453545454555456545754585459546054615462546354645465546654675468546954705471547254735474547554765477547854795480548154825483548454855486548754885489549054915492549354945495549654975498549955005501550255035504550555065507550855095510551155125513551455155516551755185519552055215522552355245525552655275528552955305531553255335534553555365537553855395540554155425543554455455546554755485549555055515552555355545555555655575558555955605561556255635564556555665567556855695570557155725573557455755576557755785579558055815582558355845585558655875588558955905591559255935594559555965597559855995600560156025603560456055606560756085609561056115612561356145615561656175618561956205621562256235624562556265627562856295630563156325633563456355636563756385639564056415642564356445645564656475648564956505651565256535654565556565657565856595660566156625663566456655666566756685669567056715672567356745675567656775678567956805681568256835684568556865687568856895690569156925693569456955696569756985699570057015702570357045705570657075708570957105711571257135714571557165717571857195720572157225723572457255726572757285729573057315732573357345735573657375738573957405741574257435744574557465747574857495750575157525753575457555756575757585759576057615762576357645765576657675768576957705771577257735774577557765777577857795780578157825783578457855786578757885789579057915792579357945795579657975798579958005801580258035804580558065807580858095810581158125813581458155816581758185819582058215822582358245825582658275828582958305831583258335834583558365837583858395840584158425843584458455846584758485849585058515852585358545855585658575858585958605861586258635864586558665867586858695870587158725873587458755876587758785879588058815882588358845885588658875888588958905891589258935894589558965897589858995900590159025903590459055906590759085909591059115912591359145915591659175918591959205921592259235924592559265927592859295930593159325933593459355936593759385939594059415942594359445945594659475948594959505951595259535954595559565957595859595960596159625963596459655966596759685969597059715972597359745975597659775978597959805981598259835984598559865987598859895990599159925993599459955996599759985999600060016002600360046005600660076008600960106011601260136014601560166017601860196020602160226023602460256026602760286029603060316032603360346035603660376038603960406041604260436044604560466047604860496050605160526053605460556056605760586059606060616062606360646065606660676068606960706071607260736074607560766077607860796080608160826083608460856086608760886089609060916092609360946095609660976098609961006101610261036104610561066107610861096110611161126113611461156116611761186119612061216122612361246125612661276128612961306131613261336134613561366137613861396140614161426143614461456146614761486149615061516152615361546155615661576158615961606161616261636164616561666167616861696170617161726173617461756176617761786179618061816182618361846185618661876188618961906191619261936194619561966197619861996200620162026203620462056206620762086209621062116212621362146215621662176218621962206221622262236224622562266227622862296230623162326233623462356236623762386239624062416242624362446245624662476248624962506251625262536254625562566257625862596260626162626263626462656266626762686269627062716272627362746275627662776278627962806281628262836284628562866287628862896290629162926293629462956296629762986299630063016302630363046305630663076308630963106311631263136314631563166317631863196320632163226323632463256326632763286329633063316332633363346335633663376338633963406341634263436344634563466347634863496350635163526353635463556356635763586359
  1. {
  2. "configList": [
  3. {
  4. "ID": 10010,
  5. "PieceID": 13001,
  6. "power": 100.0,
  7. "name": 316,
  8. "dec": 326,
  9. "attribute": 1,
  10. "icon": "icon_skill_1001",
  11. "scriptName": "S1001",
  12. "IDGroup": 1001,
  13. "timelineName": "jianjue_timeline_TD",
  14. "cd": 1,
  15. "SkillType": 1,
  16. "level": 1,
  17. "effectValue": [
  18. 6.0,
  19. 60.0,
  20. 30.0
  21. ],
  22. "intensifierIndex": [
  23. 2
  24. ],
  25. "addPropertyType": [
  26. 101
  27. ],
  28. "addPropertyValue": [
  29. 1.0
  30. ],
  31. "PromoteLan": 722,
  32. "PromoteLanPara": [
  33. 1.0
  34. ]
  35. },
  36. {
  37. "ID": 10011,
  38. "PieceID": 13001,
  39. "power": 110.0,
  40. "name": 317,
  41. "dec": 327,
  42. "attribute": 1,
  43. "icon": "icon_skill_1001",
  44. "scriptName": "S1001",
  45. "IDGroup": 1001,
  46. "timelineName": "jianjue_timeline_TD",
  47. "cd": 1,
  48. "SkillType": 1,
  49. "level": 2,
  50. "effectValue": [
  51. 6.0,
  52. 60.0,
  53. 30.0
  54. ],
  55. "intensifierIndex": [
  56. 2
  57. ],
  58. "addPropertyType": [
  59. 101
  60. ],
  61. "addPropertyValue": [
  62. 2.0
  63. ],
  64. "PromoteLan": 722,
  65. "PromoteLanPara": [
  66. 2.0
  67. ]
  68. },
  69. {
  70. "ID": 10012,
  71. "PieceID": 13001,
  72. "power": 120.0,
  73. "name": 318,
  74. "dec": 328,
  75. "attribute": 1,
  76. "icon": "icon_skill_1001",
  77. "scriptName": "S1001",
  78. "IDGroup": 1001,
  79. "timelineName": "jianjue_timeline_TD",
  80. "cd": 1,
  81. "SkillType": 1,
  82. "level": 3,
  83. "effectValue": [
  84. 6.0,
  85. 60.0,
  86. 30.0
  87. ],
  88. "intensifierIndex": [
  89. 2
  90. ],
  91. "addPropertyType": [
  92. 101
  93. ],
  94. "addPropertyValue": [
  95. 3.0
  96. ],
  97. "PromoteLan": 722,
  98. "PromoteLanPara": [
  99. 3.0
  100. ]
  101. },
  102. {
  103. "ID": 10013,
  104. "PieceID": 13001,
  105. "power": 130.0,
  106. "name": 319,
  107. "dec": 329,
  108. "attribute": 1,
  109. "icon": "icon_skill_1001",
  110. "scriptName": "S1001",
  111. "IDGroup": 1001,
  112. "timelineName": "jianjue_timeline_TD",
  113. "cd": 1,
  114. "SkillType": 1,
  115. "level": 4,
  116. "effectValue": [
  117. 6.0,
  118. 60.0,
  119. 30.0
  120. ],
  121. "intensifierIndex": [
  122. 2
  123. ],
  124. "addPropertyType": [
  125. 101
  126. ],
  127. "addPropertyValue": [
  128. 4.0
  129. ],
  130. "PromoteLan": 722,
  131. "PromoteLanPara": [
  132. 4.0
  133. ]
  134. },
  135. {
  136. "ID": 10014,
  137. "PieceID": 13001,
  138. "power": 140.0,
  139. "name": 320,
  140. "dec": 330,
  141. "attribute": 1,
  142. "icon": "icon_skill_1001",
  143. "scriptName": "S1001",
  144. "IDGroup": 1001,
  145. "timelineName": "jianjue_timeline_TD",
  146. "cd": 1,
  147. "SkillType": 1,
  148. "level": 5,
  149. "effectValue": [
  150. 6.0,
  151. 60.0,
  152. 30.0
  153. ],
  154. "intensifierIndex": [
  155. 2
  156. ],
  157. "addPropertyType": [
  158. 101
  159. ],
  160. "addPropertyValue": [
  161. 5.0
  162. ],
  163. "PromoteLan": 722,
  164. "PromoteLanPara": [
  165. 5.0
  166. ]
  167. },
  168. {
  169. "ID": 10015,
  170. "PieceID": 13001,
  171. "power": 150.0,
  172. "name": 321,
  173. "dec": 331,
  174. "attribute": 1,
  175. "icon": "icon_skill_1001",
  176. "scriptName": "S1001",
  177. "IDGroup": 1001,
  178. "timelineName": "jianjue_timeline_TD",
  179. "cd": 1,
  180. "SkillType": 1,
  181. "level": 6,
  182. "effectValue": [
  183. 6.0,
  184. 60.0,
  185. 30.0
  186. ],
  187. "intensifierIndex": [
  188. 2
  189. ],
  190. "addPropertyType": [
  191. 101
  192. ],
  193. "addPropertyValue": [
  194. 6.0
  195. ],
  196. "PromoteLan": 722,
  197. "PromoteLanPara": [
  198. 6.0
  199. ]
  200. },
  201. {
  202. "ID": 10016,
  203. "PieceID": 13001,
  204. "power": 160.0,
  205. "name": 322,
  206. "dec": 332,
  207. "attribute": 1,
  208. "icon": "icon_skill_1001",
  209. "scriptName": "S1001",
  210. "IDGroup": 1001,
  211. "timelineName": "jianjue_timeline_TD",
  212. "cd": 1,
  213. "SkillType": 1,
  214. "level": 7,
  215. "effectValue": [
  216. 6.0,
  217. 60.0,
  218. 30.0
  219. ],
  220. "intensifierIndex": [
  221. 2
  222. ],
  223. "addPropertyType": [
  224. 101
  225. ],
  226. "addPropertyValue": [
  227. 7.0
  228. ],
  229. "PromoteLan": 722,
  230. "PromoteLanPara": [
  231. 7.0
  232. ]
  233. },
  234. {
  235. "ID": 10017,
  236. "PieceID": 13001,
  237. "power": 170.0,
  238. "name": 323,
  239. "dec": 333,
  240. "attribute": 1,
  241. "icon": "icon_skill_1001",
  242. "scriptName": "S1001",
  243. "IDGroup": 1001,
  244. "timelineName": "jianjue_timeline_TD",
  245. "cd": 1,
  246. "SkillType": 1,
  247. "level": 8,
  248. "effectValue": [
  249. 6.0,
  250. 60.0,
  251. 30.0
  252. ],
  253. "intensifierIndex": [
  254. 2
  255. ],
  256. "addPropertyType": [
  257. 101
  258. ],
  259. "addPropertyValue": [
  260. 8.0
  261. ],
  262. "PromoteLan": 722,
  263. "PromoteLanPara": [
  264. 8.0
  265. ]
  266. },
  267. {
  268. "ID": 10018,
  269. "PieceID": 13001,
  270. "power": 180.0,
  271. "name": 324,
  272. "dec": 334,
  273. "attribute": 1,
  274. "icon": "icon_skill_1001",
  275. "scriptName": "S1001",
  276. "IDGroup": 1001,
  277. "timelineName": "jianjue_timeline_TD",
  278. "cd": 1,
  279. "SkillType": 1,
  280. "level": 9,
  281. "effectValue": [
  282. 6.0,
  283. 60.0,
  284. 30.0
  285. ],
  286. "intensifierIndex": [
  287. 2
  288. ],
  289. "addPropertyType": [
  290. 101
  291. ],
  292. "addPropertyValue": [
  293. 9.0
  294. ],
  295. "PromoteLan": 722,
  296. "PromoteLanPara": [
  297. 9.0
  298. ]
  299. },
  300. {
  301. "ID": 10019,
  302. "PieceID": 13001,
  303. "power": 190.0,
  304. "name": 325,
  305. "dec": 335,
  306. "attribute": 1,
  307. "icon": "icon_skill_1001",
  308. "scriptName": "S1001",
  309. "IDGroup": 1001,
  310. "timelineName": "jianjue_timeline_TD",
  311. "cd": 1,
  312. "SkillType": 1,
  313. "level": 10,
  314. "effectValue": [
  315. 6.0,
  316. 60.0,
  317. 30.0
  318. ],
  319. "intensifierIndex": [
  320. 2
  321. ],
  322. "addPropertyType": [
  323. 101
  324. ],
  325. "addPropertyValue": [
  326. 10.0
  327. ],
  328. "PromoteLan": 722,
  329. "PromoteLanPara": [
  330. 10.0
  331. ]
  332. },
  333. {
  334. "ID": 20010,
  335. "PieceID": 13002,
  336. "power": 100.0,
  337. "name": 336,
  338. "dec": 346,
  339. "attribute": 2,
  340. "icon": "icon_skill_10001",
  341. "scriptName": "S2001",
  342. "IDGroup": 2001,
  343. "timelineName": "lieyanjian_timeline_TD",
  344. "cd": 1,
  345. "SkillType": 1,
  346. "level": 1,
  347. "effectValue": [
  348. 360.0,
  349. 48.0
  350. ],
  351. "intensifierIndex": [
  352. 1
  353. ],
  354. "addPropertyType": [
  355. 102
  356. ],
  357. "addPropertyValue": [
  358. 1.0
  359. ],
  360. "PromoteLan": 723,
  361. "PromoteLanPara": [
  362. 1.0
  363. ]
  364. },
  365. {
  366. "ID": 20011,
  367. "PieceID": 13002,
  368. "power": 110.0,
  369. "name": 337,
  370. "dec": 347,
  371. "attribute": 2,
  372. "icon": "icon_skill_10001",
  373. "scriptName": "S2001",
  374. "IDGroup": 2001,
  375. "timelineName": "lieyanjian_timeline_TD",
  376. "cd": 1,
  377. "SkillType": 1,
  378. "level": 2,
  379. "effectValue": [
  380. 360.0,
  381. 48.0
  382. ],
  383. "intensifierIndex": [
  384. 1
  385. ],
  386. "addPropertyType": [
  387. 102
  388. ],
  389. "addPropertyValue": [
  390. 2.0
  391. ],
  392. "PromoteLan": 723,
  393. "PromoteLanPara": [
  394. 2.0
  395. ]
  396. },
  397. {
  398. "ID": 20012,
  399. "PieceID": 13002,
  400. "power": 120.0,
  401. "name": 338,
  402. "dec": 348,
  403. "attribute": 2,
  404. "icon": "icon_skill_10001",
  405. "scriptName": "S2001",
  406. "IDGroup": 2001,
  407. "timelineName": "lieyanjian_timeline_TD",
  408. "cd": 1,
  409. "SkillType": 1,
  410. "level": 3,
  411. "effectValue": [
  412. 360.0,
  413. 48.0
  414. ],
  415. "intensifierIndex": [
  416. 1
  417. ],
  418. "addPropertyType": [
  419. 102
  420. ],
  421. "addPropertyValue": [
  422. 3.0
  423. ],
  424. "PromoteLan": 723,
  425. "PromoteLanPara": [
  426. 3.0
  427. ]
  428. },
  429. {
  430. "ID": 20013,
  431. "PieceID": 13002,
  432. "power": 130.0,
  433. "name": 339,
  434. "dec": 349,
  435. "attribute": 2,
  436. "icon": "icon_skill_10001",
  437. "scriptName": "S2001",
  438. "IDGroup": 2001,
  439. "timelineName": "lieyanjian_timeline_TD",
  440. "cd": 1,
  441. "SkillType": 1,
  442. "level": 4,
  443. "effectValue": [
  444. 360.0,
  445. 48.0
  446. ],
  447. "intensifierIndex": [
  448. 1
  449. ],
  450. "addPropertyType": [
  451. 102
  452. ],
  453. "addPropertyValue": [
  454. 4.0
  455. ],
  456. "PromoteLan": 723,
  457. "PromoteLanPara": [
  458. 4.0
  459. ]
  460. },
  461. {
  462. "ID": 20014,
  463. "PieceID": 13002,
  464. "power": 140.0,
  465. "name": 340,
  466. "dec": 350,
  467. "attribute": 2,
  468. "icon": "icon_skill_10001",
  469. "scriptName": "S2001",
  470. "IDGroup": 2001,
  471. "timelineName": "lieyanjian_timeline_TD",
  472. "cd": 1,
  473. "SkillType": 1,
  474. "level": 5,
  475. "effectValue": [
  476. 360.0,
  477. 48.0
  478. ],
  479. "intensifierIndex": [
  480. 1
  481. ],
  482. "addPropertyType": [
  483. 102
  484. ],
  485. "addPropertyValue": [
  486. 5.0
  487. ],
  488. "PromoteLan": 723,
  489. "PromoteLanPara": [
  490. 5.0
  491. ]
  492. },
  493. {
  494. "ID": 20015,
  495. "PieceID": 13002,
  496. "power": 150.0,
  497. "name": 341,
  498. "dec": 351,
  499. "attribute": 2,
  500. "icon": "icon_skill_10001",
  501. "scriptName": "S2001",
  502. "IDGroup": 2001,
  503. "timelineName": "lieyanjian_timeline_TD",
  504. "cd": 1,
  505. "SkillType": 1,
  506. "level": 6,
  507. "effectValue": [
  508. 360.0,
  509. 48.0
  510. ],
  511. "intensifierIndex": [
  512. 1
  513. ],
  514. "addPropertyType": [
  515. 102
  516. ],
  517. "addPropertyValue": [
  518. 6.0
  519. ],
  520. "PromoteLan": 723,
  521. "PromoteLanPara": [
  522. 6.0
  523. ]
  524. },
  525. {
  526. "ID": 20016,
  527. "PieceID": 13002,
  528. "power": 160.0,
  529. "name": 342,
  530. "dec": 352,
  531. "attribute": 2,
  532. "icon": "icon_skill_10001",
  533. "scriptName": "S2001",
  534. "IDGroup": 2001,
  535. "timelineName": "lieyanjian_timeline_TD",
  536. "cd": 1,
  537. "SkillType": 1,
  538. "level": 7,
  539. "effectValue": [
  540. 360.0,
  541. 48.0
  542. ],
  543. "intensifierIndex": [
  544. 1
  545. ],
  546. "addPropertyType": [
  547. 102
  548. ],
  549. "addPropertyValue": [
  550. 7.0
  551. ],
  552. "PromoteLan": 723,
  553. "PromoteLanPara": [
  554. 7.0
  555. ]
  556. },
  557. {
  558. "ID": 20017,
  559. "PieceID": 13002,
  560. "power": 170.0,
  561. "name": 343,
  562. "dec": 353,
  563. "attribute": 2,
  564. "icon": "icon_skill_10001",
  565. "scriptName": "S2001",
  566. "IDGroup": 2001,
  567. "timelineName": "lieyanjian_timeline_TD",
  568. "cd": 1,
  569. "SkillType": 1,
  570. "level": 8,
  571. "effectValue": [
  572. 360.0,
  573. 48.0
  574. ],
  575. "intensifierIndex": [
  576. 1
  577. ],
  578. "addPropertyType": [
  579. 102
  580. ],
  581. "addPropertyValue": [
  582. 8.0
  583. ],
  584. "PromoteLan": 723,
  585. "PromoteLanPara": [
  586. 8.0
  587. ]
  588. },
  589. {
  590. "ID": 20018,
  591. "PieceID": 13002,
  592. "power": 180.0,
  593. "name": 344,
  594. "dec": 354,
  595. "attribute": 2,
  596. "icon": "icon_skill_10001",
  597. "scriptName": "S2001",
  598. "IDGroup": 2001,
  599. "timelineName": "lieyanjian_timeline_TD",
  600. "cd": 1,
  601. "SkillType": 1,
  602. "level": 9,
  603. "effectValue": [
  604. 360.0,
  605. 48.0
  606. ],
  607. "intensifierIndex": [
  608. 1
  609. ],
  610. "addPropertyType": [
  611. 102
  612. ],
  613. "addPropertyValue": [
  614. 9.0
  615. ],
  616. "PromoteLan": 723,
  617. "PromoteLanPara": [
  618. 9.0
  619. ]
  620. },
  621. {
  622. "ID": 20019,
  623. "PieceID": 13002,
  624. "power": 190.0,
  625. "name": 345,
  626. "dec": 355,
  627. "attribute": 2,
  628. "icon": "icon_skill_10001",
  629. "scriptName": "S2001",
  630. "IDGroup": 2001,
  631. "timelineName": "lieyanjian_timeline_TD",
  632. "cd": 1,
  633. "SkillType": 1,
  634. "level": 10,
  635. "effectValue": [
  636. 360.0,
  637. 48.0
  638. ],
  639. "intensifierIndex": [
  640. 1
  641. ],
  642. "addPropertyType": [
  643. 102
  644. ],
  645. "addPropertyValue": [
  646. 10.0
  647. ],
  648. "PromoteLan": 723,
  649. "PromoteLanPara": [
  650. 10.0
  651. ]
  652. },
  653. {
  654. "ID": 11010,
  655. "PieceID": 13003,
  656. "power": 100.0,
  657. "name": 356,
  658. "dec": 366,
  659. "attribute": 1,
  660. "icon": "icon_skill_40001",
  661. "scriptName": "S1101",
  662. "IDGroup": 1101,
  663. "timelineName": "duzhen_timeline_TD",
  664. "cd": 1,
  665. "SkillType": 1,
  666. "level": 1,
  667. "effectValue": [
  668. 2.0,
  669. 180.0,
  670. 24.0
  671. ],
  672. "intensifierIndex": [
  673. 2
  674. ],
  675. "addPropertyType": [
  676. 103
  677. ],
  678. "addPropertyValue": [
  679. 1.0
  680. ],
  681. "PromoteLan": 724,
  682. "PromoteLanPara": [
  683. 1.0
  684. ]
  685. },
  686. {
  687. "ID": 11011,
  688. "PieceID": 13003,
  689. "power": 110.0,
  690. "name": 357,
  691. "dec": 367,
  692. "attribute": 1,
  693. "icon": "icon_skill_40001",
  694. "scriptName": "S1101",
  695. "IDGroup": 1101,
  696. "timelineName": "duzhen_timeline_TD",
  697. "cd": 1,
  698. "SkillType": 1,
  699. "level": 2,
  700. "effectValue": [
  701. 2.0,
  702. 180.0,
  703. 24.0
  704. ],
  705. "intensifierIndex": [
  706. 2
  707. ],
  708. "addPropertyType": [
  709. 103
  710. ],
  711. "addPropertyValue": [
  712. 2.0
  713. ],
  714. "PromoteLan": 724,
  715. "PromoteLanPara": [
  716. 2.0
  717. ]
  718. },
  719. {
  720. "ID": 11012,
  721. "PieceID": 13003,
  722. "power": 120.0,
  723. "name": 358,
  724. "dec": 368,
  725. "attribute": 1,
  726. "icon": "icon_skill_40001",
  727. "scriptName": "S1101",
  728. "IDGroup": 1101,
  729. "timelineName": "duzhen_timeline_TD",
  730. "cd": 1,
  731. "SkillType": 1,
  732. "level": 3,
  733. "effectValue": [
  734. 2.0,
  735. 180.0,
  736. 24.0
  737. ],
  738. "intensifierIndex": [
  739. 2
  740. ],
  741. "addPropertyType": [
  742. 103
  743. ],
  744. "addPropertyValue": [
  745. 3.0
  746. ],
  747. "PromoteLan": 724,
  748. "PromoteLanPara": [
  749. 3.0
  750. ]
  751. },
  752. {
  753. "ID": 11013,
  754. "PieceID": 13003,
  755. "power": 130.0,
  756. "name": 359,
  757. "dec": 369,
  758. "attribute": 1,
  759. "icon": "icon_skill_40001",
  760. "scriptName": "S1101",
  761. "IDGroup": 1101,
  762. "timelineName": "duzhen_timeline_TD",
  763. "cd": 1,
  764. "SkillType": 1,
  765. "level": 4,
  766. "effectValue": [
  767. 2.0,
  768. 180.0,
  769. 24.0
  770. ],
  771. "intensifierIndex": [
  772. 2
  773. ],
  774. "addPropertyType": [
  775. 103
  776. ],
  777. "addPropertyValue": [
  778. 4.0
  779. ],
  780. "PromoteLan": 724,
  781. "PromoteLanPara": [
  782. 4.0
  783. ]
  784. },
  785. {
  786. "ID": 11014,
  787. "PieceID": 13003,
  788. "power": 140.0,
  789. "name": 360,
  790. "dec": 370,
  791. "attribute": 1,
  792. "icon": "icon_skill_40001",
  793. "scriptName": "S1101",
  794. "IDGroup": 1101,
  795. "timelineName": "duzhen_timeline_TD",
  796. "cd": 1,
  797. "SkillType": 1,
  798. "level": 5,
  799. "effectValue": [
  800. 2.0,
  801. 180.0,
  802. 24.0
  803. ],
  804. "intensifierIndex": [
  805. 2
  806. ],
  807. "addPropertyType": [
  808. 103
  809. ],
  810. "addPropertyValue": [
  811. 5.0
  812. ],
  813. "PromoteLan": 724,
  814. "PromoteLanPara": [
  815. 5.0
  816. ]
  817. },
  818. {
  819. "ID": 11015,
  820. "PieceID": 13003,
  821. "power": 150.0,
  822. "name": 361,
  823. "dec": 371,
  824. "attribute": 1,
  825. "icon": "icon_skill_40001",
  826. "scriptName": "S1101",
  827. "IDGroup": 1101,
  828. "timelineName": "duzhen_timeline_TD",
  829. "cd": 1,
  830. "SkillType": 1,
  831. "level": 6,
  832. "effectValue": [
  833. 2.0,
  834. 180.0,
  835. 24.0
  836. ],
  837. "intensifierIndex": [
  838. 2
  839. ],
  840. "addPropertyType": [
  841. 103
  842. ],
  843. "addPropertyValue": [
  844. 6.0
  845. ],
  846. "PromoteLan": 724,
  847. "PromoteLanPara": [
  848. 6.0
  849. ]
  850. },
  851. {
  852. "ID": 11016,
  853. "PieceID": 13003,
  854. "power": 160.0,
  855. "name": 362,
  856. "dec": 372,
  857. "attribute": 1,
  858. "icon": "icon_skill_40001",
  859. "scriptName": "S1101",
  860. "IDGroup": 1101,
  861. "timelineName": "duzhen_timeline_TD",
  862. "cd": 1,
  863. "SkillType": 1,
  864. "level": 7,
  865. "effectValue": [
  866. 2.0,
  867. 180.0,
  868. 24.0
  869. ],
  870. "intensifierIndex": [
  871. 2
  872. ],
  873. "addPropertyType": [
  874. 103
  875. ],
  876. "addPropertyValue": [
  877. 7.0
  878. ],
  879. "PromoteLan": 724,
  880. "PromoteLanPara": [
  881. 7.0
  882. ]
  883. },
  884. {
  885. "ID": 11017,
  886. "PieceID": 13003,
  887. "power": 170.0,
  888. "name": 363,
  889. "dec": 373,
  890. "attribute": 1,
  891. "icon": "icon_skill_40001",
  892. "scriptName": "S1101",
  893. "IDGroup": 1101,
  894. "timelineName": "duzhen_timeline_TD",
  895. "cd": 1,
  896. "SkillType": 1,
  897. "level": 8,
  898. "effectValue": [
  899. 2.0,
  900. 180.0,
  901. 24.0
  902. ],
  903. "intensifierIndex": [
  904. 2
  905. ],
  906. "addPropertyType": [
  907. 103
  908. ],
  909. "addPropertyValue": [
  910. 8.0
  911. ],
  912. "PromoteLan": 724,
  913. "PromoteLanPara": [
  914. 8.0
  915. ]
  916. },
  917. {
  918. "ID": 11018,
  919. "PieceID": 13003,
  920. "power": 180.0,
  921. "name": 364,
  922. "dec": 374,
  923. "attribute": 1,
  924. "icon": "icon_skill_40001",
  925. "scriptName": "S1101",
  926. "IDGroup": 1101,
  927. "timelineName": "duzhen_timeline_TD",
  928. "cd": 1,
  929. "SkillType": 1,
  930. "level": 9,
  931. "effectValue": [
  932. 2.0,
  933. 180.0,
  934. 24.0
  935. ],
  936. "intensifierIndex": [
  937. 2
  938. ],
  939. "addPropertyType": [
  940. 103
  941. ],
  942. "addPropertyValue": [
  943. 9.0
  944. ],
  945. "PromoteLan": 724,
  946. "PromoteLanPara": [
  947. 9.0
  948. ]
  949. },
  950. {
  951. "ID": 11019,
  952. "PieceID": 13003,
  953. "power": 190.0,
  954. "name": 365,
  955. "dec": 375,
  956. "attribute": 1,
  957. "icon": "icon_skill_40001",
  958. "scriptName": "S1101",
  959. "IDGroup": 1101,
  960. "timelineName": "duzhen_timeline_TD",
  961. "cd": 1,
  962. "SkillType": 1,
  963. "level": 10,
  964. "effectValue": [
  965. 2.0,
  966. 180.0,
  967. 24.0
  968. ],
  969. "intensifierIndex": [
  970. 2
  971. ],
  972. "addPropertyType": [
  973. 103
  974. ],
  975. "addPropertyValue": [
  976. 10.0
  977. ],
  978. "PromoteLan": 724,
  979. "PromoteLanPara": [
  980. 10.0
  981. ]
  982. },
  983. {
  984. "ID": 12010,
  985. "PieceID": 13004,
  986. "power": 100.0,
  987. "name": 376,
  988. "dec": 386,
  989. "attribute": 4,
  990. "icon": "icon_skill_40005",
  991. "scriptName": "S1201",
  992. "IDGroup": 1201,
  993. "timelineName": "bingqiu_timeline_TD",
  994. "cd": 1,
  995. "SkillType": 1,
  996. "level": 1,
  997. "effectValue": [
  998. 3.0,
  999. 120.0,
  1000. 16.0
  1001. ],
  1002. "intensifierIndex": [
  1003. 2
  1004. ],
  1005. "addPropertyType": [
  1006. 101
  1007. ],
  1008. "addPropertyValue": [
  1009. 1.0
  1010. ],
  1011. "PromoteLan": 722,
  1012. "PromoteLanPara": [
  1013. 1.0
  1014. ]
  1015. },
  1016. {
  1017. "ID": 12011,
  1018. "PieceID": 13004,
  1019. "power": 110.0,
  1020. "name": 377,
  1021. "dec": 387,
  1022. "attribute": 4,
  1023. "icon": "icon_skill_40005",
  1024. "scriptName": "S1201",
  1025. "IDGroup": 1201,
  1026. "timelineName": "bingqiu_timeline_TD",
  1027. "cd": 1,
  1028. "SkillType": 1,
  1029. "level": 2,
  1030. "effectValue": [
  1031. 3.0,
  1032. 120.0,
  1033. 16.0
  1034. ],
  1035. "intensifierIndex": [
  1036. 2
  1037. ],
  1038. "addPropertyType": [
  1039. 101
  1040. ],
  1041. "addPropertyValue": [
  1042. 2.0
  1043. ],
  1044. "PromoteLan": 722,
  1045. "PromoteLanPara": [
  1046. 2.0
  1047. ]
  1048. },
  1049. {
  1050. "ID": 12012,
  1051. "PieceID": 13004,
  1052. "power": 120.0,
  1053. "name": 378,
  1054. "dec": 388,
  1055. "attribute": 4,
  1056. "icon": "icon_skill_40005",
  1057. "scriptName": "S1201",
  1058. "IDGroup": 1201,
  1059. "timelineName": "bingqiu_timeline_TD",
  1060. "cd": 1,
  1061. "SkillType": 1,
  1062. "level": 3,
  1063. "effectValue": [
  1064. 3.0,
  1065. 120.0,
  1066. 16.0
  1067. ],
  1068. "intensifierIndex": [
  1069. 2
  1070. ],
  1071. "addPropertyType": [
  1072. 101
  1073. ],
  1074. "addPropertyValue": [
  1075. 3.0
  1076. ],
  1077. "PromoteLan": 722,
  1078. "PromoteLanPara": [
  1079. 3.0
  1080. ]
  1081. },
  1082. {
  1083. "ID": 12013,
  1084. "PieceID": 13004,
  1085. "power": 130.0,
  1086. "name": 379,
  1087. "dec": 389,
  1088. "attribute": 4,
  1089. "icon": "icon_skill_40005",
  1090. "scriptName": "S1201",
  1091. "IDGroup": 1201,
  1092. "timelineName": "bingqiu_timeline_TD",
  1093. "cd": 1,
  1094. "SkillType": 1,
  1095. "level": 4,
  1096. "effectValue": [
  1097. 3.0,
  1098. 120.0,
  1099. 16.0
  1100. ],
  1101. "intensifierIndex": [
  1102. 2
  1103. ],
  1104. "addPropertyType": [
  1105. 101
  1106. ],
  1107. "addPropertyValue": [
  1108. 4.0
  1109. ],
  1110. "PromoteLan": 722,
  1111. "PromoteLanPara": [
  1112. 4.0
  1113. ]
  1114. },
  1115. {
  1116. "ID": 12014,
  1117. "PieceID": 13004,
  1118. "power": 140.0,
  1119. "name": 380,
  1120. "dec": 390,
  1121. "attribute": 4,
  1122. "icon": "icon_skill_40005",
  1123. "scriptName": "S1201",
  1124. "IDGroup": 1201,
  1125. "timelineName": "bingqiu_timeline_TD",
  1126. "cd": 1,
  1127. "SkillType": 1,
  1128. "level": 5,
  1129. "effectValue": [
  1130. 3.0,
  1131. 120.0,
  1132. 16.0
  1133. ],
  1134. "intensifierIndex": [
  1135. 2
  1136. ],
  1137. "addPropertyType": [
  1138. 101
  1139. ],
  1140. "addPropertyValue": [
  1141. 5.0
  1142. ],
  1143. "PromoteLan": 722,
  1144. "PromoteLanPara": [
  1145. 5.0
  1146. ]
  1147. },
  1148. {
  1149. "ID": 12015,
  1150. "PieceID": 13004,
  1151. "power": 150.0,
  1152. "name": 381,
  1153. "dec": 391,
  1154. "attribute": 4,
  1155. "icon": "icon_skill_40005",
  1156. "scriptName": "S1201",
  1157. "IDGroup": 1201,
  1158. "timelineName": "bingqiu_timeline_TD",
  1159. "cd": 1,
  1160. "SkillType": 1,
  1161. "level": 6,
  1162. "effectValue": [
  1163. 3.0,
  1164. 120.0,
  1165. 16.0
  1166. ],
  1167. "intensifierIndex": [
  1168. 2
  1169. ],
  1170. "addPropertyType": [
  1171. 101
  1172. ],
  1173. "addPropertyValue": [
  1174. 6.0
  1175. ],
  1176. "PromoteLan": 722,
  1177. "PromoteLanPara": [
  1178. 6.0
  1179. ]
  1180. },
  1181. {
  1182. "ID": 12016,
  1183. "PieceID": 13004,
  1184. "power": 160.0,
  1185. "name": 382,
  1186. "dec": 392,
  1187. "attribute": 4,
  1188. "icon": "icon_skill_40005",
  1189. "scriptName": "S1201",
  1190. "IDGroup": 1201,
  1191. "timelineName": "bingqiu_timeline_TD",
  1192. "cd": 1,
  1193. "SkillType": 1,
  1194. "level": 7,
  1195. "effectValue": [
  1196. 3.0,
  1197. 120.0,
  1198. 16.0
  1199. ],
  1200. "intensifierIndex": [
  1201. 2
  1202. ],
  1203. "addPropertyType": [
  1204. 101
  1205. ],
  1206. "addPropertyValue": [
  1207. 7.0
  1208. ],
  1209. "PromoteLan": 722,
  1210. "PromoteLanPara": [
  1211. 7.0
  1212. ]
  1213. },
  1214. {
  1215. "ID": 12017,
  1216. "PieceID": 13004,
  1217. "power": 170.0,
  1218. "name": 383,
  1219. "dec": 393,
  1220. "attribute": 4,
  1221. "icon": "icon_skill_40005",
  1222. "scriptName": "S1201",
  1223. "IDGroup": 1201,
  1224. "timelineName": "bingqiu_timeline_TD",
  1225. "cd": 1,
  1226. "SkillType": 1,
  1227. "level": 8,
  1228. "effectValue": [
  1229. 3.0,
  1230. 120.0,
  1231. 16.0
  1232. ],
  1233. "intensifierIndex": [
  1234. 2
  1235. ],
  1236. "addPropertyType": [
  1237. 101
  1238. ],
  1239. "addPropertyValue": [
  1240. 8.0
  1241. ],
  1242. "PromoteLan": 722,
  1243. "PromoteLanPara": [
  1244. 8.0
  1245. ]
  1246. },
  1247. {
  1248. "ID": 12018,
  1249. "PieceID": 13004,
  1250. "power": 180.0,
  1251. "name": 384,
  1252. "dec": 394,
  1253. "attribute": 4,
  1254. "icon": "icon_skill_40005",
  1255. "scriptName": "S1201",
  1256. "IDGroup": 1201,
  1257. "timelineName": "bingqiu_timeline_TD",
  1258. "cd": 1,
  1259. "SkillType": 1,
  1260. "level": 9,
  1261. "effectValue": [
  1262. 3.0,
  1263. 120.0,
  1264. 16.0
  1265. ],
  1266. "intensifierIndex": [
  1267. 2
  1268. ],
  1269. "addPropertyType": [
  1270. 101
  1271. ],
  1272. "addPropertyValue": [
  1273. 9.0
  1274. ],
  1275. "PromoteLan": 722,
  1276. "PromoteLanPara": [
  1277. 9.0
  1278. ]
  1279. },
  1280. {
  1281. "ID": 12019,
  1282. "PieceID": 13004,
  1283. "power": 190.0,
  1284. "name": 385,
  1285. "dec": 395,
  1286. "attribute": 4,
  1287. "icon": "icon_skill_40005",
  1288. "scriptName": "S1201",
  1289. "IDGroup": 1201,
  1290. "timelineName": "bingqiu_timeline_TD",
  1291. "cd": 1,
  1292. "SkillType": 1,
  1293. "level": 10,
  1294. "effectValue": [
  1295. 3.0,
  1296. 120.0,
  1297. 16.0
  1298. ],
  1299. "intensifierIndex": [
  1300. 2
  1301. ],
  1302. "addPropertyType": [
  1303. 101
  1304. ],
  1305. "addPropertyValue": [
  1306. 10.0
  1307. ],
  1308. "PromoteLan": 722,
  1309. "PromoteLanPara": [
  1310. 10.0
  1311. ]
  1312. },
  1313. {
  1314. "ID": 13010,
  1315. "PieceID": 13005,
  1316. "power": 100.0,
  1317. "name": 396,
  1318. "dec": 406,
  1319. "attribute": 4,
  1320. "icon": "icon_skill_40002",
  1321. "scriptName": "S1301",
  1322. "IDGroup": 1301,
  1323. "timelineName": "bingzhui_timeline_TD",
  1324. "cd": 1,
  1325. "SkillType": 1,
  1326. "level": 1,
  1327. "effectValue": [
  1328. 3.0,
  1329. 120.0,
  1330. 16.0
  1331. ],
  1332. "intensifierIndex": [
  1333. 2
  1334. ],
  1335. "addPropertyType": [
  1336. 102
  1337. ],
  1338. "addPropertyValue": [
  1339. 1.0
  1340. ],
  1341. "PromoteLan": 723,
  1342. "PromoteLanPara": [
  1343. 1.0
  1344. ]
  1345. },
  1346. {
  1347. "ID": 13011,
  1348. "PieceID": 13005,
  1349. "power": 110.0,
  1350. "name": 397,
  1351. "dec": 407,
  1352. "attribute": 4,
  1353. "icon": "icon_skill_40002",
  1354. "scriptName": "S1301",
  1355. "IDGroup": 1301,
  1356. "timelineName": "bingzhui_timeline_TD",
  1357. "cd": 1,
  1358. "SkillType": 1,
  1359. "level": 2,
  1360. "effectValue": [
  1361. 3.0,
  1362. 120.0,
  1363. 16.0
  1364. ],
  1365. "intensifierIndex": [
  1366. 2
  1367. ],
  1368. "addPropertyType": [
  1369. 102
  1370. ],
  1371. "addPropertyValue": [
  1372. 2.0
  1373. ],
  1374. "PromoteLan": 723,
  1375. "PromoteLanPara": [
  1376. 2.0
  1377. ]
  1378. },
  1379. {
  1380. "ID": 13012,
  1381. "PieceID": 13005,
  1382. "power": 120.0,
  1383. "name": 398,
  1384. "dec": 408,
  1385. "attribute": 4,
  1386. "icon": "icon_skill_40002",
  1387. "scriptName": "S1301",
  1388. "IDGroup": 1301,
  1389. "timelineName": "bingzhui_timeline_TD",
  1390. "cd": 1,
  1391. "SkillType": 1,
  1392. "level": 3,
  1393. "effectValue": [
  1394. 3.0,
  1395. 120.0,
  1396. 16.0
  1397. ],
  1398. "intensifierIndex": [
  1399. 2
  1400. ],
  1401. "addPropertyType": [
  1402. 102
  1403. ],
  1404. "addPropertyValue": [
  1405. 3.0
  1406. ],
  1407. "PromoteLan": 723,
  1408. "PromoteLanPara": [
  1409. 3.0
  1410. ]
  1411. },
  1412. {
  1413. "ID": 13013,
  1414. "PieceID": 13005,
  1415. "power": 130.0,
  1416. "name": 399,
  1417. "dec": 409,
  1418. "attribute": 4,
  1419. "icon": "icon_skill_40002",
  1420. "scriptName": "S1301",
  1421. "IDGroup": 1301,
  1422. "timelineName": "bingzhui_timeline_TD",
  1423. "cd": 1,
  1424. "SkillType": 1,
  1425. "level": 4,
  1426. "effectValue": [
  1427. 3.0,
  1428. 120.0,
  1429. 16.0
  1430. ],
  1431. "intensifierIndex": [
  1432. 2
  1433. ],
  1434. "addPropertyType": [
  1435. 102
  1436. ],
  1437. "addPropertyValue": [
  1438. 4.0
  1439. ],
  1440. "PromoteLan": 723,
  1441. "PromoteLanPara": [
  1442. 4.0
  1443. ]
  1444. },
  1445. {
  1446. "ID": 13014,
  1447. "PieceID": 13005,
  1448. "power": 140.0,
  1449. "name": 400,
  1450. "dec": 410,
  1451. "attribute": 4,
  1452. "icon": "icon_skill_40002",
  1453. "scriptName": "S1301",
  1454. "IDGroup": 1301,
  1455. "timelineName": "bingzhui_timeline_TD",
  1456. "cd": 1,
  1457. "SkillType": 1,
  1458. "level": 5,
  1459. "effectValue": [
  1460. 3.0,
  1461. 120.0,
  1462. 16.0
  1463. ],
  1464. "intensifierIndex": [
  1465. 2
  1466. ],
  1467. "addPropertyType": [
  1468. 102
  1469. ],
  1470. "addPropertyValue": [
  1471. 5.0
  1472. ],
  1473. "PromoteLan": 723,
  1474. "PromoteLanPara": [
  1475. 5.0
  1476. ]
  1477. },
  1478. {
  1479. "ID": 13015,
  1480. "PieceID": 13005,
  1481. "power": 150.0,
  1482. "name": 401,
  1483. "dec": 411,
  1484. "attribute": 4,
  1485. "icon": "icon_skill_40002",
  1486. "scriptName": "S1301",
  1487. "IDGroup": 1301,
  1488. "timelineName": "bingzhui_timeline_TD",
  1489. "cd": 1,
  1490. "SkillType": 1,
  1491. "level": 6,
  1492. "effectValue": [
  1493. 3.0,
  1494. 120.0,
  1495. 16.0
  1496. ],
  1497. "intensifierIndex": [
  1498. 2
  1499. ],
  1500. "addPropertyType": [
  1501. 102
  1502. ],
  1503. "addPropertyValue": [
  1504. 6.0
  1505. ],
  1506. "PromoteLan": 723,
  1507. "PromoteLanPara": [
  1508. 6.0
  1509. ]
  1510. },
  1511. {
  1512. "ID": 13016,
  1513. "PieceID": 13005,
  1514. "power": 160.0,
  1515. "name": 402,
  1516. "dec": 412,
  1517. "attribute": 4,
  1518. "icon": "icon_skill_40002",
  1519. "scriptName": "S1301",
  1520. "IDGroup": 1301,
  1521. "timelineName": "bingzhui_timeline_TD",
  1522. "cd": 1,
  1523. "SkillType": 1,
  1524. "level": 7,
  1525. "effectValue": [
  1526. 3.0,
  1527. 120.0,
  1528. 16.0
  1529. ],
  1530. "intensifierIndex": [
  1531. 2
  1532. ],
  1533. "addPropertyType": [
  1534. 102
  1535. ],
  1536. "addPropertyValue": [
  1537. 7.0
  1538. ],
  1539. "PromoteLan": 723,
  1540. "PromoteLanPara": [
  1541. 7.0
  1542. ]
  1543. },
  1544. {
  1545. "ID": 13017,
  1546. "PieceID": 13005,
  1547. "power": 170.0,
  1548. "name": 403,
  1549. "dec": 413,
  1550. "attribute": 4,
  1551. "icon": "icon_skill_40002",
  1552. "scriptName": "S1301",
  1553. "IDGroup": 1301,
  1554. "timelineName": "bingzhui_timeline_TD",
  1555. "cd": 1,
  1556. "SkillType": 1,
  1557. "level": 8,
  1558. "effectValue": [
  1559. 3.0,
  1560. 120.0,
  1561. 16.0
  1562. ],
  1563. "intensifierIndex": [
  1564. 2
  1565. ],
  1566. "addPropertyType": [
  1567. 102
  1568. ],
  1569. "addPropertyValue": [
  1570. 8.0
  1571. ],
  1572. "PromoteLan": 723,
  1573. "PromoteLanPara": [
  1574. 8.0
  1575. ]
  1576. },
  1577. {
  1578. "ID": 13018,
  1579. "PieceID": 13005,
  1580. "power": 180.0,
  1581. "name": 404,
  1582. "dec": 414,
  1583. "attribute": 4,
  1584. "icon": "icon_skill_40002",
  1585. "scriptName": "S1301",
  1586. "IDGroup": 1301,
  1587. "timelineName": "bingzhui_timeline_TD",
  1588. "cd": 1,
  1589. "SkillType": 1,
  1590. "level": 9,
  1591. "effectValue": [
  1592. 3.0,
  1593. 120.0,
  1594. 16.0
  1595. ],
  1596. "intensifierIndex": [
  1597. 2
  1598. ],
  1599. "addPropertyType": [
  1600. 102
  1601. ],
  1602. "addPropertyValue": [
  1603. 9.0
  1604. ],
  1605. "PromoteLan": 723,
  1606. "PromoteLanPara": [
  1607. 9.0
  1608. ]
  1609. },
  1610. {
  1611. "ID": 13019,
  1612. "PieceID": 13005,
  1613. "power": 190.0,
  1614. "name": 405,
  1615. "dec": 415,
  1616. "attribute": 4,
  1617. "icon": "icon_skill_40002",
  1618. "scriptName": "S1301",
  1619. "IDGroup": 1301,
  1620. "timelineName": "bingzhui_timeline_TD",
  1621. "cd": 1,
  1622. "SkillType": 1,
  1623. "level": 10,
  1624. "effectValue": [
  1625. 3.0,
  1626. 120.0,
  1627. 16.0
  1628. ],
  1629. "intensifierIndex": [
  1630. 2
  1631. ],
  1632. "addPropertyType": [
  1633. 102
  1634. ],
  1635. "addPropertyValue": [
  1636. 10.0
  1637. ],
  1638. "PromoteLan": 723,
  1639. "PromoteLanPara": [
  1640. 10.0
  1641. ]
  1642. },
  1643. {
  1644. "ID": 5010010,
  1645. "PieceID": 13006,
  1646. "power": 100.0,
  1647. "name": 416,
  1648. "dec": 426,
  1649. "attribute": 0,
  1650. "icon": "icon_skill_30005",
  1651. "scriptName": "S501001",
  1652. "IDGroup": 501001,
  1653. "timelineName": "",
  1654. "cd": 1,
  1655. "SkillType": 2,
  1656. "level": 1,
  1657. "effectValue": [
  1658. 15.0
  1659. ],
  1660. "intensifierIndex": [
  1661. 1
  1662. ],
  1663. "addPropertyType": [
  1664. 103
  1665. ],
  1666. "addPropertyValue": [
  1667. 1.0
  1668. ],
  1669. "PromoteLan": 724,
  1670. "PromoteLanPara": [
  1671. 1.0
  1672. ]
  1673. },
  1674. {
  1675. "ID": 5010011,
  1676. "PieceID": 13006,
  1677. "power": 110.0,
  1678. "name": 417,
  1679. "dec": 427,
  1680. "attribute": 0,
  1681. "icon": "icon_skill_30005",
  1682. "scriptName": "S501001",
  1683. "IDGroup": 501001,
  1684. "timelineName": "",
  1685. "cd": 1,
  1686. "SkillType": 2,
  1687. "level": 2,
  1688. "effectValue": [
  1689. 15.0
  1690. ],
  1691. "intensifierIndex": [
  1692. 1
  1693. ],
  1694. "addPropertyType": [
  1695. 103
  1696. ],
  1697. "addPropertyValue": [
  1698. 2.0
  1699. ],
  1700. "PromoteLan": 724,
  1701. "PromoteLanPara": [
  1702. 2.0
  1703. ]
  1704. },
  1705. {
  1706. "ID": 5010012,
  1707. "PieceID": 13006,
  1708. "power": 120.0,
  1709. "name": 418,
  1710. "dec": 428,
  1711. "attribute": 0,
  1712. "icon": "icon_skill_30005",
  1713. "scriptName": "S501001",
  1714. "IDGroup": 501001,
  1715. "timelineName": "",
  1716. "cd": 1,
  1717. "SkillType": 2,
  1718. "level": 3,
  1719. "effectValue": [
  1720. 15.0
  1721. ],
  1722. "intensifierIndex": [
  1723. 1
  1724. ],
  1725. "addPropertyType": [
  1726. 103
  1727. ],
  1728. "addPropertyValue": [
  1729. 3.0
  1730. ],
  1731. "PromoteLan": 724,
  1732. "PromoteLanPara": [
  1733. 3.0
  1734. ]
  1735. },
  1736. {
  1737. "ID": 5010013,
  1738. "PieceID": 13006,
  1739. "power": 130.0,
  1740. "name": 419,
  1741. "dec": 429,
  1742. "attribute": 0,
  1743. "icon": "icon_skill_30005",
  1744. "scriptName": "S501001",
  1745. "IDGroup": 501001,
  1746. "timelineName": "",
  1747. "cd": 1,
  1748. "SkillType": 2,
  1749. "level": 4,
  1750. "effectValue": [
  1751. 15.0
  1752. ],
  1753. "intensifierIndex": [
  1754. 1
  1755. ],
  1756. "addPropertyType": [
  1757. 103
  1758. ],
  1759. "addPropertyValue": [
  1760. 4.0
  1761. ],
  1762. "PromoteLan": 724,
  1763. "PromoteLanPara": [
  1764. 4.0
  1765. ]
  1766. },
  1767. {
  1768. "ID": 5010014,
  1769. "PieceID": 13006,
  1770. "power": 140.0,
  1771. "name": 420,
  1772. "dec": 430,
  1773. "attribute": 0,
  1774. "icon": "icon_skill_30005",
  1775. "scriptName": "S501001",
  1776. "IDGroup": 501001,
  1777. "timelineName": "",
  1778. "cd": 1,
  1779. "SkillType": 2,
  1780. "level": 5,
  1781. "effectValue": [
  1782. 15.0
  1783. ],
  1784. "intensifierIndex": [
  1785. 1
  1786. ],
  1787. "addPropertyType": [
  1788. 103
  1789. ],
  1790. "addPropertyValue": [
  1791. 5.0
  1792. ],
  1793. "PromoteLan": 724,
  1794. "PromoteLanPara": [
  1795. 5.0
  1796. ]
  1797. },
  1798. {
  1799. "ID": 5010015,
  1800. "PieceID": 13006,
  1801. "power": 150.0,
  1802. "name": 421,
  1803. "dec": 431,
  1804. "attribute": 0,
  1805. "icon": "icon_skill_30005",
  1806. "scriptName": "S501001",
  1807. "IDGroup": 501001,
  1808. "timelineName": "",
  1809. "cd": 1,
  1810. "SkillType": 2,
  1811. "level": 6,
  1812. "effectValue": [
  1813. 15.0
  1814. ],
  1815. "intensifierIndex": [
  1816. 1
  1817. ],
  1818. "addPropertyType": [
  1819. 103
  1820. ],
  1821. "addPropertyValue": [
  1822. 6.0
  1823. ],
  1824. "PromoteLan": 724,
  1825. "PromoteLanPara": [
  1826. 6.0
  1827. ]
  1828. },
  1829. {
  1830. "ID": 5010016,
  1831. "PieceID": 13006,
  1832. "power": 160.0,
  1833. "name": 422,
  1834. "dec": 432,
  1835. "attribute": 0,
  1836. "icon": "icon_skill_30005",
  1837. "scriptName": "S501001",
  1838. "IDGroup": 501001,
  1839. "timelineName": "",
  1840. "cd": 1,
  1841. "SkillType": 2,
  1842. "level": 7,
  1843. "effectValue": [
  1844. 15.0
  1845. ],
  1846. "intensifierIndex": [
  1847. 1
  1848. ],
  1849. "addPropertyType": [
  1850. 103
  1851. ],
  1852. "addPropertyValue": [
  1853. 7.0
  1854. ],
  1855. "PromoteLan": 724,
  1856. "PromoteLanPara": [
  1857. 7.0
  1858. ]
  1859. },
  1860. {
  1861. "ID": 5010017,
  1862. "PieceID": 13006,
  1863. "power": 170.0,
  1864. "name": 423,
  1865. "dec": 433,
  1866. "attribute": 0,
  1867. "icon": "icon_skill_30005",
  1868. "scriptName": "S501001",
  1869. "IDGroup": 501001,
  1870. "timelineName": "",
  1871. "cd": 1,
  1872. "SkillType": 2,
  1873. "level": 8,
  1874. "effectValue": [
  1875. 15.0
  1876. ],
  1877. "intensifierIndex": [
  1878. 1
  1879. ],
  1880. "addPropertyType": [
  1881. 103
  1882. ],
  1883. "addPropertyValue": [
  1884. 8.0
  1885. ],
  1886. "PromoteLan": 724,
  1887. "PromoteLanPara": [
  1888. 8.0
  1889. ]
  1890. },
  1891. {
  1892. "ID": 5010018,
  1893. "PieceID": 13006,
  1894. "power": 180.0,
  1895. "name": 424,
  1896. "dec": 434,
  1897. "attribute": 0,
  1898. "icon": "icon_skill_30005",
  1899. "scriptName": "S501001",
  1900. "IDGroup": 501001,
  1901. "timelineName": "",
  1902. "cd": 1,
  1903. "SkillType": 2,
  1904. "level": 9,
  1905. "effectValue": [
  1906. 15.0
  1907. ],
  1908. "intensifierIndex": [
  1909. 1
  1910. ],
  1911. "addPropertyType": [
  1912. 103
  1913. ],
  1914. "addPropertyValue": [
  1915. 9.0
  1916. ],
  1917. "PromoteLan": 724,
  1918. "PromoteLanPara": [
  1919. 9.0
  1920. ]
  1921. },
  1922. {
  1923. "ID": 5010019,
  1924. "PieceID": 13006,
  1925. "power": 190.0,
  1926. "name": 425,
  1927. "dec": 435,
  1928. "attribute": 0,
  1929. "icon": "icon_skill_30005",
  1930. "scriptName": "S501001",
  1931. "IDGroup": 501001,
  1932. "timelineName": "",
  1933. "cd": 1,
  1934. "SkillType": 2,
  1935. "level": 10,
  1936. "effectValue": [
  1937. 15.0
  1938. ],
  1939. "intensifierIndex": [
  1940. 1
  1941. ],
  1942. "addPropertyType": [
  1943. 103
  1944. ],
  1945. "addPropertyValue": [
  1946. 10.0
  1947. ],
  1948. "PromoteLan": 724,
  1949. "PromoteLanPara": [
  1950. 10.0
  1951. ]
  1952. },
  1953. {
  1954. "ID": 5011010,
  1955. "PieceID": 13007,
  1956. "power": 100.0,
  1957. "name": 436,
  1958. "dec": 446,
  1959. "attribute": 0,
  1960. "icon": "icon_skill_20004",
  1961. "scriptName": "S501101",
  1962. "IDGroup": 501101,
  1963. "timelineName": "",
  1964. "cd": 1,
  1965. "SkillType": 2,
  1966. "level": 1,
  1967. "effectValue": [
  1968. 15.0
  1969. ],
  1970. "intensifierIndex": [
  1971. 1
  1972. ],
  1973. "addPropertyType": [
  1974. 101
  1975. ],
  1976. "addPropertyValue": [
  1977. 1.0
  1978. ],
  1979. "PromoteLan": 722,
  1980. "PromoteLanPara": [
  1981. 1.0
  1982. ]
  1983. },
  1984. {
  1985. "ID": 5011011,
  1986. "PieceID": 13007,
  1987. "power": 110.0,
  1988. "name": 437,
  1989. "dec": 447,
  1990. "attribute": 0,
  1991. "icon": "icon_skill_20004",
  1992. "scriptName": "S501101",
  1993. "IDGroup": 501101,
  1994. "timelineName": "",
  1995. "cd": 1,
  1996. "SkillType": 2,
  1997. "level": 2,
  1998. "effectValue": [
  1999. 15.0
  2000. ],
  2001. "intensifierIndex": [
  2002. 1
  2003. ],
  2004. "addPropertyType": [
  2005. 101
  2006. ],
  2007. "addPropertyValue": [
  2008. 2.0
  2009. ],
  2010. "PromoteLan": 722,
  2011. "PromoteLanPara": [
  2012. 2.0
  2013. ]
  2014. },
  2015. {
  2016. "ID": 5011012,
  2017. "PieceID": 13007,
  2018. "power": 120.0,
  2019. "name": 438,
  2020. "dec": 448,
  2021. "attribute": 0,
  2022. "icon": "icon_skill_20004",
  2023. "scriptName": "S501101",
  2024. "IDGroup": 501101,
  2025. "timelineName": "",
  2026. "cd": 1,
  2027. "SkillType": 2,
  2028. "level": 3,
  2029. "effectValue": [
  2030. 15.0
  2031. ],
  2032. "intensifierIndex": [
  2033. 1
  2034. ],
  2035. "addPropertyType": [
  2036. 101
  2037. ],
  2038. "addPropertyValue": [
  2039. 3.0
  2040. ],
  2041. "PromoteLan": 722,
  2042. "PromoteLanPara": [
  2043. 3.0
  2044. ]
  2045. },
  2046. {
  2047. "ID": 5011013,
  2048. "PieceID": 13007,
  2049. "power": 130.0,
  2050. "name": 439,
  2051. "dec": 449,
  2052. "attribute": 0,
  2053. "icon": "icon_skill_20004",
  2054. "scriptName": "S501101",
  2055. "IDGroup": 501101,
  2056. "timelineName": "",
  2057. "cd": 1,
  2058. "SkillType": 2,
  2059. "level": 4,
  2060. "effectValue": [
  2061. 15.0
  2062. ],
  2063. "intensifierIndex": [
  2064. 1
  2065. ],
  2066. "addPropertyType": [
  2067. 101
  2068. ],
  2069. "addPropertyValue": [
  2070. 4.0
  2071. ],
  2072. "PromoteLan": 722,
  2073. "PromoteLanPara": [
  2074. 4.0
  2075. ]
  2076. },
  2077. {
  2078. "ID": 5011014,
  2079. "PieceID": 13007,
  2080. "power": 140.0,
  2081. "name": 440,
  2082. "dec": 450,
  2083. "attribute": 0,
  2084. "icon": "icon_skill_20004",
  2085. "scriptName": "S501101",
  2086. "IDGroup": 501101,
  2087. "timelineName": "",
  2088. "cd": 1,
  2089. "SkillType": 2,
  2090. "level": 5,
  2091. "effectValue": [
  2092. 15.0
  2093. ],
  2094. "intensifierIndex": [
  2095. 1
  2096. ],
  2097. "addPropertyType": [
  2098. 101
  2099. ],
  2100. "addPropertyValue": [
  2101. 5.0
  2102. ],
  2103. "PromoteLan": 722,
  2104. "PromoteLanPara": [
  2105. 5.0
  2106. ]
  2107. },
  2108. {
  2109. "ID": 5011015,
  2110. "PieceID": 13007,
  2111. "power": 150.0,
  2112. "name": 441,
  2113. "dec": 451,
  2114. "attribute": 0,
  2115. "icon": "icon_skill_20004",
  2116. "scriptName": "S501101",
  2117. "IDGroup": 501101,
  2118. "timelineName": "",
  2119. "cd": 1,
  2120. "SkillType": 2,
  2121. "level": 6,
  2122. "effectValue": [
  2123. 15.0
  2124. ],
  2125. "intensifierIndex": [
  2126. 1
  2127. ],
  2128. "addPropertyType": [
  2129. 101
  2130. ],
  2131. "addPropertyValue": [
  2132. 6.0
  2133. ],
  2134. "PromoteLan": 722,
  2135. "PromoteLanPara": [
  2136. 6.0
  2137. ]
  2138. },
  2139. {
  2140. "ID": 5011016,
  2141. "PieceID": 13007,
  2142. "power": 160.0,
  2143. "name": 442,
  2144. "dec": 452,
  2145. "attribute": 0,
  2146. "icon": "icon_skill_20004",
  2147. "scriptName": "S501101",
  2148. "IDGroup": 501101,
  2149. "timelineName": "",
  2150. "cd": 1,
  2151. "SkillType": 2,
  2152. "level": 7,
  2153. "effectValue": [
  2154. 15.0
  2155. ],
  2156. "intensifierIndex": [
  2157. 1
  2158. ],
  2159. "addPropertyType": [
  2160. 101
  2161. ],
  2162. "addPropertyValue": [
  2163. 7.0
  2164. ],
  2165. "PromoteLan": 722,
  2166. "PromoteLanPara": [
  2167. 7.0
  2168. ]
  2169. },
  2170. {
  2171. "ID": 5011017,
  2172. "PieceID": 13007,
  2173. "power": 170.0,
  2174. "name": 443,
  2175. "dec": 453,
  2176. "attribute": 0,
  2177. "icon": "icon_skill_20004",
  2178. "scriptName": "S501101",
  2179. "IDGroup": 501101,
  2180. "timelineName": "",
  2181. "cd": 1,
  2182. "SkillType": 2,
  2183. "level": 8,
  2184. "effectValue": [
  2185. 15.0
  2186. ],
  2187. "intensifierIndex": [
  2188. 1
  2189. ],
  2190. "addPropertyType": [
  2191. 101
  2192. ],
  2193. "addPropertyValue": [
  2194. 8.0
  2195. ],
  2196. "PromoteLan": 722,
  2197. "PromoteLanPara": [
  2198. 8.0
  2199. ]
  2200. },
  2201. {
  2202. "ID": 5011018,
  2203. "PieceID": 13007,
  2204. "power": 180.0,
  2205. "name": 444,
  2206. "dec": 454,
  2207. "attribute": 0,
  2208. "icon": "icon_skill_20004",
  2209. "scriptName": "S501101",
  2210. "IDGroup": 501101,
  2211. "timelineName": "",
  2212. "cd": 1,
  2213. "SkillType": 2,
  2214. "level": 9,
  2215. "effectValue": [
  2216. 15.0
  2217. ],
  2218. "intensifierIndex": [
  2219. 1
  2220. ],
  2221. "addPropertyType": [
  2222. 101
  2223. ],
  2224. "addPropertyValue": [
  2225. 9.0
  2226. ],
  2227. "PromoteLan": 722,
  2228. "PromoteLanPara": [
  2229. 9.0
  2230. ]
  2231. },
  2232. {
  2233. "ID": 5011019,
  2234. "PieceID": 13007,
  2235. "power": 190.0,
  2236. "name": 445,
  2237. "dec": 455,
  2238. "attribute": 0,
  2239. "icon": "icon_skill_20004",
  2240. "scriptName": "S501101",
  2241. "IDGroup": 501101,
  2242. "timelineName": "",
  2243. "cd": 1,
  2244. "SkillType": 2,
  2245. "level": 10,
  2246. "effectValue": [
  2247. 15.0
  2248. ],
  2249. "intensifierIndex": [
  2250. 1
  2251. ],
  2252. "addPropertyType": [
  2253. 101
  2254. ],
  2255. "addPropertyValue": [
  2256. 10.0
  2257. ],
  2258. "PromoteLan": 722,
  2259. "PromoteLanPara": [
  2260. 10.0
  2261. ]
  2262. },
  2263. {
  2264. "ID": 5012010,
  2265. "PieceID": 13008,
  2266. "power": 100.0,
  2267. "name": 456,
  2268. "dec": 466,
  2269. "attribute": 0,
  2270. "icon": "icon_skill_10002",
  2271. "scriptName": "S501201",
  2272. "IDGroup": 501201,
  2273. "timelineName": "",
  2274. "cd": 1,
  2275. "SkillType": 2,
  2276. "level": 1,
  2277. "effectValue": [
  2278. 10.0,
  2279. 10.0
  2280. ],
  2281. "intensifierIndex": [
  2282. 1
  2283. ],
  2284. "addPropertyType": [
  2285. 102
  2286. ],
  2287. "addPropertyValue": [
  2288. 1.0
  2289. ],
  2290. "PromoteLan": 723,
  2291. "PromoteLanPara": [
  2292. 1.0
  2293. ]
  2294. },
  2295. {
  2296. "ID": 5012011,
  2297. "PieceID": 13008,
  2298. "power": 110.0,
  2299. "name": 457,
  2300. "dec": 467,
  2301. "attribute": 0,
  2302. "icon": "icon_skill_10002",
  2303. "scriptName": "S501201",
  2304. "IDGroup": 501201,
  2305. "timelineName": "",
  2306. "cd": 1,
  2307. "SkillType": 2,
  2308. "level": 2,
  2309. "effectValue": [
  2310. 10.0,
  2311. 10.0
  2312. ],
  2313. "intensifierIndex": [
  2314. 1
  2315. ],
  2316. "addPropertyType": [
  2317. 102
  2318. ],
  2319. "addPropertyValue": [
  2320. 2.0
  2321. ],
  2322. "PromoteLan": 723,
  2323. "PromoteLanPara": [
  2324. 2.0
  2325. ]
  2326. },
  2327. {
  2328. "ID": 5012012,
  2329. "PieceID": 13008,
  2330. "power": 120.0,
  2331. "name": 458,
  2332. "dec": 468,
  2333. "attribute": 0,
  2334. "icon": "icon_skill_10002",
  2335. "scriptName": "S501201",
  2336. "IDGroup": 501201,
  2337. "timelineName": "",
  2338. "cd": 1,
  2339. "SkillType": 2,
  2340. "level": 3,
  2341. "effectValue": [
  2342. 10.0,
  2343. 10.0
  2344. ],
  2345. "intensifierIndex": [
  2346. 1
  2347. ],
  2348. "addPropertyType": [
  2349. 102
  2350. ],
  2351. "addPropertyValue": [
  2352. 3.0
  2353. ],
  2354. "PromoteLan": 723,
  2355. "PromoteLanPara": [
  2356. 3.0
  2357. ]
  2358. },
  2359. {
  2360. "ID": 5012013,
  2361. "PieceID": 13008,
  2362. "power": 130.0,
  2363. "name": 459,
  2364. "dec": 469,
  2365. "attribute": 0,
  2366. "icon": "icon_skill_10002",
  2367. "scriptName": "S501201",
  2368. "IDGroup": 501201,
  2369. "timelineName": "",
  2370. "cd": 1,
  2371. "SkillType": 2,
  2372. "level": 4,
  2373. "effectValue": [
  2374. 10.0,
  2375. 10.0
  2376. ],
  2377. "intensifierIndex": [
  2378. 1
  2379. ],
  2380. "addPropertyType": [
  2381. 102
  2382. ],
  2383. "addPropertyValue": [
  2384. 4.0
  2385. ],
  2386. "PromoteLan": 723,
  2387. "PromoteLanPara": [
  2388. 4.0
  2389. ]
  2390. },
  2391. {
  2392. "ID": 5012014,
  2393. "PieceID": 13008,
  2394. "power": 140.0,
  2395. "name": 460,
  2396. "dec": 470,
  2397. "attribute": 0,
  2398. "icon": "icon_skill_10002",
  2399. "scriptName": "S501201",
  2400. "IDGroup": 501201,
  2401. "timelineName": "",
  2402. "cd": 1,
  2403. "SkillType": 2,
  2404. "level": 5,
  2405. "effectValue": [
  2406. 10.0,
  2407. 10.0
  2408. ],
  2409. "intensifierIndex": [
  2410. 1
  2411. ],
  2412. "addPropertyType": [
  2413. 102
  2414. ],
  2415. "addPropertyValue": [
  2416. 5.0
  2417. ],
  2418. "PromoteLan": 723,
  2419. "PromoteLanPara": [
  2420. 5.0
  2421. ]
  2422. },
  2423. {
  2424. "ID": 5012015,
  2425. "PieceID": 13008,
  2426. "power": 150.0,
  2427. "name": 461,
  2428. "dec": 471,
  2429. "attribute": 0,
  2430. "icon": "icon_skill_10002",
  2431. "scriptName": "S501201",
  2432. "IDGroup": 501201,
  2433. "timelineName": "",
  2434. "cd": 1,
  2435. "SkillType": 2,
  2436. "level": 6,
  2437. "effectValue": [
  2438. 10.0,
  2439. 10.0
  2440. ],
  2441. "intensifierIndex": [
  2442. 1
  2443. ],
  2444. "addPropertyType": [
  2445. 102
  2446. ],
  2447. "addPropertyValue": [
  2448. 6.0
  2449. ],
  2450. "PromoteLan": 723,
  2451. "PromoteLanPara": [
  2452. 6.0
  2453. ]
  2454. },
  2455. {
  2456. "ID": 5012016,
  2457. "PieceID": 13008,
  2458. "power": 160.0,
  2459. "name": 462,
  2460. "dec": 472,
  2461. "attribute": 0,
  2462. "icon": "icon_skill_10002",
  2463. "scriptName": "S501201",
  2464. "IDGroup": 501201,
  2465. "timelineName": "",
  2466. "cd": 1,
  2467. "SkillType": 2,
  2468. "level": 7,
  2469. "effectValue": [
  2470. 10.0,
  2471. 10.0
  2472. ],
  2473. "intensifierIndex": [
  2474. 1
  2475. ],
  2476. "addPropertyType": [
  2477. 102
  2478. ],
  2479. "addPropertyValue": [
  2480. 7.0
  2481. ],
  2482. "PromoteLan": 723,
  2483. "PromoteLanPara": [
  2484. 7.0
  2485. ]
  2486. },
  2487. {
  2488. "ID": 5012017,
  2489. "PieceID": 13008,
  2490. "power": 170.0,
  2491. "name": 463,
  2492. "dec": 473,
  2493. "attribute": 0,
  2494. "icon": "icon_skill_10002",
  2495. "scriptName": "S501201",
  2496. "IDGroup": 501201,
  2497. "timelineName": "",
  2498. "cd": 1,
  2499. "SkillType": 2,
  2500. "level": 8,
  2501. "effectValue": [
  2502. 10.0,
  2503. 10.0
  2504. ],
  2505. "intensifierIndex": [
  2506. 1
  2507. ],
  2508. "addPropertyType": [
  2509. 102
  2510. ],
  2511. "addPropertyValue": [
  2512. 8.0
  2513. ],
  2514. "PromoteLan": 723,
  2515. "PromoteLanPara": [
  2516. 8.0
  2517. ]
  2518. },
  2519. {
  2520. "ID": 5012018,
  2521. "PieceID": 13008,
  2522. "power": 180.0,
  2523. "name": 464,
  2524. "dec": 474,
  2525. "attribute": 0,
  2526. "icon": "icon_skill_10002",
  2527. "scriptName": "S501201",
  2528. "IDGroup": 501201,
  2529. "timelineName": "",
  2530. "cd": 1,
  2531. "SkillType": 2,
  2532. "level": 9,
  2533. "effectValue": [
  2534. 10.0,
  2535. 10.0
  2536. ],
  2537. "intensifierIndex": [
  2538. 1
  2539. ],
  2540. "addPropertyType": [
  2541. 102
  2542. ],
  2543. "addPropertyValue": [
  2544. 9.0
  2545. ],
  2546. "PromoteLan": 723,
  2547. "PromoteLanPara": [
  2548. 9.0
  2549. ]
  2550. },
  2551. {
  2552. "ID": 5012019,
  2553. "PieceID": 13008,
  2554. "power": 190.0,
  2555. "name": 465,
  2556. "dec": 475,
  2557. "attribute": 0,
  2558. "icon": "icon_skill_10002",
  2559. "scriptName": "S501201",
  2560. "IDGroup": 501201,
  2561. "timelineName": "",
  2562. "cd": 1,
  2563. "SkillType": 2,
  2564. "level": 10,
  2565. "effectValue": [
  2566. 10.0,
  2567. 10.0
  2568. ],
  2569. "intensifierIndex": [
  2570. 1
  2571. ],
  2572. "addPropertyType": [
  2573. 102
  2574. ],
  2575. "addPropertyValue": [
  2576. 10.0
  2577. ],
  2578. "PromoteLan": 723,
  2579. "PromoteLanPara": [
  2580. 10.0
  2581. ]
  2582. },
  2583. {
  2584. "ID": 5013010,
  2585. "PieceID": 13009,
  2586. "power": 100.0,
  2587. "name": 476,
  2588. "dec": 486,
  2589. "attribute": 0,
  2590. "icon": "icon_skill_20002",
  2591. "scriptName": "S501301",
  2592. "IDGroup": 501301,
  2593. "timelineName": "",
  2594. "cd": 1,
  2595. "SkillType": 2,
  2596. "level": 1,
  2597. "effectValue": [
  2598. 15.0
  2599. ],
  2600. "intensifierIndex": [
  2601. 1
  2602. ],
  2603. "addPropertyType": [
  2604. 103
  2605. ],
  2606. "addPropertyValue": [
  2607. 1.0
  2608. ],
  2609. "PromoteLan": 724,
  2610. "PromoteLanPara": [
  2611. 1.0
  2612. ]
  2613. },
  2614. {
  2615. "ID": 5013011,
  2616. "PieceID": 13009,
  2617. "power": 110.0,
  2618. "name": 477,
  2619. "dec": 487,
  2620. "attribute": 0,
  2621. "icon": "icon_skill_20002",
  2622. "scriptName": "S501301",
  2623. "IDGroup": 501301,
  2624. "timelineName": "",
  2625. "cd": 1,
  2626. "SkillType": 2,
  2627. "level": 2,
  2628. "effectValue": [
  2629. 15.0
  2630. ],
  2631. "intensifierIndex": [
  2632. 1
  2633. ],
  2634. "addPropertyType": [
  2635. 103
  2636. ],
  2637. "addPropertyValue": [
  2638. 2.0
  2639. ],
  2640. "PromoteLan": 724,
  2641. "PromoteLanPara": [
  2642. 2.0
  2643. ]
  2644. },
  2645. {
  2646. "ID": 5013012,
  2647. "PieceID": 13009,
  2648. "power": 120.0,
  2649. "name": 478,
  2650. "dec": 488,
  2651. "attribute": 0,
  2652. "icon": "icon_skill_20002",
  2653. "scriptName": "S501301",
  2654. "IDGroup": 501301,
  2655. "timelineName": "",
  2656. "cd": 1,
  2657. "SkillType": 2,
  2658. "level": 3,
  2659. "effectValue": [
  2660. 15.0
  2661. ],
  2662. "intensifierIndex": [
  2663. 1
  2664. ],
  2665. "addPropertyType": [
  2666. 103
  2667. ],
  2668. "addPropertyValue": [
  2669. 3.0
  2670. ],
  2671. "PromoteLan": 724,
  2672. "PromoteLanPara": [
  2673. 3.0
  2674. ]
  2675. },
  2676. {
  2677. "ID": 5013013,
  2678. "PieceID": 13009,
  2679. "power": 130.0,
  2680. "name": 479,
  2681. "dec": 489,
  2682. "attribute": 0,
  2683. "icon": "icon_skill_20002",
  2684. "scriptName": "S501301",
  2685. "IDGroup": 501301,
  2686. "timelineName": "",
  2687. "cd": 1,
  2688. "SkillType": 2,
  2689. "level": 4,
  2690. "effectValue": [
  2691. 15.0
  2692. ],
  2693. "intensifierIndex": [
  2694. 1
  2695. ],
  2696. "addPropertyType": [
  2697. 103
  2698. ],
  2699. "addPropertyValue": [
  2700. 4.0
  2701. ],
  2702. "PromoteLan": 724,
  2703. "PromoteLanPara": [
  2704. 4.0
  2705. ]
  2706. },
  2707. {
  2708. "ID": 5013014,
  2709. "PieceID": 13009,
  2710. "power": 140.0,
  2711. "name": 480,
  2712. "dec": 490,
  2713. "attribute": 0,
  2714. "icon": "icon_skill_20002",
  2715. "scriptName": "S501301",
  2716. "IDGroup": 501301,
  2717. "timelineName": "",
  2718. "cd": 1,
  2719. "SkillType": 2,
  2720. "level": 5,
  2721. "effectValue": [
  2722. 15.0
  2723. ],
  2724. "intensifierIndex": [
  2725. 1
  2726. ],
  2727. "addPropertyType": [
  2728. 103
  2729. ],
  2730. "addPropertyValue": [
  2731. 5.0
  2732. ],
  2733. "PromoteLan": 724,
  2734. "PromoteLanPara": [
  2735. 5.0
  2736. ]
  2737. },
  2738. {
  2739. "ID": 5013015,
  2740. "PieceID": 13009,
  2741. "power": 150.0,
  2742. "name": 481,
  2743. "dec": 491,
  2744. "attribute": 0,
  2745. "icon": "icon_skill_20002",
  2746. "scriptName": "S501301",
  2747. "IDGroup": 501301,
  2748. "timelineName": "",
  2749. "cd": 1,
  2750. "SkillType": 2,
  2751. "level": 6,
  2752. "effectValue": [
  2753. 15.0
  2754. ],
  2755. "intensifierIndex": [
  2756. 1
  2757. ],
  2758. "addPropertyType": [
  2759. 103
  2760. ],
  2761. "addPropertyValue": [
  2762. 6.0
  2763. ],
  2764. "PromoteLan": 724,
  2765. "PromoteLanPara": [
  2766. 6.0
  2767. ]
  2768. },
  2769. {
  2770. "ID": 5013016,
  2771. "PieceID": 13009,
  2772. "power": 160.0,
  2773. "name": 482,
  2774. "dec": 492,
  2775. "attribute": 0,
  2776. "icon": "icon_skill_20002",
  2777. "scriptName": "S501301",
  2778. "IDGroup": 501301,
  2779. "timelineName": "",
  2780. "cd": 1,
  2781. "SkillType": 2,
  2782. "level": 7,
  2783. "effectValue": [
  2784. 15.0
  2785. ],
  2786. "intensifierIndex": [
  2787. 1
  2788. ],
  2789. "addPropertyType": [
  2790. 103
  2791. ],
  2792. "addPropertyValue": [
  2793. 7.0
  2794. ],
  2795. "PromoteLan": 724,
  2796. "PromoteLanPara": [
  2797. 7.0
  2798. ]
  2799. },
  2800. {
  2801. "ID": 5013017,
  2802. "PieceID": 13009,
  2803. "power": 170.0,
  2804. "name": 483,
  2805. "dec": 493,
  2806. "attribute": 0,
  2807. "icon": "icon_skill_20002",
  2808. "scriptName": "S501301",
  2809. "IDGroup": 501301,
  2810. "timelineName": "",
  2811. "cd": 1,
  2812. "SkillType": 2,
  2813. "level": 8,
  2814. "effectValue": [
  2815. 15.0
  2816. ],
  2817. "intensifierIndex": [
  2818. 1
  2819. ],
  2820. "addPropertyType": [
  2821. 103
  2822. ],
  2823. "addPropertyValue": [
  2824. 8.0
  2825. ],
  2826. "PromoteLan": 724,
  2827. "PromoteLanPara": [
  2828. 8.0
  2829. ]
  2830. },
  2831. {
  2832. "ID": 5013018,
  2833. "PieceID": 13009,
  2834. "power": 180.0,
  2835. "name": 484,
  2836. "dec": 494,
  2837. "attribute": 0,
  2838. "icon": "icon_skill_20002",
  2839. "scriptName": "S501301",
  2840. "IDGroup": 501301,
  2841. "timelineName": "",
  2842. "cd": 1,
  2843. "SkillType": 2,
  2844. "level": 9,
  2845. "effectValue": [
  2846. 15.0
  2847. ],
  2848. "intensifierIndex": [
  2849. 1
  2850. ],
  2851. "addPropertyType": [
  2852. 103
  2853. ],
  2854. "addPropertyValue": [
  2855. 9.0
  2856. ],
  2857. "PromoteLan": 724,
  2858. "PromoteLanPara": [
  2859. 9.0
  2860. ]
  2861. },
  2862. {
  2863. "ID": 5013019,
  2864. "PieceID": 13009,
  2865. "power": 190.0,
  2866. "name": 485,
  2867. "dec": 495,
  2868. "attribute": 0,
  2869. "icon": "icon_skill_20002",
  2870. "scriptName": "S501301",
  2871. "IDGroup": 501301,
  2872. "timelineName": "",
  2873. "cd": 1,
  2874. "SkillType": 2,
  2875. "level": 10,
  2876. "effectValue": [
  2877. 15.0
  2878. ],
  2879. "intensifierIndex": [
  2880. 1
  2881. ],
  2882. "addPropertyType": [
  2883. 103
  2884. ],
  2885. "addPropertyValue": [
  2886. 10.0
  2887. ],
  2888. "PromoteLan": 724,
  2889. "PromoteLanPara": [
  2890. 10.0
  2891. ]
  2892. },
  2893. {
  2894. "ID": 5014010,
  2895. "PieceID": 13010,
  2896. "power": 100.0,
  2897. "name": 496,
  2898. "dec": 506,
  2899. "attribute": 0,
  2900. "icon": "icon_skill_10004",
  2901. "scriptName": "S501401",
  2902. "IDGroup": 501401,
  2903. "timelineName": "",
  2904. "cd": 1,
  2905. "SkillType": 2,
  2906. "level": 1,
  2907. "effectValue": [
  2908. 15.0,
  2909. 6.0
  2910. ],
  2911. "intensifierIndex": [
  2912. 1
  2913. ],
  2914. "addPropertyType": [
  2915. 101
  2916. ],
  2917. "addPropertyValue": [
  2918. 1.0
  2919. ],
  2920. "PromoteLan": 722,
  2921. "PromoteLanPara": [
  2922. 1.0
  2923. ]
  2924. },
  2925. {
  2926. "ID": 5014011,
  2927. "PieceID": 13010,
  2928. "power": 110.0,
  2929. "name": 497,
  2930. "dec": 507,
  2931. "attribute": 0,
  2932. "icon": "icon_skill_10004",
  2933. "scriptName": "S501401",
  2934. "IDGroup": 501401,
  2935. "timelineName": "",
  2936. "cd": 1,
  2937. "SkillType": 2,
  2938. "level": 2,
  2939. "effectValue": [
  2940. 15.0,
  2941. 6.0
  2942. ],
  2943. "intensifierIndex": [
  2944. 1
  2945. ],
  2946. "addPropertyType": [
  2947. 101
  2948. ],
  2949. "addPropertyValue": [
  2950. 2.0
  2951. ],
  2952. "PromoteLan": 722,
  2953. "PromoteLanPara": [
  2954. 2.0
  2955. ]
  2956. },
  2957. {
  2958. "ID": 5014012,
  2959. "PieceID": 13010,
  2960. "power": 120.0,
  2961. "name": 498,
  2962. "dec": 508,
  2963. "attribute": 0,
  2964. "icon": "icon_skill_10004",
  2965. "scriptName": "S501401",
  2966. "IDGroup": 501401,
  2967. "timelineName": "",
  2968. "cd": 1,
  2969. "SkillType": 2,
  2970. "level": 3,
  2971. "effectValue": [
  2972. 15.0,
  2973. 6.0
  2974. ],
  2975. "intensifierIndex": [
  2976. 1
  2977. ],
  2978. "addPropertyType": [
  2979. 101
  2980. ],
  2981. "addPropertyValue": [
  2982. 3.0
  2983. ],
  2984. "PromoteLan": 722,
  2985. "PromoteLanPara": [
  2986. 3.0
  2987. ]
  2988. },
  2989. {
  2990. "ID": 5014013,
  2991. "PieceID": 13010,
  2992. "power": 130.0,
  2993. "name": 499,
  2994. "dec": 509,
  2995. "attribute": 0,
  2996. "icon": "icon_skill_10004",
  2997. "scriptName": "S501401",
  2998. "IDGroup": 501401,
  2999. "timelineName": "",
  3000. "cd": 1,
  3001. "SkillType": 2,
  3002. "level": 4,
  3003. "effectValue": [
  3004. 15.0,
  3005. 6.0
  3006. ],
  3007. "intensifierIndex": [
  3008. 1
  3009. ],
  3010. "addPropertyType": [
  3011. 101
  3012. ],
  3013. "addPropertyValue": [
  3014. 4.0
  3015. ],
  3016. "PromoteLan": 722,
  3017. "PromoteLanPara": [
  3018. 4.0
  3019. ]
  3020. },
  3021. {
  3022. "ID": 5014014,
  3023. "PieceID": 13010,
  3024. "power": 140.0,
  3025. "name": 500,
  3026. "dec": 510,
  3027. "attribute": 0,
  3028. "icon": "icon_skill_10004",
  3029. "scriptName": "S501401",
  3030. "IDGroup": 501401,
  3031. "timelineName": "",
  3032. "cd": 1,
  3033. "SkillType": 2,
  3034. "level": 5,
  3035. "effectValue": [
  3036. 15.0,
  3037. 6.0
  3038. ],
  3039. "intensifierIndex": [
  3040. 1
  3041. ],
  3042. "addPropertyType": [
  3043. 101
  3044. ],
  3045. "addPropertyValue": [
  3046. 5.0
  3047. ],
  3048. "PromoteLan": 722,
  3049. "PromoteLanPara": [
  3050. 5.0
  3051. ]
  3052. },
  3053. {
  3054. "ID": 5014015,
  3055. "PieceID": 13010,
  3056. "power": 150.0,
  3057. "name": 501,
  3058. "dec": 511,
  3059. "attribute": 0,
  3060. "icon": "icon_skill_10004",
  3061. "scriptName": "S501401",
  3062. "IDGroup": 501401,
  3063. "timelineName": "",
  3064. "cd": 1,
  3065. "SkillType": 2,
  3066. "level": 6,
  3067. "effectValue": [
  3068. 15.0,
  3069. 6.0
  3070. ],
  3071. "intensifierIndex": [
  3072. 1
  3073. ],
  3074. "addPropertyType": [
  3075. 101
  3076. ],
  3077. "addPropertyValue": [
  3078. 6.0
  3079. ],
  3080. "PromoteLan": 722,
  3081. "PromoteLanPara": [
  3082. 6.0
  3083. ]
  3084. },
  3085. {
  3086. "ID": 5014016,
  3087. "PieceID": 13010,
  3088. "power": 160.0,
  3089. "name": 502,
  3090. "dec": 512,
  3091. "attribute": 0,
  3092. "icon": "icon_skill_10004",
  3093. "scriptName": "S501401",
  3094. "IDGroup": 501401,
  3095. "timelineName": "",
  3096. "cd": 1,
  3097. "SkillType": 2,
  3098. "level": 7,
  3099. "effectValue": [
  3100. 15.0,
  3101. 6.0
  3102. ],
  3103. "intensifierIndex": [
  3104. 1
  3105. ],
  3106. "addPropertyType": [
  3107. 101
  3108. ],
  3109. "addPropertyValue": [
  3110. 7.0
  3111. ],
  3112. "PromoteLan": 722,
  3113. "PromoteLanPara": [
  3114. 7.0
  3115. ]
  3116. },
  3117. {
  3118. "ID": 5014017,
  3119. "PieceID": 13010,
  3120. "power": 170.0,
  3121. "name": 503,
  3122. "dec": 513,
  3123. "attribute": 0,
  3124. "icon": "icon_skill_10004",
  3125. "scriptName": "S501401",
  3126. "IDGroup": 501401,
  3127. "timelineName": "",
  3128. "cd": 1,
  3129. "SkillType": 2,
  3130. "level": 8,
  3131. "effectValue": [
  3132. 15.0,
  3133. 6.0
  3134. ],
  3135. "intensifierIndex": [
  3136. 1
  3137. ],
  3138. "addPropertyType": [
  3139. 101
  3140. ],
  3141. "addPropertyValue": [
  3142. 8.0
  3143. ],
  3144. "PromoteLan": 722,
  3145. "PromoteLanPara": [
  3146. 8.0
  3147. ]
  3148. },
  3149. {
  3150. "ID": 5014018,
  3151. "PieceID": 13010,
  3152. "power": 180.0,
  3153. "name": 504,
  3154. "dec": 514,
  3155. "attribute": 0,
  3156. "icon": "icon_skill_10004",
  3157. "scriptName": "S501401",
  3158. "IDGroup": 501401,
  3159. "timelineName": "",
  3160. "cd": 1,
  3161. "SkillType": 2,
  3162. "level": 9,
  3163. "effectValue": [
  3164. 15.0,
  3165. 6.0
  3166. ],
  3167. "intensifierIndex": [
  3168. 1
  3169. ],
  3170. "addPropertyType": [
  3171. 101
  3172. ],
  3173. "addPropertyValue": [
  3174. 9.0
  3175. ],
  3176. "PromoteLan": 722,
  3177. "PromoteLanPara": [
  3178. 9.0
  3179. ]
  3180. },
  3181. {
  3182. "ID": 5014019,
  3183. "PieceID": 13010,
  3184. "power": 190.0,
  3185. "name": 505,
  3186. "dec": 515,
  3187. "attribute": 0,
  3188. "icon": "icon_skill_10004",
  3189. "scriptName": "S501401",
  3190. "IDGroup": 501401,
  3191. "timelineName": "",
  3192. "cd": 1,
  3193. "SkillType": 2,
  3194. "level": 10,
  3195. "effectValue": [
  3196. 15.0,
  3197. 6.0
  3198. ],
  3199. "intensifierIndex": [
  3200. 1
  3201. ],
  3202. "addPropertyType": [
  3203. 101
  3204. ],
  3205. "addPropertyValue": [
  3206. 10.0
  3207. ],
  3208. "PromoteLan": 722,
  3209. "PromoteLanPara": [
  3210. 10.0
  3211. ]
  3212. },
  3213. {
  3214. "ID": 5015010,
  3215. "PieceID": 13011,
  3216. "power": 100.0,
  3217. "name": 516,
  3218. "dec": 526,
  3219. "attribute": 0,
  3220. "icon": "icon_skill_20001",
  3221. "scriptName": "S501501",
  3222. "IDGroup": 501501,
  3223. "timelineName": "",
  3224. "cd": 1,
  3225. "SkillType": 2,
  3226. "level": 1,
  3227. "effectValue": [
  3228. 30.0
  3229. ],
  3230. "intensifierIndex": [
  3231. 1
  3232. ],
  3233. "addPropertyType": [
  3234. 102
  3235. ],
  3236. "addPropertyValue": [
  3237. 1.0
  3238. ],
  3239. "PromoteLan": 723,
  3240. "PromoteLanPara": [
  3241. 1.0
  3242. ]
  3243. },
  3244. {
  3245. "ID": 5015011,
  3246. "PieceID": 13011,
  3247. "power": 110.0,
  3248. "name": 517,
  3249. "dec": 527,
  3250. "attribute": 0,
  3251. "icon": "icon_skill_20001",
  3252. "scriptName": "S501501",
  3253. "IDGroup": 501501,
  3254. "timelineName": "",
  3255. "cd": 1,
  3256. "SkillType": 2,
  3257. "level": 2,
  3258. "effectValue": [
  3259. 30.0
  3260. ],
  3261. "intensifierIndex": [
  3262. 1
  3263. ],
  3264. "addPropertyType": [
  3265. 102
  3266. ],
  3267. "addPropertyValue": [
  3268. 2.0
  3269. ],
  3270. "PromoteLan": 723,
  3271. "PromoteLanPara": [
  3272. 2.0
  3273. ]
  3274. },
  3275. {
  3276. "ID": 5015012,
  3277. "PieceID": 13011,
  3278. "power": 120.0,
  3279. "name": 518,
  3280. "dec": 528,
  3281. "attribute": 0,
  3282. "icon": "icon_skill_20001",
  3283. "scriptName": "S501501",
  3284. "IDGroup": 501501,
  3285. "timelineName": "",
  3286. "cd": 1,
  3287. "SkillType": 2,
  3288. "level": 3,
  3289. "effectValue": [
  3290. 30.0
  3291. ],
  3292. "intensifierIndex": [
  3293. 1
  3294. ],
  3295. "addPropertyType": [
  3296. 102
  3297. ],
  3298. "addPropertyValue": [
  3299. 3.0
  3300. ],
  3301. "PromoteLan": 723,
  3302. "PromoteLanPara": [
  3303. 3.0
  3304. ]
  3305. },
  3306. {
  3307. "ID": 5015013,
  3308. "PieceID": 13011,
  3309. "power": 130.0,
  3310. "name": 519,
  3311. "dec": 529,
  3312. "attribute": 0,
  3313. "icon": "icon_skill_20001",
  3314. "scriptName": "S501501",
  3315. "IDGroup": 501501,
  3316. "timelineName": "",
  3317. "cd": 1,
  3318. "SkillType": 2,
  3319. "level": 4,
  3320. "effectValue": [
  3321. 30.0
  3322. ],
  3323. "intensifierIndex": [
  3324. 1
  3325. ],
  3326. "addPropertyType": [
  3327. 102
  3328. ],
  3329. "addPropertyValue": [
  3330. 4.0
  3331. ],
  3332. "PromoteLan": 723,
  3333. "PromoteLanPara": [
  3334. 4.0
  3335. ]
  3336. },
  3337. {
  3338. "ID": 5015014,
  3339. "PieceID": 13011,
  3340. "power": 140.0,
  3341. "name": 520,
  3342. "dec": 530,
  3343. "attribute": 0,
  3344. "icon": "icon_skill_20001",
  3345. "scriptName": "S501501",
  3346. "IDGroup": 501501,
  3347. "timelineName": "",
  3348. "cd": 1,
  3349. "SkillType": 2,
  3350. "level": 5,
  3351. "effectValue": [
  3352. 30.0
  3353. ],
  3354. "intensifierIndex": [
  3355. 1
  3356. ],
  3357. "addPropertyType": [
  3358. 102
  3359. ],
  3360. "addPropertyValue": [
  3361. 5.0
  3362. ],
  3363. "PromoteLan": 723,
  3364. "PromoteLanPara": [
  3365. 5.0
  3366. ]
  3367. },
  3368. {
  3369. "ID": 5015015,
  3370. "PieceID": 13011,
  3371. "power": 150.0,
  3372. "name": 521,
  3373. "dec": 531,
  3374. "attribute": 0,
  3375. "icon": "icon_skill_20001",
  3376. "scriptName": "S501501",
  3377. "IDGroup": 501501,
  3378. "timelineName": "",
  3379. "cd": 1,
  3380. "SkillType": 2,
  3381. "level": 6,
  3382. "effectValue": [
  3383. 30.0
  3384. ],
  3385. "intensifierIndex": [
  3386. 1
  3387. ],
  3388. "addPropertyType": [
  3389. 102
  3390. ],
  3391. "addPropertyValue": [
  3392. 6.0
  3393. ],
  3394. "PromoteLan": 723,
  3395. "PromoteLanPara": [
  3396. 6.0
  3397. ]
  3398. },
  3399. {
  3400. "ID": 5015016,
  3401. "PieceID": 13011,
  3402. "power": 160.0,
  3403. "name": 522,
  3404. "dec": 532,
  3405. "attribute": 0,
  3406. "icon": "icon_skill_20001",
  3407. "scriptName": "S501501",
  3408. "IDGroup": 501501,
  3409. "timelineName": "",
  3410. "cd": 1,
  3411. "SkillType": 2,
  3412. "level": 7,
  3413. "effectValue": [
  3414. 30.0
  3415. ],
  3416. "intensifierIndex": [
  3417. 1
  3418. ],
  3419. "addPropertyType": [
  3420. 102
  3421. ],
  3422. "addPropertyValue": [
  3423. 7.0
  3424. ],
  3425. "PromoteLan": 723,
  3426. "PromoteLanPara": [
  3427. 7.0
  3428. ]
  3429. },
  3430. {
  3431. "ID": 5015017,
  3432. "PieceID": 13011,
  3433. "power": 170.0,
  3434. "name": 523,
  3435. "dec": 533,
  3436. "attribute": 0,
  3437. "icon": "icon_skill_20001",
  3438. "scriptName": "S501501",
  3439. "IDGroup": 501501,
  3440. "timelineName": "",
  3441. "cd": 1,
  3442. "SkillType": 2,
  3443. "level": 8,
  3444. "effectValue": [
  3445. 30.0
  3446. ],
  3447. "intensifierIndex": [
  3448. 1
  3449. ],
  3450. "addPropertyType": [
  3451. 102
  3452. ],
  3453. "addPropertyValue": [
  3454. 8.0
  3455. ],
  3456. "PromoteLan": 723,
  3457. "PromoteLanPara": [
  3458. 8.0
  3459. ]
  3460. },
  3461. {
  3462. "ID": 5015018,
  3463. "PieceID": 13011,
  3464. "power": 180.0,
  3465. "name": 524,
  3466. "dec": 534,
  3467. "attribute": 0,
  3468. "icon": "icon_skill_20001",
  3469. "scriptName": "S501501",
  3470. "IDGroup": 501501,
  3471. "timelineName": "",
  3472. "cd": 1,
  3473. "SkillType": 2,
  3474. "level": 9,
  3475. "effectValue": [
  3476. 30.0
  3477. ],
  3478. "intensifierIndex": [
  3479. 1
  3480. ],
  3481. "addPropertyType": [
  3482. 102
  3483. ],
  3484. "addPropertyValue": [
  3485. 9.0
  3486. ],
  3487. "PromoteLan": 723,
  3488. "PromoteLanPara": [
  3489. 9.0
  3490. ]
  3491. },
  3492. {
  3493. "ID": 5015019,
  3494. "PieceID": 13011,
  3495. "power": 190.0,
  3496. "name": 525,
  3497. "dec": 535,
  3498. "attribute": 0,
  3499. "icon": "icon_skill_20001",
  3500. "scriptName": "S501501",
  3501. "IDGroup": 501501,
  3502. "timelineName": "",
  3503. "cd": 1,
  3504. "SkillType": 2,
  3505. "level": 10,
  3506. "effectValue": [
  3507. 30.0
  3508. ],
  3509. "intensifierIndex": [
  3510. 1
  3511. ],
  3512. "addPropertyType": [
  3513. 102
  3514. ],
  3515. "addPropertyValue": [
  3516. 10.0
  3517. ],
  3518. "PromoteLan": 723,
  3519. "PromoteLanPara": [
  3520. 10.0
  3521. ]
  3522. },
  3523. {
  3524. "ID": 810011,
  3525. "PieceID": null,
  3526. "power": 100.0,
  3527. "name": 702,
  3528. "dec": 712,
  3529. "attribute": 1,
  3530. "icon": "",
  3531. "scriptName": "S2001",
  3532. "IDGroup": 81001,
  3533. "timelineName": "gf_mozhan_timeline_TD",
  3534. "cd": 1,
  3535. "SkillType": 1,
  3536. "level": 1,
  3537. "effectValue": [
  3538. 100.0
  3539. ],
  3540. "intensifierIndex": [
  3541. 0
  3542. ],
  3543. "PromoteLan": null
  3544. },
  3545. {
  3546. "ID": 820011,
  3547. "PieceID": null,
  3548. "power": 100.0,
  3549. "name": 703,
  3550. "dec": 713,
  3551. "attribute": 2,
  3552. "icon": "",
  3553. "scriptName": "S2001",
  3554. "IDGroup": 82001,
  3555. "timelineName": "gf_mozhan_timeline_TD",
  3556. "cd": 1,
  3557. "SkillType": 1,
  3558. "level": 1,
  3559. "effectValue": [
  3560. 100.0
  3561. ],
  3562. "intensifierIndex": [
  3563. 0
  3564. ],
  3565. "PromoteLan": null
  3566. },
  3567. {
  3568. "ID": 830011,
  3569. "PieceID": null,
  3570. "power": 100.0,
  3571. "name": 704,
  3572. "dec": 714,
  3573. "attribute": 8,
  3574. "icon": "",
  3575. "scriptName": "S2001",
  3576. "IDGroup": 83001,
  3577. "timelineName": "gf_mozhan_timeline_TD",
  3578. "cd": 1,
  3579. "SkillType": 1,
  3580. "level": 1,
  3581. "effectValue": [
  3582. 100.0
  3583. ],
  3584. "intensifierIndex": [
  3585. 0
  3586. ],
  3587. "PromoteLan": null
  3588. },
  3589. {
  3590. "ID": 840011,
  3591. "PieceID": null,
  3592. "power": 100.0,
  3593. "name": 705,
  3594. "dec": 715,
  3595. "attribute": 16,
  3596. "icon": "",
  3597. "scriptName": "S2001",
  3598. "IDGroup": 84001,
  3599. "timelineName": "gf_mozhan_timeline_TD",
  3600. "cd": 1,
  3601. "SkillType": 1,
  3602. "level": 1,
  3603. "effectValue": [
  3604. 100.0
  3605. ],
  3606. "intensifierIndex": [
  3607. 0
  3608. ],
  3609. "PromoteLan": null
  3610. },
  3611. {
  3612. "ID": 850011,
  3613. "PieceID": null,
  3614. "power": 100.0,
  3615. "name": 706,
  3616. "dec": 716,
  3617. "attribute": 1,
  3618. "icon": "",
  3619. "scriptName": "S2001",
  3620. "IDGroup": 85001,
  3621. "timelineName": "gf_mozhan_timeline_TD",
  3622. "cd": 1,
  3623. "SkillType": 1,
  3624. "level": 1,
  3625. "effectValue": [
  3626. 100.0
  3627. ],
  3628. "intensifierIndex": [
  3629. 0
  3630. ],
  3631. "PromoteLan": null
  3632. },
  3633. {
  3634. "ID": 890111,
  3635. "PieceID": null,
  3636. "power": 100.0,
  3637. "name": 707,
  3638. "dec": 717,
  3639. "attribute": 1,
  3640. "icon": "",
  3641. "scriptName": "S89011",
  3642. "IDGroup": 89011,
  3643. "timelineName": "BossSk1_timeline_TD",
  3644. "cd": 1,
  3645. "SkillType": 1,
  3646. "level": 1,
  3647. "effectValue": [
  3648. 50.0,
  3649. 5.0,
  3650. 1.0,
  3651. 10.0,
  3652. 1.0,
  3653. 1.0,
  3654. 20.0
  3655. ],
  3656. "intensifierIndex": [
  3657. 0
  3658. ],
  3659. "PromoteLan": null
  3660. },
  3661. {
  3662. "ID": 890121,
  3663. "PieceID": null,
  3664. "power": 100.0,
  3665. "name": 708,
  3666. "dec": 718,
  3667. "attribute": 1,
  3668. "icon": "",
  3669. "scriptName": "S89012",
  3670. "IDGroup": 89012,
  3671. "timelineName": "BossSk2_timeline_TD",
  3672. "cd": 2,
  3673. "SkillType": 1,
  3674. "level": 1,
  3675. "effectValue": [
  3676. 10.0
  3677. ],
  3678. "intensifierIndex": [
  3679. 0
  3680. ],
  3681. "PromoteLan": null
  3682. },
  3683. {
  3684. "ID": 890131,
  3685. "PieceID": null,
  3686. "power": 100.0,
  3687. "name": 709,
  3688. "dec": 719,
  3689. "attribute": 1,
  3690. "icon": "",
  3691. "scriptName": "S89013",
  3692. "IDGroup": 89013,
  3693. "timelineName": "",
  3694. "cd": 1,
  3695. "SkillType": 2,
  3696. "level": 1,
  3697. "effectValue": [
  3698. 1.0
  3699. ],
  3700. "intensifierIndex": [
  3701. 0
  3702. ],
  3703. "PromoteLan": null
  3704. },
  3705. {
  3706. "ID": 890141,
  3707. "PieceID": null,
  3708. "power": 100.0,
  3709. "name": 710,
  3710. "dec": 720,
  3711. "attribute": 1,
  3712. "icon": "",
  3713. "scriptName": "S89014",
  3714. "IDGroup": 89014,
  3715. "timelineName": "BossSk4_timeline_TD",
  3716. "cd": 1,
  3717. "SkillType": 1,
  3718. "level": 1,
  3719. "effectValue": [
  3720. 100.0
  3721. ],
  3722. "intensifierIndex": [
  3723. 0
  3724. ],
  3725. "PromoteLan": null
  3726. },
  3727. {
  3728. "ID": 890151,
  3729. "PieceID": null,
  3730. "power": 100.0,
  3731. "name": 711,
  3732. "dec": 721,
  3733. "attribute": 1,
  3734. "icon": "",
  3735. "scriptName": "S89015",
  3736. "IDGroup": 89015,
  3737. "timelineName": "BossSk4_timeline_TD",
  3738. "cd": 1,
  3739. "SkillType": 1,
  3740. "level": 1,
  3741. "effectValue": [
  3742. 100.0
  3743. ],
  3744. "intensifierIndex": [
  3745. 0
  3746. ],
  3747. "PromoteLan": null
  3748. },
  3749. {
  3750. "ID": 9010010,
  3751. "PieceID": 11001,
  3752. "power": 100.0,
  3753. "name": 536,
  3754. "dec": 546,
  3755. "attribute": 1,
  3756. "icon": "icon_skill_10003",
  3757. "scriptName": "S901001",
  3758. "IDGroup": 901001,
  3759. "timelineName": "",
  3760. "cd": 1,
  3761. "SkillType": 3,
  3762. "level": 1,
  3763. "effectValue": [
  3764. 100.0
  3765. ],
  3766. "intensifierIndex": [
  3767. 1
  3768. ],
  3769. "addPropertyType": [
  3770. 101
  3771. ],
  3772. "addPropertyValue": [
  3773. 1.0
  3774. ],
  3775. "PromoteLan": 722,
  3776. "PromoteLanPara": [
  3777. 1.0
  3778. ]
  3779. },
  3780. {
  3781. "ID": 9010011,
  3782. "PieceID": 11001,
  3783. "power": 110.0,
  3784. "name": 537,
  3785. "dec": 547,
  3786. "attribute": 1,
  3787. "icon": "icon_skill_10003",
  3788. "scriptName": "S901001",
  3789. "IDGroup": 901001,
  3790. "timelineName": "",
  3791. "cd": 1,
  3792. "SkillType": 3,
  3793. "level": 2,
  3794. "effectValue": [
  3795. 100.0
  3796. ],
  3797. "intensifierIndex": [
  3798. 1
  3799. ],
  3800. "addPropertyType": [
  3801. 101
  3802. ],
  3803. "addPropertyValue": [
  3804. 2.0
  3805. ],
  3806. "PromoteLan": 722,
  3807. "PromoteLanPara": [
  3808. 2.0
  3809. ]
  3810. },
  3811. {
  3812. "ID": 9010012,
  3813. "PieceID": 11001,
  3814. "power": 120.0,
  3815. "name": 538,
  3816. "dec": 548,
  3817. "attribute": 1,
  3818. "icon": "icon_skill_10003",
  3819. "scriptName": "S901001",
  3820. "IDGroup": 901001,
  3821. "timelineName": "",
  3822. "cd": 1,
  3823. "SkillType": 3,
  3824. "level": 3,
  3825. "effectValue": [
  3826. 100.0
  3827. ],
  3828. "intensifierIndex": [
  3829. 1
  3830. ],
  3831. "addPropertyType": [
  3832. 101
  3833. ],
  3834. "addPropertyValue": [
  3835. 3.0
  3836. ],
  3837. "PromoteLan": 722,
  3838. "PromoteLanPara": [
  3839. 3.0
  3840. ]
  3841. },
  3842. {
  3843. "ID": 9010013,
  3844. "PieceID": 11001,
  3845. "power": 130.0,
  3846. "name": 539,
  3847. "dec": 549,
  3848. "attribute": 1,
  3849. "icon": "icon_skill_10003",
  3850. "scriptName": "S901001",
  3851. "IDGroup": 901001,
  3852. "timelineName": "",
  3853. "cd": 1,
  3854. "SkillType": 3,
  3855. "level": 4,
  3856. "effectValue": [
  3857. 100.0
  3858. ],
  3859. "intensifierIndex": [
  3860. 1
  3861. ],
  3862. "addPropertyType": [
  3863. 101
  3864. ],
  3865. "addPropertyValue": [
  3866. 4.0
  3867. ],
  3868. "PromoteLan": 722,
  3869. "PromoteLanPara": [
  3870. 4.0
  3871. ]
  3872. },
  3873. {
  3874. "ID": 9010014,
  3875. "PieceID": 11001,
  3876. "power": 140.0,
  3877. "name": 540,
  3878. "dec": 550,
  3879. "attribute": 1,
  3880. "icon": "icon_skill_10003",
  3881. "scriptName": "S901001",
  3882. "IDGroup": 901001,
  3883. "timelineName": "",
  3884. "cd": 1,
  3885. "SkillType": 3,
  3886. "level": 5,
  3887. "effectValue": [
  3888. 100.0
  3889. ],
  3890. "intensifierIndex": [
  3891. 1
  3892. ],
  3893. "addPropertyType": [
  3894. 101
  3895. ],
  3896. "addPropertyValue": [
  3897. 5.0
  3898. ],
  3899. "PromoteLan": 722,
  3900. "PromoteLanPara": [
  3901. 5.0
  3902. ]
  3903. },
  3904. {
  3905. "ID": 9010015,
  3906. "PieceID": 11001,
  3907. "power": 150.0,
  3908. "name": 541,
  3909. "dec": 551,
  3910. "attribute": 1,
  3911. "icon": "icon_skill_10003",
  3912. "scriptName": "S901001",
  3913. "IDGroup": 901001,
  3914. "timelineName": "",
  3915. "cd": 1,
  3916. "SkillType": 3,
  3917. "level": 6,
  3918. "effectValue": [
  3919. 100.0
  3920. ],
  3921. "intensifierIndex": [
  3922. 1
  3923. ],
  3924. "addPropertyType": [
  3925. 101
  3926. ],
  3927. "addPropertyValue": [
  3928. 6.0
  3929. ],
  3930. "PromoteLan": 722,
  3931. "PromoteLanPara": [
  3932. 6.0
  3933. ]
  3934. },
  3935. {
  3936. "ID": 9010016,
  3937. "PieceID": 11001,
  3938. "power": 160.0,
  3939. "name": 542,
  3940. "dec": 552,
  3941. "attribute": 1,
  3942. "icon": "icon_skill_10003",
  3943. "scriptName": "S901001",
  3944. "IDGroup": 901001,
  3945. "timelineName": "",
  3946. "cd": 1,
  3947. "SkillType": 3,
  3948. "level": 7,
  3949. "effectValue": [
  3950. 100.0
  3951. ],
  3952. "intensifierIndex": [
  3953. 1
  3954. ],
  3955. "addPropertyType": [
  3956. 101
  3957. ],
  3958. "addPropertyValue": [
  3959. 7.0
  3960. ],
  3961. "PromoteLan": 722,
  3962. "PromoteLanPara": [
  3963. 7.0
  3964. ]
  3965. },
  3966. {
  3967. "ID": 9010017,
  3968. "PieceID": 11001,
  3969. "power": 170.0,
  3970. "name": 543,
  3971. "dec": 553,
  3972. "attribute": 1,
  3973. "icon": "icon_skill_10003",
  3974. "scriptName": "S901001",
  3975. "IDGroup": 901001,
  3976. "timelineName": "",
  3977. "cd": 1,
  3978. "SkillType": 3,
  3979. "level": 8,
  3980. "effectValue": [
  3981. 100.0
  3982. ],
  3983. "intensifierIndex": [
  3984. 1
  3985. ],
  3986. "addPropertyType": [
  3987. 101
  3988. ],
  3989. "addPropertyValue": [
  3990. 8.0
  3991. ],
  3992. "PromoteLan": 722,
  3993. "PromoteLanPara": [
  3994. 8.0
  3995. ]
  3996. },
  3997. {
  3998. "ID": 9010018,
  3999. "PieceID": 11001,
  4000. "power": 180.0,
  4001. "name": 544,
  4002. "dec": 554,
  4003. "attribute": 1,
  4004. "icon": "icon_skill_10003",
  4005. "scriptName": "S901001",
  4006. "IDGroup": 901001,
  4007. "timelineName": "",
  4008. "cd": 1,
  4009. "SkillType": 3,
  4010. "level": 9,
  4011. "effectValue": [
  4012. 100.0
  4013. ],
  4014. "intensifierIndex": [
  4015. 1
  4016. ],
  4017. "addPropertyType": [
  4018. 101
  4019. ],
  4020. "addPropertyValue": [
  4021. 9.0
  4022. ],
  4023. "PromoteLan": 722,
  4024. "PromoteLanPara": [
  4025. 9.0
  4026. ]
  4027. },
  4028. {
  4029. "ID": 9010019,
  4030. "PieceID": 11001,
  4031. "power": 190.0,
  4032. "name": 545,
  4033. "dec": 555,
  4034. "attribute": 1,
  4035. "icon": "icon_skill_10003",
  4036. "scriptName": "S901001",
  4037. "IDGroup": 901001,
  4038. "timelineName": "",
  4039. "cd": 1,
  4040. "SkillType": 3,
  4041. "level": 10,
  4042. "effectValue": [
  4043. 100.0
  4044. ],
  4045. "intensifierIndex": [
  4046. 1
  4047. ],
  4048. "addPropertyType": [
  4049. 101
  4050. ],
  4051. "addPropertyValue": [
  4052. 10.0
  4053. ],
  4054. "PromoteLan": 722,
  4055. "PromoteLanPara": [
  4056. 10.0
  4057. ]
  4058. },
  4059. {
  4060. "ID": 9010020,
  4061. "PieceID": 11002,
  4062. "power": 100.0,
  4063. "name": 556,
  4064. "dec": 566,
  4065. "attribute": 1,
  4066. "icon": "icon_skill_10003",
  4067. "scriptName": "S901002",
  4068. "IDGroup": 901002,
  4069. "timelineName": "",
  4070. "cd": 1,
  4071. "SkillType": 3,
  4072. "level": 1,
  4073. "effectValue": [
  4074. 50.0,
  4075. 9.0
  4076. ],
  4077. "intensifierIndex": [
  4078. 1
  4079. ],
  4080. "addPropertyType": [
  4081. 102
  4082. ],
  4083. "addPropertyValue": [
  4084. 1.0
  4085. ],
  4086. "PromoteLan": 723,
  4087. "PromoteLanPara": [
  4088. 1.0
  4089. ]
  4090. },
  4091. {
  4092. "ID": 9010021,
  4093. "PieceID": 11002,
  4094. "power": 110.0,
  4095. "name": 557,
  4096. "dec": 567,
  4097. "attribute": 1,
  4098. "icon": "icon_skill_10003",
  4099. "scriptName": "S901002",
  4100. "IDGroup": 901002,
  4101. "timelineName": "",
  4102. "cd": 1,
  4103. "SkillType": 3,
  4104. "level": 2,
  4105. "effectValue": [
  4106. 50.0,
  4107. 9.0
  4108. ],
  4109. "intensifierIndex": [
  4110. 1
  4111. ],
  4112. "addPropertyType": [
  4113. 102
  4114. ],
  4115. "addPropertyValue": [
  4116. 2.0
  4117. ],
  4118. "PromoteLan": 723,
  4119. "PromoteLanPara": [
  4120. 2.0
  4121. ]
  4122. },
  4123. {
  4124. "ID": 9010022,
  4125. "PieceID": 11002,
  4126. "power": 120.0,
  4127. "name": 558,
  4128. "dec": 568,
  4129. "attribute": 1,
  4130. "icon": "icon_skill_10003",
  4131. "scriptName": "S901002",
  4132. "IDGroup": 901002,
  4133. "timelineName": "",
  4134. "cd": 1,
  4135. "SkillType": 3,
  4136. "level": 3,
  4137. "effectValue": [
  4138. 50.0,
  4139. 9.0
  4140. ],
  4141. "intensifierIndex": [
  4142. 1
  4143. ],
  4144. "addPropertyType": [
  4145. 102
  4146. ],
  4147. "addPropertyValue": [
  4148. 3.0
  4149. ],
  4150. "PromoteLan": 723,
  4151. "PromoteLanPara": [
  4152. 3.0
  4153. ]
  4154. },
  4155. {
  4156. "ID": 9010023,
  4157. "PieceID": 11002,
  4158. "power": 130.0,
  4159. "name": 559,
  4160. "dec": 569,
  4161. "attribute": 1,
  4162. "icon": "icon_skill_10003",
  4163. "scriptName": "S901002",
  4164. "IDGroup": 901002,
  4165. "timelineName": "",
  4166. "cd": 1,
  4167. "SkillType": 3,
  4168. "level": 4,
  4169. "effectValue": [
  4170. 50.0,
  4171. 9.0
  4172. ],
  4173. "intensifierIndex": [
  4174. 1
  4175. ],
  4176. "addPropertyType": [
  4177. 102
  4178. ],
  4179. "addPropertyValue": [
  4180. 4.0
  4181. ],
  4182. "PromoteLan": 723,
  4183. "PromoteLanPara": [
  4184. 4.0
  4185. ]
  4186. },
  4187. {
  4188. "ID": 9010024,
  4189. "PieceID": 11002,
  4190. "power": 140.0,
  4191. "name": 560,
  4192. "dec": 570,
  4193. "attribute": 1,
  4194. "icon": "icon_skill_10003",
  4195. "scriptName": "S901002",
  4196. "IDGroup": 901002,
  4197. "timelineName": "",
  4198. "cd": 1,
  4199. "SkillType": 3,
  4200. "level": 5,
  4201. "effectValue": [
  4202. 50.0,
  4203. 9.0
  4204. ],
  4205. "intensifierIndex": [
  4206. 1
  4207. ],
  4208. "addPropertyType": [
  4209. 102
  4210. ],
  4211. "addPropertyValue": [
  4212. 5.0
  4213. ],
  4214. "PromoteLan": 723,
  4215. "PromoteLanPara": [
  4216. 5.0
  4217. ]
  4218. },
  4219. {
  4220. "ID": 9010025,
  4221. "PieceID": 11002,
  4222. "power": 150.0,
  4223. "name": 561,
  4224. "dec": 571,
  4225. "attribute": 1,
  4226. "icon": "icon_skill_10003",
  4227. "scriptName": "S901002",
  4228. "IDGroup": 901002,
  4229. "timelineName": "",
  4230. "cd": 1,
  4231. "SkillType": 3,
  4232. "level": 6,
  4233. "effectValue": [
  4234. 50.0,
  4235. 9.0
  4236. ],
  4237. "intensifierIndex": [
  4238. 1
  4239. ],
  4240. "addPropertyType": [
  4241. 102
  4242. ],
  4243. "addPropertyValue": [
  4244. 6.0
  4245. ],
  4246. "PromoteLan": 723,
  4247. "PromoteLanPara": [
  4248. 6.0
  4249. ]
  4250. },
  4251. {
  4252. "ID": 9010026,
  4253. "PieceID": 11002,
  4254. "power": 160.0,
  4255. "name": 562,
  4256. "dec": 572,
  4257. "attribute": 1,
  4258. "icon": "icon_skill_10003",
  4259. "scriptName": "S901002",
  4260. "IDGroup": 901002,
  4261. "timelineName": "",
  4262. "cd": 1,
  4263. "SkillType": 3,
  4264. "level": 7,
  4265. "effectValue": [
  4266. 50.0,
  4267. 9.0
  4268. ],
  4269. "intensifierIndex": [
  4270. 1
  4271. ],
  4272. "addPropertyType": [
  4273. 102
  4274. ],
  4275. "addPropertyValue": [
  4276. 7.0
  4277. ],
  4278. "PromoteLan": 723,
  4279. "PromoteLanPara": [
  4280. 7.0
  4281. ]
  4282. },
  4283. {
  4284. "ID": 9010027,
  4285. "PieceID": 11002,
  4286. "power": 170.0,
  4287. "name": 563,
  4288. "dec": 573,
  4289. "attribute": 1,
  4290. "icon": "icon_skill_10003",
  4291. "scriptName": "S901002",
  4292. "IDGroup": 901002,
  4293. "timelineName": "",
  4294. "cd": 1,
  4295. "SkillType": 3,
  4296. "level": 8,
  4297. "effectValue": [
  4298. 50.0,
  4299. 9.0
  4300. ],
  4301. "intensifierIndex": [
  4302. 1
  4303. ],
  4304. "addPropertyType": [
  4305. 102
  4306. ],
  4307. "addPropertyValue": [
  4308. 8.0
  4309. ],
  4310. "PromoteLan": 723,
  4311. "PromoteLanPara": [
  4312. 8.0
  4313. ]
  4314. },
  4315. {
  4316. "ID": 9010028,
  4317. "PieceID": 11002,
  4318. "power": 180.0,
  4319. "name": 564,
  4320. "dec": 574,
  4321. "attribute": 1,
  4322. "icon": "icon_skill_10003",
  4323. "scriptName": "S901002",
  4324. "IDGroup": 901002,
  4325. "timelineName": "",
  4326. "cd": 1,
  4327. "SkillType": 3,
  4328. "level": 9,
  4329. "effectValue": [
  4330. 50.0,
  4331. 9.0
  4332. ],
  4333. "intensifierIndex": [
  4334. 1
  4335. ],
  4336. "addPropertyType": [
  4337. 102
  4338. ],
  4339. "addPropertyValue": [
  4340. 9.0
  4341. ],
  4342. "PromoteLan": 723,
  4343. "PromoteLanPara": [
  4344. 9.0
  4345. ]
  4346. },
  4347. {
  4348. "ID": 9010029,
  4349. "PieceID": 11002,
  4350. "power": 190.0,
  4351. "name": 565,
  4352. "dec": 575,
  4353. "attribute": 1,
  4354. "icon": "icon_skill_10003",
  4355. "scriptName": "S901002",
  4356. "IDGroup": 901002,
  4357. "timelineName": "",
  4358. "cd": 1,
  4359. "SkillType": 3,
  4360. "level": 10,
  4361. "effectValue": [
  4362. 50.0,
  4363. 9.0
  4364. ],
  4365. "intensifierIndex": [
  4366. 1
  4367. ],
  4368. "addPropertyType": [
  4369. 102
  4370. ],
  4371. "addPropertyValue": [
  4372. 10.0
  4373. ],
  4374. "PromoteLan": 723,
  4375. "PromoteLanPara": [
  4376. 10.0
  4377. ]
  4378. },
  4379. {
  4380. "ID": 9010030,
  4381. "PieceID": 11003,
  4382. "power": 100.0,
  4383. "name": 576,
  4384. "dec": 586,
  4385. "attribute": 1,
  4386. "icon": "icon_skill_10003",
  4387. "scriptName": "S901003",
  4388. "IDGroup": 901003,
  4389. "timelineName": "",
  4390. "cd": 1,
  4391. "SkillType": 3,
  4392. "level": 1,
  4393. "effectValue": [
  4394. 30.0
  4395. ],
  4396. "intensifierIndex": [
  4397. 1
  4398. ],
  4399. "addPropertyType": [
  4400. 103
  4401. ],
  4402. "addPropertyValue": [
  4403. 1.0
  4404. ],
  4405. "PromoteLan": 724,
  4406. "PromoteLanPara": [
  4407. 1.0
  4408. ]
  4409. },
  4410. {
  4411. "ID": 9010031,
  4412. "PieceID": 11003,
  4413. "power": 110.0,
  4414. "name": 577,
  4415. "dec": 587,
  4416. "attribute": 1,
  4417. "icon": "icon_skill_10003",
  4418. "scriptName": "S901003",
  4419. "IDGroup": 901003,
  4420. "timelineName": "",
  4421. "cd": 1,
  4422. "SkillType": 3,
  4423. "level": 2,
  4424. "effectValue": [
  4425. 30.0
  4426. ],
  4427. "intensifierIndex": [
  4428. 1
  4429. ],
  4430. "addPropertyType": [
  4431. 103
  4432. ],
  4433. "addPropertyValue": [
  4434. 2.0
  4435. ],
  4436. "PromoteLan": 724,
  4437. "PromoteLanPara": [
  4438. 2.0
  4439. ]
  4440. },
  4441. {
  4442. "ID": 9010032,
  4443. "PieceID": 11003,
  4444. "power": 120.0,
  4445. "name": 578,
  4446. "dec": 588,
  4447. "attribute": 1,
  4448. "icon": "icon_skill_10003",
  4449. "scriptName": "S901003",
  4450. "IDGroup": 901003,
  4451. "timelineName": "",
  4452. "cd": 1,
  4453. "SkillType": 3,
  4454. "level": 3,
  4455. "effectValue": [
  4456. 30.0
  4457. ],
  4458. "intensifierIndex": [
  4459. 1
  4460. ],
  4461. "addPropertyType": [
  4462. 103
  4463. ],
  4464. "addPropertyValue": [
  4465. 3.0
  4466. ],
  4467. "PromoteLan": 724,
  4468. "PromoteLanPara": [
  4469. 3.0
  4470. ]
  4471. },
  4472. {
  4473. "ID": 9010033,
  4474. "PieceID": 11003,
  4475. "power": 130.0,
  4476. "name": 579,
  4477. "dec": 589,
  4478. "attribute": 1,
  4479. "icon": "icon_skill_10003",
  4480. "scriptName": "S901003",
  4481. "IDGroup": 901003,
  4482. "timelineName": "",
  4483. "cd": 1,
  4484. "SkillType": 3,
  4485. "level": 4,
  4486. "effectValue": [
  4487. 30.0
  4488. ],
  4489. "intensifierIndex": [
  4490. 1
  4491. ],
  4492. "addPropertyType": [
  4493. 103
  4494. ],
  4495. "addPropertyValue": [
  4496. 4.0
  4497. ],
  4498. "PromoteLan": 724,
  4499. "PromoteLanPara": [
  4500. 4.0
  4501. ]
  4502. },
  4503. {
  4504. "ID": 9010034,
  4505. "PieceID": 11003,
  4506. "power": 140.0,
  4507. "name": 580,
  4508. "dec": 590,
  4509. "attribute": 1,
  4510. "icon": "icon_skill_10003",
  4511. "scriptName": "S901003",
  4512. "IDGroup": 901003,
  4513. "timelineName": "",
  4514. "cd": 1,
  4515. "SkillType": 3,
  4516. "level": 5,
  4517. "effectValue": [
  4518. 30.0
  4519. ],
  4520. "intensifierIndex": [
  4521. 1
  4522. ],
  4523. "addPropertyType": [
  4524. 103
  4525. ],
  4526. "addPropertyValue": [
  4527. 5.0
  4528. ],
  4529. "PromoteLan": 724,
  4530. "PromoteLanPara": [
  4531. 5.0
  4532. ]
  4533. },
  4534. {
  4535. "ID": 9010035,
  4536. "PieceID": 11003,
  4537. "power": 150.0,
  4538. "name": 581,
  4539. "dec": 591,
  4540. "attribute": 1,
  4541. "icon": "icon_skill_10003",
  4542. "scriptName": "S901003",
  4543. "IDGroup": 901003,
  4544. "timelineName": "",
  4545. "cd": 1,
  4546. "SkillType": 3,
  4547. "level": 6,
  4548. "effectValue": [
  4549. 30.0
  4550. ],
  4551. "intensifierIndex": [
  4552. 1
  4553. ],
  4554. "addPropertyType": [
  4555. 103
  4556. ],
  4557. "addPropertyValue": [
  4558. 6.0
  4559. ],
  4560. "PromoteLan": 724,
  4561. "PromoteLanPara": [
  4562. 6.0
  4563. ]
  4564. },
  4565. {
  4566. "ID": 9010036,
  4567. "PieceID": 11003,
  4568. "power": 160.0,
  4569. "name": 582,
  4570. "dec": 592,
  4571. "attribute": 1,
  4572. "icon": "icon_skill_10003",
  4573. "scriptName": "S901003",
  4574. "IDGroup": 901003,
  4575. "timelineName": "",
  4576. "cd": 1,
  4577. "SkillType": 3,
  4578. "level": 7,
  4579. "effectValue": [
  4580. 30.0
  4581. ],
  4582. "intensifierIndex": [
  4583. 1
  4584. ],
  4585. "addPropertyType": [
  4586. 103
  4587. ],
  4588. "addPropertyValue": [
  4589. 7.0
  4590. ],
  4591. "PromoteLan": 724,
  4592. "PromoteLanPara": [
  4593. 7.0
  4594. ]
  4595. },
  4596. {
  4597. "ID": 9010037,
  4598. "PieceID": 11003,
  4599. "power": 170.0,
  4600. "name": 583,
  4601. "dec": 593,
  4602. "attribute": 1,
  4603. "icon": "icon_skill_10003",
  4604. "scriptName": "S901003",
  4605. "IDGroup": 901003,
  4606. "timelineName": "",
  4607. "cd": 1,
  4608. "SkillType": 3,
  4609. "level": 8,
  4610. "effectValue": [
  4611. 30.0
  4612. ],
  4613. "intensifierIndex": [
  4614. 1
  4615. ],
  4616. "addPropertyType": [
  4617. 103
  4618. ],
  4619. "addPropertyValue": [
  4620. 8.0
  4621. ],
  4622. "PromoteLan": 724,
  4623. "PromoteLanPara": [
  4624. 8.0
  4625. ]
  4626. },
  4627. {
  4628. "ID": 9010038,
  4629. "PieceID": 11003,
  4630. "power": 180.0,
  4631. "name": 584,
  4632. "dec": 594,
  4633. "attribute": 1,
  4634. "icon": "icon_skill_10003",
  4635. "scriptName": "S901003",
  4636. "IDGroup": 901003,
  4637. "timelineName": "",
  4638. "cd": 1,
  4639. "SkillType": 3,
  4640. "level": 9,
  4641. "effectValue": [
  4642. 30.0
  4643. ],
  4644. "intensifierIndex": [
  4645. 1
  4646. ],
  4647. "addPropertyType": [
  4648. 103
  4649. ],
  4650. "addPropertyValue": [
  4651. 9.0
  4652. ],
  4653. "PromoteLan": 724,
  4654. "PromoteLanPara": [
  4655. 9.0
  4656. ]
  4657. },
  4658. {
  4659. "ID": 9010039,
  4660. "PieceID": 11003,
  4661. "power": 190.0,
  4662. "name": 585,
  4663. "dec": 595,
  4664. "attribute": 1,
  4665. "icon": "icon_skill_10003",
  4666. "scriptName": "S901003",
  4667. "IDGroup": 901003,
  4668. "timelineName": "",
  4669. "cd": 1,
  4670. "SkillType": 3,
  4671. "level": 10,
  4672. "effectValue": [
  4673. 30.0
  4674. ],
  4675. "intensifierIndex": [
  4676. 1
  4677. ],
  4678. "addPropertyType": [
  4679. 103
  4680. ],
  4681. "addPropertyValue": [
  4682. 10.0
  4683. ],
  4684. "PromoteLan": 724,
  4685. "PromoteLanPara": [
  4686. 10.0
  4687. ]
  4688. },
  4689. {
  4690. "ID": 9010040,
  4691. "PieceID": 11004,
  4692. "power": 100.0,
  4693. "name": 596,
  4694. "dec": 606,
  4695. "attribute": 1,
  4696. "icon": "icon_skill_10003",
  4697. "scriptName": "S901004",
  4698. "IDGroup": 901004,
  4699. "timelineName": "",
  4700. "cd": 1,
  4701. "SkillType": 3,
  4702. "level": 1,
  4703. "effectValue": [
  4704. 1.0,
  4705. 9.0
  4706. ],
  4707. "intensifierIndex": [
  4708. 2
  4709. ],
  4710. "addPropertyType": [
  4711. 101
  4712. ],
  4713. "addPropertyValue": [
  4714. 1.0
  4715. ],
  4716. "PromoteLan": 722,
  4717. "PromoteLanPara": [
  4718. 1.0
  4719. ]
  4720. },
  4721. {
  4722. "ID": 9010041,
  4723. "PieceID": 11004,
  4724. "power": 110.0,
  4725. "name": 597,
  4726. "dec": 607,
  4727. "attribute": 1,
  4728. "icon": "icon_skill_10003",
  4729. "scriptName": "S901004",
  4730. "IDGroup": 901004,
  4731. "timelineName": "",
  4732. "cd": 1,
  4733. "SkillType": 3,
  4734. "level": 2,
  4735. "effectValue": [
  4736. 1.0,
  4737. 9.0
  4738. ],
  4739. "intensifierIndex": [
  4740. 2
  4741. ],
  4742. "addPropertyType": [
  4743. 101
  4744. ],
  4745. "addPropertyValue": [
  4746. 2.0
  4747. ],
  4748. "PromoteLan": 722,
  4749. "PromoteLanPara": [
  4750. 2.0
  4751. ]
  4752. },
  4753. {
  4754. "ID": 9010042,
  4755. "PieceID": 11004,
  4756. "power": 120.0,
  4757. "name": 598,
  4758. "dec": 608,
  4759. "attribute": 1,
  4760. "icon": "icon_skill_10003",
  4761. "scriptName": "S901004",
  4762. "IDGroup": 901004,
  4763. "timelineName": "",
  4764. "cd": 1,
  4765. "SkillType": 3,
  4766. "level": 3,
  4767. "effectValue": [
  4768. 1.0,
  4769. 9.0
  4770. ],
  4771. "intensifierIndex": [
  4772. 2
  4773. ],
  4774. "addPropertyType": [
  4775. 101
  4776. ],
  4777. "addPropertyValue": [
  4778. 3.0
  4779. ],
  4780. "PromoteLan": 722,
  4781. "PromoteLanPara": [
  4782. 3.0
  4783. ]
  4784. },
  4785. {
  4786. "ID": 9010043,
  4787. "PieceID": 11004,
  4788. "power": 130.0,
  4789. "name": 599,
  4790. "dec": 609,
  4791. "attribute": 1,
  4792. "icon": "icon_skill_10003",
  4793. "scriptName": "S901004",
  4794. "IDGroup": 901004,
  4795. "timelineName": "",
  4796. "cd": 1,
  4797. "SkillType": 3,
  4798. "level": 4,
  4799. "effectValue": [
  4800. 1.0,
  4801. 9.0
  4802. ],
  4803. "intensifierIndex": [
  4804. 2
  4805. ],
  4806. "addPropertyType": [
  4807. 101
  4808. ],
  4809. "addPropertyValue": [
  4810. 4.0
  4811. ],
  4812. "PromoteLan": 722,
  4813. "PromoteLanPara": [
  4814. 4.0
  4815. ]
  4816. },
  4817. {
  4818. "ID": 9010044,
  4819. "PieceID": 11004,
  4820. "power": 140.0,
  4821. "name": 600,
  4822. "dec": 610,
  4823. "attribute": 1,
  4824. "icon": "icon_skill_10003",
  4825. "scriptName": "S901004",
  4826. "IDGroup": 901004,
  4827. "timelineName": "",
  4828. "cd": 1,
  4829. "SkillType": 3,
  4830. "level": 5,
  4831. "effectValue": [
  4832. 1.0,
  4833. 9.0
  4834. ],
  4835. "intensifierIndex": [
  4836. 2
  4837. ],
  4838. "addPropertyType": [
  4839. 101
  4840. ],
  4841. "addPropertyValue": [
  4842. 5.0
  4843. ],
  4844. "PromoteLan": 722,
  4845. "PromoteLanPara": [
  4846. 5.0
  4847. ]
  4848. },
  4849. {
  4850. "ID": 9010045,
  4851. "PieceID": 11004,
  4852. "power": 150.0,
  4853. "name": 601,
  4854. "dec": 611,
  4855. "attribute": 1,
  4856. "icon": "icon_skill_10003",
  4857. "scriptName": "S901004",
  4858. "IDGroup": 901004,
  4859. "timelineName": "",
  4860. "cd": 1,
  4861. "SkillType": 3,
  4862. "level": 6,
  4863. "effectValue": [
  4864. 1.0,
  4865. 9.0
  4866. ],
  4867. "intensifierIndex": [
  4868. 2
  4869. ],
  4870. "addPropertyType": [
  4871. 101
  4872. ],
  4873. "addPropertyValue": [
  4874. 6.0
  4875. ],
  4876. "PromoteLan": 722,
  4877. "PromoteLanPara": [
  4878. 6.0
  4879. ]
  4880. },
  4881. {
  4882. "ID": 9010046,
  4883. "PieceID": 11004,
  4884. "power": 160.0,
  4885. "name": 602,
  4886. "dec": 612,
  4887. "attribute": 1,
  4888. "icon": "icon_skill_10003",
  4889. "scriptName": "S901004",
  4890. "IDGroup": 901004,
  4891. "timelineName": "",
  4892. "cd": 1,
  4893. "SkillType": 3,
  4894. "level": 7,
  4895. "effectValue": [
  4896. 1.0,
  4897. 9.0
  4898. ],
  4899. "intensifierIndex": [
  4900. 2
  4901. ],
  4902. "addPropertyType": [
  4903. 101
  4904. ],
  4905. "addPropertyValue": [
  4906. 7.0
  4907. ],
  4908. "PromoteLan": 722,
  4909. "PromoteLanPara": [
  4910. 7.0
  4911. ]
  4912. },
  4913. {
  4914. "ID": 9010047,
  4915. "PieceID": 11004,
  4916. "power": 170.0,
  4917. "name": 603,
  4918. "dec": 613,
  4919. "attribute": 1,
  4920. "icon": "icon_skill_10003",
  4921. "scriptName": "S901004",
  4922. "IDGroup": 901004,
  4923. "timelineName": "",
  4924. "cd": 1,
  4925. "SkillType": 3,
  4926. "level": 8,
  4927. "effectValue": [
  4928. 1.0,
  4929. 9.0
  4930. ],
  4931. "intensifierIndex": [
  4932. 2
  4933. ],
  4934. "addPropertyType": [
  4935. 101
  4936. ],
  4937. "addPropertyValue": [
  4938. 8.0
  4939. ],
  4940. "PromoteLan": 722,
  4941. "PromoteLanPara": [
  4942. 8.0
  4943. ]
  4944. },
  4945. {
  4946. "ID": 9010048,
  4947. "PieceID": 11004,
  4948. "power": 180.0,
  4949. "name": 604,
  4950. "dec": 614,
  4951. "attribute": 1,
  4952. "icon": "icon_skill_10003",
  4953. "scriptName": "S901004",
  4954. "IDGroup": 901004,
  4955. "timelineName": "",
  4956. "cd": 1,
  4957. "SkillType": 3,
  4958. "level": 9,
  4959. "effectValue": [
  4960. 1.0,
  4961. 9.0
  4962. ],
  4963. "intensifierIndex": [
  4964. 2
  4965. ],
  4966. "addPropertyType": [
  4967. 101
  4968. ],
  4969. "addPropertyValue": [
  4970. 9.0
  4971. ],
  4972. "PromoteLan": 722,
  4973. "PromoteLanPara": [
  4974. 9.0
  4975. ]
  4976. },
  4977. {
  4978. "ID": 9010049,
  4979. "PieceID": 11004,
  4980. "power": 190.0,
  4981. "name": 605,
  4982. "dec": 615,
  4983. "attribute": 1,
  4984. "icon": "icon_skill_10003",
  4985. "scriptName": "S901004",
  4986. "IDGroup": 901004,
  4987. "timelineName": "",
  4988. "cd": 1,
  4989. "SkillType": 3,
  4990. "level": 10,
  4991. "effectValue": [
  4992. 1.0,
  4993. 9.0
  4994. ],
  4995. "intensifierIndex": [
  4996. 2
  4997. ],
  4998. "addPropertyType": [
  4999. 101
  5000. ],
  5001. "addPropertyValue": [
  5002. 10.0
  5003. ],
  5004. "PromoteLan": 722,
  5005. "PromoteLanPara": [
  5006. 10.0
  5007. ]
  5008. },
  5009. {
  5010. "ID": 9010050,
  5011. "PieceID": 11005,
  5012. "power": 100.0,
  5013. "name": 616,
  5014. "dec": 626,
  5015. "attribute": 1,
  5016. "icon": "icon_skill_10003",
  5017. "scriptName": "S901005",
  5018. "IDGroup": 901005,
  5019. "timelineName": "",
  5020. "cd": 1,
  5021. "SkillType": 3,
  5022. "level": 1,
  5023. "effectValue": [
  5024. 9.0
  5025. ],
  5026. "intensifierIndex": [
  5027. 1
  5028. ],
  5029. "addPropertyType": [
  5030. 102
  5031. ],
  5032. "addPropertyValue": [
  5033. 1.0
  5034. ],
  5035. "PromoteLan": 723,
  5036. "PromoteLanPara": [
  5037. 1.0
  5038. ]
  5039. },
  5040. {
  5041. "ID": 9010051,
  5042. "PieceID": 11005,
  5043. "power": 110.0,
  5044. "name": 617,
  5045. "dec": 627,
  5046. "attribute": 1,
  5047. "icon": "icon_skill_10003",
  5048. "scriptName": "S901005",
  5049. "IDGroup": 901005,
  5050. "timelineName": "",
  5051. "cd": 1,
  5052. "SkillType": 3,
  5053. "level": 2,
  5054. "effectValue": [
  5055. 9.0
  5056. ],
  5057. "intensifierIndex": [
  5058. 1
  5059. ],
  5060. "addPropertyType": [
  5061. 102
  5062. ],
  5063. "addPropertyValue": [
  5064. 2.0
  5065. ],
  5066. "PromoteLan": 723,
  5067. "PromoteLanPara": [
  5068. 2.0
  5069. ]
  5070. },
  5071. {
  5072. "ID": 9010052,
  5073. "PieceID": 11005,
  5074. "power": 120.0,
  5075. "name": 618,
  5076. "dec": 628,
  5077. "attribute": 1,
  5078. "icon": "icon_skill_10003",
  5079. "scriptName": "S901005",
  5080. "IDGroup": 901005,
  5081. "timelineName": "",
  5082. "cd": 1,
  5083. "SkillType": 3,
  5084. "level": 3,
  5085. "effectValue": [
  5086. 9.0
  5087. ],
  5088. "intensifierIndex": [
  5089. 1
  5090. ],
  5091. "addPropertyType": [
  5092. 102
  5093. ],
  5094. "addPropertyValue": [
  5095. 3.0
  5096. ],
  5097. "PromoteLan": 723,
  5098. "PromoteLanPara": [
  5099. 3.0
  5100. ]
  5101. },
  5102. {
  5103. "ID": 9010053,
  5104. "PieceID": 11005,
  5105. "power": 130.0,
  5106. "name": 619,
  5107. "dec": 629,
  5108. "attribute": 1,
  5109. "icon": "icon_skill_10003",
  5110. "scriptName": "S901005",
  5111. "IDGroup": 901005,
  5112. "timelineName": "",
  5113. "cd": 1,
  5114. "SkillType": 3,
  5115. "level": 4,
  5116. "effectValue": [
  5117. 9.0
  5118. ],
  5119. "intensifierIndex": [
  5120. 1
  5121. ],
  5122. "addPropertyType": [
  5123. 102
  5124. ],
  5125. "addPropertyValue": [
  5126. 4.0
  5127. ],
  5128. "PromoteLan": 723,
  5129. "PromoteLanPara": [
  5130. 4.0
  5131. ]
  5132. },
  5133. {
  5134. "ID": 9010054,
  5135. "PieceID": 11005,
  5136. "power": 140.0,
  5137. "name": 620,
  5138. "dec": 630,
  5139. "attribute": 1,
  5140. "icon": "icon_skill_10003",
  5141. "scriptName": "S901005",
  5142. "IDGroup": 901005,
  5143. "timelineName": "",
  5144. "cd": 1,
  5145. "SkillType": 3,
  5146. "level": 5,
  5147. "effectValue": [
  5148. 9.0
  5149. ],
  5150. "intensifierIndex": [
  5151. 1
  5152. ],
  5153. "addPropertyType": [
  5154. 102
  5155. ],
  5156. "addPropertyValue": [
  5157. 5.0
  5158. ],
  5159. "PromoteLan": 723,
  5160. "PromoteLanPara": [
  5161. 5.0
  5162. ]
  5163. },
  5164. {
  5165. "ID": 9010055,
  5166. "PieceID": 11005,
  5167. "power": 150.0,
  5168. "name": 621,
  5169. "dec": 631,
  5170. "attribute": 1,
  5171. "icon": "icon_skill_10003",
  5172. "scriptName": "S901005",
  5173. "IDGroup": 901005,
  5174. "timelineName": "",
  5175. "cd": 1,
  5176. "SkillType": 3,
  5177. "level": 6,
  5178. "effectValue": [
  5179. 9.0
  5180. ],
  5181. "intensifierIndex": [
  5182. 1
  5183. ],
  5184. "addPropertyType": [
  5185. 102
  5186. ],
  5187. "addPropertyValue": [
  5188. 6.0
  5189. ],
  5190. "PromoteLan": 723,
  5191. "PromoteLanPara": [
  5192. 6.0
  5193. ]
  5194. },
  5195. {
  5196. "ID": 9010056,
  5197. "PieceID": 11005,
  5198. "power": 160.0,
  5199. "name": 622,
  5200. "dec": 632,
  5201. "attribute": 1,
  5202. "icon": "icon_skill_10003",
  5203. "scriptName": "S901005",
  5204. "IDGroup": 901005,
  5205. "timelineName": "",
  5206. "cd": 1,
  5207. "SkillType": 3,
  5208. "level": 7,
  5209. "effectValue": [
  5210. 9.0
  5211. ],
  5212. "intensifierIndex": [
  5213. 1
  5214. ],
  5215. "addPropertyType": [
  5216. 102
  5217. ],
  5218. "addPropertyValue": [
  5219. 7.0
  5220. ],
  5221. "PromoteLan": 723,
  5222. "PromoteLanPara": [
  5223. 7.0
  5224. ]
  5225. },
  5226. {
  5227. "ID": 9010057,
  5228. "PieceID": 11005,
  5229. "power": 170.0,
  5230. "name": 623,
  5231. "dec": 633,
  5232. "attribute": 1,
  5233. "icon": "icon_skill_10003",
  5234. "scriptName": "S901005",
  5235. "IDGroup": 901005,
  5236. "timelineName": "",
  5237. "cd": 1,
  5238. "SkillType": 3,
  5239. "level": 8,
  5240. "effectValue": [
  5241. 9.0
  5242. ],
  5243. "intensifierIndex": [
  5244. 1
  5245. ],
  5246. "addPropertyType": [
  5247. 102
  5248. ],
  5249. "addPropertyValue": [
  5250. 8.0
  5251. ],
  5252. "PromoteLan": 723,
  5253. "PromoteLanPara": [
  5254. 8.0
  5255. ]
  5256. },
  5257. {
  5258. "ID": 9010058,
  5259. "PieceID": 11005,
  5260. "power": 180.0,
  5261. "name": 624,
  5262. "dec": 634,
  5263. "attribute": 1,
  5264. "icon": "icon_skill_10003",
  5265. "scriptName": "S901005",
  5266. "IDGroup": 901005,
  5267. "timelineName": "",
  5268. "cd": 1,
  5269. "SkillType": 3,
  5270. "level": 9,
  5271. "effectValue": [
  5272. 9.0
  5273. ],
  5274. "intensifierIndex": [
  5275. 1
  5276. ],
  5277. "addPropertyType": [
  5278. 102
  5279. ],
  5280. "addPropertyValue": [
  5281. 9.0
  5282. ],
  5283. "PromoteLan": 723,
  5284. "PromoteLanPara": [
  5285. 9.0
  5286. ]
  5287. },
  5288. {
  5289. "ID": 9010059,
  5290. "PieceID": 11005,
  5291. "power": 190.0,
  5292. "name": 625,
  5293. "dec": 635,
  5294. "attribute": 1,
  5295. "icon": "icon_skill_10003",
  5296. "scriptName": "S901005",
  5297. "IDGroup": 901005,
  5298. "timelineName": "",
  5299. "cd": 1,
  5300. "SkillType": 3,
  5301. "level": 10,
  5302. "effectValue": [
  5303. 9.0
  5304. ],
  5305. "intensifierIndex": [
  5306. 1
  5307. ],
  5308. "addPropertyType": [
  5309. 102
  5310. ],
  5311. "addPropertyValue": [
  5312. 10.0
  5313. ],
  5314. "PromoteLan": 723,
  5315. "PromoteLanPara": [
  5316. 10.0
  5317. ]
  5318. },
  5319. {
  5320. "ID": 9010060,
  5321. "PieceID": 11006,
  5322. "power": 100.0,
  5323. "name": 636,
  5324. "dec": 646,
  5325. "attribute": 1,
  5326. "icon": "icon_skill_10003",
  5327. "scriptName": "S901006",
  5328. "IDGroup": 901006,
  5329. "timelineName": "",
  5330. "cd": 1,
  5331. "SkillType": 3,
  5332. "level": 1,
  5333. "effectValue": [
  5334. 100.0,
  5335. 5.0
  5336. ],
  5337. "intensifierIndex": [
  5338. 1
  5339. ],
  5340. "addPropertyType": [
  5341. 103
  5342. ],
  5343. "addPropertyValue": [
  5344. 1.0
  5345. ],
  5346. "PromoteLan": 724,
  5347. "PromoteLanPara": [
  5348. 1.0
  5349. ]
  5350. },
  5351. {
  5352. "ID": 9010061,
  5353. "PieceID": 11006,
  5354. "power": 110.0,
  5355. "name": 637,
  5356. "dec": 647,
  5357. "attribute": 1,
  5358. "icon": "icon_skill_10003",
  5359. "scriptName": "S901006",
  5360. "IDGroup": 901006,
  5361. "timelineName": "",
  5362. "cd": 1,
  5363. "SkillType": 3,
  5364. "level": 2,
  5365. "effectValue": [
  5366. 100.0,
  5367. 5.0
  5368. ],
  5369. "intensifierIndex": [
  5370. 1
  5371. ],
  5372. "addPropertyType": [
  5373. 103
  5374. ],
  5375. "addPropertyValue": [
  5376. 2.0
  5377. ],
  5378. "PromoteLan": 724,
  5379. "PromoteLanPara": [
  5380. 2.0
  5381. ]
  5382. },
  5383. {
  5384. "ID": 9010062,
  5385. "PieceID": 11006,
  5386. "power": 120.0,
  5387. "name": 638,
  5388. "dec": 648,
  5389. "attribute": 1,
  5390. "icon": "icon_skill_10003",
  5391. "scriptName": "S901006",
  5392. "IDGroup": 901006,
  5393. "timelineName": "",
  5394. "cd": 1,
  5395. "SkillType": 3,
  5396. "level": 3,
  5397. "effectValue": [
  5398. 100.0,
  5399. 5.0
  5400. ],
  5401. "intensifierIndex": [
  5402. 1
  5403. ],
  5404. "addPropertyType": [
  5405. 103
  5406. ],
  5407. "addPropertyValue": [
  5408. 3.0
  5409. ],
  5410. "PromoteLan": 724,
  5411. "PromoteLanPara": [
  5412. 3.0
  5413. ]
  5414. },
  5415. {
  5416. "ID": 9010063,
  5417. "PieceID": 11006,
  5418. "power": 130.0,
  5419. "name": 639,
  5420. "dec": 649,
  5421. "attribute": 1,
  5422. "icon": "icon_skill_10003",
  5423. "scriptName": "S901006",
  5424. "IDGroup": 901006,
  5425. "timelineName": "",
  5426. "cd": 1,
  5427. "SkillType": 3,
  5428. "level": 4,
  5429. "effectValue": [
  5430. 100.0,
  5431. 5.0
  5432. ],
  5433. "intensifierIndex": [
  5434. 1
  5435. ],
  5436. "addPropertyType": [
  5437. 103
  5438. ],
  5439. "addPropertyValue": [
  5440. 4.0
  5441. ],
  5442. "PromoteLan": 724,
  5443. "PromoteLanPara": [
  5444. 4.0
  5445. ]
  5446. },
  5447. {
  5448. "ID": 9010064,
  5449. "PieceID": 11006,
  5450. "power": 140.0,
  5451. "name": 640,
  5452. "dec": 650,
  5453. "attribute": 1,
  5454. "icon": "icon_skill_10003",
  5455. "scriptName": "S901006",
  5456. "IDGroup": 901006,
  5457. "timelineName": "",
  5458. "cd": 1,
  5459. "SkillType": 3,
  5460. "level": 5,
  5461. "effectValue": [
  5462. 100.0,
  5463. 5.0
  5464. ],
  5465. "intensifierIndex": [
  5466. 1
  5467. ],
  5468. "addPropertyType": [
  5469. 103
  5470. ],
  5471. "addPropertyValue": [
  5472. 5.0
  5473. ],
  5474. "PromoteLan": 724,
  5475. "PromoteLanPara": [
  5476. 5.0
  5477. ]
  5478. },
  5479. {
  5480. "ID": 9010065,
  5481. "PieceID": 11006,
  5482. "power": 150.0,
  5483. "name": 641,
  5484. "dec": 651,
  5485. "attribute": 1,
  5486. "icon": "icon_skill_10003",
  5487. "scriptName": "S901006",
  5488. "IDGroup": 901006,
  5489. "timelineName": "",
  5490. "cd": 1,
  5491. "SkillType": 3,
  5492. "level": 6,
  5493. "effectValue": [
  5494. 100.0,
  5495. 5.0
  5496. ],
  5497. "intensifierIndex": [
  5498. 1
  5499. ],
  5500. "addPropertyType": [
  5501. 103
  5502. ],
  5503. "addPropertyValue": [
  5504. 6.0
  5505. ],
  5506. "PromoteLan": 724,
  5507. "PromoteLanPara": [
  5508. 6.0
  5509. ]
  5510. },
  5511. {
  5512. "ID": 9010066,
  5513. "PieceID": 11006,
  5514. "power": 160.0,
  5515. "name": 642,
  5516. "dec": 652,
  5517. "attribute": 1,
  5518. "icon": "icon_skill_10003",
  5519. "scriptName": "S901006",
  5520. "IDGroup": 901006,
  5521. "timelineName": "",
  5522. "cd": 1,
  5523. "SkillType": 3,
  5524. "level": 7,
  5525. "effectValue": [
  5526. 100.0,
  5527. 5.0
  5528. ],
  5529. "intensifierIndex": [
  5530. 1
  5531. ],
  5532. "addPropertyType": [
  5533. 103
  5534. ],
  5535. "addPropertyValue": [
  5536. 7.0
  5537. ],
  5538. "PromoteLan": 724,
  5539. "PromoteLanPara": [
  5540. 7.0
  5541. ]
  5542. },
  5543. {
  5544. "ID": 9010067,
  5545. "PieceID": 11006,
  5546. "power": 170.0,
  5547. "name": 643,
  5548. "dec": 653,
  5549. "attribute": 1,
  5550. "icon": "icon_skill_10003",
  5551. "scriptName": "S901006",
  5552. "IDGroup": 901006,
  5553. "timelineName": "",
  5554. "cd": 1,
  5555. "SkillType": 3,
  5556. "level": 8,
  5557. "effectValue": [
  5558. 100.0,
  5559. 5.0
  5560. ],
  5561. "intensifierIndex": [
  5562. 1
  5563. ],
  5564. "addPropertyType": [
  5565. 103
  5566. ],
  5567. "addPropertyValue": [
  5568. 8.0
  5569. ],
  5570. "PromoteLan": 724,
  5571. "PromoteLanPara": [
  5572. 8.0
  5573. ]
  5574. },
  5575. {
  5576. "ID": 9010068,
  5577. "PieceID": 11006,
  5578. "power": 180.0,
  5579. "name": 644,
  5580. "dec": 654,
  5581. "attribute": 1,
  5582. "icon": "icon_skill_10003",
  5583. "scriptName": "S901006",
  5584. "IDGroup": 901006,
  5585. "timelineName": "",
  5586. "cd": 1,
  5587. "SkillType": 3,
  5588. "level": 9,
  5589. "effectValue": [
  5590. 100.0,
  5591. 5.0
  5592. ],
  5593. "intensifierIndex": [
  5594. 1
  5595. ],
  5596. "addPropertyType": [
  5597. 103
  5598. ],
  5599. "addPropertyValue": [
  5600. 9.0
  5601. ],
  5602. "PromoteLan": 724,
  5603. "PromoteLanPara": [
  5604. 9.0
  5605. ]
  5606. },
  5607. {
  5608. "ID": 9010069,
  5609. "PieceID": 11006,
  5610. "power": 190.0,
  5611. "name": 645,
  5612. "dec": 655,
  5613. "attribute": 1,
  5614. "icon": "icon_skill_10003",
  5615. "scriptName": "S901006",
  5616. "IDGroup": 901006,
  5617. "timelineName": "",
  5618. "cd": 1,
  5619. "SkillType": 3,
  5620. "level": 10,
  5621. "effectValue": [
  5622. 100.0,
  5623. 5.0
  5624. ],
  5625. "intensifierIndex": [
  5626. 1
  5627. ],
  5628. "addPropertyType": [
  5629. 103
  5630. ],
  5631. "addPropertyValue": [
  5632. 10.0
  5633. ],
  5634. "PromoteLan": 724,
  5635. "PromoteLanPara": [
  5636. 10.0
  5637. ]
  5638. },
  5639. {
  5640. "ID": 9010070,
  5641. "PieceID": 11007,
  5642. "power": 100.0,
  5643. "name": 656,
  5644. "dec": 666,
  5645. "attribute": 1,
  5646. "icon": "icon_skill_10003",
  5647. "scriptName": "S901007",
  5648. "IDGroup": 901007,
  5649. "timelineName": "",
  5650. "cd": 1,
  5651. "SkillType": 3,
  5652. "level": 1,
  5653. "effectValue": [
  5654. 3.0,
  5655. 6.0
  5656. ],
  5657. "intensifierIndex": [
  5658. 2
  5659. ],
  5660. "addPropertyType": [
  5661. 101
  5662. ],
  5663. "addPropertyValue": [
  5664. 1.0
  5665. ],
  5666. "PromoteLan": 722,
  5667. "PromoteLanPara": [
  5668. 1.0
  5669. ]
  5670. },
  5671. {
  5672. "ID": 9010071,
  5673. "PieceID": 11007,
  5674. "power": 110.0,
  5675. "name": 657,
  5676. "dec": 667,
  5677. "attribute": 1,
  5678. "icon": "icon_skill_10003",
  5679. "scriptName": "S901007",
  5680. "IDGroup": 901007,
  5681. "timelineName": "",
  5682. "cd": 1,
  5683. "SkillType": 3,
  5684. "level": 2,
  5685. "effectValue": [
  5686. 3.0,
  5687. 6.0
  5688. ],
  5689. "intensifierIndex": [
  5690. 2
  5691. ],
  5692. "addPropertyType": [
  5693. 101
  5694. ],
  5695. "addPropertyValue": [
  5696. 2.0
  5697. ],
  5698. "PromoteLan": 722,
  5699. "PromoteLanPara": [
  5700. 2.0
  5701. ]
  5702. },
  5703. {
  5704. "ID": 9010072,
  5705. "PieceID": 11007,
  5706. "power": 120.0,
  5707. "name": 658,
  5708. "dec": 668,
  5709. "attribute": 1,
  5710. "icon": "icon_skill_10003",
  5711. "scriptName": "S901007",
  5712. "IDGroup": 901007,
  5713. "timelineName": "",
  5714. "cd": 1,
  5715. "SkillType": 3,
  5716. "level": 3,
  5717. "effectValue": [
  5718. 3.0,
  5719. 6.0
  5720. ],
  5721. "intensifierIndex": [
  5722. 2
  5723. ],
  5724. "addPropertyType": [
  5725. 101
  5726. ],
  5727. "addPropertyValue": [
  5728. 3.0
  5729. ],
  5730. "PromoteLan": 722,
  5731. "PromoteLanPara": [
  5732. 3.0
  5733. ]
  5734. },
  5735. {
  5736. "ID": 9010073,
  5737. "PieceID": 11007,
  5738. "power": 130.0,
  5739. "name": 659,
  5740. "dec": 669,
  5741. "attribute": 1,
  5742. "icon": "icon_skill_10003",
  5743. "scriptName": "S901007",
  5744. "IDGroup": 901007,
  5745. "timelineName": "",
  5746. "cd": 1,
  5747. "SkillType": 3,
  5748. "level": 4,
  5749. "effectValue": [
  5750. 3.0,
  5751. 6.0
  5752. ],
  5753. "intensifierIndex": [
  5754. 2
  5755. ],
  5756. "addPropertyType": [
  5757. 101
  5758. ],
  5759. "addPropertyValue": [
  5760. 4.0
  5761. ],
  5762. "PromoteLan": 722,
  5763. "PromoteLanPara": [
  5764. 4.0
  5765. ]
  5766. },
  5767. {
  5768. "ID": 9010074,
  5769. "PieceID": 11007,
  5770. "power": 140.0,
  5771. "name": 660,
  5772. "dec": 670,
  5773. "attribute": 1,
  5774. "icon": "icon_skill_10003",
  5775. "scriptName": "S901007",
  5776. "IDGroup": 901007,
  5777. "timelineName": "",
  5778. "cd": 1,
  5779. "SkillType": 3,
  5780. "level": 5,
  5781. "effectValue": [
  5782. 3.0,
  5783. 6.0
  5784. ],
  5785. "intensifierIndex": [
  5786. 2
  5787. ],
  5788. "addPropertyType": [
  5789. 101
  5790. ],
  5791. "addPropertyValue": [
  5792. 5.0
  5793. ],
  5794. "PromoteLan": 722,
  5795. "PromoteLanPara": [
  5796. 5.0
  5797. ]
  5798. },
  5799. {
  5800. "ID": 9010075,
  5801. "PieceID": 11007,
  5802. "power": 150.0,
  5803. "name": 661,
  5804. "dec": 671,
  5805. "attribute": 1,
  5806. "icon": "icon_skill_10003",
  5807. "scriptName": "S901007",
  5808. "IDGroup": 901007,
  5809. "timelineName": "",
  5810. "cd": 1,
  5811. "SkillType": 3,
  5812. "level": 6,
  5813. "effectValue": [
  5814. 3.0,
  5815. 6.0
  5816. ],
  5817. "intensifierIndex": [
  5818. 2
  5819. ],
  5820. "addPropertyType": [
  5821. 101
  5822. ],
  5823. "addPropertyValue": [
  5824. 6.0
  5825. ],
  5826. "PromoteLan": 722,
  5827. "PromoteLanPara": [
  5828. 6.0
  5829. ]
  5830. },
  5831. {
  5832. "ID": 9010076,
  5833. "PieceID": 11007,
  5834. "power": 160.0,
  5835. "name": 662,
  5836. "dec": 672,
  5837. "attribute": 1,
  5838. "icon": "icon_skill_10003",
  5839. "scriptName": "S901007",
  5840. "IDGroup": 901007,
  5841. "timelineName": "",
  5842. "cd": 1,
  5843. "SkillType": 3,
  5844. "level": 7,
  5845. "effectValue": [
  5846. 3.0,
  5847. 6.0
  5848. ],
  5849. "intensifierIndex": [
  5850. 2
  5851. ],
  5852. "addPropertyType": [
  5853. 101
  5854. ],
  5855. "addPropertyValue": [
  5856. 7.0
  5857. ],
  5858. "PromoteLan": 722,
  5859. "PromoteLanPara": [
  5860. 7.0
  5861. ]
  5862. },
  5863. {
  5864. "ID": 9010077,
  5865. "PieceID": 11007,
  5866. "power": 170.0,
  5867. "name": 663,
  5868. "dec": 673,
  5869. "attribute": 1,
  5870. "icon": "icon_skill_10003",
  5871. "scriptName": "S901007",
  5872. "IDGroup": 901007,
  5873. "timelineName": "",
  5874. "cd": 1,
  5875. "SkillType": 3,
  5876. "level": 8,
  5877. "effectValue": [
  5878. 3.0,
  5879. 6.0
  5880. ],
  5881. "intensifierIndex": [
  5882. 2
  5883. ],
  5884. "addPropertyType": [
  5885. 101
  5886. ],
  5887. "addPropertyValue": [
  5888. 8.0
  5889. ],
  5890. "PromoteLan": 722,
  5891. "PromoteLanPara": [
  5892. 8.0
  5893. ]
  5894. },
  5895. {
  5896. "ID": 9010078,
  5897. "PieceID": 11007,
  5898. "power": 180.0,
  5899. "name": 664,
  5900. "dec": 674,
  5901. "attribute": 1,
  5902. "icon": "icon_skill_10003",
  5903. "scriptName": "S901007",
  5904. "IDGroup": 901007,
  5905. "timelineName": "",
  5906. "cd": 1,
  5907. "SkillType": 3,
  5908. "level": 9,
  5909. "effectValue": [
  5910. 3.0,
  5911. 6.0
  5912. ],
  5913. "intensifierIndex": [
  5914. 2
  5915. ],
  5916. "addPropertyType": [
  5917. 101
  5918. ],
  5919. "addPropertyValue": [
  5920. 9.0
  5921. ],
  5922. "PromoteLan": 722,
  5923. "PromoteLanPara": [
  5924. 9.0
  5925. ]
  5926. },
  5927. {
  5928. "ID": 9010079,
  5929. "PieceID": 11007,
  5930. "power": 190.0,
  5931. "name": 665,
  5932. "dec": 675,
  5933. "attribute": 1,
  5934. "icon": "icon_skill_10003",
  5935. "scriptName": "S901007",
  5936. "IDGroup": 901007,
  5937. "timelineName": "",
  5938. "cd": 1,
  5939. "SkillType": 3,
  5940. "level": 10,
  5941. "effectValue": [
  5942. 3.0,
  5943. 6.0
  5944. ],
  5945. "intensifierIndex": [
  5946. 2
  5947. ],
  5948. "addPropertyType": [
  5949. 101
  5950. ],
  5951. "addPropertyValue": [
  5952. 10.0
  5953. ],
  5954. "PromoteLan": 722,
  5955. "PromoteLanPara": [
  5956. 10.0
  5957. ]
  5958. },
  5959. {
  5960. "ID": 9010080,
  5961. "PieceID": 11008,
  5962. "power": 100.0,
  5963. "name": 676,
  5964. "dec": 686,
  5965. "attribute": 1,
  5966. "icon": "icon_skill_10003",
  5967. "scriptName": "S901008",
  5968. "IDGroup": 901008,
  5969. "timelineName": "",
  5970. "cd": 1,
  5971. "SkillType": 3,
  5972. "level": 1,
  5973. "effectValue": [
  5974. 6.0,
  5975. 30.0
  5976. ],
  5977. "intensifierIndex": [
  5978. 1
  5979. ],
  5980. "addPropertyType": [
  5981. 102
  5982. ],
  5983. "addPropertyValue": [
  5984. 1.0
  5985. ],
  5986. "PromoteLan": 723,
  5987. "PromoteLanPara": [
  5988. 1.0
  5989. ]
  5990. },
  5991. {
  5992. "ID": 9010081,
  5993. "PieceID": 11008,
  5994. "power": 110.0,
  5995. "name": 677,
  5996. "dec": 687,
  5997. "attribute": 1,
  5998. "icon": "icon_skill_10003",
  5999. "scriptName": "S901008",
  6000. "IDGroup": 901008,
  6001. "timelineName": "",
  6002. "cd": 1,
  6003. "SkillType": 3,
  6004. "level": 2,
  6005. "effectValue": [
  6006. 6.0,
  6007. 30.0
  6008. ],
  6009. "intensifierIndex": [
  6010. 1
  6011. ],
  6012. "addPropertyType": [
  6013. 102
  6014. ],
  6015. "addPropertyValue": [
  6016. 2.0
  6017. ],
  6018. "PromoteLan": 723,
  6019. "PromoteLanPara": [
  6020. 2.0
  6021. ]
  6022. },
  6023. {
  6024. "ID": 9010082,
  6025. "PieceID": 11008,
  6026. "power": 120.0,
  6027. "name": 678,
  6028. "dec": 688,
  6029. "attribute": 1,
  6030. "icon": "icon_skill_10003",
  6031. "scriptName": "S901008",
  6032. "IDGroup": 901008,
  6033. "timelineName": "",
  6034. "cd": 1,
  6035. "SkillType": 3,
  6036. "level": 3,
  6037. "effectValue": [
  6038. 6.0,
  6039. 30.0
  6040. ],
  6041. "intensifierIndex": [
  6042. 1
  6043. ],
  6044. "addPropertyType": [
  6045. 102
  6046. ],
  6047. "addPropertyValue": [
  6048. 3.0
  6049. ],
  6050. "PromoteLan": 723,
  6051. "PromoteLanPara": [
  6052. 3.0
  6053. ]
  6054. },
  6055. {
  6056. "ID": 9010083,
  6057. "PieceID": 11008,
  6058. "power": 130.0,
  6059. "name": 679,
  6060. "dec": 689,
  6061. "attribute": 1,
  6062. "icon": "icon_skill_10003",
  6063. "scriptName": "S901008",
  6064. "IDGroup": 901008,
  6065. "timelineName": "",
  6066. "cd": 1,
  6067. "SkillType": 3,
  6068. "level": 4,
  6069. "effectValue": [
  6070. 6.0,
  6071. 30.0
  6072. ],
  6073. "intensifierIndex": [
  6074. 1
  6075. ],
  6076. "addPropertyType": [
  6077. 102
  6078. ],
  6079. "addPropertyValue": [
  6080. 4.0
  6081. ],
  6082. "PromoteLan": 723,
  6083. "PromoteLanPara": [
  6084. 4.0
  6085. ]
  6086. },
  6087. {
  6088. "ID": 9010084,
  6089. "PieceID": 11008,
  6090. "power": 140.0,
  6091. "name": 680,
  6092. "dec": 690,
  6093. "attribute": 1,
  6094. "icon": "icon_skill_10003",
  6095. "scriptName": "S901008",
  6096. "IDGroup": 901008,
  6097. "timelineName": "",
  6098. "cd": 1,
  6099. "SkillType": 3,
  6100. "level": 5,
  6101. "effectValue": [
  6102. 6.0,
  6103. 30.0
  6104. ],
  6105. "intensifierIndex": [
  6106. 1
  6107. ],
  6108. "addPropertyType": [
  6109. 102
  6110. ],
  6111. "addPropertyValue": [
  6112. 5.0
  6113. ],
  6114. "PromoteLan": 723,
  6115. "PromoteLanPara": [
  6116. 5.0
  6117. ]
  6118. },
  6119. {
  6120. "ID": 9010085,
  6121. "PieceID": 11008,
  6122. "power": 150.0,
  6123. "name": 681,
  6124. "dec": 691,
  6125. "attribute": 1,
  6126. "icon": "icon_skill_10003",
  6127. "scriptName": "S901008",
  6128. "IDGroup": 901008,
  6129. "timelineName": "",
  6130. "cd": 1,
  6131. "SkillType": 3,
  6132. "level": 6,
  6133. "effectValue": [
  6134. 6.0,
  6135. 30.0
  6136. ],
  6137. "intensifierIndex": [
  6138. 1
  6139. ],
  6140. "addPropertyType": [
  6141. 102
  6142. ],
  6143. "addPropertyValue": [
  6144. 6.0
  6145. ],
  6146. "PromoteLan": 723,
  6147. "PromoteLanPara": [
  6148. 6.0
  6149. ]
  6150. },
  6151. {
  6152. "ID": 9010086,
  6153. "PieceID": 11008,
  6154. "power": 160.0,
  6155. "name": 682,
  6156. "dec": 692,
  6157. "attribute": 1,
  6158. "icon": "icon_skill_10003",
  6159. "scriptName": "S901008",
  6160. "IDGroup": 901008,
  6161. "timelineName": "",
  6162. "cd": 1,
  6163. "SkillType": 3,
  6164. "level": 7,
  6165. "effectValue": [
  6166. 6.0,
  6167. 30.0
  6168. ],
  6169. "intensifierIndex": [
  6170. 1
  6171. ],
  6172. "addPropertyType": [
  6173. 102
  6174. ],
  6175. "addPropertyValue": [
  6176. 7.0
  6177. ],
  6178. "PromoteLan": 723,
  6179. "PromoteLanPara": [
  6180. 7.0
  6181. ]
  6182. },
  6183. {
  6184. "ID": 9010087,
  6185. "PieceID": 11008,
  6186. "power": 170.0,
  6187. "name": 683,
  6188. "dec": 693,
  6189. "attribute": 1,
  6190. "icon": "icon_skill_10003",
  6191. "scriptName": "S901008",
  6192. "IDGroup": 901008,
  6193. "timelineName": "",
  6194. "cd": 1,
  6195. "SkillType": 3,
  6196. "level": 8,
  6197. "effectValue": [
  6198. 6.0,
  6199. 30.0
  6200. ],
  6201. "intensifierIndex": [
  6202. 1
  6203. ],
  6204. "addPropertyType": [
  6205. 102
  6206. ],
  6207. "addPropertyValue": [
  6208. 8.0
  6209. ],
  6210. "PromoteLan": 723,
  6211. "PromoteLanPara": [
  6212. 8.0
  6213. ]
  6214. },
  6215. {
  6216. "ID": 9010088,
  6217. "PieceID": 11008,
  6218. "power": 180.0,
  6219. "name": 684,
  6220. "dec": 694,
  6221. "attribute": 1,
  6222. "icon": "icon_skill_10003",
  6223. "scriptName": "S901008",
  6224. "IDGroup": 901008,
  6225. "timelineName": "",
  6226. "cd": 1,
  6227. "SkillType": 3,
  6228. "level": 9,
  6229. "effectValue": [
  6230. 6.0,
  6231. 30.0
  6232. ],
  6233. "intensifierIndex": [
  6234. 1
  6235. ],
  6236. "addPropertyType": [
  6237. 102
  6238. ],
  6239. "addPropertyValue": [
  6240. 9.0
  6241. ],
  6242. "PromoteLan": 723,
  6243. "PromoteLanPara": [
  6244. 9.0
  6245. ]
  6246. },
  6247. {
  6248. "ID": 9010089,
  6249. "PieceID": 11008,
  6250. "power": 190.0,
  6251. "name": 685,
  6252. "dec": 695,
  6253. "attribute": 1,
  6254. "icon": "icon_skill_10003",
  6255. "scriptName": "S901008",
  6256. "IDGroup": 901008,
  6257. "timelineName": "",
  6258. "cd": 1,
  6259. "SkillType": 3,
  6260. "level": 10,
  6261. "effectValue": [
  6262. 6.0,
  6263. 30.0
  6264. ],
  6265. "intensifierIndex": [
  6266. 1
  6267. ],
  6268. "addPropertyType": [
  6269. 102
  6270. ],
  6271. "addPropertyValue": [
  6272. 10.0
  6273. ],
  6274. "PromoteLan": 723,
  6275. "PromoteLanPara": [
  6276. 10.0
  6277. ]
  6278. },
  6279. {
  6280. "ID": 601011,
  6281. "PieceID": null,
  6282. "power": 100.0,
  6283. "name": 696,
  6284. "dec": 699,
  6285. "attribute": 1,
  6286. "icon": "icon_skill_10003",
  6287. "scriptName": "DS60101",
  6288. "IDGroup": 60101,
  6289. "timelineName": "",
  6290. "cd": 1,
  6291. "SkillType": 4,
  6292. "level": 1,
  6293. "effectValue": [
  6294. 10.0,
  6295. 100.0,
  6296. 50.0,
  6297. 50.0,
  6298. 9.0
  6299. ],
  6300. "intensifierIndex": [
  6301. 0
  6302. ],
  6303. "PromoteLan": null
  6304. },
  6305. {
  6306. "ID": 601021,
  6307. "PieceID": null,
  6308. "power": 100.0,
  6309. "name": 697,
  6310. "dec": 700,
  6311. "attribute": 1,
  6312. "icon": "icon_skill_10003",
  6313. "scriptName": "DS60102",
  6314. "IDGroup": 60102,
  6315. "timelineName": "",
  6316. "cd": 1,
  6317. "SkillType": 4,
  6318. "level": 1,
  6319. "effectValue": [
  6320. 3.0,
  6321. 3.0,
  6322. 30.0,
  6323. 5.0,
  6324. 1.0,
  6325. 3.0,
  6326. 30.0,
  6327. 3.0,
  6328. 30.0
  6329. ],
  6330. "intensifierIndex": [
  6331. 0
  6332. ],
  6333. "PromoteLan": null
  6334. },
  6335. {
  6336. "ID": 601031,
  6337. "PieceID": null,
  6338. "power": 100.0,
  6339. "name": 698,
  6340. "dec": 701,
  6341. "attribute": 1,
  6342. "icon": "icon_skill_10003",
  6343. "scriptName": "DS60103",
  6344. "IDGroup": 60103,
  6345. "timelineName": "",
  6346. "cd": 1,
  6347. "SkillType": 4,
  6348. "level": 1,
  6349. "effectValue": [
  6350. 30.0,
  6351. 1.0
  6352. ],
  6353. "intensifierIndex": [
  6354. 0
  6355. ],
  6356. "PromoteLan": null
  6357. }
  6358. ]
  6359. }