SkillConfig.json 266 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436143714381439144014411442144314441445144614471448144914501451145214531454145514561457145814591460146114621463146414651466146714681469147014711472147314741475147614771478147914801481148214831484148514861487148814891490149114921493149414951496149714981499150015011502150315041505150615071508150915101511151215131514151515161517151815191520152115221523152415251526152715281529153015311532153315341535153615371538153915401541154215431544154515461547154815491550155115521553155415551556155715581559156015611562156315641565156615671568156915701571157215731574157515761577157815791580158115821583158415851586158715881589159015911592159315941595159615971598159916001601160216031604160516061607160816091610161116121613161416151616161716181619162016211622162316241625162616271628162916301631163216331634163516361637163816391640164116421643164416451646164716481649165016511652165316541655165616571658165916601661166216631664166516661667166816691670167116721673167416751676167716781679168016811682168316841685168616871688168916901691169216931694169516961697169816991700170117021703170417051706170717081709171017111712171317141715171617171718171917201721172217231724172517261727172817291730173117321733173417351736173717381739174017411742174317441745174617471748174917501751175217531754175517561757175817591760176117621763176417651766176717681769177017711772177317741775177617771778177917801781178217831784178517861787178817891790179117921793179417951796179717981799180018011802180318041805180618071808180918101811181218131814181518161817181818191820182118221823182418251826182718281829183018311832183318341835183618371838183918401841184218431844184518461847184818491850185118521853185418551856185718581859186018611862186318641865186618671868186918701871187218731874187518761877187818791880188118821883188418851886188718881889189018911892189318941895189618971898189919001901190219031904190519061907190819091910191119121913191419151916191719181919192019211922192319241925192619271928192919301931193219331934193519361937193819391940194119421943194419451946194719481949195019511952195319541955195619571958195919601961196219631964196519661967196819691970197119721973197419751976197719781979198019811982198319841985198619871988198919901991199219931994199519961997199819992000200120022003200420052006200720082009201020112012201320142015201620172018201920202021202220232024202520262027202820292030203120322033203420352036203720382039204020412042204320442045204620472048204920502051205220532054205520562057205820592060206120622063206420652066206720682069207020712072207320742075207620772078207920802081208220832084208520862087208820892090209120922093209420952096209720982099210021012102210321042105210621072108210921102111211221132114211521162117211821192120212121222123212421252126212721282129213021312132213321342135213621372138213921402141214221432144214521462147214821492150215121522153215421552156215721582159216021612162216321642165216621672168216921702171217221732174217521762177217821792180218121822183218421852186218721882189219021912192219321942195219621972198219922002201220222032204220522062207220822092210221122122213221422152216221722182219222022212222222322242225222622272228222922302231223222332234223522362237223822392240224122422243224422452246224722482249225022512252225322542255225622572258225922602261226222632264226522662267226822692270227122722273227422752276227722782279228022812282228322842285228622872288228922902291229222932294229522962297229822992300230123022303230423052306230723082309231023112312231323142315231623172318231923202321232223232324232523262327232823292330233123322333233423352336233723382339234023412342234323442345234623472348234923502351235223532354235523562357235823592360236123622363236423652366236723682369237023712372237323742375237623772378237923802381238223832384238523862387238823892390239123922393239423952396239723982399240024012402240324042405240624072408240924102411241224132414241524162417241824192420242124222423242424252426242724282429243024312432243324342435243624372438243924402441244224432444244524462447244824492450245124522453245424552456245724582459246024612462246324642465246624672468246924702471247224732474247524762477247824792480248124822483248424852486248724882489249024912492249324942495249624972498249925002501250225032504250525062507250825092510251125122513251425152516251725182519252025212522252325242525252625272528252925302531253225332534253525362537253825392540254125422543254425452546254725482549255025512552255325542555255625572558255925602561256225632564256525662567256825692570257125722573257425752576257725782579258025812582258325842585258625872588258925902591259225932594259525962597259825992600260126022603260426052606260726082609261026112612261326142615261626172618261926202621262226232624262526262627262826292630263126322633263426352636263726382639264026412642264326442645264626472648264926502651265226532654265526562657265826592660266126622663266426652666266726682669267026712672267326742675267626772678267926802681268226832684268526862687268826892690269126922693269426952696269726982699270027012702270327042705270627072708270927102711271227132714271527162717271827192720272127222723272427252726272727282729273027312732273327342735273627372738273927402741274227432744274527462747274827492750275127522753275427552756275727582759276027612762276327642765276627672768276927702771277227732774277527762777277827792780278127822783278427852786278727882789279027912792279327942795279627972798279928002801280228032804280528062807280828092810281128122813281428152816281728182819282028212822282328242825282628272828282928302831283228332834283528362837283828392840284128422843284428452846284728482849285028512852285328542855285628572858285928602861286228632864286528662867286828692870287128722873287428752876287728782879288028812882288328842885288628872888288928902891289228932894289528962897289828992900290129022903290429052906290729082909291029112912291329142915291629172918291929202921292229232924292529262927292829292930293129322933293429352936293729382939294029412942294329442945294629472948294929502951295229532954295529562957295829592960296129622963296429652966296729682969297029712972297329742975297629772978297929802981298229832984298529862987298829892990299129922993299429952996299729982999300030013002300330043005300630073008300930103011301230133014301530163017301830193020302130223023302430253026302730283029303030313032303330343035303630373038303930403041304230433044304530463047304830493050305130523053305430553056305730583059306030613062306330643065306630673068306930703071307230733074307530763077307830793080308130823083308430853086308730883089309030913092309330943095309630973098309931003101310231033104310531063107310831093110311131123113311431153116311731183119312031213122312331243125312631273128312931303131313231333134313531363137313831393140314131423143314431453146314731483149315031513152315331543155315631573158315931603161316231633164316531663167316831693170317131723173317431753176317731783179318031813182318331843185318631873188318931903191319231933194319531963197319831993200320132023203320432053206320732083209321032113212321332143215321632173218321932203221322232233224322532263227322832293230323132323233323432353236323732383239324032413242324332443245324632473248324932503251325232533254325532563257325832593260326132623263326432653266326732683269327032713272327332743275327632773278327932803281328232833284328532863287328832893290329132923293329432953296329732983299330033013302330333043305330633073308330933103311331233133314331533163317331833193320332133223323332433253326332733283329333033313332333333343335333633373338333933403341334233433344334533463347334833493350335133523353335433553356335733583359336033613362336333643365336633673368336933703371337233733374337533763377337833793380338133823383338433853386338733883389339033913392339333943395339633973398339934003401340234033404340534063407340834093410341134123413341434153416341734183419342034213422342334243425342634273428342934303431343234333434343534363437343834393440344134423443344434453446344734483449345034513452345334543455345634573458345934603461346234633464346534663467346834693470347134723473347434753476347734783479348034813482348334843485348634873488348934903491349234933494349534963497349834993500350135023503350435053506350735083509351035113512351335143515351635173518351935203521352235233524352535263527352835293530353135323533353435353536353735383539354035413542354335443545354635473548354935503551355235533554355535563557355835593560356135623563356435653566356735683569357035713572357335743575357635773578357935803581358235833584358535863587358835893590359135923593359435953596359735983599360036013602360336043605360636073608360936103611361236133614361536163617361836193620362136223623362436253626362736283629363036313632363336343635363636373638363936403641364236433644364536463647364836493650365136523653365436553656365736583659366036613662366336643665366636673668366936703671367236733674367536763677367836793680368136823683368436853686368736883689369036913692369336943695369636973698369937003701370237033704370537063707370837093710371137123713371437153716371737183719372037213722372337243725372637273728372937303731373237333734373537363737373837393740374137423743374437453746374737483749375037513752375337543755375637573758375937603761376237633764376537663767376837693770377137723773377437753776377737783779378037813782378337843785378637873788378937903791379237933794379537963797379837993800380138023803380438053806380738083809381038113812381338143815381638173818381938203821382238233824382538263827382838293830383138323833383438353836383738383839384038413842384338443845384638473848384938503851385238533854385538563857385838593860386138623863386438653866386738683869387038713872387338743875387638773878387938803881388238833884388538863887388838893890389138923893389438953896389738983899390039013902390339043905390639073908390939103911391239133914391539163917391839193920392139223923392439253926392739283929393039313932393339343935393639373938393939403941394239433944394539463947394839493950395139523953395439553956395739583959396039613962396339643965396639673968396939703971397239733974397539763977397839793980398139823983398439853986398739883989399039913992399339943995399639973998399940004001400240034004400540064007400840094010401140124013401440154016401740184019402040214022402340244025402640274028402940304031403240334034403540364037403840394040404140424043404440454046404740484049405040514052405340544055405640574058405940604061406240634064406540664067406840694070407140724073407440754076407740784079408040814082408340844085408640874088408940904091409240934094409540964097409840994100410141024103410441054106410741084109411041114112411341144115411641174118411941204121412241234124412541264127412841294130413141324133413441354136413741384139414041414142414341444145414641474148414941504151415241534154415541564157415841594160416141624163416441654166416741684169417041714172417341744175417641774178417941804181418241834184418541864187418841894190419141924193419441954196419741984199420042014202420342044205420642074208420942104211421242134214421542164217421842194220422142224223422442254226422742284229423042314232423342344235423642374238423942404241424242434244424542464247424842494250425142524253425442554256425742584259426042614262426342644265426642674268426942704271427242734274427542764277427842794280428142824283428442854286428742884289429042914292429342944295429642974298429943004301430243034304430543064307430843094310431143124313431443154316431743184319432043214322432343244325432643274328432943304331433243334334433543364337433843394340434143424343434443454346434743484349435043514352435343544355435643574358435943604361436243634364436543664367436843694370437143724373437443754376437743784379438043814382438343844385438643874388438943904391439243934394439543964397439843994400440144024403440444054406440744084409441044114412441344144415441644174418441944204421442244234424442544264427442844294430443144324433443444354436443744384439444044414442444344444445444644474448444944504451445244534454445544564457445844594460446144624463446444654466446744684469447044714472447344744475447644774478447944804481448244834484448544864487448844894490449144924493449444954496449744984499450045014502450345044505450645074508450945104511451245134514451545164517451845194520452145224523452445254526452745284529453045314532453345344535453645374538453945404541454245434544454545464547454845494550455145524553455445554556455745584559456045614562456345644565456645674568456945704571457245734574457545764577457845794580458145824583458445854586458745884589459045914592459345944595459645974598459946004601460246034604460546064607460846094610461146124613461446154616461746184619462046214622462346244625462646274628462946304631463246334634463546364637463846394640464146424643464446454646464746484649465046514652465346544655465646574658465946604661466246634664466546664667466846694670467146724673467446754676467746784679468046814682468346844685468646874688468946904691469246934694469546964697469846994700470147024703470447054706470747084709471047114712471347144715471647174718471947204721472247234724472547264727472847294730473147324733473447354736473747384739474047414742474347444745474647474748474947504751475247534754475547564757475847594760476147624763476447654766476747684769477047714772477347744775477647774778477947804781478247834784478547864787478847894790479147924793479447954796479747984799480048014802480348044805480648074808480948104811481248134814481548164817481848194820482148224823482448254826482748284829483048314832483348344835483648374838483948404841484248434844484548464847484848494850485148524853485448554856485748584859486048614862486348644865486648674868486948704871487248734874487548764877487848794880488148824883488448854886488748884889489048914892489348944895489648974898489949004901490249034904490549064907490849094910491149124913491449154916491749184919492049214922492349244925492649274928492949304931493249334934493549364937493849394940494149424943494449454946494749484949495049514952495349544955495649574958495949604961496249634964496549664967496849694970497149724973497449754976497749784979498049814982498349844985498649874988498949904991499249934994499549964997499849995000500150025003500450055006500750085009501050115012501350145015501650175018501950205021502250235024502550265027502850295030503150325033503450355036503750385039504050415042504350445045504650475048504950505051505250535054505550565057505850595060506150625063506450655066506750685069507050715072507350745075507650775078507950805081508250835084508550865087508850895090509150925093509450955096509750985099510051015102510351045105510651075108510951105111511251135114511551165117511851195120512151225123512451255126512751285129513051315132513351345135513651375138513951405141514251435144514551465147514851495150515151525153515451555156515751585159516051615162516351645165516651675168516951705171517251735174517551765177517851795180518151825183518451855186518751885189519051915192519351945195519651975198519952005201520252035204520552065207520852095210521152125213521452155216521752185219522052215222522352245225522652275228522952305231523252335234523552365237523852395240524152425243524452455246524752485249525052515252525352545255525652575258525952605261526252635264526552665267526852695270527152725273527452755276527752785279528052815282528352845285528652875288528952905291529252935294529552965297529852995300530153025303530453055306530753085309531053115312531353145315531653175318531953205321532253235324532553265327532853295330533153325333533453355336533753385339534053415342534353445345534653475348534953505351535253535354535553565357535853595360536153625363536453655366536753685369537053715372537353745375537653775378537953805381538253835384538553865387538853895390539153925393539453955396539753985399540054015402540354045405540654075408540954105411541254135414541554165417541854195420542154225423542454255426542754285429543054315432543354345435543654375438543954405441544254435444544554465447544854495450545154525453545454555456545754585459546054615462546354645465546654675468546954705471547254735474547554765477547854795480548154825483548454855486548754885489549054915492549354945495549654975498549955005501550255035504550555065507550855095510551155125513551455155516551755185519552055215522552355245525552655275528552955305531553255335534553555365537553855395540554155425543554455455546554755485549555055515552555355545555555655575558555955605561556255635564556555665567556855695570557155725573557455755576557755785579558055815582558355845585558655875588558955905591559255935594559555965597559855995600560156025603560456055606560756085609561056115612561356145615561656175618561956205621562256235624562556265627562856295630563156325633563456355636563756385639564056415642564356445645564656475648564956505651565256535654565556565657565856595660566156625663566456655666566756685669567056715672567356745675567656775678567956805681568256835684568556865687568856895690569156925693569456955696569756985699570057015702570357045705570657075708570957105711571257135714571557165717571857195720572157225723572457255726572757285729573057315732573357345735573657375738573957405741574257435744574557465747574857495750575157525753575457555756575757585759576057615762576357645765576657675768576957705771577257735774577557765777577857795780578157825783578457855786578757885789579057915792579357945795579657975798579958005801580258035804580558065807580858095810581158125813581458155816581758185819582058215822582358245825582658275828582958305831583258335834583558365837583858395840584158425843584458455846584758485849585058515852585358545855585658575858585958605861586258635864586558665867586858695870587158725873587458755876587758785879588058815882588358845885588658875888588958905891589258935894589558965897589858995900590159025903590459055906590759085909591059115912591359145915591659175918591959205921592259235924592559265927592859295930593159325933593459355936593759385939594059415942594359445945594659475948594959505951595259535954595559565957595859595960596159625963596459655966596759685969597059715972597359745975597659775978597959805981598259835984598559865987598859895990599159925993599459955996599759985999600060016002600360046005600660076008600960106011601260136014601560166017601860196020602160226023602460256026602760286029603060316032603360346035603660376038603960406041604260436044604560466047604860496050605160526053605460556056605760586059606060616062606360646065606660676068606960706071607260736074607560766077607860796080608160826083608460856086608760886089609060916092609360946095609660976098609961006101610261036104610561066107610861096110611161126113611461156116611761186119612061216122612361246125612661276128612961306131613261336134613561366137613861396140614161426143614461456146614761486149615061516152615361546155615661576158615961606161616261636164616561666167616861696170617161726173617461756176617761786179618061816182618361846185618661876188618961906191619261936194619561966197619861996200620162026203620462056206620762086209621062116212621362146215621662176218621962206221622262236224622562266227622862296230623162326233623462356236623762386239624062416242624362446245624662476248624962506251625262536254625562566257625862596260626162626263626462656266626762686269627062716272627362746275627662776278627962806281628262836284628562866287628862896290629162926293629462956296629762986299630063016302630363046305630663076308630963106311631263136314631563166317631863196320632163226323632463256326632763286329633063316332633363346335633663376338633963406341634263436344634563466347634863496350635163526353635463556356635763586359636063616362636363646365636663676368636963706371637263736374637563766377637863796380638163826383638463856386638763886389639063916392639363946395639663976398639964006401640264036404640564066407640864096410641164126413641464156416641764186419642064216422642364246425642664276428642964306431643264336434643564366437643864396440644164426443644464456446644764486449645064516452645364546455645664576458645964606461646264636464646564666467646864696470647164726473647464756476647764786479648064816482648364846485648664876488648964906491649264936494649564966497649864996500650165026503650465056506650765086509651065116512651365146515651665176518651965206521652265236524652565266527652865296530653165326533653465356536653765386539654065416542654365446545654665476548654965506551655265536554655565566557655865596560656165626563656465656566656765686569657065716572657365746575657665776578657965806581658265836584658565866587658865896590659165926593659465956596659765986599660066016602660366046605660666076608660966106611661266136614661566166617661866196620662166226623662466256626662766286629663066316632663366346635663666376638663966406641664266436644664566466647664866496650665166526653665466556656665766586659666066616662666366646665666666676668666966706671667266736674667566766677667866796680668166826683668466856686668766886689669066916692669366946695669666976698669967006701670267036704670567066707670867096710671167126713671467156716671767186719672067216722672367246725672667276728672967306731673267336734673567366737673867396740674167426743674467456746674767486749675067516752675367546755675667576758675967606761676267636764676567666767676867696770677167726773677467756776677767786779678067816782678367846785678667876788678967906791679267936794679567966797679867996800680168026803680468056806680768086809681068116812681368146815681668176818681968206821682268236824682568266827682868296830683168326833683468356836683768386839684068416842684368446845684668476848684968506851685268536854685568566857685868596860686168626863686468656866686768686869687068716872687368746875687668776878687968806881688268836884688568866887688868896890689168926893689468956896689768986899690069016902690369046905690669076908690969106911691269136914691569166917691869196920692169226923692469256926692769286929693069316932693369346935693669376938693969406941694269436944694569466947694869496950695169526953695469556956695769586959696069616962696369646965696669676968696969706971697269736974697569766977697869796980698169826983698469856986698769886989699069916992699369946995699669976998699970007001700270037004700570067007700870097010701170127013701470157016701770187019702070217022702370247025702670277028702970307031703270337034703570367037703870397040704170427043704470457046704770487049705070517052705370547055705670577058705970607061706270637064706570667067706870697070707170727073707470757076707770787079708070817082708370847085708670877088708970907091709270937094709570967097709870997100710171027103710471057106710771087109711071117112711371147115711671177118711971207121712271237124712571267127712871297130713171327133713471357136713771387139714071417142714371447145714671477148714971507151715271537154715571567157715871597160716171627163716471657166716771687169717071717172717371747175717671777178717971807181718271837184718571867187718871897190719171927193719471957196719771987199720072017202720372047205720672077208720972107211721272137214721572167217721872197220722172227223722472257226722772287229723072317232723372347235723672377238723972407241724272437244724572467247724872497250725172527253725472557256725772587259726072617262726372647265726672677268726972707271727272737274727572767277727872797280728172827283728472857286728772887289729072917292729372947295729672977298729973007301730273037304730573067307730873097310731173127313731473157316731773187319732073217322732373247325732673277328732973307331733273337334733573367337733873397340734173427343734473457346734773487349735073517352735373547355735673577358735973607361736273637364736573667367736873697370737173727373737473757376737773787379738073817382738373847385738673877388738973907391739273937394739573967397739873997400740174027403740474057406740774087409741074117412741374147415741674177418741974207421742274237424742574267427742874297430743174327433743474357436743774387439744074417442744374447445744674477448744974507451745274537454745574567457745874597460746174627463746474657466746774687469747074717472747374747475747674777478747974807481748274837484748574867487748874897490749174927493749474957496749774987499750075017502750375047505750675077508750975107511751275137514751575167517751875197520752175227523752475257526752775287529753075317532753375347535753675377538753975407541754275437544754575467547754875497550755175527553755475557556755775587559756075617562756375647565756675677568756975707571757275737574757575767577757875797580758175827583758475857586758775887589759075917592759375947595759675977598759976007601760276037604760576067607760876097610761176127613761476157616761776187619762076217622762376247625762676277628762976307631763276337634763576367637763876397640764176427643764476457646764776487649765076517652765376547655765676577658765976607661766276637664766576667667766876697670767176727673767476757676767776787679768076817682768376847685768676877688768976907691769276937694769576967697769876997700770177027703770477057706770777087709771077117712771377147715771677177718771977207721772277237724772577267727772877297730773177327733773477357736773777387739774077417742774377447745774677477748774977507751775277537754775577567757775877597760776177627763776477657766776777687769777077717772777377747775777677777778777977807781778277837784778577867787778877897790779177927793779477957796779777987799780078017802780378047805780678077808780978107811781278137814781578167817781878197820782178227823782478257826782778287829783078317832783378347835783678377838783978407841784278437844784578467847784878497850785178527853785478557856785778587859786078617862786378647865786678677868786978707871787278737874787578767877787878797880788178827883788478857886788778887889789078917892789378947895789678977898789979007901790279037904790579067907790879097910791179127913791479157916791779187919792079217922792379247925792679277928792979307931793279337934793579367937793879397940794179427943794479457946794779487949795079517952795379547955795679577958795979607961796279637964796579667967796879697970797179727973797479757976797779787979798079817982798379847985798679877988798979907991799279937994799579967997799879998000800180028003800480058006800780088009801080118012801380148015801680178018801980208021802280238024802580268027802880298030803180328033803480358036803780388039804080418042804380448045804680478048804980508051805280538054805580568057805880598060806180628063806480658066806780688069807080718072807380748075807680778078807980808081808280838084808580868087808880898090809180928093809480958096809780988099810081018102810381048105810681078108810981108111811281138114811581168117811881198120812181228123812481258126812781288129813081318132813381348135813681378138813981408141814281438144814581468147814881498150815181528153815481558156815781588159816081618162816381648165816681678168816981708171817281738174817581768177817881798180818181828183818481858186818781888189819081918192819381948195819681978198819982008201820282038204820582068207820882098210821182128213821482158216821782188219822082218222822382248225822682278228822982308231823282338234823582368237823882398240824182428243824482458246824782488249825082518252825382548255825682578258825982608261826282638264826582668267826882698270827182728273827482758276827782788279828082818282828382848285828682878288828982908291829282938294829582968297829882998300830183028303830483058306830783088309831083118312831383148315831683178318831983208321832283238324832583268327832883298330833183328333833483358336833783388339834083418342834383448345834683478348834983508351835283538354835583568357835883598360836183628363836483658366836783688369837083718372837383748375837683778378837983808381838283838384838583868387838883898390839183928393839483958396839783988399840084018402840384048405840684078408840984108411841284138414841584168417841884198420842184228423842484258426842784288429843084318432843384348435843684378438843984408441844284438444844584468447844884498450845184528453845484558456845784588459846084618462846384648465846684678468846984708471847284738474847584768477847884798480848184828483848484858486848784888489849084918492849384948495849684978498849985008501850285038504850585068507850885098510851185128513851485158516851785188519852085218522852385248525852685278528852985308531853285338534853585368537853885398540854185428543854485458546854785488549855085518552855385548555855685578558855985608561856285638564856585668567856885698570857185728573857485758576857785788579858085818582858385848585858685878588858985908591859285938594859585968597859885998600860186028603860486058606860786088609861086118612861386148615861686178618861986208621862286238624862586268627862886298630863186328633863486358636863786388639864086418642864386448645864686478648864986508651865286538654865586568657865886598660866186628663866486658666866786688669867086718672867386748675867686778678867986808681868286838684868586868687868886898690869186928693869486958696869786988699870087018702870387048705870687078708870987108711871287138714871587168717871887198720872187228723872487258726872787288729873087318732873387348735873687378738873987408741874287438744874587468747874887498750875187528753875487558756875787588759876087618762876387648765876687678768876987708771877287738774877587768777877887798780878187828783878487858786878787888789879087918792879387948795879687978798879988008801880288038804880588068807880888098810881188128813881488158816881788188819882088218822882388248825882688278828882988308831883288338834883588368837883888398840884188428843884488458846884788488849885088518852885388548855885688578858885988608861886288638864886588668867886888698870887188728873887488758876887788788879888088818882888388848885888688878888888988908891889288938894889588968897889888998900890189028903890489058906890789088909891089118912891389148915891689178918891989208921892289238924892589268927892889298930893189328933893489358936893789388939894089418942894389448945894689478948894989508951895289538954895589568957895889598960896189628963896489658966896789688969897089718972897389748975897689778978897989808981898289838984898589868987898889898990899189928993899489958996899789988999900090019002900390049005900690079008900990109011901290139014901590169017901890199020902190229023902490259026902790289029903090319032903390349035903690379038903990409041904290439044904590469047904890499050905190529053905490559056905790589059906090619062906390649065906690679068906990709071907290739074907590769077907890799080908190829083908490859086908790889089909090919092909390949095909690979098909991009101910291039104910591069107910891099110911191129113911491159116911791189119912091219122912391249125912691279128912991309131913291339134913591369137913891399140914191429143914491459146914791489149915091519152915391549155915691579158915991609161916291639164916591669167916891699170917191729173917491759176917791789179918091819182918391849185918691879188918991909191919291939194919591969197919891999200920192029203920492059206920792089209921092119212921392149215921692179218921992209221922292239224922592269227922892299230923192329233923492359236923792389239924092419242924392449245924692479248924992509251925292539254925592569257925892599260926192629263926492659266926792689269927092719272927392749275927692779278927992809281928292839284928592869287928892899290929192929293929492959296929792989299930093019302930393049305930693079308930993109311931293139314931593169317931893199320932193229323932493259326932793289329933093319332933393349335933693379338933993409341934293439344934593469347934893499350935193529353935493559356935793589359936093619362936393649365936693679368936993709371937293739374937593769377937893799380938193829383938493859386938793889389939093919392939393949395939693979398939994009401940294039404940594069407940894099410941194129413941494159416941794189419942094219422942394249425942694279428942994309431943294339434943594369437943894399440944194429443944494459446944794489449945094519452945394549455945694579458945994609461946294639464946594669467946894699470947194729473947494759476947794789479948094819482948394849485948694879488948994909491949294939494949594969497949894999500950195029503950495059506950795089509951095119512951395149515951695179518951995209521952295239524952595269527952895299530953195329533953495359536953795389539954095419542954395449545954695479548954995509551955295539554955595569557955895599560956195629563956495659566956795689569957095719572957395749575957695779578957995809581958295839584958595869587958895899590959195929593959495959596959795989599960096019602960396049605960696079608960996109611961296139614961596169617961896199620962196229623962496259626962796289629963096319632963396349635963696379638963996409641964296439644964596469647964896499650965196529653965496559656965796589659966096619662966396649665966696679668966996709671967296739674967596769677967896799680968196829683968496859686968796889689969096919692969396949695969696979698969997009701970297039704970597069707970897099710971197129713971497159716971797189719972097219722972397249725972697279728972997309731973297339734973597369737973897399740974197429743974497459746974797489749975097519752975397549755975697579758975997609761976297639764976597669767976897699770977197729773977497759776977797789779978097819782978397849785978697879788978997909791979297939794979597969797979897999800980198029803980498059806980798089809981098119812981398149815981698179818981998209821982298239824982598269827982898299830983198329833983498359836983798389839984098419842984398449845984698479848984998509851985298539854985598569857985898599860986198629863986498659866986798689869987098719872987398749875987698779878987998809881988298839884988598869887988898899890989198929893989498959896989798989899990099019902990399049905990699079908990999109911991299139914991599169917991899199920992199229923992499259926992799289929993099319932993399349935993699379938993999409941994299439944994599469947994899499950995199529953995499559956995799589959996099619962996399649965996699679968996999709971997299739974997599769977997899799980998199829983998499859986998799889989999099919992999399949995999699979998999910000100011000210003100041000510006100071000810009100101001110012100131001410015100161001710018100191002010021100221002310024100251002610027100281002910030100311003210033100341003510036100371003810039100401004110042100431004410045100461004710048100491005010051100521005310054100551005610057100581005910060100611006210063100641006510066100671006810069100701007110072100731007410075100761007710078100791008010081100821008310084100851008610087100881008910090100911009210093100941009510096100971009810099101001010110102101031010410105101061010710108101091011010111101121011310114101151011610117101181011910120101211012210123101241012510126101271012810129101301013110132101331013410135101361013710138101391014010141101421014310144101451014610147101481014910150101511015210153101541015510156101571015810159101601016110162101631016410165101661016710168101691017010171101721017310174101751017610177101781017910180101811018210183101841018510186101871018810189101901019110192101931019410195101961019710198101991020010201102021020310204102051020610207102081020910210102111021210213102141021510216102171021810219102201022110222102231022410225102261022710228102291023010231102321023310234102351023610237102381023910240102411024210243102441024510246102471024810249102501025110252102531025410255102561025710258102591026010261102621026310264102651026610267102681026910270102711027210273102741027510276102771027810279102801028110282102831028410285102861028710288102891029010291102921029310294102951029610297102981029910300103011030210303103041030510306103071030810309103101031110312103131031410315103161031710318103191032010321103221032310324103251032610327103281032910330103311033210333103341033510336103371033810339103401034110342103431034410345103461034710348103491035010351103521035310354103551035610357103581035910360103611036210363103641036510366103671036810369103701037110372103731037410375103761037710378103791038010381103821038310384103851038610387103881038910390103911039210393103941039510396103971039810399104001040110402104031040410405104061040710408104091041010411104121041310414104151041610417104181041910420104211042210423104241042510426104271042810429104301043110432104331043410435104361043710438104391044010441104421044310444104451044610447104481044910450104511045210453104541045510456104571045810459104601046110462104631046410465104661046710468104691047010471104721047310474104751047610477104781047910480104811048210483104841048510486104871048810489104901049110492104931049410495104961049710498104991050010501105021050310504105051050610507105081050910510105111051210513105141051510516105171051810519105201052110522105231052410525105261052710528105291053010531105321053310534105351053610537105381053910540105411054210543105441054510546105471054810549105501055110552105531055410555105561055710558105591056010561105621056310564105651056610567105681056910570105711057210573105741057510576105771057810579105801058110582105831058410585105861058710588105891059010591105921059310594105951059610597105981059910600106011060210603106041060510606106071060810609106101061110612106131061410615106161061710618106191062010621106221062310624106251062610627106281062910630106311063210633106341063510636106371063810639106401064110642106431064410645106461064710648106491065010651106521065310654106551065610657106581065910660106611066210663106641066510666106671066810669106701067110672106731067410675106761067710678106791068010681106821068310684106851068610687106881068910690106911069210693106941069510696106971069810699107001070110702107031070410705107061070710708107091071010711107121071310714107151071610717107181071910720107211072210723107241072510726107271072810729107301073110732107331073410735107361073710738107391074010741107421074310744107451074610747107481074910750107511075210753107541075510756107571075810759107601076110762107631076410765107661076710768107691077010771107721077310774107751077610777107781077910780107811078210783107841078510786107871078810789107901079110792107931079410795107961079710798107991080010801108021080310804108051080610807108081080910810108111081210813108141081510816108171081810819108201082110822108231082410825108261082710828108291083010831108321083310834108351083610837108381083910840108411084210843108441084510846108471084810849108501085110852108531085410855108561085710858108591086010861108621086310864108651086610867108681086910870108711087210873108741087510876108771087810879108801088110882108831088410885108861088710888108891089010891108921089310894108951089610897108981089910900109011090210903109041090510906109071090810909109101091110912109131091410915109161091710918109191092010921109221092310924109251092610927109281092910930109311093210933109341093510936109371093810939109401094110942109431094410945109461094710948109491095010951109521095310954109551095610957109581095910960109611096210963109641096510966109671096810969109701097110972109731097410975109761097710978109791098010981109821098310984109851098610987109881098910990109911099210993109941099510996109971099810999110001100111002110031100411005110061100711008110091101011011110121101311014110151101611017110181101911020110211102211023110241102511026110271102811029110301103111032110331103411035110361103711038110391104011041110421104311044110451104611047110481104911050110511105211053110541105511056110571105811059110601106111062110631106411065110661106711068110691107011071110721107311074110751107611077110781107911080110811108211083110841108511086110871108811089110901109111092110931109411095110961109711098110991110011101111021110311104111051110611107111081110911110111111111211113111141111511116111171111811119111201112111122111231112411125111261112711128111291113011131111321113311134111351113611137111381113911140111411114211143111441114511146111471114811149111501115111152111531115411155111561115711158111591116011161111621116311164111651116611167111681116911170111711117211173111741117511176111771117811179111801118111182111831118411185111861118711188111891119011191111921119311194111951119611197111981119911200112011120211203112041120511206112071120811209112101121111212112131121411215112161121711218112191122011221112221122311224112251122611227112281122911230112311123211233112341123511236112371123811239112401124111242112431124411245112461124711248112491125011251112521125311254112551125611257112581125911260112611126211263112641126511266112671126811269112701127111272112731127411275112761127711278112791128011281112821128311284112851128611287112881128911290112911129211293112941129511296112971129811299113001130111302113031130411305113061130711308113091131011311113121131311314113151131611317113181131911320113211132211323113241132511326113271132811329113301133111332113331133411335113361133711338113391134011341113421134311344113451134611347113481134911350113511135211353113541135511356113571135811359113601136111362113631136411365113661136711368113691137011371113721137311374113751137611377113781137911380113811138211383113841138511386113871138811389113901139111392113931139411395113961139711398113991140011401114021140311404114051140611407114081140911410114111141211413114141141511416114171141811419114201142111422114231142411425114261142711428114291143011431114321143311434114351143611437114381143911440114411144211443114441144511446114471144811449114501145111452114531145411455114561145711458114591146011461114621146311464114651146611467114681146911470114711147211473114741147511476114771147811479114801148111482114831148411485114861148711488114891149011491114921149311494114951149611497114981149911500115011150211503115041150511506115071150811509115101151111512115131151411515115161151711518115191152011521115221152311524115251152611527115281152911530115311153211533115341153511536115371153811539115401154111542115431154411545115461154711548115491155011551115521155311554115551155611557115581155911560115611156211563115641156511566115671156811569115701157111572115731157411575115761157711578115791158011581115821158311584115851158611587115881158911590115911159211593115941159511596115971159811599116001160111602116031160411605116061160711608116091161011611116121161311614116151161611617116181161911620116211162211623116241162511626116271162811629116301163111632116331163411635116361163711638116391164011641116421164311644116451164611647116481164911650116511165211653116541165511656116571165811659116601166111662116631166411665116661166711668116691167011671116721167311674116751167611677116781167911680116811168211683116841168511686116871168811689116901169111692116931169411695116961169711698116991170011701117021170311704117051170611707117081170911710117111171211713117141171511716117171171811719117201172111722117231172411725117261172711728117291173011731117321173311734117351173611737117381173911740117411174211743117441174511746117471174811749117501175111752117531175411755117561175711758117591176011761117621176311764117651176611767117681176911770117711177211773117741177511776117771177811779117801178111782117831178411785117861178711788117891179011791117921179311794117951179611797117981179911800118011180211803118041180511806118071180811809118101181111812118131181411815118161181711818118191182011821118221182311824118251182611827118281182911830118311183211833118341183511836118371183811839118401184111842118431184411845118461184711848118491185011851118521185311854118551185611857118581185911860118611186211863118641186511866118671186811869118701187111872118731187411875118761187711878118791188011881118821188311884118851188611887118881188911890118911189211893118941189511896118971189811899119001190111902119031190411905119061190711908119091191011911119121191311914119151191611917119181191911920119211192211923119241192511926119271192811929119301193111932119331193411935119361193711938119391194011941119421194311944119451194611947119481194911950119511195211953119541195511956119571195811959119601196111962119631196411965119661196711968119691197011971119721197311974119751197611977119781197911980119811198211983119841198511986119871198811989119901199111992119931199411995119961199711998119991200012001120021200312004120051200612007120081200912010120111201212013120141201512016120171201812019120201202112022120231202412025120261202712028120291203012031120321203312034120351203612037120381203912040120411204212043120441204512046120471204812049120501205112052120531205412055120561205712058120591206012061120621206312064120651206612067120681206912070120711207212073120741207512076120771207812079120801208112082120831208412085120861208712088120891209012091120921209312094120951209612097120981209912100121011210212103121041210512106121071210812109121101211112112121131211412115121161211712118121191212012121121221212312124121251212612127121281212912130121311213212133121341213512136121371213812139121401214112142121431214412145121461214712148121491215012151121521215312154121551215612157121581215912160121611216212163121641216512166121671216812169121701217112172121731217412175121761217712178121791218012181121821218312184121851218612187121881218912190121911219212193121941219512196121971219812199122001220112202122031220412205122061220712208122091221012211122121221312214122151221612217122181221912220122211222212223122241222512226122271222812229122301223112232122331223412235122361223712238122391224012241122421224312244122451224612247122481224912250122511225212253122541225512256122571225812259122601226112262122631226412265122661226712268122691227012271122721227312274122751227612277122781227912280122811228212283122841228512286122871228812289122901229112292122931229412295122961229712298122991230012301123021230312304123051230612307123081230912310123111231212313123141231512316123171231812319123201232112322123231232412325123261232712328123291233012331123321233312334123351233612337123381233912340123411234212343123441234512346123471234812349123501235112352123531235412355123561235712358123591236012361123621236312364123651236612367123681236912370123711237212373123741237512376123771237812379123801238112382123831238412385123861238712388123891239012391123921239312394123951239612397123981239912400124011240212403124041240512406124071240812409124101241112412124131241412415124161241712418124191242012421124221242312424124251242612427124281242912430124311243212433124341243512436124371243812439124401244112442124431244412445124461244712448124491245012451124521245312454124551245612457124581245912460124611246212463124641246512466124671246812469124701247112472124731247412475124761247712478124791248012481124821248312484124851248612487124881248912490124911249212493124941249512496124971249812499125001250112502125031250412505125061250712508125091251012511125121251312514125151251612517125181251912520125211252212523125241252512526125271252812529125301253112532125331253412535125361253712538125391254012541125421254312544125451254612547125481254912550125511255212553125541255512556125571255812559125601256112562125631256412565125661256712568125691257012571125721257312574125751257612577125781257912580125811258212583125841258512586125871258812589125901259112592125931259412595125961259712598125991260012601126021260312604126051260612607126081260912610126111261212613126141261512616126171261812619126201262112622126231262412625126261262712628126291263012631126321263312634126351263612637126381263912640126411264212643126441264512646126471264812649126501265112652126531265412655126561265712658126591266012661126621266312664126651266612667126681266912670126711267212673126741267512676126771267812679126801268112682126831268412685126861268712688126891269012691126921269312694126951269612697126981269912700127011270212703127041270512706127071270812709127101271112712127131271412715127161271712718127191272012721127221272312724127251272612727127281272912730127311273212733127341273512736127371273812739127401274112742127431274412745127461274712748127491275012751127521275312754127551275612757127581275912760127611276212763127641276512766127671276812769127701277112772127731277412775127761277712778127791278012781127821278312784127851278612787127881278912790127911279212793127941279512796127971279812799128001280112802128031280412805128061280712808128091281012811128121281312814128151281612817128181281912820128211282212823128241282512826128271282812829128301283112832128331283412835128361283712838128391284012841128421284312844128451284612847128481284912850128511285212853128541285512856128571285812859128601286112862128631286412865128661286712868128691287012871128721287312874128751287612877128781287912880128811288212883128841288512886128871288812889128901289112892128931289412895128961289712898128991290012901129021290312904129051290612907129081290912910129111291212913129141291512916129171291812919129201292112922129231292412925129261292712928129291293012931129321293312934129351293612937129381293912940129411294212943129441294512946129471294812949129501295112952129531295412955129561295712958129591296012961129621296312964129651296612967129681296912970129711297212973129741297512976129771297812979129801298112982129831298412985129861298712988129891299012991129921299312994129951299612997129981299913000130011300213003130041300513006130071300813009130101301113012130131301413015130161301713018130191302013021130221302313024130251302613027130281302913030130311303213033130341303513036130371303813039130401304113042130431304413045130461304713048130491305013051130521305313054130551305613057130581305913060130611306213063130641306513066130671306813069130701307113072130731307413075130761307713078130791308013081130821308313084130851308613087130881308913090130911309213093130941309513096130971309813099131001310113102131031310413105131061310713108131091311013111131121311313114131151311613117131181311913120131211312213123131241312513126131271312813129131301313113132131331313413135131361313713138131391314013141131421314313144131451314613147131481314913150131511315213153131541315513156131571315813159131601316113162131631316413165131661316713168131691317013171131721317313174131751317613177131781317913180131811318213183131841318513186131871318813189131901319113192131931319413195131961319713198131991320013201132021320313204132051320613207132081320913210132111321213213132141321513216132171321813219132201322113222132231322413225132261322713228132291323013231132321323313234132351323613237132381323913240132411324213243132441324513246132471324813249132501325113252132531325413255132561325713258132591326013261132621326313264132651326613267132681326913270132711327213273132741327513276132771327813279132801328113282132831328413285132861328713288132891329013291132921329313294132951329613297132981329913300133011330213303133041330513306133071330813309133101331113312133131331413315133161331713318133191332013321133221332313324133251332613327133281332913330133311333213333133341333513336133371333813339133401334113342133431334413345133461334713348133491335013351133521335313354133551335613357133581335913360133611336213363133641336513366133671336813369133701337113372133731337413375133761337713378133791338013381133821338313384133851338613387133881338913390133911339213393133941339513396133971339813399134001340113402134031340413405134061340713408134091341013411134121341313414134151341613417134181341913420134211342213423134241342513426134271342813429134301343113432134331343413435134361343713438134391344013441134421344313444134451344613447134481344913450134511345213453134541345513456134571345813459134601346113462134631346413465134661346713468134691347013471134721347313474134751347613477134781347913480134811348213483134841348513486134871348813489134901349113492134931349413495134961349713498134991350013501135021350313504135051350613507135081350913510135111351213513135141351513516135171351813519135201352113522135231352413525135261352713528135291353013531135321353313534135351353613537135381353913540135411354213543135441354513546135471354813549135501355113552135531355413555135561355713558135591356013561135621356313564135651356613567135681356913570135711357213573135741357513576135771357813579135801358113582135831358413585135861358713588135891359013591135921359313594135951359613597135981359913600136011360213603136041360513606136071360813609136101361113612136131361413615136161361713618136191362013621136221362313624136251362613627136281362913630136311363213633136341363513636136371363813639136401364113642136431364413645136461364713648136491365013651136521365313654136551365613657136581365913660136611366213663136641366513666136671366813669136701367113672136731367413675136761367713678136791368013681136821368313684136851368613687136881368913690136911369213693136941369513696136971369813699137001370113702137031370413705137061370713708137091371013711137121371313714137151371613717137181371913720137211372213723137241372513726137271372813729137301373113732137331373413735137361373713738137391374013741137421374313744137451374613747137481374913750137511375213753137541375513756137571375813759137601376113762137631376413765137661376713768137691377013771137721377313774137751377613777137781377913780137811378213783137841378513786137871378813789137901379113792137931379413795137961379713798137991380013801138021380313804138051380613807138081380913810138111381213813138141381513816138171381813819138201382113822138231382413825138261382713828138291383013831138321383313834138351383613837138381383913840138411384213843138441384513846138471384813849138501385113852138531385413855138561385713858138591386013861138621386313864138651386613867138681386913870138711387213873138741387513876138771387813879138801388113882138831388413885138861388713888138891389013891138921389313894138951389613897138981389913900139011390213903139041390513906139071390813909139101391113912139131391413915139161391713918139191392013921139221392313924139251392613927139281392913930139311393213933139341393513936139371393813939139401394113942139431394413945139461394713948139491395013951139521395313954139551395613957139581395913960139611396213963139641396513966139671396813969139701397113972139731397413975139761397713978139791398013981139821398313984139851398613987139881398913990139911399213993139941399513996139971399813999140001400114002140031400414005140061400714008140091401014011140121401314014140151401614017140181401914020140211402214023140241402514026140271402814029140301403114032140331403414035140361403714038140391404014041140421404314044140451404614047140481404914050140511405214053140541405514056140571405814059140601406114062140631406414065140661406714068140691407014071140721407314074140751407614077140781407914080140811408214083140841408514086140871408814089140901409114092140931409414095140961409714098140991410014101141021410314104141051410614107141081410914110141111411214113141141411514116141171411814119141201412114122141231412414125141261412714128141291413014131141321413314134141351413614137141381413914140141411414214143141441414514146141471414814149141501415114152141531415414155141561415714158141591416014161141621416314164141651416614167141681416914170141711417214173141741417514176141771417814179141801418114182141831418414185141861418714188141891419014191141921419314194141951419614197141981419914200142011420214203142041420514206142071420814209142101421114212142131421414215142161421714218142191422014221142221422314224142251422614227142281422914230142311423214233142341423514236142371423814239142401424114242142431424414245142461424714248142491425014251142521425314254142551425614257142581425914260142611426214263142641426514266142671426814269142701427114272142731427414275142761427714278142791428014281142821428314284142851428614287142881428914290142911429214293142941429514296142971429814299143001430114302143031430414305143061430714308143091431014311143121431314314143151431614317143181431914320143211432214323143241432514326143271432814329143301433114332143331433414335143361433714338143391434014341143421434314344143451434614347143481434914350143511435214353143541435514356143571435814359143601436114362143631436414365143661436714368143691437014371143721437314374143751437614377143781437914380143811438214383143841438514386143871438814389143901439114392143931439414395143961439714398143991440014401144021440314404144051440614407144081440914410144111441214413144141441514416144171441814419144201442114422144231442414425144261442714428144291443014431144321443314434144351443614437144381443914440144411444214443144441444514446144471444814449144501445114452144531445414455144561445714458144591446014461144621446314464144651446614467144681446914470144711447214473144741447514476144771447814479144801448114482144831448414485144861448714488144891449014491144921449314494144951449614497144981449914500145011450214503145041450514506145071450814509145101451114512145131451414515145161451714518145191452014521145221452314524145251452614527145281452914530145311453214533145341453514536145371453814539145401454114542145431454414545145461454714548145491455014551145521455314554145551455614557145581455914560145611456214563145641456514566145671456814569145701457114572145731457414575145761457714578145791458014581145821458314584145851458614587145881458914590145911459214593145941459514596145971459814599146001460114602146031460414605146061460714608146091461014611146121461314614146151461614617
  1. {
  2. "configList": [
  3. {
  4. "ID": 11010,
  5. "PieceID": 13001,
  6. "power": 100.0,
  7. "name": 316,
  8. "dec": 739,
  9. "attribute": 1,
  10. "icon": "icon_s1101",
  11. "scriptName": "S1101",
  12. "IDGroup": 1101,
  13. "timelineName": "1101_timeline_TD",
  14. "cd": 1.0,
  15. "addcd": 1.0,
  16. "SkillType": 1,
  17. "level": 1,
  18. "effectValue": [
  19. 6.0,
  20. 18.0,
  21. 100.0
  22. ],
  23. "intensifierIndex": [
  24. 2
  25. ],
  26. "PromoteLan": -1
  27. },
  28. {
  29. "ID": 11011,
  30. "PieceID": 13001,
  31. "power": 150.0,
  32. "name": 317,
  33. "dec": 740,
  34. "attribute": 1,
  35. "icon": "icon_s1101",
  36. "scriptName": "S1101",
  37. "IDGroup": 1101,
  38. "timelineName": "1101_timeline_TD",
  39. "cd": 1.0,
  40. "addcd": 1.0,
  41. "SkillType": 1,
  42. "level": 2,
  43. "effectValue": [
  44. 6.0,
  45. 20.0,
  46. 100.0
  47. ],
  48. "intensifierIndex": [
  49. 2
  50. ],
  51. "PromoteLan": 1100,
  52. "PromoteLanPara": [
  53. 2.0
  54. ]
  55. },
  56. {
  57. "ID": 11012,
  58. "PieceID": 13001,
  59. "power": 225.0,
  60. "name": 318,
  61. "dec": 741,
  62. "attribute": 1,
  63. "icon": "icon_s1101",
  64. "scriptName": "S1101",
  65. "IDGroup": 1101,
  66. "timelineName": "1101_timeline_TD",
  67. "cd": 1.0,
  68. "addcd": 1.0,
  69. "SkillType": 1,
  70. "level": 3,
  71. "effectValue": [
  72. 6.0,
  73. 23.0,
  74. 100.0
  75. ],
  76. "intensifierIndex": [
  77. 2
  78. ],
  79. "addPropertyType": [
  80. 101
  81. ],
  82. "addPropertyValue": [
  83. 10.0
  84. ],
  85. "PromoteLan": 1101,
  86. "PromoteLanPara": [
  87. 10.0
  88. ]
  89. },
  90. {
  91. "ID": 11013,
  92. "PieceID": 13001,
  93. "power": 337.5,
  94. "name": 319,
  95. "dec": 742,
  96. "attribute": 1,
  97. "icon": "icon_s1101",
  98. "scriptName": "S1101",
  99. "IDGroup": 1101,
  100. "timelineName": "1101_timeline_TD",
  101. "cd": 1.0,
  102. "addcd": 1.0,
  103. "SkillType": 1,
  104. "level": 4,
  105. "effectValue": [
  106. 6.0,
  107. 23.0,
  108. 100.0,
  109. 10.0
  110. ],
  111. "intensifierIndex": [
  112. 2
  113. ],
  114. "addPropertyType": [
  115. 101
  116. ],
  117. "addPropertyValue": [
  118. 10.0
  119. ],
  120. "PromoteLan": 1102,
  121. "PromoteLanPara": [
  122. 1.0
  123. ]
  124. },
  125. {
  126. "ID": 11014,
  127. "PieceID": 13001,
  128. "power": 506.25,
  129. "name": 320,
  130. "dec": 743,
  131. "attribute": 1,
  132. "icon": "icon_s1101",
  133. "scriptName": "S1101",
  134. "IDGroup": 1101,
  135. "timelineName": "1101_timeline_TD",
  136. "cd": 1.0,
  137. "addcd": 1.0,
  138. "SkillType": 1,
  139. "level": 5,
  140. "effectValue": [
  141. 6.0,
  142. 26.0,
  143. 100.0,
  144. 10.0
  145. ],
  146. "intensifierIndex": [
  147. 2
  148. ],
  149. "addPropertyType": [
  150. 101
  151. ],
  152. "addPropertyValue": [
  153. 20.0
  154. ],
  155. "PromoteLan": 1103,
  156. "PromoteLanPara": [
  157. 10.0
  158. ]
  159. },
  160. {
  161. "ID": 11015,
  162. "PieceID": 13001,
  163. "power": 759.375,
  164. "name": 321,
  165. "dec": 744,
  166. "attribute": 1,
  167. "icon": "icon_s1101",
  168. "scriptName": "S1101",
  169. "IDGroup": 1101,
  170. "timelineName": "1101_timeline_TD",
  171. "cd": 1.0,
  172. "addcd": 1.0,
  173. "SkillType": 1,
  174. "level": 6,
  175. "effectValue": [
  176. 7.0,
  177. 24.0,
  178. 100.0,
  179. 10.0
  180. ],
  181. "intensifierIndex": [
  182. 2
  183. ],
  184. "addPropertyType": [
  185. 101
  186. ],
  187. "addPropertyValue": [
  188. 20.0
  189. ],
  190. "PromoteLan": 1104
  191. },
  192. {
  193. "ID": 11020,
  194. "PieceID": 13002,
  195. "power": 130.0,
  196. "name": 322,
  197. "dec": 745,
  198. "attribute": 1,
  199. "icon": "icon_s1102",
  200. "scriptName": "S1102",
  201. "IDGroup": 1102,
  202. "timelineName": "1102_timeline_TD",
  203. "cd": 1.0,
  204. "addcd": 1.0,
  205. "SkillType": 1,
  206. "level": 1,
  207. "effectValue": [
  208. 1.0,
  209. 170.0
  210. ],
  211. "intensifierIndex": [
  212. 2
  213. ],
  214. "PromoteLan": -1
  215. },
  216. {
  217. "ID": 11021,
  218. "PieceID": 13002,
  219. "power": 195.0,
  220. "name": 323,
  221. "dec": 746,
  222. "attribute": 1,
  223. "icon": "icon_s1102",
  224. "scriptName": "S1102",
  225. "IDGroup": 1102,
  226. "timelineName": "1102_timeline_TD",
  227. "cd": 1.0,
  228. "addcd": 1.0,
  229. "SkillType": 1,
  230. "level": 2,
  231. "effectValue": [
  232. 1.0,
  233. 150.0,
  234. 25.0
  235. ],
  236. "intensifierIndex": [
  237. 2
  238. ],
  239. "PromoteLan": 1105,
  240. "PromoteLanPara": [
  241. 2.0
  242. ]
  243. },
  244. {
  245. "ID": 11022,
  246. "PieceID": 13002,
  247. "power": 292.5,
  248. "name": 324,
  249. "dec": 747,
  250. "attribute": 1,
  251. "icon": "icon_s1102",
  252. "scriptName": "S1102",
  253. "IDGroup": 1102,
  254. "timelineName": "1102_timeline_TD",
  255. "cd": 1.0,
  256. "addcd": 1.0,
  257. "SkillType": 1,
  258. "level": 3,
  259. "effectValue": [
  260. 1.0,
  261. 173.0,
  262. 25.0
  263. ],
  264. "intensifierIndex": [
  265. 2
  266. ],
  267. "addPropertyType": [
  268. 102
  269. ],
  270. "addPropertyValue": [
  271. 10.0
  272. ],
  273. "PromoteLan": 1106,
  274. "PromoteLanPara": [
  275. 10.0
  276. ]
  277. },
  278. {
  279. "ID": 11023,
  280. "PieceID": 13002,
  281. "power": 438.75,
  282. "name": 325,
  283. "dec": 748,
  284. "attribute": 1,
  285. "icon": "icon_s1102",
  286. "scriptName": "S1102",
  287. "IDGroup": 1102,
  288. "timelineName": "1102_timeline_TD",
  289. "cd": 1.0,
  290. "addcd": 1.0,
  291. "SkillType": 1,
  292. "level": 4,
  293. "effectValue": [
  294. 1.0,
  295. 169.0,
  296. 25.0
  297. ],
  298. "intensifierIndex": [
  299. 2
  300. ],
  301. "addPropertyType": [
  302. 102
  303. ],
  304. "addPropertyValue": [
  305. 10.0
  306. ],
  307. "PromoteLan": 1107,
  308. "PromoteLanPara": [
  309. 1.0
  310. ]
  311. },
  312. {
  313. "ID": 11024,
  314. "PieceID": 13002,
  315. "power": 658.125,
  316. "name": 326,
  317. "dec": 749,
  318. "attribute": 1,
  319. "icon": "icon_s1102",
  320. "scriptName": "S1102",
  321. "IDGroup": 1102,
  322. "timelineName": "1102_timeline_TD",
  323. "cd": 1.0,
  324. "addcd": 1.0,
  325. "SkillType": 1,
  326. "level": 5,
  327. "effectValue": [
  328. 1.0,
  329. 195.0,
  330. 25.0
  331. ],
  332. "intensifierIndex": [
  333. 2
  334. ],
  335. "addPropertyType": [
  336. 102
  337. ],
  338. "addPropertyValue": [
  339. 20.0
  340. ],
  341. "PromoteLan": 1108,
  342. "PromoteLanPara": [
  343. 10.0
  344. ]
  345. },
  346. {
  347. "ID": 11025,
  348. "PieceID": 13002,
  349. "power": 987.1875,
  350. "name": 327,
  351. "dec": 750,
  352. "attribute": 1,
  353. "icon": "icon_s1102",
  354. "scriptName": "S1102",
  355. "IDGroup": 1102,
  356. "timelineName": "1102_timeline_TD",
  357. "cd": 1.0,
  358. "addcd": 1.0,
  359. "SkillType": 1,
  360. "level": 6,
  361. "effectValue": [
  362. 1.0,
  363. 234.0,
  364. 25.0,
  365. 100.0
  366. ],
  367. "intensifierIndex": [
  368. 2
  369. ],
  370. "addPropertyType": [
  371. 102
  372. ],
  373. "addPropertyValue": [
  374. 20.0
  375. ],
  376. "PromoteLan": 1109
  377. },
  378. {
  379. "ID": 11030,
  380. "PieceID": 13003,
  381. "power": 100.0,
  382. "name": 328,
  383. "dec": 751,
  384. "attribute": 1,
  385. "icon": "icon_s1103",
  386. "scriptName": "S1103",
  387. "IDGroup": 1103,
  388. "timelineName": "1103_timeline_TD",
  389. "cd": 1.0,
  390. "addcd": 1.0,
  391. "SkillType": 1,
  392. "level": 1,
  393. "effectValue": [
  394. 3.0,
  395. 53.0,
  396. 100.0
  397. ],
  398. "intensifierIndex": [
  399. 2
  400. ],
  401. "PromoteLan": -1
  402. },
  403. {
  404. "ID": 11031,
  405. "PieceID": 13003,
  406. "power": 150.0,
  407. "name": 329,
  408. "dec": 752,
  409. "attribute": 1,
  410. "icon": "icon_s1103",
  411. "scriptName": "S1103",
  412. "IDGroup": 1103,
  413. "timelineName": "1103_timeline_TD",
  414. "cd": 1.0,
  415. "addcd": 1.0,
  416. "SkillType": 1,
  417. "level": 2,
  418. "effectValue": [
  419. 3.0,
  420. 56.0,
  421. 100.0,
  422. 30.0
  423. ],
  424. "intensifierIndex": [
  425. 2
  426. ],
  427. "PromoteLan": 1110
  428. },
  429. {
  430. "ID": 11032,
  431. "PieceID": 13003,
  432. "power": 225.0,
  433. "name": 330,
  434. "dec": 753,
  435. "attribute": 1,
  436. "icon": "icon_s1103",
  437. "scriptName": "S1103",
  438. "IDGroup": 1103,
  439. "timelineName": "1103_timeline_TD",
  440. "cd": 1.0,
  441. "addcd": 1.0,
  442. "SkillType": 1,
  443. "level": 3,
  444. "effectValue": [
  445. 3.0,
  446. 64.0,
  447. 100.0,
  448. 40.0
  449. ],
  450. "intensifierIndex": [
  451. 2
  452. ],
  453. "addPropertyType": [
  454. 103
  455. ],
  456. "addPropertyValue": [
  457. 10.0
  458. ],
  459. "PromoteLan": 1111,
  460. "PromoteLanPara": [
  461. 10.0
  462. ]
  463. },
  464. {
  465. "ID": 11033,
  466. "PieceID": 13003,
  467. "power": 337.5,
  468. "name": 331,
  469. "dec": 754,
  470. "attribute": 1,
  471. "icon": "icon_s1103",
  472. "scriptName": "S1103",
  473. "IDGroup": 1103,
  474. "timelineName": "1103_timeline_TD",
  475. "cd": 1.0,
  476. "addcd": 1.0,
  477. "SkillType": 1,
  478. "level": 4,
  479. "effectValue": [
  480. 3.0,
  481. 73.0,
  482. 100.0,
  483. 50.0
  484. ],
  485. "intensifierIndex": [
  486. 2
  487. ],
  488. "addPropertyType": [
  489. 103
  490. ],
  491. "addPropertyValue": [
  492. 10.0
  493. ],
  494. "PromoteLan": 1112,
  495. "PromoteLanPara": [
  496. 2.0
  497. ]
  498. },
  499. {
  500. "ID": 11034,
  501. "PieceID": 13003,
  502. "power": 506.25,
  503. "name": 332,
  504. "dec": 755,
  505. "attribute": 1,
  506. "icon": "icon_s1103",
  507. "scriptName": "S1103",
  508. "IDGroup": 1103,
  509. "timelineName": "1103_timeline_TD",
  510. "cd": 1.0,
  511. "addcd": 1.0,
  512. "SkillType": 1,
  513. "level": 5,
  514. "effectValue": [
  515. 3.0,
  516. 84.0,
  517. 100.0,
  518. 60.0
  519. ],
  520. "intensifierIndex": [
  521. 2
  522. ],
  523. "addPropertyType": [
  524. 103
  525. ],
  526. "addPropertyValue": [
  527. 20.0
  528. ],
  529. "PromoteLan": 1113,
  530. "PromoteLanPara": [
  531. 10.0
  532. ]
  533. },
  534. {
  535. "ID": 11035,
  536. "PieceID": 13003,
  537. "power": 759.375,
  538. "name": 333,
  539. "dec": 756,
  540. "attribute": 1,
  541. "icon": "icon_s1103",
  542. "scriptName": "S1103",
  543. "IDGroup": 1103,
  544. "timelineName": "1103_timeline_TD",
  545. "cd": 1.0,
  546. "addcd": 1.0,
  547. "SkillType": 1,
  548. "level": 6,
  549. "effectValue": [
  550. 3.0,
  551. 77.0,
  552. 100.0,
  553. 70.0,
  554. 20.0
  555. ],
  556. "intensifierIndex": [
  557. 2
  558. ],
  559. "addPropertyType": [
  560. 103
  561. ],
  562. "addPropertyValue": [
  563. 20.0
  564. ],
  565. "PromoteLan": 1114
  566. },
  567. {
  568. "ID": 11040,
  569. "PieceID": 13004,
  570. "power": 80.0,
  571. "name": 334,
  572. "dec": 757,
  573. "attribute": 1,
  574. "icon": "icon_s1104",
  575. "scriptName": "S1104",
  576. "IDGroup": 1104,
  577. "timelineName": "1104_timeline_TD",
  578. "cd": 1.0,
  579. "addcd": 1.0,
  580. "SkillType": 1,
  581. "level": 1,
  582. "effectValue": [
  583. 5.0,
  584. 30.0
  585. ],
  586. "intensifierIndex": [
  587. 2
  588. ],
  589. "PromoteLan": -1
  590. },
  591. {
  592. "ID": 11041,
  593. "PieceID": 13004,
  594. "power": 120.0,
  595. "name": 335,
  596. "dec": 758,
  597. "attribute": 1,
  598. "icon": "icon_s1104",
  599. "scriptName": "S1104",
  600. "IDGroup": 1104,
  601. "timelineName": "1104_timeline_TD",
  602. "cd": 1.0,
  603. "addcd": 1.0,
  604. "SkillType": 1,
  605. "level": 2,
  606. "effectValue": [
  607. 5.0,
  608. 34.0
  609. ],
  610. "intensifierIndex": [
  611. 2
  612. ],
  613. "addPropertyType": [
  614. 102
  615. ],
  616. "addPropertyValue": [
  617. 5.0
  618. ],
  619. "PromoteLan": 1115,
  620. "PromoteLanPara": [
  621. 5.0
  622. ]
  623. },
  624. {
  625. "ID": 11042,
  626. "PieceID": 13004,
  627. "power": 180.0,
  628. "name": 336,
  629. "dec": 759,
  630. "attribute": 1,
  631. "icon": "icon_s1104",
  632. "scriptName": "S1104",
  633. "IDGroup": 1104,
  634. "timelineName": "1104_timeline_TD",
  635. "cd": 1.0,
  636. "addcd": 1.0,
  637. "SkillType": 1,
  638. "level": 3,
  639. "effectValue": [
  640. 5.0,
  641. 36.0
  642. ],
  643. "intensifierIndex": [
  644. 2
  645. ],
  646. "addPropertyType": [
  647. 102
  648. ],
  649. "addPropertyValue": [
  650. 5.0
  651. ],
  652. "PromoteLan": 1116,
  653. "PromoteLanPara": [
  654. 2.0
  655. ]
  656. },
  657. {
  658. "ID": 11043,
  659. "PieceID": 13004,
  660. "power": 270.0,
  661. "name": 337,
  662. "dec": 760,
  663. "attribute": 1,
  664. "icon": "icon_s1104",
  665. "scriptName": "S1104",
  666. "IDGroup": 1104,
  667. "timelineName": "1104_timeline_TD",
  668. "cd": 1.0,
  669. "addcd": 1.0,
  670. "SkillType": 1,
  671. "level": 4,
  672. "effectValue": [
  673. 5.0,
  674. 38.0
  675. ],
  676. "intensifierIndex": [
  677. 2
  678. ],
  679. "addPropertyType": [
  680. 102
  681. ],
  682. "addPropertyValue": [
  683. 10.0
  684. ],
  685. "PromoteLan": 1117,
  686. "PromoteLanPara": [
  687. 5.0
  688. ]
  689. },
  690. {
  691. "ID": 11044,
  692. "PieceID": 13004,
  693. "power": 405.0,
  694. "name": 338,
  695. "dec": 761,
  696. "attribute": 1,
  697. "icon": "icon_s1104",
  698. "scriptName": "S1104",
  699. "IDGroup": 1104,
  700. "timelineName": "1104_timeline_TD",
  701. "cd": 1.0,
  702. "addcd": 1.0,
  703. "SkillType": 1,
  704. "level": 5,
  705. "effectValue": [
  706. 5.0,
  707. 40.0
  708. ],
  709. "intensifierIndex": [
  710. 2
  711. ],
  712. "addPropertyType": [
  713. 102
  714. ],
  715. "addPropertyValue": [
  716. 10.0
  717. ],
  718. "PromoteLan": 1118,
  719. "PromoteLanPara": [
  720. 2.0
  721. ]
  722. },
  723. {
  724. "ID": 11045,
  725. "PieceID": 13004,
  726. "power": 607.5,
  727. "name": 339,
  728. "dec": 762,
  729. "attribute": 1,
  730. "icon": "icon_s1104",
  731. "scriptName": "S1104",
  732. "IDGroup": 1104,
  733. "timelineName": "1104_timeline_TD",
  734. "cd": 1.0,
  735. "addcd": 1.0,
  736. "SkillType": 1,
  737. "level": 6,
  738. "effectValue": [
  739. 5.0,
  740. 44.0
  741. ],
  742. "intensifierIndex": [
  743. 2
  744. ],
  745. "addPropertyType": [
  746. 102
  747. ],
  748. "addPropertyValue": [
  749. 15.0
  750. ],
  751. "PromoteLan": 1119,
  752. "PromoteLanPara": [
  753. 5.0
  754. ]
  755. },
  756. {
  757. "ID": 11050,
  758. "PieceID": 13005,
  759. "power": 80.0,
  760. "name": 340,
  761. "dec": 763,
  762. "attribute": 1,
  763. "icon": "icon_s1105",
  764. "scriptName": "S1105",
  765. "IDGroup": 1105,
  766. "timelineName": "1105_timeline_TD",
  767. "cd": 1.0,
  768. "addcd": 1.0,
  769. "SkillType": 1,
  770. "level": 1,
  771. "effectValue": [
  772. 4.0,
  773. 35.0,
  774. 40.0
  775. ],
  776. "intensifierIndex": [
  777. 2
  778. ],
  779. "PromoteLan": -1
  780. },
  781. {
  782. "ID": 11051,
  783. "PieceID": 13005,
  784. "power": 120.0,
  785. "name": 341,
  786. "dec": 764,
  787. "attribute": 1,
  788. "icon": "icon_s1105",
  789. "scriptName": "S1105",
  790. "IDGroup": 1105,
  791. "timelineName": "1105_timeline_TD",
  792. "cd": 1.0,
  793. "addcd": 1.0,
  794. "SkillType": 1,
  795. "level": 2,
  796. "effectValue": [
  797. 4.0,
  798. 39.0,
  799. 40.0
  800. ],
  801. "intensifierIndex": [
  802. 2
  803. ],
  804. "addPropertyType": [
  805. 103
  806. ],
  807. "addPropertyValue": [
  808. 5.0
  809. ],
  810. "PromoteLan": 1120,
  811. "PromoteLanPara": [
  812. 5.0
  813. ]
  814. },
  815. {
  816. "ID": 11052,
  817. "PieceID": 13005,
  818. "power": 180.0,
  819. "name": 342,
  820. "dec": 765,
  821. "attribute": 1,
  822. "icon": "icon_s1105",
  823. "scriptName": "S1105",
  824. "IDGroup": 1105,
  825. "timelineName": "1105_timeline_TD",
  826. "cd": 1.0,
  827. "addcd": 1.0,
  828. "SkillType": 1,
  829. "level": 3,
  830. "effectValue": [
  831. 4.0,
  832. 41.0,
  833. 40.0
  834. ],
  835. "intensifierIndex": [
  836. 2
  837. ],
  838. "addPropertyType": [
  839. 103
  840. ],
  841. "addPropertyValue": [
  842. 5.0
  843. ],
  844. "PromoteLan": 1121,
  845. "PromoteLanPara": [
  846. 1.0
  847. ]
  848. },
  849. {
  850. "ID": 11053,
  851. "PieceID": 13005,
  852. "power": 270.0,
  853. "name": 343,
  854. "dec": 766,
  855. "attribute": 1,
  856. "icon": "icon_s1105",
  857. "scriptName": "S1105",
  858. "IDGroup": 1105,
  859. "timelineName": "1105_timeline_TD",
  860. "cd": 1.0,
  861. "addcd": 1.0,
  862. "SkillType": 1,
  863. "level": 4,
  864. "effectValue": [
  865. 4.0,
  866. 44.0,
  867. 40.0
  868. ],
  869. "intensifierIndex": [
  870. 2
  871. ],
  872. "addPropertyType": [
  873. 103
  874. ],
  875. "addPropertyValue": [
  876. 10.0
  877. ],
  878. "PromoteLan": 1122,
  879. "PromoteLanPara": [
  880. 5.0
  881. ]
  882. },
  883. {
  884. "ID": 11054,
  885. "PieceID": 13005,
  886. "power": 405.0,
  887. "name": 344,
  888. "dec": 767,
  889. "attribute": 1,
  890. "icon": "icon_s1105",
  891. "scriptName": "S1105",
  892. "IDGroup": 1105,
  893. "timelineName": "1105_timeline_TD",
  894. "cd": 1.0,
  895. "addcd": 1.0,
  896. "SkillType": 1,
  897. "level": 5,
  898. "effectValue": [
  899. 4.0,
  900. 46.0,
  901. 40.0
  902. ],
  903. "intensifierIndex": [
  904. 2
  905. ],
  906. "addPropertyType": [
  907. 103
  908. ],
  909. "addPropertyValue": [
  910. 10.0
  911. ],
  912. "PromoteLan": 1123,
  913. "PromoteLanPara": [
  914. 1.0
  915. ]
  916. },
  917. {
  918. "ID": 11055,
  919. "PieceID": 13005,
  920. "power": 607.5,
  921. "name": 345,
  922. "dec": 768,
  923. "attribute": 1,
  924. "icon": "icon_s1105",
  925. "scriptName": "S1105",
  926. "IDGroup": 1105,
  927. "timelineName": "1105_timeline_TD",
  928. "cd": 1.0,
  929. "addcd": 1.0,
  930. "SkillType": 1,
  931. "level": 6,
  932. "effectValue": [
  933. 4.0,
  934. 51.0,
  935. 40.0
  936. ],
  937. "intensifierIndex": [
  938. 2
  939. ],
  940. "addPropertyType": [
  941. 103
  942. ],
  943. "addPropertyValue": [
  944. 15.0
  945. ],
  946. "PromoteLan": 1124,
  947. "PromoteLanPara": [
  948. 5.0
  949. ]
  950. },
  951. {
  952. "ID": 12010,
  953. "PieceID": 13006,
  954. "power": 100.0,
  955. "name": 346,
  956. "dec": 769,
  957. "attribute": 2,
  958. "icon": "icon_s1201",
  959. "scriptName": "S1201",
  960. "IDGroup": 1201,
  961. "timelineName": "1201_timeline_TD",
  962. "cd": 1.0,
  963. "addcd": 1.0,
  964. "SkillType": 1,
  965. "level": 1,
  966. "effectValue": [
  967. 4.0,
  968. 35.0,
  969. 100.0
  970. ],
  971. "intensifierIndex": [
  972. 2
  973. ],
  974. "PromoteLan": -1
  975. },
  976. {
  977. "ID": 12011,
  978. "PieceID": 13006,
  979. "power": 150.0,
  980. "name": 347,
  981. "dec": 770,
  982. "attribute": 2,
  983. "icon": "icon_s1201",
  984. "scriptName": "S1201",
  985. "IDGroup": 1201,
  986. "timelineName": "1201_timeline_TD",
  987. "cd": 1.0,
  988. "addcd": 1.0,
  989. "SkillType": 1,
  990. "level": 2,
  991. "effectValue": [
  992. 4.0,
  993. 39.0,
  994. 100.0
  995. ],
  996. "intensifierIndex": [
  997. 2
  998. ],
  999. "PromoteLan": 1125,
  1000. "PromoteLanPara": [
  1001. 1.0
  1002. ]
  1003. },
  1004. {
  1005. "ID": 12012,
  1006. "PieceID": 13006,
  1007. "power": 225.0,
  1008. "name": 348,
  1009. "dec": 771,
  1010. "attribute": 2,
  1011. "icon": "icon_s1201",
  1012. "scriptName": "S1201",
  1013. "IDGroup": 1201,
  1014. "timelineName": "1201_timeline_TD",
  1015. "cd": 1.0,
  1016. "addcd": 1.0,
  1017. "SkillType": 1,
  1018. "level": 3,
  1019. "effectValue": [
  1020. 4.0,
  1021. 46.0,
  1022. 100.0
  1023. ],
  1024. "intensifierIndex": [
  1025. 2
  1026. ],
  1027. "addPropertyType": [
  1028. 101
  1029. ],
  1030. "addPropertyValue": [
  1031. 10.0
  1032. ],
  1033. "PromoteLan": 1126,
  1034. "PromoteLanPara": [
  1035. 10.0
  1036. ]
  1037. },
  1038. {
  1039. "ID": 12013,
  1040. "PieceID": 13006,
  1041. "power": 337.5,
  1042. "name": 349,
  1043. "dec": 772,
  1044. "attribute": 2,
  1045. "icon": "icon_s1201",
  1046. "scriptName": "S1201",
  1047. "IDGroup": 1201,
  1048. "timelineName": "1201_timeline_TD",
  1049. "cd": 1.0,
  1050. "addcd": 1.0,
  1051. "SkillType": 1,
  1052. "level": 4,
  1053. "effectValue": [
  1054. 4.0,
  1055. 53.0,
  1056. 100.0
  1057. ],
  1058. "intensifierIndex": [
  1059. 2
  1060. ],
  1061. "addPropertyType": [
  1062. 101
  1063. ],
  1064. "addPropertyValue": [
  1065. 10.0
  1066. ],
  1067. "PromoteLan": 1127,
  1068. "PromoteLanPara": [
  1069. 1.0
  1070. ]
  1071. },
  1072. {
  1073. "ID": 12014,
  1074. "PieceID": 13006,
  1075. "power": 506.25,
  1076. "name": 350,
  1077. "dec": 773,
  1078. "attribute": 2,
  1079. "icon": "icon_s1201",
  1080. "scriptName": "S1201",
  1081. "IDGroup": 1201,
  1082. "timelineName": "1201_timeline_TD",
  1083. "cd": 1.0,
  1084. "addcd": 1.0,
  1085. "SkillType": 1,
  1086. "level": 5,
  1087. "effectValue": [
  1088. 4.0,
  1089. 60.0,
  1090. 100.0
  1091. ],
  1092. "intensifierIndex": [
  1093. 2
  1094. ],
  1095. "addPropertyType": [
  1096. 101
  1097. ],
  1098. "addPropertyValue": [
  1099. 20.0
  1100. ],
  1101. "PromoteLan": 1128,
  1102. "PromoteLanPara": [
  1103. 10.0
  1104. ]
  1105. },
  1106. {
  1107. "ID": 12015,
  1108. "PieceID": 13006,
  1109. "power": 759.375,
  1110. "name": 351,
  1111. "dec": 774,
  1112. "attribute": 2,
  1113. "icon": "icon_s1201",
  1114. "scriptName": "S1201",
  1115. "IDGroup": 1201,
  1116. "timelineName": "1201_timeline_TD",
  1117. "cd": 1.0,
  1118. "addcd": 1.0,
  1119. "SkillType": 1,
  1120. "level": 6,
  1121. "effectValue": [
  1122. 5.0,
  1123. 54.0,
  1124. 100.0
  1125. ],
  1126. "intensifierIndex": [
  1127. 2
  1128. ],
  1129. "addPropertyType": [
  1130. 101
  1131. ],
  1132. "addPropertyValue": [
  1133. 20.0
  1134. ],
  1135. "PromoteLan": 1129,
  1136. "PromoteLanPara": [
  1137. 1.0
  1138. ]
  1139. },
  1140. {
  1141. "ID": 12020,
  1142. "PieceID": 13007,
  1143. "power": 100.0,
  1144. "name": 352,
  1145. "dec": 775,
  1146. "attribute": 2,
  1147. "icon": "icon_s1202",
  1148. "scriptName": "S1202",
  1149. "IDGroup": 1202,
  1150. "timelineName": "1202_timeline_TD",
  1151. "cd": 1.0,
  1152. "addcd": 1.0,
  1153. "SkillType": 1,
  1154. "level": 1,
  1155. "effectValue": [
  1156. 5.0,
  1157. 27.0,
  1158. 100.0
  1159. ],
  1160. "intensifierIndex": [
  1161. 2
  1162. ],
  1163. "PromoteLan": -1
  1164. },
  1165. {
  1166. "ID": 12021,
  1167. "PieceID": 13007,
  1168. "power": 150.0,
  1169. "name": 353,
  1170. "dec": 776,
  1171. "attribute": 2,
  1172. "icon": "icon_s1202",
  1173. "scriptName": "S1202",
  1174. "IDGroup": 1202,
  1175. "timelineName": "1202_timeline_TD",
  1176. "cd": 1.0,
  1177. "addcd": 1.0,
  1178. "SkillType": 1,
  1179. "level": 2,
  1180. "effectValue": [
  1181. 5.0,
  1182. 31.0,
  1183. 100.0
  1184. ],
  1185. "intensifierIndex": [
  1186. 2
  1187. ],
  1188. "PromoteLan": 1130,
  1189. "PromoteLanPara": [
  1190. 1.0
  1191. ]
  1192. },
  1193. {
  1194. "ID": 12022,
  1195. "PieceID": 13007,
  1196. "power": 225.0,
  1197. "name": 354,
  1198. "dec": 777,
  1199. "attribute": 2,
  1200. "icon": "icon_s1202",
  1201. "scriptName": "S1202",
  1202. "IDGroup": 1202,
  1203. "timelineName": "1202_timeline_TD",
  1204. "cd": 1.0,
  1205. "addcd": 1.0,
  1206. "SkillType": 1,
  1207. "level": 3,
  1208. "effectValue": [
  1209. 5.0,
  1210. 36.0,
  1211. 100.0
  1212. ],
  1213. "intensifierIndex": [
  1214. 2
  1215. ],
  1216. "addPropertyType": [
  1217. 103
  1218. ],
  1219. "addPropertyValue": [
  1220. 10.0
  1221. ],
  1222. "PromoteLan": 1131,
  1223. "PromoteLanPara": [
  1224. 10.0
  1225. ]
  1226. },
  1227. {
  1228. "ID": 12023,
  1229. "PieceID": 13007,
  1230. "power": 337.5,
  1231. "name": 355,
  1232. "dec": 778,
  1233. "attribute": 2,
  1234. "icon": "icon_s1202",
  1235. "scriptName": "S1202",
  1236. "IDGroup": 1202,
  1237. "timelineName": "1202_timeline_TD",
  1238. "cd": 1.0,
  1239. "addcd": 1.0,
  1240. "SkillType": 1,
  1241. "level": 4,
  1242. "effectValue": [
  1243. 5.0,
  1244. 41.0,
  1245. 100.0
  1246. ],
  1247. "intensifierIndex": [
  1248. 2
  1249. ],
  1250. "addPropertyType": [
  1251. 103
  1252. ],
  1253. "addPropertyValue": [
  1254. 10.0
  1255. ],
  1256. "PromoteLan": 1132,
  1257. "PromoteLanPara": [
  1258. 1.0
  1259. ]
  1260. },
  1261. {
  1262. "ID": 12024,
  1263. "PieceID": 13007,
  1264. "power": 506.25,
  1265. "name": 356,
  1266. "dec": 779,
  1267. "attribute": 2,
  1268. "icon": "icon_s1202",
  1269. "scriptName": "S1202",
  1270. "IDGroup": 1202,
  1271. "timelineName": "1202_timeline_TD",
  1272. "cd": 1.0,
  1273. "addcd": 1.0,
  1274. "SkillType": 1,
  1275. "level": 5,
  1276. "effectValue": [
  1277. 5.0,
  1278. 47.0,
  1279. 100.0
  1280. ],
  1281. "intensifierIndex": [
  1282. 2
  1283. ],
  1284. "addPropertyType": [
  1285. 103
  1286. ],
  1287. "addPropertyValue": [
  1288. 20.0
  1289. ],
  1290. "PromoteLan": 1133,
  1291. "PromoteLanPara": [
  1292. 10.0
  1293. ]
  1294. },
  1295. {
  1296. "ID": 12025,
  1297. "PieceID": 13007,
  1298. "power": 759.375,
  1299. "name": 357,
  1300. "dec": 780,
  1301. "attribute": 2,
  1302. "icon": "icon_s1202",
  1303. "scriptName": "S1202",
  1304. "IDGroup": 1202,
  1305. "timelineName": "1202_timeline_TD",
  1306. "cd": 1.0,
  1307. "addcd": 1.0,
  1308. "SkillType": 1,
  1309. "level": 6,
  1310. "effectValue": [
  1311. 6.0,
  1312. 44.0,
  1313. 100.0
  1314. ],
  1315. "intensifierIndex": [
  1316. 2
  1317. ],
  1318. "addPropertyType": [
  1319. 103
  1320. ],
  1321. "addPropertyValue": [
  1322. 20.0
  1323. ],
  1324. "PromoteLan": 1134,
  1325. "PromoteLanPara": [
  1326. 1.0
  1327. ]
  1328. },
  1329. {
  1330. "ID": 12040,
  1331. "PieceID": 13009,
  1332. "power": 80.0,
  1333. "name": 358,
  1334. "dec": 781,
  1335. "attribute": 2,
  1336. "icon": "icon_s1204",
  1337. "scriptName": "S1204",
  1338. "IDGroup": 1204,
  1339. "timelineName": "1204_timeline_TD",
  1340. "cd": 1.0,
  1341. "addcd": 1.0,
  1342. "SkillType": 1,
  1343. "level": 1,
  1344. "effectValue": [
  1345. 3.0,
  1346. 50.0
  1347. ],
  1348. "intensifierIndex": [
  1349. 2
  1350. ],
  1351. "PromoteLan": -1
  1352. },
  1353. {
  1354. "ID": 12041,
  1355. "PieceID": 13009,
  1356. "power": 120.0,
  1357. "name": 359,
  1358. "dec": 782,
  1359. "attribute": 2,
  1360. "icon": "icon_s1204",
  1361. "scriptName": "S1204",
  1362. "IDGroup": 1204,
  1363. "timelineName": "1204_timeline_TD",
  1364. "cd": 1.0,
  1365. "addcd": 1.0,
  1366. "SkillType": 1,
  1367. "level": 2,
  1368. "effectValue": [
  1369. 3.0,
  1370. 57.0
  1371. ],
  1372. "intensifierIndex": [
  1373. 2
  1374. ],
  1375. "addPropertyType": [
  1376. 102
  1377. ],
  1378. "addPropertyValue": [
  1379. 5.0
  1380. ],
  1381. "PromoteLan": 1140,
  1382. "PromoteLanPara": [
  1383. 5.0
  1384. ]
  1385. },
  1386. {
  1387. "ID": 12042,
  1388. "PieceID": 13009,
  1389. "power": 180.0,
  1390. "name": 360,
  1391. "dec": 783,
  1392. "attribute": 2,
  1393. "icon": "icon_s1204",
  1394. "scriptName": "S1204",
  1395. "IDGroup": 1204,
  1396. "timelineName": "1204_timeline_TD",
  1397. "cd": 1.0,
  1398. "addcd": 1.0,
  1399. "SkillType": 1,
  1400. "level": 3,
  1401. "effectValue": [
  1402. 3.0,
  1403. 60.0
  1404. ],
  1405. "intensifierIndex": [
  1406. 2
  1407. ],
  1408. "addPropertyType": [
  1409. 102
  1410. ],
  1411. "addPropertyValue": [
  1412. 5.0
  1413. ],
  1414. "PromoteLan": 1141,
  1415. "PromoteLanPara": [
  1416. 1.0
  1417. ]
  1418. },
  1419. {
  1420. "ID": 12043,
  1421. "PieceID": 13009,
  1422. "power": 270.0,
  1423. "name": 361,
  1424. "dec": 784,
  1425. "attribute": 2,
  1426. "icon": "icon_s1204",
  1427. "scriptName": "S1204",
  1428. "IDGroup": 1204,
  1429. "timelineName": "1204_timeline_TD",
  1430. "cd": 1.0,
  1431. "addcd": 1.0,
  1432. "SkillType": 1,
  1433. "level": 4,
  1434. "effectValue": [
  1435. 3.0,
  1436. 63.0
  1437. ],
  1438. "intensifierIndex": [
  1439. 2
  1440. ],
  1441. "addPropertyType": [
  1442. 102
  1443. ],
  1444. "addPropertyValue": [
  1445. 10.0
  1446. ],
  1447. "PromoteLan": 1142,
  1448. "PromoteLanPara": [
  1449. 10.0
  1450. ]
  1451. },
  1452. {
  1453. "ID": 12044,
  1454. "PieceID": 13009,
  1455. "power": 405.0,
  1456. "name": 362,
  1457. "dec": 785,
  1458. "attribute": 2,
  1459. "icon": "icon_s1204",
  1460. "scriptName": "S1204",
  1461. "IDGroup": 1204,
  1462. "timelineName": "1204_timeline_TD",
  1463. "cd": 1.0,
  1464. "addcd": 1.0,
  1465. "SkillType": 1,
  1466. "level": 5,
  1467. "effectValue": [
  1468. 3.0,
  1469. 67.0
  1470. ],
  1471. "intensifierIndex": [
  1472. 2
  1473. ],
  1474. "addPropertyType": [
  1475. 102
  1476. ],
  1477. "addPropertyValue": [
  1478. 10.0
  1479. ],
  1480. "PromoteLan": 1143,
  1481. "PromoteLanPara": [
  1482. 1.0
  1483. ]
  1484. },
  1485. {
  1486. "ID": 12045,
  1487. "PieceID": 13009,
  1488. "power": 607.5,
  1489. "name": 363,
  1490. "dec": 786,
  1491. "attribute": 2,
  1492. "icon": "icon_s1204",
  1493. "scriptName": "S1204",
  1494. "IDGroup": 1204,
  1495. "timelineName": "1204_timeline_TD",
  1496. "cd": 1.0,
  1497. "addcd": 1.0,
  1498. "SkillType": 1,
  1499. "level": 6,
  1500. "effectValue": [
  1501. 3.0,
  1502. 73.0
  1503. ],
  1504. "intensifierIndex": [
  1505. 2
  1506. ],
  1507. "addPropertyType": [
  1508. 102
  1509. ],
  1510. "addPropertyValue": [
  1511. 15.0
  1512. ],
  1513. "PromoteLan": 1144,
  1514. "PromoteLanPara": [
  1515. 15.0
  1516. ]
  1517. },
  1518. {
  1519. "ID": 12050,
  1520. "PieceID": 13010,
  1521. "power": 80.0,
  1522. "name": 364,
  1523. "dec": 787,
  1524. "attribute": 2,
  1525. "icon": "icon_s1205",
  1526. "scriptName": "S1205",
  1527. "IDGroup": 1205,
  1528. "timelineName": "1205_timeline_TD",
  1529. "cd": 1.0,
  1530. "addcd": 1.0,
  1531. "SkillType": 1,
  1532. "level": 1,
  1533. "effectValue": [
  1534. 4.0,
  1535. 38.0
  1536. ],
  1537. "intensifierIndex": [
  1538. 2
  1539. ],
  1540. "PromoteLan": -1
  1541. },
  1542. {
  1543. "ID": 12051,
  1544. "PieceID": 13010,
  1545. "power": 120.0,
  1546. "name": 365,
  1547. "dec": 788,
  1548. "attribute": 2,
  1549. "icon": "icon_s1205",
  1550. "scriptName": "S1205",
  1551. "IDGroup": 1205,
  1552. "timelineName": "1205_timeline_TD",
  1553. "cd": 1.0,
  1554. "addcd": 1.0,
  1555. "SkillType": 1,
  1556. "level": 2,
  1557. "effectValue": [
  1558. 4.0,
  1559. 43.0
  1560. ],
  1561. "intensifierIndex": [
  1562. 2
  1563. ],
  1564. "addPropertyType": [
  1565. 103
  1566. ],
  1567. "addPropertyValue": [
  1568. 5.0
  1569. ],
  1570. "PromoteLan": 1145,
  1571. "PromoteLanPara": [
  1572. 5.0
  1573. ]
  1574. },
  1575. {
  1576. "ID": 12052,
  1577. "PieceID": 13010,
  1578. "power": 180.0,
  1579. "name": 366,
  1580. "dec": 789,
  1581. "attribute": 2,
  1582. "icon": "icon_s1205",
  1583. "scriptName": "S1205",
  1584. "IDGroup": 1205,
  1585. "timelineName": "1205_timeline_TD",
  1586. "cd": 1.0,
  1587. "addcd": 1.0,
  1588. "SkillType": 1,
  1589. "level": 3,
  1590. "effectValue": [
  1591. 4.0,
  1592. 45.0
  1593. ],
  1594. "intensifierIndex": [
  1595. 2
  1596. ],
  1597. "addPropertyType": [
  1598. 103
  1599. ],
  1600. "addPropertyValue": [
  1601. 5.0
  1602. ],
  1603. "PromoteLan": 1146,
  1604. "PromoteLanPara": [
  1605. 2.0
  1606. ]
  1607. },
  1608. {
  1609. "ID": 12053,
  1610. "PieceID": 13010,
  1611. "power": 270.0,
  1612. "name": 367,
  1613. "dec": 790,
  1614. "attribute": 2,
  1615. "icon": "icon_s1205",
  1616. "scriptName": "S1205",
  1617. "IDGroup": 1205,
  1618. "timelineName": "1205_timeline_TD",
  1619. "cd": 1.0,
  1620. "addcd": 1.0,
  1621. "SkillType": 1,
  1622. "level": 4,
  1623. "effectValue": [
  1624. 4.0,
  1625. 48.0
  1626. ],
  1627. "intensifierIndex": [
  1628. 2
  1629. ],
  1630. "addPropertyType": [
  1631. 103
  1632. ],
  1633. "addPropertyValue": [
  1634. 10.0
  1635. ],
  1636. "PromoteLan": 1147,
  1637. "PromoteLanPara": [
  1638. 5.0
  1639. ]
  1640. },
  1641. {
  1642. "ID": 12054,
  1643. "PieceID": 13010,
  1644. "power": 405.0,
  1645. "name": 368,
  1646. "dec": 791,
  1647. "attribute": 2,
  1648. "icon": "icon_s1205",
  1649. "scriptName": "S1205",
  1650. "IDGroup": 1205,
  1651. "timelineName": "1205_timeline_TD",
  1652. "cd": 1.0,
  1653. "addcd": 1.0,
  1654. "SkillType": 1,
  1655. "level": 5,
  1656. "effectValue": [
  1657. 4.0,
  1658. 50.0
  1659. ],
  1660. "intensifierIndex": [
  1661. 2
  1662. ],
  1663. "addPropertyType": [
  1664. 103
  1665. ],
  1666. "addPropertyValue": [
  1667. 10.0
  1668. ],
  1669. "PromoteLan": 1148,
  1670. "PromoteLanPara": [
  1671. 2.0
  1672. ]
  1673. },
  1674. {
  1675. "ID": 12055,
  1676. "PieceID": 13010,
  1677. "power": 607.5,
  1678. "name": 369,
  1679. "dec": 792,
  1680. "attribute": 2,
  1681. "icon": "icon_s1205",
  1682. "scriptName": "S1205",
  1683. "IDGroup": 1205,
  1684. "timelineName": "1205_timeline_TD",
  1685. "cd": 1.0,
  1686. "addcd": 1.0,
  1687. "SkillType": 1,
  1688. "level": 6,
  1689. "effectValue": [
  1690. 4.0,
  1691. 55.0
  1692. ],
  1693. "intensifierIndex": [
  1694. 2
  1695. ],
  1696. "addPropertyType": [
  1697. 103
  1698. ],
  1699. "addPropertyValue": [
  1700. 15.0
  1701. ],
  1702. "PromoteLan": 1149,
  1703. "PromoteLanPara": [
  1704. 5.0
  1705. ]
  1706. },
  1707. {
  1708. "ID": 13010,
  1709. "PieceID": 13011,
  1710. "power": 100.0,
  1711. "name": 370,
  1712. "dec": 793,
  1713. "attribute": 4,
  1714. "icon": "icon_s1301",
  1715. "scriptName": "S1301",
  1716. "IDGroup": 1301,
  1717. "timelineName": "1301_timeline_TD",
  1718. "cd": 1.0,
  1719. "addcd": 1.0,
  1720. "SkillType": 1,
  1721. "level": 1,
  1722. "effectValue": [
  1723. 4.0,
  1724. 35.0,
  1725. 100.0
  1726. ],
  1727. "intensifierIndex": [
  1728. 2
  1729. ],
  1730. "PromoteLan": -1
  1731. },
  1732. {
  1733. "ID": 13011,
  1734. "PieceID": 13011,
  1735. "power": 150.0,
  1736. "name": 371,
  1737. "dec": 794,
  1738. "attribute": 4,
  1739. "icon": "icon_s1301",
  1740. "scriptName": "S1301",
  1741. "IDGroup": 1301,
  1742. "timelineName": "1301_timeline_TD",
  1743. "cd": 1.0,
  1744. "addcd": 1.0,
  1745. "SkillType": 1,
  1746. "level": 2,
  1747. "effectValue": [
  1748. 4.0,
  1749. 39.0,
  1750. 100.0
  1751. ],
  1752. "intensifierIndex": [
  1753. 2
  1754. ],
  1755. "PromoteLan": 1150,
  1756. "PromoteLanPara": [
  1757. 1.0
  1758. ]
  1759. },
  1760. {
  1761. "ID": 13012,
  1762. "PieceID": 13011,
  1763. "power": 225.0,
  1764. "name": 372,
  1765. "dec": 795,
  1766. "attribute": 4,
  1767. "icon": "icon_s1301",
  1768. "scriptName": "S1301",
  1769. "IDGroup": 1301,
  1770. "timelineName": "1301_timeline_TD",
  1771. "cd": 1.0,
  1772. "addcd": 1.0,
  1773. "SkillType": 1,
  1774. "level": 3,
  1775. "effectValue": [
  1776. 4.0,
  1777. 46.0,
  1778. 100.0
  1779. ],
  1780. "intensifierIndex": [
  1781. 2
  1782. ],
  1783. "addPropertyType": [
  1784. 101
  1785. ],
  1786. "addPropertyValue": [
  1787. 10.0
  1788. ],
  1789. "PromoteLan": 1151,
  1790. "PromoteLanPara": [
  1791. 10.0
  1792. ]
  1793. },
  1794. {
  1795. "ID": 13013,
  1796. "PieceID": 13011,
  1797. "power": 337.5,
  1798. "name": 373,
  1799. "dec": 796,
  1800. "attribute": 4,
  1801. "icon": "icon_s1301",
  1802. "scriptName": "S1301",
  1803. "IDGroup": 1301,
  1804. "timelineName": "1301_timeline_TD",
  1805. "cd": 1.0,
  1806. "addcd": 1.0,
  1807. "SkillType": 1,
  1808. "level": 4,
  1809. "effectValue": [
  1810. 4.0,
  1811. 53.0,
  1812. 100.0
  1813. ],
  1814. "intensifierIndex": [
  1815. 2
  1816. ],
  1817. "addPropertyType": [
  1818. 101
  1819. ],
  1820. "addPropertyValue": [
  1821. 10.0
  1822. ],
  1823. "PromoteLan": 1152,
  1824. "PromoteLanPara": [
  1825. 1.0
  1826. ]
  1827. },
  1828. {
  1829. "ID": 13014,
  1830. "PieceID": 13011,
  1831. "power": 506.25,
  1832. "name": 374,
  1833. "dec": 797,
  1834. "attribute": 4,
  1835. "icon": "icon_s1301",
  1836. "scriptName": "S1301",
  1837. "IDGroup": 1301,
  1838. "timelineName": "1301_timeline_TD",
  1839. "cd": 1.0,
  1840. "addcd": 1.0,
  1841. "SkillType": 1,
  1842. "level": 5,
  1843. "effectValue": [
  1844. 4.0,
  1845. 60.0,
  1846. 100.0
  1847. ],
  1848. "intensifierIndex": [
  1849. 2
  1850. ],
  1851. "addPropertyType": [
  1852. 101
  1853. ],
  1854. "addPropertyValue": [
  1855. 20.0
  1856. ],
  1857. "PromoteLan": 1153,
  1858. "PromoteLanPara": [
  1859. 10.0
  1860. ]
  1861. },
  1862. {
  1863. "ID": 13015,
  1864. "PieceID": 13011,
  1865. "power": 759.375,
  1866. "name": 375,
  1867. "dec": 798,
  1868. "attribute": 4,
  1869. "icon": "icon_s1301",
  1870. "scriptName": "S1301",
  1871. "IDGroup": 1301,
  1872. "timelineName": "1301_timeline_TD",
  1873. "cd": 1.0,
  1874. "addcd": 1.0,
  1875. "SkillType": 1,
  1876. "level": 6,
  1877. "effectValue": [
  1878. 5.0,
  1879. 54.0,
  1880. 100.0
  1881. ],
  1882. "intensifierIndex": [
  1883. 2
  1884. ],
  1885. "addPropertyType": [
  1886. 101
  1887. ],
  1888. "addPropertyValue": [
  1889. 20.0
  1890. ],
  1891. "PromoteLan": 1154,
  1892. "PromoteLanPara": [
  1893. 1.0
  1894. ]
  1895. },
  1896. {
  1897. "ID": 13020,
  1898. "PieceID": 13012,
  1899. "power": 100.0,
  1900. "name": 376,
  1901. "dec": 799,
  1902. "attribute": 4,
  1903. "icon": "icon_s1302",
  1904. "scriptName": "S1302",
  1905. "IDGroup": 1302,
  1906. "timelineName": "1302_timeline_TD",
  1907. "cd": 1.0,
  1908. "addcd": 1.0,
  1909. "SkillType": 1,
  1910. "level": 1,
  1911. "effectValue": [
  1912. 2.0,
  1913. 77.0,
  1914. 5.0
  1915. ],
  1916. "intensifierIndex": [
  1917. 2
  1918. ],
  1919. "PromoteLan": -1
  1920. },
  1921. {
  1922. "ID": 13021,
  1923. "PieceID": 13012,
  1924. "power": 150.0,
  1925. "name": 377,
  1926. "dec": 800,
  1927. "attribute": 4,
  1928. "icon": "icon_s1302",
  1929. "scriptName": "S1302",
  1930. "IDGroup": 1302,
  1931. "timelineName": "1302_timeline_TD",
  1932. "cd": 1.0,
  1933. "addcd": 1.0,
  1934. "SkillType": 1,
  1935. "level": 2,
  1936. "effectValue": [
  1937. 2.0,
  1938. 90.0,
  1939. 6.0
  1940. ],
  1941. "intensifierIndex": [
  1942. 2
  1943. ],
  1944. "PromoteLan": 1155,
  1945. "PromoteLanPara": [
  1946. 1.0
  1947. ]
  1948. },
  1949. {
  1950. "ID": 13022,
  1951. "PieceID": 13012,
  1952. "power": 225.0,
  1953. "name": 378,
  1954. "dec": 801,
  1955. "attribute": 4,
  1956. "icon": "icon_s1302",
  1957. "scriptName": "S1302",
  1958. "IDGroup": 1302,
  1959. "timelineName": "1302_timeline_TD",
  1960. "cd": 1.0,
  1961. "addcd": 1.0,
  1962. "SkillType": 1,
  1963. "level": 3,
  1964. "effectValue": [
  1965. 2.0,
  1966. 102.0,
  1967. 7.0
  1968. ],
  1969. "intensifierIndex": [
  1970. 2
  1971. ],
  1972. "addPropertyType": [
  1973. 103
  1974. ],
  1975. "addPropertyValue": [
  1976. 10.0
  1977. ],
  1978. "PromoteLan": 1156,
  1979. "PromoteLanPara": [
  1980. 10.0
  1981. ]
  1982. },
  1983. {
  1984. "ID": 13023,
  1985. "PieceID": 13012,
  1986. "power": 337.5,
  1987. "name": 379,
  1988. "dec": 802,
  1989. "attribute": 4,
  1990. "icon": "icon_s1302",
  1991. "scriptName": "S1302",
  1992. "IDGroup": 1302,
  1993. "timelineName": "1302_timeline_TD",
  1994. "cd": 1.0,
  1995. "addcd": 1.0,
  1996. "SkillType": 1,
  1997. "level": 4,
  1998. "effectValue": [
  1999. 2.0,
  2000. 114.0,
  2001. 8.0
  2002. ],
  2003. "intensifierIndex": [
  2004. 2
  2005. ],
  2006. "addPropertyType": [
  2007. 103
  2008. ],
  2009. "addPropertyValue": [
  2010. 10.0
  2011. ],
  2012. "PromoteLan": 1157,
  2013. "PromoteLanPara": [
  2014. 1.0
  2015. ]
  2016. },
  2017. {
  2018. "ID": 13024,
  2019. "PieceID": 13012,
  2020. "power": 506.25,
  2021. "name": 380,
  2022. "dec": 803,
  2023. "attribute": 4,
  2024. "icon": "icon_s1302",
  2025. "scriptName": "S1302",
  2026. "IDGroup": 1302,
  2027. "timelineName": "1302_timeline_TD",
  2028. "cd": 1.0,
  2029. "addcd": 1.0,
  2030. "SkillType": 1,
  2031. "level": 5,
  2032. "effectValue": [
  2033. 2.0,
  2034. 131.0,
  2035. 9.0
  2036. ],
  2037. "intensifierIndex": [
  2038. 2
  2039. ],
  2040. "addPropertyType": [
  2041. 103
  2042. ],
  2043. "addPropertyValue": [
  2044. 20.0
  2045. ],
  2046. "PromoteLan": 1158,
  2047. "PromoteLanPara": [
  2048. 10.0
  2049. ]
  2050. },
  2051. {
  2052. "ID": 13025,
  2053. "PieceID": 13012,
  2054. "power": 759.375,
  2055. "name": 381,
  2056. "dec": 804,
  2057. "attribute": 4,
  2058. "icon": "icon_s1302",
  2059. "scriptName": "S1302",
  2060. "IDGroup": 1302,
  2061. "timelineName": "1302_timeline_TD",
  2062. "cd": 1.0,
  2063. "addcd": 1.0,
  2064. "SkillType": 1,
  2065. "level": 6,
  2066. "effectValue": [
  2067. 2.0,
  2068. 155.0,
  2069. 10.0
  2070. ],
  2071. "intensifierIndex": [
  2072. 2
  2073. ],
  2074. "addPropertyType": [
  2075. 103
  2076. ],
  2077. "addPropertyValue": [
  2078. 20.0
  2079. ],
  2080. "PromoteLan": 1159,
  2081. "PromoteLanPara": [
  2082. 1.0
  2083. ]
  2084. },
  2085. {
  2086. "ID": 13040,
  2087. "PieceID": 13014,
  2088. "power": 80.0,
  2089. "name": 382,
  2090. "dec": 805,
  2091. "attribute": 4,
  2092. "icon": "icon_s1304",
  2093. "scriptName": "S1304",
  2094. "IDGroup": 1304,
  2095. "timelineName": "1304_timeline_TD",
  2096. "cd": 1.0,
  2097. "addcd": 1.0,
  2098. "SkillType": 1,
  2099. "level": 1,
  2100. "effectValue": [
  2101. 5.0,
  2102. 30.0
  2103. ],
  2104. "intensifierIndex": [
  2105. 2
  2106. ],
  2107. "PromoteLan": -1
  2108. },
  2109. {
  2110. "ID": 13041,
  2111. "PieceID": 13014,
  2112. "power": 120.0,
  2113. "name": 383,
  2114. "dec": 806,
  2115. "attribute": 4,
  2116. "icon": "icon_s1304",
  2117. "scriptName": "S1304",
  2118. "IDGroup": 1304,
  2119. "timelineName": "1304_timeline_TD",
  2120. "cd": 1.0,
  2121. "addcd": 1.0,
  2122. "SkillType": 1,
  2123. "level": 2,
  2124. "effectValue": [
  2125. 5.0,
  2126. 34.0
  2127. ],
  2128. "intensifierIndex": [
  2129. 2
  2130. ],
  2131. "addPropertyType": [
  2132. 101
  2133. ],
  2134. "addPropertyValue": [
  2135. 5.0
  2136. ],
  2137. "PromoteLan": 1165,
  2138. "PromoteLanPara": [
  2139. 5.0
  2140. ]
  2141. },
  2142. {
  2143. "ID": 13042,
  2144. "PieceID": 13014,
  2145. "power": 180.0,
  2146. "name": 384,
  2147. "dec": 807,
  2148. "attribute": 4,
  2149. "icon": "icon_s1304",
  2150. "scriptName": "S1304",
  2151. "IDGroup": 1304,
  2152. "timelineName": "1304_timeline_TD",
  2153. "cd": 1.0,
  2154. "addcd": 1.0,
  2155. "SkillType": 1,
  2156. "level": 3,
  2157. "effectValue": [
  2158. 5.0,
  2159. 36.0
  2160. ],
  2161. "intensifierIndex": [
  2162. 2
  2163. ],
  2164. "addPropertyType": [
  2165. 101
  2166. ],
  2167. "addPropertyValue": [
  2168. 5.0
  2169. ],
  2170. "PromoteLan": 1166,
  2171. "PromoteLanPara": [
  2172. 2.0
  2173. ]
  2174. },
  2175. {
  2176. "ID": 13043,
  2177. "PieceID": 13014,
  2178. "power": 270.0,
  2179. "name": 385,
  2180. "dec": 808,
  2181. "attribute": 4,
  2182. "icon": "icon_s1304",
  2183. "scriptName": "S1304",
  2184. "IDGroup": 1304,
  2185. "timelineName": "1304_timeline_TD",
  2186. "cd": 1.0,
  2187. "addcd": 1.0,
  2188. "SkillType": 1,
  2189. "level": 4,
  2190. "effectValue": [
  2191. 5.0,
  2192. 38.0
  2193. ],
  2194. "intensifierIndex": [
  2195. 2
  2196. ],
  2197. "addPropertyType": [
  2198. 101
  2199. ],
  2200. "addPropertyValue": [
  2201. 10.0
  2202. ],
  2203. "PromoteLan": 1167,
  2204. "PromoteLanPara": [
  2205. 5.0
  2206. ]
  2207. },
  2208. {
  2209. "ID": 13044,
  2210. "PieceID": 13014,
  2211. "power": 405.0,
  2212. "name": 386,
  2213. "dec": 809,
  2214. "attribute": 4,
  2215. "icon": "icon_s1304",
  2216. "scriptName": "S1304",
  2217. "IDGroup": 1304,
  2218. "timelineName": "1304_timeline_TD",
  2219. "cd": 1.0,
  2220. "addcd": 1.0,
  2221. "SkillType": 1,
  2222. "level": 5,
  2223. "effectValue": [
  2224. 5.0,
  2225. 40.0
  2226. ],
  2227. "intensifierIndex": [
  2228. 2
  2229. ],
  2230. "addPropertyType": [
  2231. 101
  2232. ],
  2233. "addPropertyValue": [
  2234. 10.0
  2235. ],
  2236. "PromoteLan": 1168,
  2237. "PromoteLanPara": [
  2238. 2.0
  2239. ]
  2240. },
  2241. {
  2242. "ID": 13045,
  2243. "PieceID": 13014,
  2244. "power": 607.5,
  2245. "name": 387,
  2246. "dec": 810,
  2247. "attribute": 4,
  2248. "icon": "icon_s1304",
  2249. "scriptName": "S1304",
  2250. "IDGroup": 1304,
  2251. "timelineName": "1304_timeline_TD",
  2252. "cd": 1.0,
  2253. "addcd": 1.0,
  2254. "SkillType": 1,
  2255. "level": 6,
  2256. "effectValue": [
  2257. 5.0,
  2258. 44.0
  2259. ],
  2260. "intensifierIndex": [
  2261. 2
  2262. ],
  2263. "addPropertyType": [
  2264. 101
  2265. ],
  2266. "addPropertyValue": [
  2267. 15.0
  2268. ],
  2269. "PromoteLan": 1169,
  2270. "PromoteLanPara": [
  2271. 5.0
  2272. ]
  2273. },
  2274. {
  2275. "ID": 13050,
  2276. "PieceID": 13015,
  2277. "power": 80.0,
  2278. "name": 388,
  2279. "dec": 811,
  2280. "attribute": 4,
  2281. "icon": "icon_s1305",
  2282. "scriptName": "S1305",
  2283. "IDGroup": 1305,
  2284. "timelineName": "1305_timeline_TD",
  2285. "cd": 1.0,
  2286. "addcd": 1.0,
  2287. "SkillType": 1,
  2288. "level": 1,
  2289. "effectValue": [
  2290. 4.0,
  2291. 38.0
  2292. ],
  2293. "intensifierIndex": [
  2294. 2
  2295. ],
  2296. "PromoteLan": -1
  2297. },
  2298. {
  2299. "ID": 13051,
  2300. "PieceID": 13015,
  2301. "power": 120.0,
  2302. "name": 389,
  2303. "dec": 812,
  2304. "attribute": 4,
  2305. "icon": "icon_s1305",
  2306. "scriptName": "S1305",
  2307. "IDGroup": 1305,
  2308. "timelineName": "1305_timeline_TD",
  2309. "cd": 1.0,
  2310. "addcd": 1.0,
  2311. "SkillType": 1,
  2312. "level": 2,
  2313. "effectValue": [
  2314. 4.0,
  2315. 43.0
  2316. ],
  2317. "intensifierIndex": [
  2318. 2
  2319. ],
  2320. "addPropertyType": [
  2321. 102
  2322. ],
  2323. "addPropertyValue": [
  2324. 5.0
  2325. ],
  2326. "PromoteLan": 1170,
  2327. "PromoteLanPara": [
  2328. 5.0
  2329. ]
  2330. },
  2331. {
  2332. "ID": 13052,
  2333. "PieceID": 13015,
  2334. "power": 180.0,
  2335. "name": 390,
  2336. "dec": 813,
  2337. "attribute": 4,
  2338. "icon": "icon_s1305",
  2339. "scriptName": "S1305",
  2340. "IDGroup": 1305,
  2341. "timelineName": "1305_timeline_TD",
  2342. "cd": 1.0,
  2343. "addcd": 1.0,
  2344. "SkillType": 1,
  2345. "level": 3,
  2346. "effectValue": [
  2347. 4.0,
  2348. 45.0
  2349. ],
  2350. "intensifierIndex": [
  2351. 2
  2352. ],
  2353. "addPropertyType": [
  2354. 102
  2355. ],
  2356. "addPropertyValue": [
  2357. 5.0
  2358. ],
  2359. "PromoteLan": 1171,
  2360. "PromoteLanPara": [
  2361. 3.0
  2362. ]
  2363. },
  2364. {
  2365. "ID": 13053,
  2366. "PieceID": 13015,
  2367. "power": 270.0,
  2368. "name": 391,
  2369. "dec": 814,
  2370. "attribute": 4,
  2371. "icon": "icon_s1305",
  2372. "scriptName": "S1305",
  2373. "IDGroup": 1305,
  2374. "timelineName": "1305_timeline_TD",
  2375. "cd": 1.0,
  2376. "addcd": 1.0,
  2377. "SkillType": 1,
  2378. "level": 4,
  2379. "effectValue": [
  2380. 4.0,
  2381. 48.0
  2382. ],
  2383. "intensifierIndex": [
  2384. 2
  2385. ],
  2386. "addPropertyType": [
  2387. 102
  2388. ],
  2389. "addPropertyValue": [
  2390. 10.0
  2391. ],
  2392. "PromoteLan": 1172,
  2393. "PromoteLanPara": [
  2394. 5.0
  2395. ]
  2396. },
  2397. {
  2398. "ID": 13054,
  2399. "PieceID": 13015,
  2400. "power": 405.0,
  2401. "name": 392,
  2402. "dec": 815,
  2403. "attribute": 4,
  2404. "icon": "icon_s1305",
  2405. "scriptName": "S1305",
  2406. "IDGroup": 1305,
  2407. "timelineName": "1305_timeline_TD",
  2408. "cd": 1.0,
  2409. "addcd": 1.0,
  2410. "SkillType": 1,
  2411. "level": 5,
  2412. "effectValue": [
  2413. 4.0,
  2414. 50.0
  2415. ],
  2416. "intensifierIndex": [
  2417. 2
  2418. ],
  2419. "addPropertyType": [
  2420. 102
  2421. ],
  2422. "addPropertyValue": [
  2423. 10.0
  2424. ],
  2425. "PromoteLan": 1173,
  2426. "PromoteLanPara": [
  2427. 3.0
  2428. ]
  2429. },
  2430. {
  2431. "ID": 13055,
  2432. "PieceID": 13015,
  2433. "power": 607.5,
  2434. "name": 393,
  2435. "dec": 816,
  2436. "attribute": 4,
  2437. "icon": "icon_s1305",
  2438. "scriptName": "S1305",
  2439. "IDGroup": 1305,
  2440. "timelineName": "1305_timeline_TD",
  2441. "cd": 1.0,
  2442. "addcd": 1.0,
  2443. "SkillType": 1,
  2444. "level": 6,
  2445. "effectValue": [
  2446. 4.0,
  2447. 55.0
  2448. ],
  2449. "intensifierIndex": [
  2450. 2
  2451. ],
  2452. "addPropertyType": [
  2453. 102
  2454. ],
  2455. "addPropertyValue": [
  2456. 15.0
  2457. ],
  2458. "PromoteLan": 1174,
  2459. "PromoteLanPara": [
  2460. 5.0
  2461. ]
  2462. },
  2463. {
  2464. "ID": 14010,
  2465. "PieceID": 13016,
  2466. "power": 100.0,
  2467. "name": 394,
  2468. "dec": 817,
  2469. "attribute": 8,
  2470. "icon": "icon_s1401",
  2471. "scriptName": "S1401",
  2472. "IDGroup": 1401,
  2473. "timelineName": "1401_timeline_TD",
  2474. "cd": 1.0,
  2475. "addcd": 1.0,
  2476. "SkillType": 1,
  2477. "level": 1,
  2478. "effectValue": [
  2479. 4.0,
  2480. 39.0,
  2481. 100.0
  2482. ],
  2483. "intensifierIndex": [
  2484. 2
  2485. ],
  2486. "PromoteLan": -1
  2487. },
  2488. {
  2489. "ID": 14011,
  2490. "PieceID": 13016,
  2491. "power": 150.0,
  2492. "name": 395,
  2493. "dec": 818,
  2494. "attribute": 8,
  2495. "icon": "icon_s1401",
  2496. "scriptName": "S1401",
  2497. "IDGroup": 1401,
  2498. "timelineName": "1401_timeline_TD",
  2499. "cd": 1.0,
  2500. "addcd": 1.0,
  2501. "SkillType": 1,
  2502. "level": 2,
  2503. "effectValue": [
  2504. 4.0,
  2505. 46.0,
  2506. 100.0
  2507. ],
  2508. "intensifierIndex": [
  2509. 2
  2510. ],
  2511. "PromoteLan": 1175,
  2512. "PromoteLanPara": [
  2513. 2.0
  2514. ]
  2515. },
  2516. {
  2517. "ID": 14012,
  2518. "PieceID": 13016,
  2519. "power": 225.0,
  2520. "name": 396,
  2521. "dec": 819,
  2522. "attribute": 8,
  2523. "icon": "icon_s1401",
  2524. "scriptName": "S1401",
  2525. "IDGroup": 1401,
  2526. "timelineName": "1401_timeline_TD",
  2527. "cd": 1.0,
  2528. "addcd": 1.0,
  2529. "SkillType": 1,
  2530. "level": 3,
  2531. "effectValue": [
  2532. 4.0,
  2533. 53.0,
  2534. 100.0
  2535. ],
  2536. "intensifierIndex": [
  2537. 2
  2538. ],
  2539. "addPropertyType": [
  2540. 101
  2541. ],
  2542. "addPropertyValue": [
  2543. 10.0
  2544. ],
  2545. "PromoteLan": 1176,
  2546. "PromoteLanPara": [
  2547. 10.0
  2548. ]
  2549. },
  2550. {
  2551. "ID": 14013,
  2552. "PieceID": 13016,
  2553. "power": 337.5,
  2554. "name": 397,
  2555. "dec": 820,
  2556. "attribute": 8,
  2557. "icon": "icon_s1401",
  2558. "scriptName": "S1401",
  2559. "IDGroup": 1401,
  2560. "timelineName": "1401_timeline_TD",
  2561. "cd": 1.0,
  2562. "addcd": 1.0,
  2563. "SkillType": 1,
  2564. "level": 4,
  2565. "effectValue": [
  2566. 4.0,
  2567. 60.0,
  2568. 100.0
  2569. ],
  2570. "intensifierIndex": [
  2571. 2
  2572. ],
  2573. "addPropertyType": [
  2574. 101
  2575. ],
  2576. "addPropertyValue": [
  2577. 10.0
  2578. ],
  2579. "PromoteLan": 1177,
  2580. "PromoteLanPara": [
  2581. 4.0
  2582. ]
  2583. },
  2584. {
  2585. "ID": 14014,
  2586. "PieceID": 13016,
  2587. "power": 506.25,
  2588. "name": 398,
  2589. "dec": 821,
  2590. "attribute": 8,
  2591. "icon": "icon_s1401",
  2592. "scriptName": "S1401",
  2593. "IDGroup": 1401,
  2594. "timelineName": "1401_timeline_TD",
  2595. "cd": 1.0,
  2596. "addcd": 1.0,
  2597. "SkillType": 1,
  2598. "level": 5,
  2599. "effectValue": [
  2600. 4.0,
  2601. 69.0,
  2602. 100.0
  2603. ],
  2604. "intensifierIndex": [
  2605. 2
  2606. ],
  2607. "addPropertyType": [
  2608. 101
  2609. ],
  2610. "addPropertyValue": [
  2611. 20.0
  2612. ],
  2613. "PromoteLan": 1178,
  2614. "PromoteLanPara": [
  2615. 10.0
  2616. ]
  2617. },
  2618. {
  2619. "ID": 14015,
  2620. "PieceID": 13016,
  2621. "power": 759.375,
  2622. "name": 399,
  2623. "dec": 822,
  2624. "attribute": 8,
  2625. "icon": "icon_s1401",
  2626. "scriptName": "S1401",
  2627. "IDGroup": 1401,
  2628. "timelineName": "1401_timeline_TD",
  2629. "cd": 1.0,
  2630. "addcd": 1.0,
  2631. "SkillType": 1,
  2632. "level": 6,
  2633. "effectValue": [
  2634. 4.0,
  2635. 83.0,
  2636. 100.0,
  2637. 20.0
  2638. ],
  2639. "intensifierIndex": [
  2640. 2
  2641. ],
  2642. "addPropertyType": [
  2643. 101
  2644. ],
  2645. "addPropertyValue": [
  2646. 20.0
  2647. ],
  2648. "PromoteLan": 1179
  2649. },
  2650. {
  2651. "ID": 14020,
  2652. "PieceID": 13017,
  2653. "power": 120.0,
  2654. "name": 400,
  2655. "dec": 823,
  2656. "attribute": 8,
  2657. "icon": "icon_s1402",
  2658. "scriptName": "S1402",
  2659. "IDGroup": 1402,
  2660. "timelineName": "1402_timeline_TD",
  2661. "cd": 1.0,
  2662. "addcd": 1.0,
  2663. "SkillType": 1,
  2664. "level": 1,
  2665. "effectValue": [
  2666. 2.0,
  2667. 85.0
  2668. ],
  2669. "intensifierIndex": [
  2670. 2
  2671. ],
  2672. "PromoteLan": -1
  2673. },
  2674. {
  2675. "ID": 14021,
  2676. "PieceID": 13017,
  2677. "power": 180.0,
  2678. "name": 401,
  2679. "dec": 824,
  2680. "attribute": 8,
  2681. "icon": "icon_s1402",
  2682. "scriptName": "S1402",
  2683. "IDGroup": 1402,
  2684. "timelineName": "1402_timeline_TD",
  2685. "cd": 1.0,
  2686. "addcd": 1.0,
  2687. "SkillType": 1,
  2688. "level": 2,
  2689. "effectValue": [
  2690. 2.0,
  2691. 90.0,
  2692. 5.0,
  2693. 3.0
  2694. ],
  2695. "intensifierIndex": [
  2696. 2
  2697. ],
  2698. "PromoteLan": 1180
  2699. },
  2700. {
  2701. "ID": 14022,
  2702. "PieceID": 13017,
  2703. "power": 270.0,
  2704. "name": 402,
  2705. "dec": 825,
  2706. "attribute": 8,
  2707. "icon": "icon_s1402",
  2708. "scriptName": "S1402",
  2709. "IDGroup": 1402,
  2710. "timelineName": "1402_timeline_TD",
  2711. "cd": 1.0,
  2712. "addcd": 1.0,
  2713. "SkillType": 1,
  2714. "level": 3,
  2715. "effectValue": [
  2716. 2.0,
  2717. 104.0,
  2718. 5.0,
  2719. 3.0
  2720. ],
  2721. "intensifierIndex": [
  2722. 2
  2723. ],
  2724. "addPropertyType": [
  2725. 102
  2726. ],
  2727. "addPropertyValue": [
  2728. 10.0
  2729. ],
  2730. "PromoteLan": 1181,
  2731. "PromoteLanPara": [
  2732. 10.0
  2733. ]
  2734. },
  2735. {
  2736. "ID": 14023,
  2737. "PieceID": 13017,
  2738. "power": 405.0,
  2739. "name": 403,
  2740. "dec": 826,
  2741. "attribute": 8,
  2742. "icon": "icon_s1402",
  2743. "scriptName": "S1402",
  2744. "IDGroup": 1402,
  2745. "timelineName": "1402_timeline_TD",
  2746. "cd": 1.0,
  2747. "addcd": 1.0,
  2748. "SkillType": 1,
  2749. "level": 4,
  2750. "effectValue": [
  2751. 2.0,
  2752. 112.0,
  2753. 5.0,
  2754. 3.0
  2755. ],
  2756. "intensifierIndex": [
  2757. 2
  2758. ],
  2759. "addPropertyType": [
  2760. 102
  2761. ],
  2762. "addPropertyValue": [
  2763. 10.0
  2764. ],
  2765. "PromoteLan": 1182,
  2766. "PromoteLanPara": [
  2767. 1.0
  2768. ]
  2769. },
  2770. {
  2771. "ID": 14024,
  2772. "PieceID": 13017,
  2773. "power": 607.5,
  2774. "name": 404,
  2775. "dec": 827,
  2776. "attribute": 8,
  2777. "icon": "icon_s1402",
  2778. "scriptName": "S1402",
  2779. "IDGroup": 1402,
  2780. "timelineName": "1402_timeline_TD",
  2781. "cd": 1.0,
  2782. "addcd": 1.0,
  2783. "SkillType": 1,
  2784. "level": 5,
  2785. "effectValue": [
  2786. 2.0,
  2787. 129.0,
  2788. 5.0,
  2789. 3.0
  2790. ],
  2791. "intensifierIndex": [
  2792. 2
  2793. ],
  2794. "addPropertyType": [
  2795. 102
  2796. ],
  2797. "addPropertyValue": [
  2798. 20.0
  2799. ],
  2800. "PromoteLan": 1183,
  2801. "PromoteLanPara": [
  2802. 10.0
  2803. ]
  2804. },
  2805. {
  2806. "ID": 14025,
  2807. "PieceID": 13017,
  2808. "power": 911.25,
  2809. "name": 405,
  2810. "dec": 828,
  2811. "attribute": 8,
  2812. "icon": "icon_s1402",
  2813. "scriptName": "S1402",
  2814. "IDGroup": 1402,
  2815. "timelineName": "1402_timeline_TD",
  2816. "cd": 1.0,
  2817. "addcd": 1.0,
  2818. "SkillType": 1,
  2819. "level": 6,
  2820. "effectValue": [
  2821. 2.0,
  2822. 155.0,
  2823. 5.0,
  2824. 3.0,
  2825. 25.0
  2826. ],
  2827. "intensifierIndex": [
  2828. 2
  2829. ],
  2830. "addPropertyType": [
  2831. 102
  2832. ],
  2833. "addPropertyValue": [
  2834. 20.0
  2835. ],
  2836. "PromoteLan": 1184
  2837. },
  2838. {
  2839. "ID": 14030,
  2840. "PieceID": 13018,
  2841. "power": 100.0,
  2842. "name": 406,
  2843. "dec": 829,
  2844. "attribute": 8,
  2845. "icon": "icon_s1403",
  2846. "scriptName": "S1403",
  2847. "IDGroup": 1403,
  2848. "timelineName": "1403_timeline_TD",
  2849. "cd": 1.0,
  2850. "addcd": 1.0,
  2851. "SkillType": 1,
  2852. "level": 1,
  2853. "effectValue": [
  2854. 1.0,
  2855. 27.0,
  2856. 25.0
  2857. ],
  2858. "intensifierIndex": [
  2859. 2
  2860. ],
  2861. "PromoteLan": -1
  2862. },
  2863. {
  2864. "ID": 14031,
  2865. "PieceID": 13018,
  2866. "power": 150.0,
  2867. "name": 407,
  2868. "dec": 830,
  2869. "attribute": 8,
  2870. "icon": "icon_s1403",
  2871. "scriptName": "S1403",
  2872. "IDGroup": 1403,
  2873. "timelineName": "1403_timeline_TD",
  2874. "cd": 1.0,
  2875. "addcd": 1.0,
  2876. "SkillType": 1,
  2877. "level": 2,
  2878. "effectValue": [
  2879. 1.0,
  2880. 31.0,
  2881. 25.0,
  2882. 30.0
  2883. ],
  2884. "intensifierIndex": [
  2885. 2
  2886. ],
  2887. "PromoteLan": 1185
  2888. },
  2889. {
  2890. "ID": 14032,
  2891. "PieceID": 13018,
  2892. "power": 225.0,
  2893. "name": 408,
  2894. "dec": 831,
  2895. "attribute": 8,
  2896. "icon": "icon_s1403",
  2897. "scriptName": "S1403",
  2898. "IDGroup": 1403,
  2899. "timelineName": "1403_timeline_TD",
  2900. "cd": 1.0,
  2901. "addcd": 1.0,
  2902. "SkillType": 1,
  2903. "level": 3,
  2904. "effectValue": [
  2905. 1.0,
  2906. 36.0,
  2907. 25.0,
  2908. 30.0
  2909. ],
  2910. "intensifierIndex": [
  2911. 2
  2912. ],
  2913. "addPropertyType": [
  2914. 103
  2915. ],
  2916. "addPropertyValue": [
  2917. 10.0
  2918. ],
  2919. "PromoteLan": 1186,
  2920. "PromoteLanPara": [
  2921. 10.0
  2922. ]
  2923. },
  2924. {
  2925. "ID": 14033,
  2926. "PieceID": 13018,
  2927. "power": 337.5,
  2928. "name": 409,
  2929. "dec": 832,
  2930. "attribute": 8,
  2931. "icon": "icon_s1403",
  2932. "scriptName": "S1403",
  2933. "IDGroup": 1403,
  2934. "timelineName": "1403_timeline_TD",
  2935. "cd": 1.0,
  2936. "addcd": 1.0,
  2937. "SkillType": 1,
  2938. "level": 4,
  2939. "effectValue": [
  2940. 1.0,
  2941. 41.0,
  2942. 25.0,
  2943. 30.0
  2944. ],
  2945. "intensifierIndex": [
  2946. 2
  2947. ],
  2948. "addPropertyType": [
  2949. 103
  2950. ],
  2951. "addPropertyValue": [
  2952. 10.0
  2953. ],
  2954. "PromoteLan": 1187
  2955. },
  2956. {
  2957. "ID": 14034,
  2958. "PieceID": 13018,
  2959. "power": 506.25,
  2960. "name": 410,
  2961. "dec": 833,
  2962. "attribute": 8,
  2963. "icon": "icon_s1403",
  2964. "scriptName": "S1403",
  2965. "IDGroup": 1403,
  2966. "timelineName": "1403_timeline_TD",
  2967. "cd": 1.0,
  2968. "addcd": 1.0,
  2969. "SkillType": 1,
  2970. "level": 5,
  2971. "effectValue": [
  2972. 1.0,
  2973. 47.0,
  2974. 25.0,
  2975. 30.0
  2976. ],
  2977. "intensifierIndex": [
  2978. 2
  2979. ],
  2980. "addPropertyType": [
  2981. 103
  2982. ],
  2983. "addPropertyValue": [
  2984. 20.0
  2985. ],
  2986. "PromoteLan": 1188,
  2987. "PromoteLanPara": [
  2988. 10.0
  2989. ]
  2990. },
  2991. {
  2992. "ID": 14035,
  2993. "PieceID": 13018,
  2994. "power": 759.375,
  2995. "name": 411,
  2996. "dec": 834,
  2997. "attribute": 8,
  2998. "icon": "icon_s1403",
  2999. "scriptName": "S1403",
  3000. "IDGroup": 1403,
  3001. "timelineName": "1403_timeline_TD",
  3002. "cd": 1.0,
  3003. "addcd": 1.0,
  3004. "SkillType": 1,
  3005. "level": 6,
  3006. "effectValue": [
  3007. 1.0,
  3008. 54.0,
  3009. 25.0,
  3010. 40.0,
  3011. 40.0
  3012. ],
  3013. "intensifierIndex": [
  3014. 2
  3015. ],
  3016. "addPropertyType": [
  3017. 103
  3018. ],
  3019. "addPropertyValue": [
  3020. 20.0
  3021. ],
  3022. "PromoteLan": 1189
  3023. },
  3024. {
  3025. "ID": 14040,
  3026. "PieceID": 13019,
  3027. "power": 80.0,
  3028. "name": 412,
  3029. "dec": 835,
  3030. "attribute": 8,
  3031. "icon": "icon_s1404",
  3032. "scriptName": "S1404",
  3033. "IDGroup": 1404,
  3034. "timelineName": "1404_timeline_TD",
  3035. "cd": 1.0,
  3036. "addcd": 1.0,
  3037. "SkillType": 1,
  3038. "level": 1,
  3039. "effectValue": [
  3040. 5.0,
  3041. 27.0,
  3042. 100.0
  3043. ],
  3044. "intensifierIndex": [
  3045. 2
  3046. ],
  3047. "PromoteLan": -1
  3048. },
  3049. {
  3050. "ID": 14041,
  3051. "PieceID": 13019,
  3052. "power": 120.0,
  3053. "name": 413,
  3054. "dec": 836,
  3055. "attribute": 8,
  3056. "icon": "icon_s1404",
  3057. "scriptName": "S1404",
  3058. "IDGroup": 1404,
  3059. "timelineName": "1404_timeline_TD",
  3060. "cd": 1.0,
  3061. "addcd": 1.0,
  3062. "SkillType": 1,
  3063. "level": 2,
  3064. "effectValue": [
  3065. 5.0,
  3066. 31.0,
  3067. 100.0
  3068. ],
  3069. "intensifierIndex": [
  3070. 2
  3071. ],
  3072. "addPropertyType": [
  3073. 103
  3074. ],
  3075. "addPropertyValue": [
  3076. 5.0
  3077. ],
  3078. "PromoteLan": 1190,
  3079. "PromoteLanPara": [
  3080. 5.0
  3081. ]
  3082. },
  3083. {
  3084. "ID": 14042,
  3085. "PieceID": 13019,
  3086. "power": 180.0,
  3087. "name": 414,
  3088. "dec": 837,
  3089. "attribute": 8,
  3090. "icon": "icon_s1404",
  3091. "scriptName": "S1404",
  3092. "IDGroup": 1404,
  3093. "timelineName": "1404_timeline_TD",
  3094. "cd": 1.0,
  3095. "addcd": 1.0,
  3096. "SkillType": 1,
  3097. "level": 3,
  3098. "effectValue": [
  3099. 5.0,
  3100. 32.0,
  3101. 100.0
  3102. ],
  3103. "intensifierIndex": [
  3104. 2
  3105. ],
  3106. "addPropertyType": [
  3107. 103
  3108. ],
  3109. "addPropertyValue": [
  3110. 5.0
  3111. ],
  3112. "PromoteLan": 1191,
  3113. "PromoteLanPara": [
  3114. 1.0
  3115. ]
  3116. },
  3117. {
  3118. "ID": 14043,
  3119. "PieceID": 13019,
  3120. "power": 270.0,
  3121. "name": 415,
  3122. "dec": 838,
  3123. "attribute": 8,
  3124. "icon": "icon_s1404",
  3125. "scriptName": "S1404",
  3126. "IDGroup": 1404,
  3127. "timelineName": "1404_timeline_TD",
  3128. "cd": 1.0,
  3129. "addcd": 1.0,
  3130. "SkillType": 1,
  3131. "level": 4,
  3132. "effectValue": [
  3133. 5.0,
  3134. 34.0,
  3135. 100.0
  3136. ],
  3137. "intensifierIndex": [
  3138. 2
  3139. ],
  3140. "addPropertyType": [
  3141. 103
  3142. ],
  3143. "addPropertyValue": [
  3144. 10.0
  3145. ],
  3146. "PromoteLan": 1192,
  3147. "PromoteLanPara": [
  3148. 5.0
  3149. ]
  3150. },
  3151. {
  3152. "ID": 14044,
  3153. "PieceID": 13019,
  3154. "power": 405.0,
  3155. "name": 416,
  3156. "dec": 839,
  3157. "attribute": 8,
  3158. "icon": "icon_s1404",
  3159. "scriptName": "S1404",
  3160. "IDGroup": 1404,
  3161. "timelineName": "1404_timeline_TD",
  3162. "cd": 1.0,
  3163. "addcd": 1.0,
  3164. "SkillType": 1,
  3165. "level": 5,
  3166. "effectValue": [
  3167. 6.0,
  3168. 29.0,
  3169. 100.0
  3170. ],
  3171. "intensifierIndex": [
  3172. 2
  3173. ],
  3174. "addPropertyType": [
  3175. 103
  3176. ],
  3177. "addPropertyValue": [
  3178. 10.0
  3179. ],
  3180. "PromoteLan": 1193,
  3181. "PromoteLanPara": [
  3182. 2.0
  3183. ]
  3184. },
  3185. {
  3186. "ID": 14045,
  3187. "PieceID": 13019,
  3188. "power": 607.5,
  3189. "name": 417,
  3190. "dec": 840,
  3191. "attribute": 8,
  3192. "icon": "icon_s1404",
  3193. "scriptName": "S1404",
  3194. "IDGroup": 1404,
  3195. "timelineName": "1404_timeline_TD",
  3196. "cd": 1.0,
  3197. "addcd": 1.0,
  3198. "SkillType": 1,
  3199. "level": 6,
  3200. "effectValue": [
  3201. 6.0,
  3202. 32.0,
  3203. 100.0
  3204. ],
  3205. "intensifierIndex": [
  3206. 2
  3207. ],
  3208. "addPropertyType": [
  3209. 103
  3210. ],
  3211. "addPropertyValue": [
  3212. 15.0
  3213. ],
  3214. "PromoteLan": 1194,
  3215. "PromoteLanPara": [
  3216. 5.0
  3217. ]
  3218. },
  3219. {
  3220. "ID": 14050,
  3221. "PieceID": 13020,
  3222. "power": 80.0,
  3223. "name": 418,
  3224. "dec": 841,
  3225. "attribute": 8,
  3226. "icon": "icon_s1405",
  3227. "scriptName": "S1405",
  3228. "IDGroup": 1405,
  3229. "timelineName": "1405_timeline_TD",
  3230. "cd": 1.0,
  3231. "addcd": 1.0,
  3232. "SkillType": 1,
  3233. "level": 1,
  3234. "effectValue": [
  3235. 4.0,
  3236. 38.0
  3237. ],
  3238. "intensifierIndex": [
  3239. 2
  3240. ],
  3241. "PromoteLan": -1
  3242. },
  3243. {
  3244. "ID": 14051,
  3245. "PieceID": 13020,
  3246. "power": 120.0,
  3247. "name": 419,
  3248. "dec": 842,
  3249. "attribute": 8,
  3250. "icon": "icon_s1405",
  3251. "scriptName": "S1405",
  3252. "IDGroup": 1405,
  3253. "timelineName": "1405_timeline_TD",
  3254. "cd": 1.0,
  3255. "addcd": 1.0,
  3256. "SkillType": 1,
  3257. "level": 2,
  3258. "effectValue": [
  3259. 4.0,
  3260. 43.0
  3261. ],
  3262. "intensifierIndex": [
  3263. 2
  3264. ],
  3265. "addPropertyType": [
  3266. 101
  3267. ],
  3268. "addPropertyValue": [
  3269. 5.0
  3270. ],
  3271. "PromoteLan": 1195,
  3272. "PromoteLanPara": [
  3273. 5.0
  3274. ]
  3275. },
  3276. {
  3277. "ID": 14052,
  3278. "PieceID": 13020,
  3279. "power": 180.0,
  3280. "name": 420,
  3281. "dec": 843,
  3282. "attribute": 8,
  3283. "icon": "icon_s1405",
  3284. "scriptName": "S1405",
  3285. "IDGroup": 1405,
  3286. "timelineName": "1405_timeline_TD",
  3287. "cd": 1.0,
  3288. "addcd": 1.0,
  3289. "SkillType": 1,
  3290. "level": 3,
  3291. "effectValue": [
  3292. 4.0,
  3293. 45.0
  3294. ],
  3295. "intensifierIndex": [
  3296. 2
  3297. ],
  3298. "addPropertyType": [
  3299. 101
  3300. ],
  3301. "addPropertyValue": [
  3302. 5.0
  3303. ],
  3304. "PromoteLan": 1196,
  3305. "PromoteLanPara": [
  3306. 2.0
  3307. ]
  3308. },
  3309. {
  3310. "ID": 14053,
  3311. "PieceID": 13020,
  3312. "power": 270.0,
  3313. "name": 421,
  3314. "dec": 844,
  3315. "attribute": 8,
  3316. "icon": "icon_s1405",
  3317. "scriptName": "S1405",
  3318. "IDGroup": 1405,
  3319. "timelineName": "1405_timeline_TD",
  3320. "cd": 1.0,
  3321. "addcd": 1.0,
  3322. "SkillType": 1,
  3323. "level": 4,
  3324. "effectValue": [
  3325. 4.0,
  3326. 48.0
  3327. ],
  3328. "intensifierIndex": [
  3329. 2
  3330. ],
  3331. "addPropertyType": [
  3332. 101
  3333. ],
  3334. "addPropertyValue": [
  3335. 10.0
  3336. ],
  3337. "PromoteLan": 1197,
  3338. "PromoteLanPara": [
  3339. 5.0
  3340. ]
  3341. },
  3342. {
  3343. "ID": 14054,
  3344. "PieceID": 13020,
  3345. "power": 405.0,
  3346. "name": 422,
  3347. "dec": 845,
  3348. "attribute": 8,
  3349. "icon": "icon_s1405",
  3350. "scriptName": "S1405",
  3351. "IDGroup": 1405,
  3352. "timelineName": "1405_timeline_TD",
  3353. "cd": 1.0,
  3354. "addcd": 1.0,
  3355. "SkillType": 1,
  3356. "level": 5,
  3357. "effectValue": [
  3358. 4.0,
  3359. 50.0
  3360. ],
  3361. "intensifierIndex": [
  3362. 2
  3363. ],
  3364. "addPropertyType": [
  3365. 101
  3366. ],
  3367. "addPropertyValue": [
  3368. 10.0
  3369. ],
  3370. "PromoteLan": 1198,
  3371. "PromoteLanPara": [
  3372. 2.0
  3373. ]
  3374. },
  3375. {
  3376. "ID": 14055,
  3377. "PieceID": 13020,
  3378. "power": 607.5,
  3379. "name": 423,
  3380. "dec": 846,
  3381. "attribute": 8,
  3382. "icon": "icon_s1405",
  3383. "scriptName": "S1405",
  3384. "IDGroup": 1405,
  3385. "timelineName": "1405_timeline_TD",
  3386. "cd": 1.0,
  3387. "addcd": 1.0,
  3388. "SkillType": 1,
  3389. "level": 6,
  3390. "effectValue": [
  3391. 4.0,
  3392. 55.0
  3393. ],
  3394. "intensifierIndex": [
  3395. 2
  3396. ],
  3397. "addPropertyType": [
  3398. 101
  3399. ],
  3400. "addPropertyValue": [
  3401. 15.0
  3402. ],
  3403. "PromoteLan": 1199,
  3404. "PromoteLanPara": [
  3405. 5.0
  3406. ]
  3407. },
  3408. {
  3409. "ID": 15010,
  3410. "PieceID": 13021,
  3411. "power": 100.0,
  3412. "name": 424,
  3413. "dec": 847,
  3414. "attribute": 16,
  3415. "icon": "icon_s1501",
  3416. "scriptName": "S1501",
  3417. "IDGroup": 1501,
  3418. "timelineName": "1501_timeline_TD",
  3419. "cd": 1.0,
  3420. "addcd": 1.0,
  3421. "SkillType": 1,
  3422. "level": 1,
  3423. "effectValue": [
  3424. 5.0,
  3425. 29.0,
  3426. 100.0
  3427. ],
  3428. "intensifierIndex": [
  3429. 2
  3430. ],
  3431. "PromoteLan": -1
  3432. },
  3433. {
  3434. "ID": 15011,
  3435. "PieceID": 13021,
  3436. "power": 150.0,
  3437. "name": 425,
  3438. "dec": 848,
  3439. "attribute": 16,
  3440. "icon": "icon_s1501",
  3441. "scriptName": "S1501",
  3442. "IDGroup": 1501,
  3443. "timelineName": "1501_timeline_TD",
  3444. "cd": 1.0,
  3445. "addcd": 1.0,
  3446. "SkillType": 1,
  3447. "level": 2,
  3448. "effectValue": [
  3449. 5.0,
  3450. 32.0,
  3451. 100.0
  3452. ],
  3453. "intensifierIndex": [
  3454. 2
  3455. ],
  3456. "PromoteLan": 1200,
  3457. "PromoteLanPara": [
  3458. 2.0
  3459. ]
  3460. },
  3461. {
  3462. "ID": 15012,
  3463. "PieceID": 13021,
  3464. "power": 225.0,
  3465. "name": 426,
  3466. "dec": 849,
  3467. "attribute": 16,
  3468. "icon": "icon_s1501",
  3469. "scriptName": "S1501",
  3470. "IDGroup": 1501,
  3471. "timelineName": "1501_timeline_TD",
  3472. "cd": 1.0,
  3473. "addcd": 1.0,
  3474. "SkillType": 1,
  3475. "level": 3,
  3476. "effectValue": [
  3477. 5.0,
  3478. 38.0,
  3479. 100.0
  3480. ],
  3481. "intensifierIndex": [
  3482. 2
  3483. ],
  3484. "addPropertyType": [
  3485. 101
  3486. ],
  3487. "addPropertyValue": [
  3488. 10.0
  3489. ],
  3490. "PromoteLan": 1201,
  3491. "PromoteLanPara": [
  3492. 10.0
  3493. ]
  3494. },
  3495. {
  3496. "ID": 15013,
  3497. "PieceID": 13021,
  3498. "power": 337.5,
  3499. "name": 427,
  3500. "dec": 850,
  3501. "attribute": 16,
  3502. "icon": "icon_s1501",
  3503. "scriptName": "S1501",
  3504. "IDGroup": 1501,
  3505. "timelineName": "1501_timeline_TD",
  3506. "cd": 1.0,
  3507. "addcd": 1.0,
  3508. "SkillType": 1,
  3509. "level": 4,
  3510. "effectValue": [
  3511. 5.0,
  3512. 44.0,
  3513. 100.0
  3514. ],
  3515. "intensifierIndex": [
  3516. 2
  3517. ],
  3518. "addPropertyType": [
  3519. 101
  3520. ],
  3521. "addPropertyValue": [
  3522. 10.0
  3523. ],
  3524. "PromoteLan": 1202,
  3525. "PromoteLanPara": [
  3526. 2.0
  3527. ]
  3528. },
  3529. {
  3530. "ID": 15014,
  3531. "PieceID": 13021,
  3532. "power": 506.25,
  3533. "name": 428,
  3534. "dec": 851,
  3535. "attribute": 16,
  3536. "icon": "icon_s1501",
  3537. "scriptName": "S1501",
  3538. "IDGroup": 1501,
  3539. "timelineName": "1501_timeline_TD",
  3540. "cd": 1.0,
  3541. "addcd": 1.0,
  3542. "SkillType": 1,
  3543. "level": 5,
  3544. "effectValue": [
  3545. 5.0,
  3546. 49.0,
  3547. 100.0
  3548. ],
  3549. "intensifierIndex": [
  3550. 2
  3551. ],
  3552. "addPropertyType": [
  3553. 101
  3554. ],
  3555. "addPropertyValue": [
  3556. 20.0
  3557. ],
  3558. "PromoteLan": 1203,
  3559. "PromoteLanPara": [
  3560. 10.0
  3561. ]
  3562. },
  3563. {
  3564. "ID": 15015,
  3565. "PieceID": 13021,
  3566. "power": 759.375,
  3567. "name": 429,
  3568. "dec": 852,
  3569. "attribute": 16,
  3570. "icon": "icon_s1501",
  3571. "scriptName": "S1501",
  3572. "IDGroup": 1501,
  3573. "timelineName": "1501_timeline_TD",
  3574. "cd": 1.0,
  3575. "addcd": 1.0,
  3576. "SkillType": 1,
  3577. "level": 6,
  3578. "effectValue": [
  3579. 5.0,
  3580. 57.0,
  3581. 100.0
  3582. ],
  3583. "intensifierIndex": [
  3584. 2
  3585. ],
  3586. "addPropertyType": [
  3587. 101
  3588. ],
  3589. "addPropertyValue": [
  3590. 20.0
  3591. ],
  3592. "PromoteLan": 1204,
  3593. "PromoteLanPara": [
  3594. 2.0
  3595. ]
  3596. },
  3597. {
  3598. "ID": 15020,
  3599. "PieceID": 13022,
  3600. "power": 100.0,
  3601. "name": 430,
  3602. "dec": 853,
  3603. "attribute": 16,
  3604. "icon": "icon_s1502",
  3605. "scriptName": "S1502",
  3606. "IDGroup": 1502,
  3607. "timelineName": "1502_timeline_TD",
  3608. "cd": 1.0,
  3609. "addcd": 1.0,
  3610. "SkillType": 1,
  3611. "level": 1,
  3612. "effectValue": [
  3613. 3.0,
  3614. 49.0,
  3615. 30.0
  3616. ],
  3617. "intensifierIndex": [
  3618. 2
  3619. ],
  3620. "PromoteLan": -1
  3621. },
  3622. {
  3623. "ID": 15021,
  3624. "PieceID": 13022,
  3625. "power": 150.0,
  3626. "name": 431,
  3627. "dec": 854,
  3628. "attribute": 16,
  3629. "icon": "icon_s1502",
  3630. "scriptName": "S1502",
  3631. "IDGroup": 1502,
  3632. "timelineName": "1502_timeline_TD",
  3633. "cd": 1.0,
  3634. "addcd": 1.0,
  3635. "SkillType": 1,
  3636. "level": 2,
  3637. "effectValue": [
  3638. 3.0,
  3639. 55.0,
  3640. 30.0
  3641. ],
  3642. "intensifierIndex": [
  3643. 2
  3644. ],
  3645. "PromoteLan": 1205,
  3646. "PromoteLanPara": [
  3647. 1.0
  3648. ]
  3649. },
  3650. {
  3651. "ID": 15022,
  3652. "PieceID": 13022,
  3653. "power": 225.0,
  3654. "name": 432,
  3655. "dec": 855,
  3656. "attribute": 16,
  3657. "icon": "icon_s1502",
  3658. "scriptName": "S1502",
  3659. "IDGroup": 1502,
  3660. "timelineName": "1502_timeline_TD",
  3661. "cd": 1.0,
  3662. "addcd": 1.0,
  3663. "SkillType": 1,
  3664. "level": 3,
  3665. "effectValue": [
  3666. 3.0,
  3667. 65.0,
  3668. 30.0
  3669. ],
  3670. "intensifierIndex": [
  3671. 2
  3672. ],
  3673. "addPropertyType": [
  3674. 102
  3675. ],
  3676. "addPropertyValue": [
  3677. 10.0
  3678. ],
  3679. "PromoteLan": 1206,
  3680. "PromoteLanPara": [
  3681. 10.0
  3682. ]
  3683. },
  3684. {
  3685. "ID": 15023,
  3686. "PieceID": 13022,
  3687. "power": 337.5,
  3688. "name": 433,
  3689. "dec": 856,
  3690. "attribute": 16,
  3691. "icon": "icon_s1502",
  3692. "scriptName": "S1502",
  3693. "IDGroup": 1502,
  3694. "timelineName": "1502_timeline_TD",
  3695. "cd": 1.0,
  3696. "addcd": 1.0,
  3697. "SkillType": 1,
  3698. "level": 4,
  3699. "effectValue": [
  3700. 3.0,
  3701. 74.0,
  3702. 30.0
  3703. ],
  3704. "intensifierIndex": [
  3705. 2
  3706. ],
  3707. "addPropertyType": [
  3708. 102
  3709. ],
  3710. "addPropertyValue": [
  3711. 10.0
  3712. ],
  3713. "PromoteLan": 1207,
  3714. "PromoteLanPara": [
  3715. 1.0
  3716. ]
  3717. },
  3718. {
  3719. "ID": 15024,
  3720. "PieceID": 13022,
  3721. "power": 506.25,
  3722. "name": 434,
  3723. "dec": 857,
  3724. "attribute": 16,
  3725. "icon": "icon_s1502",
  3726. "scriptName": "S1502",
  3727. "IDGroup": 1502,
  3728. "timelineName": "1502_timeline_TD",
  3729. "cd": 1.0,
  3730. "addcd": 1.0,
  3731. "SkillType": 1,
  3732. "level": 5,
  3733. "effectValue": [
  3734. 3.0,
  3735. 84.0,
  3736. 30.0
  3737. ],
  3738. "intensifierIndex": [
  3739. 2
  3740. ],
  3741. "addPropertyType": [
  3742. 102
  3743. ],
  3744. "addPropertyValue": [
  3745. 20.0
  3746. ],
  3747. "PromoteLan": 1208,
  3748. "PromoteLanPara": [
  3749. 10.0
  3750. ]
  3751. },
  3752. {
  3753. "ID": 15025,
  3754. "PieceID": 13022,
  3755. "power": 759.375,
  3756. "name": 435,
  3757. "dec": 858,
  3758. "attribute": 16,
  3759. "icon": "icon_s1502",
  3760. "scriptName": "S1502",
  3761. "IDGroup": 1502,
  3762. "timelineName": "1502_timeline_TD",
  3763. "cd": 1.0,
  3764. "addcd": 1.0,
  3765. "SkillType": 1,
  3766. "level": 6,
  3767. "effectValue": [
  3768. 3.0,
  3769. 97.0,
  3770. 30.0
  3771. ],
  3772. "intensifierIndex": [
  3773. 2
  3774. ],
  3775. "addPropertyType": [
  3776. 102
  3777. ],
  3778. "addPropertyValue": [
  3779. 20.0
  3780. ],
  3781. "PromoteLan": 1209,
  3782. "PromoteLanPara": [
  3783. 1.0
  3784. ]
  3785. },
  3786. {
  3787. "ID": 15040,
  3788. "PieceID": 13024,
  3789. "power": 80.0,
  3790. "name": 436,
  3791. "dec": 859,
  3792. "attribute": 16,
  3793. "icon": "icon_s1504",
  3794. "scriptName": "S1504",
  3795. "IDGroup": 1504,
  3796. "timelineName": "1504_timeline_TD",
  3797. "cd": 1.0,
  3798. "addcd": 1.0,
  3799. "SkillType": 1,
  3800. "level": 1,
  3801. "effectValue": [
  3802. 3.0,
  3803. 50.0
  3804. ],
  3805. "intensifierIndex": [
  3806. 2
  3807. ],
  3808. "PromoteLan": -1
  3809. },
  3810. {
  3811. "ID": 15041,
  3812. "PieceID": 13024,
  3813. "power": 120.0,
  3814. "name": 437,
  3815. "dec": 860,
  3816. "attribute": 16,
  3817. "icon": "icon_s1504",
  3818. "scriptName": "S1504",
  3819. "IDGroup": 1504,
  3820. "timelineName": "1504_timeline_TD",
  3821. "cd": 1.0,
  3822. "addcd": 1.0,
  3823. "SkillType": 1,
  3824. "level": 2,
  3825. "effectValue": [
  3826. 3.0,
  3827. 57.0
  3828. ],
  3829. "intensifierIndex": [
  3830. 2
  3831. ],
  3832. "addPropertyType": [
  3833. 102
  3834. ],
  3835. "addPropertyValue": [
  3836. 5.0
  3837. ],
  3838. "PromoteLan": 1215,
  3839. "PromoteLanPara": [
  3840. 5.0
  3841. ]
  3842. },
  3843. {
  3844. "ID": 15042,
  3845. "PieceID": 13024,
  3846. "power": 180.0,
  3847. "name": 438,
  3848. "dec": 861,
  3849. "attribute": 16,
  3850. "icon": "icon_s1504",
  3851. "scriptName": "S1504",
  3852. "IDGroup": 1504,
  3853. "timelineName": "1504_timeline_TD",
  3854. "cd": 1.0,
  3855. "addcd": 1.0,
  3856. "SkillType": 1,
  3857. "level": 3,
  3858. "effectValue": [
  3859. 3.0,
  3860. 60.0
  3861. ],
  3862. "intensifierIndex": [
  3863. 2
  3864. ],
  3865. "addPropertyType": [
  3866. 102
  3867. ],
  3868. "addPropertyValue": [
  3869. 5.0
  3870. ],
  3871. "PromoteLan": 1216,
  3872. "PromoteLanPara": [
  3873. 1.0
  3874. ]
  3875. },
  3876. {
  3877. "ID": 15043,
  3878. "PieceID": 13024,
  3879. "power": 270.0,
  3880. "name": 439,
  3881. "dec": 862,
  3882. "attribute": 16,
  3883. "icon": "icon_s1504",
  3884. "scriptName": "S1504",
  3885. "IDGroup": 1504,
  3886. "timelineName": "1504_timeline_TD",
  3887. "cd": 1.0,
  3888. "addcd": 1.0,
  3889. "SkillType": 1,
  3890. "level": 4,
  3891. "effectValue": [
  3892. 3.0,
  3893. 63.0
  3894. ],
  3895. "intensifierIndex": [
  3896. 2
  3897. ],
  3898. "addPropertyType": [
  3899. 102
  3900. ],
  3901. "addPropertyValue": [
  3902. 10.0
  3903. ],
  3904. "PromoteLan": 1217,
  3905. "PromoteLanPara": [
  3906. 5.0
  3907. ]
  3908. },
  3909. {
  3910. "ID": 15044,
  3911. "PieceID": 13024,
  3912. "power": 405.0,
  3913. "name": 440,
  3914. "dec": 863,
  3915. "attribute": 16,
  3916. "icon": "icon_s1504",
  3917. "scriptName": "S1504",
  3918. "IDGroup": 1504,
  3919. "timelineName": "1504_timeline_TD",
  3920. "cd": 1.0,
  3921. "addcd": 1.0,
  3922. "SkillType": 1,
  3923. "level": 5,
  3924. "effectValue": [
  3925. 3.0,
  3926. 67.0
  3927. ],
  3928. "intensifierIndex": [
  3929. 2
  3930. ],
  3931. "addPropertyType": [
  3932. 102
  3933. ],
  3934. "addPropertyValue": [
  3935. 10.0
  3936. ],
  3937. "PromoteLan": 1218,
  3938. "PromoteLanPara": [
  3939. 1.0
  3940. ]
  3941. },
  3942. {
  3943. "ID": 15045,
  3944. "PieceID": 13024,
  3945. "power": 607.5,
  3946. "name": 441,
  3947. "dec": 864,
  3948. "attribute": 16,
  3949. "icon": "icon_s1504",
  3950. "scriptName": "S1504",
  3951. "IDGroup": 1504,
  3952. "timelineName": "1504_timeline_TD",
  3953. "cd": 1.0,
  3954. "addcd": 1.0,
  3955. "SkillType": 1,
  3956. "level": 6,
  3957. "effectValue": [
  3958. 3.0,
  3959. 73.0
  3960. ],
  3961. "intensifierIndex": [
  3962. 2
  3963. ],
  3964. "addPropertyType": [
  3965. 102
  3966. ],
  3967. "addPropertyValue": [
  3968. 15.0
  3969. ],
  3970. "PromoteLan": 1219,
  3971. "PromoteLanPara": [
  3972. 5.0
  3973. ]
  3974. },
  3975. {
  3976. "ID": 15050,
  3977. "PieceID": 13025,
  3978. "power": 80.0,
  3979. "name": 442,
  3980. "dec": 865,
  3981. "attribute": 16,
  3982. "icon": "icon_s1505",
  3983. "scriptName": "S1505",
  3984. "IDGroup": 1505,
  3985. "timelineName": "1505_timeline_TD",
  3986. "cd": 1.0,
  3987. "addcd": 1.0,
  3988. "SkillType": 1,
  3989. "level": 1,
  3990. "effectValue": [
  3991. 4.0,
  3992. 38.0
  3993. ],
  3994. "intensifierIndex": [
  3995. 2
  3996. ],
  3997. "PromoteLan": -1
  3998. },
  3999. {
  4000. "ID": 15051,
  4001. "PieceID": 13025,
  4002. "power": 120.0,
  4003. "name": 443,
  4004. "dec": 866,
  4005. "attribute": 16,
  4006. "icon": "icon_s1505",
  4007. "scriptName": "S1505",
  4008. "IDGroup": 1505,
  4009. "timelineName": "1505_timeline_TD",
  4010. "cd": 1.0,
  4011. "addcd": 1.0,
  4012. "SkillType": 1,
  4013. "level": 2,
  4014. "effectValue": [
  4015. 4.0,
  4016. 43.0
  4017. ],
  4018. "intensifierIndex": [
  4019. 2
  4020. ],
  4021. "addPropertyType": [
  4022. 101
  4023. ],
  4024. "addPropertyValue": [
  4025. 5.0
  4026. ],
  4027. "PromoteLan": 1220,
  4028. "PromoteLanPara": [
  4029. 5.0
  4030. ]
  4031. },
  4032. {
  4033. "ID": 15052,
  4034. "PieceID": 13025,
  4035. "power": 180.0,
  4036. "name": 444,
  4037. "dec": 867,
  4038. "attribute": 16,
  4039. "icon": "icon_s1505",
  4040. "scriptName": "S1505",
  4041. "IDGroup": 1505,
  4042. "timelineName": "1505_timeline_TD",
  4043. "cd": 1.0,
  4044. "addcd": 1.0,
  4045. "SkillType": 1,
  4046. "level": 3,
  4047. "effectValue": [
  4048. 4.0,
  4049. 45.0
  4050. ],
  4051. "intensifierIndex": [
  4052. 2
  4053. ],
  4054. "addPropertyType": [
  4055. 101
  4056. ],
  4057. "addPropertyValue": [
  4058. 5.0
  4059. ],
  4060. "PromoteLan": 1221,
  4061. "PromoteLanPara": [
  4062. 3.0
  4063. ]
  4064. },
  4065. {
  4066. "ID": 15053,
  4067. "PieceID": 13025,
  4068. "power": 270.0,
  4069. "name": 445,
  4070. "dec": 868,
  4071. "attribute": 16,
  4072. "icon": "icon_s1505",
  4073. "scriptName": "S1505",
  4074. "IDGroup": 1505,
  4075. "timelineName": "1505_timeline_TD",
  4076. "cd": 1.0,
  4077. "addcd": 1.0,
  4078. "SkillType": 1,
  4079. "level": 4,
  4080. "effectValue": [
  4081. 4.0,
  4082. 48.0
  4083. ],
  4084. "intensifierIndex": [
  4085. 2
  4086. ],
  4087. "addPropertyType": [
  4088. 101
  4089. ],
  4090. "addPropertyValue": [
  4091. 10.0
  4092. ],
  4093. "PromoteLan": 1222,
  4094. "PromoteLanPara": [
  4095. 5.0
  4096. ]
  4097. },
  4098. {
  4099. "ID": 15054,
  4100. "PieceID": 13025,
  4101. "power": 405.0,
  4102. "name": 446,
  4103. "dec": 869,
  4104. "attribute": 16,
  4105. "icon": "icon_s1505",
  4106. "scriptName": "S1505",
  4107. "IDGroup": 1505,
  4108. "timelineName": "1505_timeline_TD",
  4109. "cd": 1.0,
  4110. "addcd": 1.0,
  4111. "SkillType": 1,
  4112. "level": 5,
  4113. "effectValue": [
  4114. 4.0,
  4115. 50.0
  4116. ],
  4117. "intensifierIndex": [
  4118. 2
  4119. ],
  4120. "addPropertyType": [
  4121. 101
  4122. ],
  4123. "addPropertyValue": [
  4124. 10.0
  4125. ],
  4126. "PromoteLan": 1223,
  4127. "PromoteLanPara": [
  4128. 3.0
  4129. ]
  4130. },
  4131. {
  4132. "ID": 15055,
  4133. "PieceID": 13025,
  4134. "power": 607.5,
  4135. "name": 447,
  4136. "dec": 870,
  4137. "attribute": 16,
  4138. "icon": "icon_s1505",
  4139. "scriptName": "S1505",
  4140. "IDGroup": 1505,
  4141. "timelineName": "1505_timeline_TD",
  4142. "cd": 1.0,
  4143. "addcd": 1.0,
  4144. "SkillType": 1,
  4145. "level": 6,
  4146. "effectValue": [
  4147. 4.0,
  4148. 55.0
  4149. ],
  4150. "intensifierIndex": [
  4151. 2
  4152. ],
  4153. "addPropertyType": [
  4154. 101
  4155. ],
  4156. "addPropertyValue": [
  4157. 15.0
  4158. ],
  4159. "PromoteLan": 1224,
  4160. "PromoteLanPara": [
  4161. 5.0
  4162. ]
  4163. },
  4164. {
  4165. "ID": 20010,
  4166. "PieceID": 13501,
  4167. "power": 100.0,
  4168. "name": 448,
  4169. "dec": 871,
  4170. "attribute": 0,
  4171. "icon": "icon_s2001",
  4172. "scriptName": "S2001",
  4173. "IDGroup": 2001,
  4174. "timelineName": "",
  4175. "cd": 1.0,
  4176. "addcd": 0.0,
  4177. "SkillType": 2,
  4178. "level": 1,
  4179. "intensifierIndex": [
  4180. 0
  4181. ],
  4182. "PromoteLan": -1,
  4183. "PromoteLanPara_1": [
  4184. 0.0,
  4185. -1.0
  4186. ]
  4187. },
  4188. {
  4189. "ID": 20011,
  4190. "PieceID": 13501,
  4191. "power": 150.0,
  4192. "name": 449,
  4193. "dec": 872,
  4194. "attribute": 0,
  4195. "icon": "icon_s2001",
  4196. "scriptName": "S2001",
  4197. "IDGroup": 2001,
  4198. "timelineName": "",
  4199. "cd": 1.0,
  4200. "addcd": 0.0,
  4201. "SkillType": 2,
  4202. "level": 2,
  4203. "intensifierIndex": [
  4204. 0
  4205. ],
  4206. "addPropertyType": [
  4207. 103
  4208. ],
  4209. "addPropertyValue": [
  4210. 3.0
  4211. ],
  4212. "PromoteLan": 1225,
  4213. "PromoteLanPara": [
  4214. 3.0
  4215. ],
  4216. "PromoteLanPara_1": [
  4217. 0.0,
  4218. -1.0
  4219. ]
  4220. },
  4221. {
  4222. "ID": 20012,
  4223. "PieceID": 13501,
  4224. "power": 225.0,
  4225. "name": 450,
  4226. "dec": 873,
  4227. "attribute": 0,
  4228. "icon": "icon_s2001",
  4229. "scriptName": "S2001",
  4230. "IDGroup": 2001,
  4231. "timelineName": "",
  4232. "cd": 1.0,
  4233. "addcd": 0.0,
  4234. "SkillType": 2,
  4235. "level": 3,
  4236. "intensifierIndex": [
  4237. 0
  4238. ],
  4239. "addPropertyType": [
  4240. 103
  4241. ],
  4242. "addPropertyValue": [
  4243. 6.0
  4244. ],
  4245. "PromoteLan": 1226,
  4246. "PromoteLanPara": [
  4247. 3.0
  4248. ],
  4249. "PromoteLanPara_1": [
  4250. 0.0,
  4251. -1.0
  4252. ]
  4253. },
  4254. {
  4255. "ID": 20013,
  4256. "PieceID": 13501,
  4257. "power": 337.5,
  4258. "name": 451,
  4259. "dec": 874,
  4260. "attribute": 0,
  4261. "icon": "icon_s2001",
  4262. "scriptName": "S2001",
  4263. "IDGroup": 2001,
  4264. "timelineName": "",
  4265. "cd": 1.0,
  4266. "addcd": 0.0,
  4267. "SkillType": 2,
  4268. "level": 4,
  4269. "intensifierIndex": [
  4270. 0
  4271. ],
  4272. "addPropertyType": [
  4273. 103
  4274. ],
  4275. "addPropertyValue": [
  4276. 9.0
  4277. ],
  4278. "PromoteLan": 1227,
  4279. "PromoteLanPara": [
  4280. 3.0
  4281. ],
  4282. "PromoteLanPara_1": [
  4283. 0.0,
  4284. -1.0
  4285. ]
  4286. },
  4287. {
  4288. "ID": 20014,
  4289. "PieceID": 13501,
  4290. "power": 506.25,
  4291. "name": 452,
  4292. "dec": 875,
  4293. "attribute": 0,
  4294. "icon": "icon_s2001",
  4295. "scriptName": "S2001",
  4296. "IDGroup": 2001,
  4297. "timelineName": "",
  4298. "cd": 1.0,
  4299. "addcd": 0.0,
  4300. "SkillType": 2,
  4301. "level": 5,
  4302. "intensifierIndex": [
  4303. 0
  4304. ],
  4305. "addPropertyType": [
  4306. 103
  4307. ],
  4308. "addPropertyValue": [
  4309. 12.0
  4310. ],
  4311. "PromoteLan": 1228,
  4312. "PromoteLanPara": [
  4313. 3.0
  4314. ],
  4315. "PromoteLanPara_1": [
  4316. 0.0,
  4317. -1.0
  4318. ]
  4319. },
  4320. {
  4321. "ID": 20015,
  4322. "PieceID": 13501,
  4323. "power": 759.375,
  4324. "name": 453,
  4325. "dec": 876,
  4326. "attribute": 0,
  4327. "icon": "icon_s2001",
  4328. "scriptName": "S2001",
  4329. "IDGroup": 2001,
  4330. "timelineName": "",
  4331. "cd": 1.0,
  4332. "addcd": 0.0,
  4333. "SkillType": 2,
  4334. "level": 6,
  4335. "intensifierIndex": [
  4336. 0
  4337. ],
  4338. "addPropertyType": [
  4339. 103
  4340. ],
  4341. "addPropertyValue": [
  4342. 12.0
  4343. ],
  4344. "PromoteLan": 1229,
  4345. "PromoteLanPara_1": [
  4346. 0.0,
  4347. -1.0
  4348. ]
  4349. },
  4350. {
  4351. "ID": 20020,
  4352. "PieceID": 13502,
  4353. "power": 100.0,
  4354. "name": 454,
  4355. "dec": 877,
  4356. "attribute": 0,
  4357. "icon": "icon_s2002",
  4358. "scriptName": "S2002",
  4359. "IDGroup": 2002,
  4360. "timelineName": "",
  4361. "cd": 1.0,
  4362. "addcd": 0.0,
  4363. "SkillType": 2,
  4364. "level": 1,
  4365. "effectValue": [
  4366. 1.0
  4367. ],
  4368. "intensifierIndex": [
  4369. 0
  4370. ],
  4371. "PromoteLan": -1,
  4372. "PromoteLanPara_1": [
  4373. 0.0,
  4374. -1.0
  4375. ]
  4376. },
  4377. {
  4378. "ID": 20021,
  4379. "PieceID": 13502,
  4380. "power": 150.0,
  4381. "name": 455,
  4382. "dec": 878,
  4383. "attribute": 0,
  4384. "icon": "icon_s2002",
  4385. "scriptName": "S2002",
  4386. "IDGroup": 2002,
  4387. "timelineName": "",
  4388. "cd": 1.0,
  4389. "addcd": 0.0,
  4390. "SkillType": 2,
  4391. "level": 2,
  4392. "effectValue": [
  4393. 1.0
  4394. ],
  4395. "intensifierIndex": [
  4396. 0
  4397. ],
  4398. "addPropertyType": [
  4399. 102
  4400. ],
  4401. "addPropertyValue": [
  4402. 3.0
  4403. ],
  4404. "PromoteLan": 1230,
  4405. "PromoteLanPara": [
  4406. 3.0
  4407. ],
  4408. "PromoteLanPara_1": [
  4409. 0.0,
  4410. -1.0
  4411. ]
  4412. },
  4413. {
  4414. "ID": 20022,
  4415. "PieceID": 13502,
  4416. "power": 225.0,
  4417. "name": 456,
  4418. "dec": 879,
  4419. "attribute": 0,
  4420. "icon": "icon_s2002",
  4421. "scriptName": "S2002",
  4422. "IDGroup": 2002,
  4423. "timelineName": "",
  4424. "cd": 1.0,
  4425. "addcd": 0.0,
  4426. "SkillType": 2,
  4427. "level": 3,
  4428. "effectValue": [
  4429. 1.0
  4430. ],
  4431. "intensifierIndex": [
  4432. 0
  4433. ],
  4434. "addPropertyType": [
  4435. 102
  4436. ],
  4437. "addPropertyValue": [
  4438. 6.0
  4439. ],
  4440. "PromoteLan": 1231,
  4441. "PromoteLanPara": [
  4442. 3.0
  4443. ],
  4444. "PromoteLanPara_1": [
  4445. 0.0,
  4446. -1.0
  4447. ]
  4448. },
  4449. {
  4450. "ID": 20023,
  4451. "PieceID": 13502,
  4452. "power": 337.5,
  4453. "name": 457,
  4454. "dec": 880,
  4455. "attribute": 0,
  4456. "icon": "icon_s2002",
  4457. "scriptName": "S2002",
  4458. "IDGroup": 2002,
  4459. "timelineName": "",
  4460. "cd": 1.0,
  4461. "addcd": 0.0,
  4462. "SkillType": 2,
  4463. "level": 4,
  4464. "effectValue": [
  4465. 1.0
  4466. ],
  4467. "intensifierIndex": [
  4468. 0
  4469. ],
  4470. "addPropertyType": [
  4471. 102
  4472. ],
  4473. "addPropertyValue": [
  4474. 9.0
  4475. ],
  4476. "PromoteLan": 1232,
  4477. "PromoteLanPara": [
  4478. 3.0
  4479. ],
  4480. "PromoteLanPara_1": [
  4481. 0.0,
  4482. -1.0
  4483. ]
  4484. },
  4485. {
  4486. "ID": 20024,
  4487. "PieceID": 13502,
  4488. "power": 506.25,
  4489. "name": 458,
  4490. "dec": 881,
  4491. "attribute": 0,
  4492. "icon": "icon_s2002",
  4493. "scriptName": "S2002",
  4494. "IDGroup": 2002,
  4495. "timelineName": "",
  4496. "cd": 1.0,
  4497. "addcd": 0.0,
  4498. "SkillType": 2,
  4499. "level": 5,
  4500. "effectValue": [
  4501. 1.0
  4502. ],
  4503. "intensifierIndex": [
  4504. 0
  4505. ],
  4506. "addPropertyType": [
  4507. 102
  4508. ],
  4509. "addPropertyValue": [
  4510. 12.0
  4511. ],
  4512. "PromoteLan": 1233,
  4513. "PromoteLanPara": [
  4514. 3.0
  4515. ],
  4516. "PromoteLanPara_1": [
  4517. 0.0,
  4518. -1.0
  4519. ]
  4520. },
  4521. {
  4522. "ID": 20025,
  4523. "PieceID": 13502,
  4524. "power": 759.375,
  4525. "name": 459,
  4526. "dec": 882,
  4527. "attribute": 0,
  4528. "icon": "icon_s2002",
  4529. "scriptName": "S2002",
  4530. "IDGroup": 2002,
  4531. "timelineName": "",
  4532. "cd": 1.0,
  4533. "addcd": 0.0,
  4534. "SkillType": 2,
  4535. "level": 6,
  4536. "effectValue": [
  4537. 3.0
  4538. ],
  4539. "intensifierIndex": [
  4540. 0
  4541. ],
  4542. "addPropertyType": [
  4543. 102
  4544. ],
  4545. "addPropertyValue": [
  4546. 12.0
  4547. ],
  4548. "PromoteLan": 1234,
  4549. "PromoteLanPara_1": [
  4550. 0.0,
  4551. -1.0
  4552. ]
  4553. },
  4554. {
  4555. "ID": 20030,
  4556. "PieceID": 13503,
  4557. "power": 100.0,
  4558. "name": 460,
  4559. "dec": 883,
  4560. "attribute": 0,
  4561. "icon": "icon_s2003",
  4562. "scriptName": "S2003",
  4563. "IDGroup": 2003,
  4564. "timelineName": "",
  4565. "cd": 1.0,
  4566. "addcd": 0.0,
  4567. "SkillType": 2,
  4568. "level": 1,
  4569. "effectValue": [
  4570. 50.0
  4571. ],
  4572. "intensifierIndex": [
  4573. 0
  4574. ],
  4575. "PromoteLan": -1,
  4576. "PromoteLanPara_1": [
  4577. 0.0,
  4578. 1.0
  4579. ]
  4580. },
  4581. {
  4582. "ID": 20031,
  4583. "PieceID": 13503,
  4584. "power": 150.0,
  4585. "name": 461,
  4586. "dec": 884,
  4587. "attribute": 0,
  4588. "icon": "icon_s2003",
  4589. "scriptName": "S2003",
  4590. "IDGroup": 2003,
  4591. "timelineName": "",
  4592. "cd": 1.0,
  4593. "addcd": 0.0,
  4594. "SkillType": 2,
  4595. "level": 2,
  4596. "effectValue": [
  4597. 50.0
  4598. ],
  4599. "intensifierIndex": [
  4600. 0
  4601. ],
  4602. "addPropertyType": [
  4603. 103
  4604. ],
  4605. "addPropertyValue": [
  4606. 3.0
  4607. ],
  4608. "PromoteLan": 1235,
  4609. "PromoteLanPara": [
  4610. 3.0
  4611. ],
  4612. "PromoteLanPara_1": [
  4613. 0.0,
  4614. 1.0
  4615. ]
  4616. },
  4617. {
  4618. "ID": 20032,
  4619. "PieceID": 13503,
  4620. "power": 225.0,
  4621. "name": 462,
  4622. "dec": 885,
  4623. "attribute": 0,
  4624. "icon": "icon_s2003",
  4625. "scriptName": "S2003",
  4626. "IDGroup": 2003,
  4627. "timelineName": "",
  4628. "cd": 1.0,
  4629. "addcd": 0.0,
  4630. "SkillType": 2,
  4631. "level": 3,
  4632. "effectValue": [
  4633. 50.0
  4634. ],
  4635. "intensifierIndex": [
  4636. 0
  4637. ],
  4638. "addPropertyType": [
  4639. 103
  4640. ],
  4641. "addPropertyValue": [
  4642. 6.0
  4643. ],
  4644. "PromoteLan": 1236,
  4645. "PromoteLanPara": [
  4646. 3.0
  4647. ],
  4648. "PromoteLanPara_1": [
  4649. 0.0,
  4650. 1.0
  4651. ]
  4652. },
  4653. {
  4654. "ID": 20033,
  4655. "PieceID": 13503,
  4656. "power": 337.5,
  4657. "name": 463,
  4658. "dec": 886,
  4659. "attribute": 0,
  4660. "icon": "icon_s2003",
  4661. "scriptName": "S2003",
  4662. "IDGroup": 2003,
  4663. "timelineName": "",
  4664. "cd": 1.0,
  4665. "addcd": 0.0,
  4666. "SkillType": 2,
  4667. "level": 4,
  4668. "effectValue": [
  4669. 50.0
  4670. ],
  4671. "intensifierIndex": [
  4672. 0
  4673. ],
  4674. "addPropertyType": [
  4675. 103
  4676. ],
  4677. "addPropertyValue": [
  4678. 9.0
  4679. ],
  4680. "PromoteLan": 1237,
  4681. "PromoteLanPara": [
  4682. 3.0
  4683. ],
  4684. "PromoteLanPara_1": [
  4685. 0.0,
  4686. 1.0
  4687. ]
  4688. },
  4689. {
  4690. "ID": 20034,
  4691. "PieceID": 13503,
  4692. "power": 506.25,
  4693. "name": 464,
  4694. "dec": 887,
  4695. "attribute": 0,
  4696. "icon": "icon_s2003",
  4697. "scriptName": "S2003",
  4698. "IDGroup": 2003,
  4699. "timelineName": "",
  4700. "cd": 1.0,
  4701. "addcd": 0.0,
  4702. "SkillType": 2,
  4703. "level": 5,
  4704. "effectValue": [
  4705. 50.0
  4706. ],
  4707. "intensifierIndex": [
  4708. 0
  4709. ],
  4710. "addPropertyType": [
  4711. 103
  4712. ],
  4713. "addPropertyValue": [
  4714. 12.0
  4715. ],
  4716. "PromoteLan": 1238,
  4717. "PromoteLanPara": [
  4718. 3.0
  4719. ],
  4720. "PromoteLanPara_1": [
  4721. 0.0,
  4722. 1.0
  4723. ]
  4724. },
  4725. {
  4726. "ID": 20035,
  4727. "PieceID": 13503,
  4728. "power": 759.375,
  4729. "name": 465,
  4730. "dec": 888,
  4731. "attribute": 0,
  4732. "icon": "icon_s2003",
  4733. "scriptName": "S2003",
  4734. "IDGroup": 2003,
  4735. "timelineName": "",
  4736. "cd": 1.0,
  4737. "addcd": 0.0,
  4738. "SkillType": 2,
  4739. "level": 6,
  4740. "effectValue": [
  4741. 100.0
  4742. ],
  4743. "intensifierIndex": [
  4744. 0
  4745. ],
  4746. "addPropertyType": [
  4747. 103
  4748. ],
  4749. "addPropertyValue": [
  4750. 12.0
  4751. ],
  4752. "PromoteLan": 1239,
  4753. "PromoteLanPara_1": [
  4754. 0.0,
  4755. 1.0
  4756. ]
  4757. },
  4758. {
  4759. "ID": 20040,
  4760. "PieceID": 13504,
  4761. "power": 100.0,
  4762. "name": 466,
  4763. "dec": 889,
  4764. "attribute": 0,
  4765. "icon": "icon_s2004",
  4766. "scriptName": "S2004",
  4767. "IDGroup": 2004,
  4768. "timelineName": "",
  4769. "cd": 1.0,
  4770. "addcd": 0.0,
  4771. "SkillType": 2,
  4772. "level": 1,
  4773. "effectValue": [
  4774. 30.0
  4775. ],
  4776. "intensifierIndex": [
  4777. 0
  4778. ],
  4779. "PromoteLan": -1,
  4780. "PromoteLanPara_1": [
  4781. 1.0,
  4782. -1.0
  4783. ]
  4784. },
  4785. {
  4786. "ID": 20041,
  4787. "PieceID": 13504,
  4788. "power": 150.0,
  4789. "name": 467,
  4790. "dec": 890,
  4791. "attribute": 0,
  4792. "icon": "icon_s2004",
  4793. "scriptName": "S2004",
  4794. "IDGroup": 2004,
  4795. "timelineName": "",
  4796. "cd": 1.0,
  4797. "addcd": 0.0,
  4798. "SkillType": 2,
  4799. "level": 2,
  4800. "effectValue": [
  4801. 30.0
  4802. ],
  4803. "intensifierIndex": [
  4804. 0
  4805. ],
  4806. "addPropertyType": [
  4807. 101
  4808. ],
  4809. "addPropertyValue": [
  4810. 3.0
  4811. ],
  4812. "PromoteLan": 1240,
  4813. "PromoteLanPara": [
  4814. 3.0
  4815. ],
  4816. "PromoteLanPara_1": [
  4817. 1.0,
  4818. -1.0
  4819. ]
  4820. },
  4821. {
  4822. "ID": 20042,
  4823. "PieceID": 13504,
  4824. "power": 225.0,
  4825. "name": 468,
  4826. "dec": 891,
  4827. "attribute": 0,
  4828. "icon": "icon_s2004",
  4829. "scriptName": "S2004",
  4830. "IDGroup": 2004,
  4831. "timelineName": "",
  4832. "cd": 1.0,
  4833. "addcd": 0.0,
  4834. "SkillType": 2,
  4835. "level": 3,
  4836. "effectValue": [
  4837. 30.0
  4838. ],
  4839. "intensifierIndex": [
  4840. 0
  4841. ],
  4842. "addPropertyType": [
  4843. 101
  4844. ],
  4845. "addPropertyValue": [
  4846. 6.0
  4847. ],
  4848. "PromoteLan": 1241,
  4849. "PromoteLanPara": [
  4850. 3.0
  4851. ],
  4852. "PromoteLanPara_1": [
  4853. 1.0,
  4854. -1.0
  4855. ]
  4856. },
  4857. {
  4858. "ID": 20043,
  4859. "PieceID": 13504,
  4860. "power": 337.5,
  4861. "name": 469,
  4862. "dec": 892,
  4863. "attribute": 0,
  4864. "icon": "icon_s2004",
  4865. "scriptName": "S2004",
  4866. "IDGroup": 2004,
  4867. "timelineName": "",
  4868. "cd": 1.0,
  4869. "addcd": 0.0,
  4870. "SkillType": 2,
  4871. "level": 4,
  4872. "effectValue": [
  4873. 30.0
  4874. ],
  4875. "intensifierIndex": [
  4876. 0
  4877. ],
  4878. "addPropertyType": [
  4879. 101
  4880. ],
  4881. "addPropertyValue": [
  4882. 9.0
  4883. ],
  4884. "PromoteLan": 1242,
  4885. "PromoteLanPara": [
  4886. 3.0
  4887. ],
  4888. "PromoteLanPara_1": [
  4889. 1.0,
  4890. -1.0
  4891. ]
  4892. },
  4893. {
  4894. "ID": 20044,
  4895. "PieceID": 13504,
  4896. "power": 506.25,
  4897. "name": 470,
  4898. "dec": 893,
  4899. "attribute": 0,
  4900. "icon": "icon_s2004",
  4901. "scriptName": "S2004",
  4902. "IDGroup": 2004,
  4903. "timelineName": "",
  4904. "cd": 1.0,
  4905. "addcd": 0.0,
  4906. "SkillType": 2,
  4907. "level": 5,
  4908. "effectValue": [
  4909. 30.0
  4910. ],
  4911. "intensifierIndex": [
  4912. 0
  4913. ],
  4914. "addPropertyType": [
  4915. 101
  4916. ],
  4917. "addPropertyValue": [
  4918. 12.0
  4919. ],
  4920. "PromoteLan": 1243,
  4921. "PromoteLanPara": [
  4922. 3.0
  4923. ],
  4924. "PromoteLanPara_1": [
  4925. 1.0,
  4926. -1.0
  4927. ]
  4928. },
  4929. {
  4930. "ID": 20045,
  4931. "PieceID": 13504,
  4932. "power": 759.375,
  4933. "name": 471,
  4934. "dec": 894,
  4935. "attribute": 0,
  4936. "icon": "icon_s2004",
  4937. "scriptName": "S2004",
  4938. "IDGroup": 2004,
  4939. "timelineName": "",
  4940. "cd": 1.0,
  4941. "addcd": 0.0,
  4942. "SkillType": 2,
  4943. "level": 6,
  4944. "effectValue": [
  4945. 30.0,
  4946. 15.0,
  4947. 10.0
  4948. ],
  4949. "intensifierIndex": [
  4950. 0
  4951. ],
  4952. "addPropertyType": [
  4953. 101
  4954. ],
  4955. "addPropertyValue": [
  4956. 12.0
  4957. ],
  4958. "PromoteLan": 1244,
  4959. "PromoteLanPara_1": [
  4960. 1.0,
  4961. -1.0
  4962. ]
  4963. },
  4964. {
  4965. "ID": 20050,
  4966. "PieceID": 13505,
  4967. "power": 100.0,
  4968. "name": 472,
  4969. "dec": 895,
  4970. "attribute": 0,
  4971. "icon": "icon_s2005",
  4972. "scriptName": "S2005",
  4973. "IDGroup": 2005,
  4974. "timelineName": "",
  4975. "cd": 1.0,
  4976. "addcd": 0.0,
  4977. "SkillType": 2,
  4978. "level": 1,
  4979. "effectValue": [
  4980. 5.0,
  4981. 4.0
  4982. ],
  4983. "intensifierIndex": [
  4984. 0
  4985. ],
  4986. "PromoteLan": -1
  4987. },
  4988. {
  4989. "ID": 20051,
  4990. "PieceID": 13505,
  4991. "power": 150.0,
  4992. "name": 473,
  4993. "dec": 896,
  4994. "attribute": 0,
  4995. "icon": "icon_s2005",
  4996. "scriptName": "S2005",
  4997. "IDGroup": 2005,
  4998. "timelineName": "",
  4999. "cd": 1.0,
  5000. "addcd": 0.0,
  5001. "SkillType": 2,
  5002. "level": 2,
  5003. "effectValue": [
  5004. 5.0,
  5005. 4.0
  5006. ],
  5007. "intensifierIndex": [
  5008. 0
  5009. ],
  5010. "addPropertyType": [
  5011. 102
  5012. ],
  5013. "addPropertyValue": [
  5014. 3.0
  5015. ],
  5016. "PromoteLan": 1245,
  5017. "PromoteLanPara": [
  5018. 3.0
  5019. ]
  5020. },
  5021. {
  5022. "ID": 20052,
  5023. "PieceID": 13505,
  5024. "power": 225.0,
  5025. "name": 474,
  5026. "dec": 897,
  5027. "attribute": 0,
  5028. "icon": "icon_s2005",
  5029. "scriptName": "S2005",
  5030. "IDGroup": 2005,
  5031. "timelineName": "",
  5032. "cd": 1.0,
  5033. "addcd": 0.0,
  5034. "SkillType": 2,
  5035. "level": 3,
  5036. "effectValue": [
  5037. 5.0,
  5038. 4.0
  5039. ],
  5040. "intensifierIndex": [
  5041. 0
  5042. ],
  5043. "addPropertyType": [
  5044. 102
  5045. ],
  5046. "addPropertyValue": [
  5047. 6.0
  5048. ],
  5049. "PromoteLan": 1246,
  5050. "PromoteLanPara": [
  5051. 3.0
  5052. ]
  5053. },
  5054. {
  5055. "ID": 20053,
  5056. "PieceID": 13505,
  5057. "power": 337.5,
  5058. "name": 475,
  5059. "dec": 898,
  5060. "attribute": 0,
  5061. "icon": "icon_s2005",
  5062. "scriptName": "S2005",
  5063. "IDGroup": 2005,
  5064. "timelineName": "",
  5065. "cd": 1.0,
  5066. "addcd": 0.0,
  5067. "SkillType": 2,
  5068. "level": 4,
  5069. "effectValue": [
  5070. 5.0,
  5071. 4.0
  5072. ],
  5073. "intensifierIndex": [
  5074. 0
  5075. ],
  5076. "addPropertyType": [
  5077. 102
  5078. ],
  5079. "addPropertyValue": [
  5080. 9.0
  5081. ],
  5082. "PromoteLan": 1247,
  5083. "PromoteLanPara": [
  5084. 3.0
  5085. ]
  5086. },
  5087. {
  5088. "ID": 20054,
  5089. "PieceID": 13505,
  5090. "power": 506.25,
  5091. "name": 476,
  5092. "dec": 899,
  5093. "attribute": 0,
  5094. "icon": "icon_s2005",
  5095. "scriptName": "S2005",
  5096. "IDGroup": 2005,
  5097. "timelineName": "",
  5098. "cd": 1.0,
  5099. "addcd": 0.0,
  5100. "SkillType": 2,
  5101. "level": 5,
  5102. "effectValue": [
  5103. 5.0,
  5104. 4.0
  5105. ],
  5106. "intensifierIndex": [
  5107. 0
  5108. ],
  5109. "addPropertyType": [
  5110. 102
  5111. ],
  5112. "addPropertyValue": [
  5113. 12.0
  5114. ],
  5115. "PromoteLan": 1248,
  5116. "PromoteLanPara": [
  5117. 3.0
  5118. ]
  5119. },
  5120. {
  5121. "ID": 20055,
  5122. "PieceID": 13505,
  5123. "power": 759.375,
  5124. "name": 477,
  5125. "dec": 900,
  5126. "attribute": 0,
  5127. "icon": "icon_s2005",
  5128. "scriptName": "S2005",
  5129. "IDGroup": 2005,
  5130. "timelineName": "",
  5131. "cd": 1.0,
  5132. "addcd": 0.0,
  5133. "SkillType": 2,
  5134. "level": 6,
  5135. "effectValue": [
  5136. 6.0,
  5137. 4.0,
  5138. 1.0
  5139. ],
  5140. "intensifierIndex": [
  5141. 0
  5142. ],
  5143. "addPropertyType": [
  5144. 102
  5145. ],
  5146. "addPropertyValue": [
  5147. 12.0
  5148. ],
  5149. "PromoteLan": 1249
  5150. },
  5151. {
  5152. "ID": 20060,
  5153. "PieceID": 13506,
  5154. "power": 100.0,
  5155. "name": 478,
  5156. "dec": 901,
  5157. "attribute": 0,
  5158. "icon": "icon_s2006",
  5159. "scriptName": "S2006",
  5160. "IDGroup": 2006,
  5161. "timelineName": "",
  5162. "cd": 1.0,
  5163. "addcd": 0.0,
  5164. "SkillType": 2,
  5165. "level": 1,
  5166. "effectValue": [
  5167. 30.0,
  5168. 30.0
  5169. ],
  5170. "intensifierIndex": [
  5171. 0
  5172. ],
  5173. "PromoteLan": -1,
  5174. "PromoteLanPara_1": [
  5175. 0.0,
  5176. -1.0
  5177. ]
  5178. },
  5179. {
  5180. "ID": 20061,
  5181. "PieceID": 13506,
  5182. "power": 150.0,
  5183. "name": 479,
  5184. "dec": 902,
  5185. "attribute": 0,
  5186. "icon": "icon_s2006",
  5187. "scriptName": "S2006",
  5188. "IDGroup": 2006,
  5189. "timelineName": "",
  5190. "cd": 1.0,
  5191. "addcd": 0.0,
  5192. "SkillType": 2,
  5193. "level": 2,
  5194. "effectValue": [
  5195. 30.0,
  5196. 30.0
  5197. ],
  5198. "intensifierIndex": [
  5199. 0
  5200. ],
  5201. "addPropertyType": [
  5202. 103
  5203. ],
  5204. "addPropertyValue": [
  5205. 3.0
  5206. ],
  5207. "PromoteLan": 1250,
  5208. "PromoteLanPara": [
  5209. 3.0
  5210. ],
  5211. "PromoteLanPara_1": [
  5212. 0.0,
  5213. -1.0
  5214. ]
  5215. },
  5216. {
  5217. "ID": 20062,
  5218. "PieceID": 13506,
  5219. "power": 225.0,
  5220. "name": 480,
  5221. "dec": 903,
  5222. "attribute": 0,
  5223. "icon": "icon_s2006",
  5224. "scriptName": "S2006",
  5225. "IDGroup": 2006,
  5226. "timelineName": "",
  5227. "cd": 1.0,
  5228. "addcd": 0.0,
  5229. "SkillType": 2,
  5230. "level": 3,
  5231. "effectValue": [
  5232. 30.0,
  5233. 30.0
  5234. ],
  5235. "intensifierIndex": [
  5236. 0
  5237. ],
  5238. "addPropertyType": [
  5239. 103
  5240. ],
  5241. "addPropertyValue": [
  5242. 6.0
  5243. ],
  5244. "PromoteLan": 1251,
  5245. "PromoteLanPara": [
  5246. 3.0
  5247. ],
  5248. "PromoteLanPara_1": [
  5249. 0.0,
  5250. -1.0
  5251. ]
  5252. },
  5253. {
  5254. "ID": 20063,
  5255. "PieceID": 13506,
  5256. "power": 337.5,
  5257. "name": 481,
  5258. "dec": 904,
  5259. "attribute": 0,
  5260. "icon": "icon_s2006",
  5261. "scriptName": "S2006",
  5262. "IDGroup": 2006,
  5263. "timelineName": "",
  5264. "cd": 1.0,
  5265. "addcd": 0.0,
  5266. "SkillType": 2,
  5267. "level": 4,
  5268. "effectValue": [
  5269. 30.0,
  5270. 30.0
  5271. ],
  5272. "intensifierIndex": [
  5273. 0
  5274. ],
  5275. "addPropertyType": [
  5276. 103
  5277. ],
  5278. "addPropertyValue": [
  5279. 9.0
  5280. ],
  5281. "PromoteLan": 1252,
  5282. "PromoteLanPara": [
  5283. 3.0
  5284. ],
  5285. "PromoteLanPara_1": [
  5286. 0.0,
  5287. -1.0
  5288. ]
  5289. },
  5290. {
  5291. "ID": 20064,
  5292. "PieceID": 13506,
  5293. "power": 506.25,
  5294. "name": 482,
  5295. "dec": 905,
  5296. "attribute": 0,
  5297. "icon": "icon_s2006",
  5298. "scriptName": "S2006",
  5299. "IDGroup": 2006,
  5300. "timelineName": "",
  5301. "cd": 1.0,
  5302. "addcd": 0.0,
  5303. "SkillType": 2,
  5304. "level": 5,
  5305. "effectValue": [
  5306. 30.0,
  5307. 30.0
  5308. ],
  5309. "intensifierIndex": [
  5310. 0
  5311. ],
  5312. "addPropertyType": [
  5313. 103
  5314. ],
  5315. "addPropertyValue": [
  5316. 12.0
  5317. ],
  5318. "PromoteLan": 1253,
  5319. "PromoteLanPara": [
  5320. 3.0
  5321. ],
  5322. "PromoteLanPara_1": [
  5323. 0.0,
  5324. -1.0
  5325. ]
  5326. },
  5327. {
  5328. "ID": 20065,
  5329. "PieceID": 13506,
  5330. "power": 759.375,
  5331. "name": 483,
  5332. "dec": 906,
  5333. "attribute": 0,
  5334. "icon": "icon_s2006",
  5335. "scriptName": "S2006",
  5336. "IDGroup": 2006,
  5337. "timelineName": "",
  5338. "cd": 1.0,
  5339. "addcd": 0.0,
  5340. "SkillType": 2,
  5341. "level": 6,
  5342. "effectValue": [
  5343. 30.0,
  5344. 30.0,
  5345. 30.0
  5346. ],
  5347. "intensifierIndex": [
  5348. 0
  5349. ],
  5350. "addPropertyType": [
  5351. 103
  5352. ],
  5353. "addPropertyValue": [
  5354. 12.0
  5355. ],
  5356. "PromoteLan": 1254,
  5357. "PromoteLanPara_1": [
  5358. 0.0,
  5359. -1.0
  5360. ]
  5361. },
  5362. {
  5363. "ID": 20070,
  5364. "PieceID": 13507,
  5365. "power": 100.0,
  5366. "name": 484,
  5367. "dec": 907,
  5368. "attribute": 0,
  5369. "icon": "icon_s2007",
  5370. "scriptName": "S2007",
  5371. "IDGroup": 2007,
  5372. "timelineName": "",
  5373. "cd": 1.0,
  5374. "addcd": 0.0,
  5375. "SkillType": 2,
  5376. "level": 1,
  5377. "effectValue": [
  5378. 10.0,
  5379. 9.0
  5380. ],
  5381. "intensifierIndex": [
  5382. 0
  5383. ],
  5384. "PromoteLan": -1,
  5385. "PromoteLanPara_1": [
  5386. 0.0,
  5387. -1.0
  5388. ]
  5389. },
  5390. {
  5391. "ID": 20071,
  5392. "PieceID": 13507,
  5393. "power": 150.0,
  5394. "name": 485,
  5395. "dec": 908,
  5396. "attribute": 0,
  5397. "icon": "icon_s2007",
  5398. "scriptName": "S2007",
  5399. "IDGroup": 2007,
  5400. "timelineName": "",
  5401. "cd": 1.0,
  5402. "addcd": 0.0,
  5403. "SkillType": 2,
  5404. "level": 2,
  5405. "effectValue": [
  5406. 10.0,
  5407. 9.0
  5408. ],
  5409. "intensifierIndex": [
  5410. 0
  5411. ],
  5412. "addPropertyType": [
  5413. 101
  5414. ],
  5415. "addPropertyValue": [
  5416. 3.0
  5417. ],
  5418. "PromoteLan": 1255,
  5419. "PromoteLanPara": [
  5420. 3.0
  5421. ],
  5422. "PromoteLanPara_1": [
  5423. 0.0,
  5424. -1.0
  5425. ]
  5426. },
  5427. {
  5428. "ID": 20072,
  5429. "PieceID": 13507,
  5430. "power": 225.0,
  5431. "name": 486,
  5432. "dec": 909,
  5433. "attribute": 0,
  5434. "icon": "icon_s2007",
  5435. "scriptName": "S2007",
  5436. "IDGroup": 2007,
  5437. "timelineName": "",
  5438. "cd": 1.0,
  5439. "addcd": 0.0,
  5440. "SkillType": 2,
  5441. "level": 3,
  5442. "effectValue": [
  5443. 10.0,
  5444. 9.0
  5445. ],
  5446. "intensifierIndex": [
  5447. 0
  5448. ],
  5449. "addPropertyType": [
  5450. 101
  5451. ],
  5452. "addPropertyValue": [
  5453. 6.0
  5454. ],
  5455. "PromoteLan": 1256,
  5456. "PromoteLanPara": [
  5457. 3.0
  5458. ],
  5459. "PromoteLanPara_1": [
  5460. 0.0,
  5461. -1.0
  5462. ]
  5463. },
  5464. {
  5465. "ID": 20073,
  5466. "PieceID": 13507,
  5467. "power": 337.5,
  5468. "name": 487,
  5469. "dec": 910,
  5470. "attribute": 0,
  5471. "icon": "icon_s2007",
  5472. "scriptName": "S2007",
  5473. "IDGroup": 2007,
  5474. "timelineName": "",
  5475. "cd": 1.0,
  5476. "addcd": 0.0,
  5477. "SkillType": 2,
  5478. "level": 4,
  5479. "effectValue": [
  5480. 10.0,
  5481. 9.0
  5482. ],
  5483. "intensifierIndex": [
  5484. 0
  5485. ],
  5486. "addPropertyType": [
  5487. 101
  5488. ],
  5489. "addPropertyValue": [
  5490. 9.0
  5491. ],
  5492. "PromoteLan": 1257,
  5493. "PromoteLanPara": [
  5494. 3.0
  5495. ],
  5496. "PromoteLanPara_1": [
  5497. 0.0,
  5498. -1.0
  5499. ]
  5500. },
  5501. {
  5502. "ID": 20074,
  5503. "PieceID": 13507,
  5504. "power": 506.25,
  5505. "name": 488,
  5506. "dec": 911,
  5507. "attribute": 0,
  5508. "icon": "icon_s2007",
  5509. "scriptName": "S2007",
  5510. "IDGroup": 2007,
  5511. "timelineName": "",
  5512. "cd": 1.0,
  5513. "addcd": 0.0,
  5514. "SkillType": 2,
  5515. "level": 5,
  5516. "effectValue": [
  5517. 10.0,
  5518. 9.0
  5519. ],
  5520. "intensifierIndex": [
  5521. 0
  5522. ],
  5523. "addPropertyType": [
  5524. 101
  5525. ],
  5526. "addPropertyValue": [
  5527. 12.0
  5528. ],
  5529. "PromoteLan": 1258,
  5530. "PromoteLanPara": [
  5531. 3.0
  5532. ],
  5533. "PromoteLanPara_1": [
  5534. 0.0,
  5535. -1.0
  5536. ]
  5537. },
  5538. {
  5539. "ID": 20075,
  5540. "PieceID": 13507,
  5541. "power": 759.375,
  5542. "name": 489,
  5543. "dec": 912,
  5544. "attribute": 0,
  5545. "icon": "icon_s2007",
  5546. "scriptName": "S2007",
  5547. "IDGroup": 2007,
  5548. "timelineName": "",
  5549. "cd": 1.0,
  5550. "addcd": 0.0,
  5551. "SkillType": 2,
  5552. "level": 6,
  5553. "effectValue": [
  5554. 10.0,
  5555. 9.0,
  5556. 15.0
  5557. ],
  5558. "intensifierIndex": [
  5559. 0
  5560. ],
  5561. "addPropertyType": [
  5562. 101
  5563. ],
  5564. "addPropertyValue": [
  5565. 12.0
  5566. ],
  5567. "PromoteLan": 1259,
  5568. "PromoteLanPara_1": [
  5569. 0.0,
  5570. -1.0
  5571. ]
  5572. },
  5573. {
  5574. "ID": 20080,
  5575. "PieceID": 13508,
  5576. "power": 100.0,
  5577. "name": 490,
  5578. "dec": 913,
  5579. "attribute": 0,
  5580. "icon": "icon_s2008",
  5581. "scriptName": "S2008",
  5582. "IDGroup": 2008,
  5583. "timelineName": "",
  5584. "cd": 1.0,
  5585. "addcd": 0.0,
  5586. "SkillType": 2,
  5587. "level": 1,
  5588. "effectValue": [
  5589. 1.0,
  5590. 100.0
  5591. ],
  5592. "intensifierIndex": [
  5593. 0
  5594. ],
  5595. "PromoteLan": -1,
  5596. "PromoteLanPara_1": [
  5597. 0.0,
  5598. -1.0
  5599. ]
  5600. },
  5601. {
  5602. "ID": 20081,
  5603. "PieceID": 13508,
  5604. "power": 150.0,
  5605. "name": 491,
  5606. "dec": 914,
  5607. "attribute": 0,
  5608. "icon": "icon_s2008",
  5609. "scriptName": "S2008",
  5610. "IDGroup": 2008,
  5611. "timelineName": "",
  5612. "cd": 1.0,
  5613. "addcd": 0.0,
  5614. "SkillType": 2,
  5615. "level": 2,
  5616. "effectValue": [
  5617. 1.0,
  5618. 100.0
  5619. ],
  5620. "intensifierIndex": [
  5621. 0
  5622. ],
  5623. "addPropertyType": [
  5624. 102
  5625. ],
  5626. "addPropertyValue": [
  5627. 3.0
  5628. ],
  5629. "PromoteLan": 1260,
  5630. "PromoteLanPara": [
  5631. 3.0
  5632. ],
  5633. "PromoteLanPara_1": [
  5634. 0.0,
  5635. -1.0
  5636. ]
  5637. },
  5638. {
  5639. "ID": 20082,
  5640. "PieceID": 13508,
  5641. "power": 225.0,
  5642. "name": 492,
  5643. "dec": 915,
  5644. "attribute": 0,
  5645. "icon": "icon_s2008",
  5646. "scriptName": "S2008",
  5647. "IDGroup": 2008,
  5648. "timelineName": "",
  5649. "cd": 1.0,
  5650. "addcd": 0.0,
  5651. "SkillType": 2,
  5652. "level": 3,
  5653. "effectValue": [
  5654. 1.0,
  5655. 100.0
  5656. ],
  5657. "intensifierIndex": [
  5658. 0
  5659. ],
  5660. "addPropertyType": [
  5661. 102
  5662. ],
  5663. "addPropertyValue": [
  5664. 6.0
  5665. ],
  5666. "PromoteLan": 1261,
  5667. "PromoteLanPara": [
  5668. 3.0
  5669. ],
  5670. "PromoteLanPara_1": [
  5671. 0.0,
  5672. -1.0
  5673. ]
  5674. },
  5675. {
  5676. "ID": 20083,
  5677. "PieceID": 13508,
  5678. "power": 337.5,
  5679. "name": 493,
  5680. "dec": 916,
  5681. "attribute": 0,
  5682. "icon": "icon_s2008",
  5683. "scriptName": "S2008",
  5684. "IDGroup": 2008,
  5685. "timelineName": "",
  5686. "cd": 1.0,
  5687. "addcd": 0.0,
  5688. "SkillType": 2,
  5689. "level": 4,
  5690. "effectValue": [
  5691. 1.0,
  5692. 100.0
  5693. ],
  5694. "intensifierIndex": [
  5695. 0
  5696. ],
  5697. "addPropertyType": [
  5698. 102
  5699. ],
  5700. "addPropertyValue": [
  5701. 9.0
  5702. ],
  5703. "PromoteLan": 1262,
  5704. "PromoteLanPara": [
  5705. 3.0
  5706. ],
  5707. "PromoteLanPara_1": [
  5708. 0.0,
  5709. -1.0
  5710. ]
  5711. },
  5712. {
  5713. "ID": 20084,
  5714. "PieceID": 13508,
  5715. "power": 506.25,
  5716. "name": 494,
  5717. "dec": 917,
  5718. "attribute": 0,
  5719. "icon": "icon_s2008",
  5720. "scriptName": "S2008",
  5721. "IDGroup": 2008,
  5722. "timelineName": "",
  5723. "cd": 1.0,
  5724. "addcd": 0.0,
  5725. "SkillType": 2,
  5726. "level": 5,
  5727. "effectValue": [
  5728. 1.0,
  5729. 100.0
  5730. ],
  5731. "intensifierIndex": [
  5732. 0
  5733. ],
  5734. "addPropertyType": [
  5735. 102
  5736. ],
  5737. "addPropertyValue": [
  5738. 12.0
  5739. ],
  5740. "PromoteLan": 1263,
  5741. "PromoteLanPara": [
  5742. 3.0
  5743. ],
  5744. "PromoteLanPara_1": [
  5745. 0.0,
  5746. -1.0
  5747. ]
  5748. },
  5749. {
  5750. "ID": 20085,
  5751. "PieceID": 13508,
  5752. "power": 759.375,
  5753. "name": 495,
  5754. "dec": 918,
  5755. "attribute": 0,
  5756. "icon": "icon_s2008",
  5757. "scriptName": "S2008",
  5758. "IDGroup": 2008,
  5759. "timelineName": "",
  5760. "cd": 1.0,
  5761. "addcd": 0.0,
  5762. "SkillType": 2,
  5763. "level": 6,
  5764. "effectValue": [
  5765. 2.0,
  5766. 100.0,
  5767. 1.0
  5768. ],
  5769. "intensifierIndex": [
  5770. 0
  5771. ],
  5772. "addPropertyType": [
  5773. 102
  5774. ],
  5775. "addPropertyValue": [
  5776. 12.0
  5777. ],
  5778. "PromoteLan": 1264,
  5779. "PromoteLanPara_1": [
  5780. 1.0,
  5781. -1.0
  5782. ]
  5783. },
  5784. {
  5785. "ID": 20090,
  5786. "PieceID": 13509,
  5787. "power": 100.0,
  5788. "name": 1020090,
  5789. "dec": 1120090,
  5790. "attribute": 0,
  5791. "icon": "icon_s2009",
  5792. "scriptName": "S2009",
  5793. "IDGroup": 2009,
  5794. "timelineName": "",
  5795. "cd": 1.0,
  5796. "addcd": 0.0,
  5797. "SkillType": 2,
  5798. "level": 1,
  5799. "effectValue": [
  5800. 5.0,
  5801. 30.0,
  5802. 50.0
  5803. ],
  5804. "intensifierIndex": [
  5805. 0
  5806. ],
  5807. "PromoteLan": -1,
  5808. "PromoteLanPara_1": [
  5809. 1.0
  5810. ]
  5811. },
  5812. {
  5813. "ID": 20091,
  5814. "PieceID": 13509,
  5815. "power": 150.0,
  5816. "name": 1020091,
  5817. "dec": 1120091,
  5818. "attribute": 0,
  5819. "icon": "icon_s2009",
  5820. "scriptName": "S2009",
  5821. "IDGroup": 2009,
  5822. "timelineName": "",
  5823. "cd": 1.0,
  5824. "addcd": 0.0,
  5825. "SkillType": 2,
  5826. "level": 2,
  5827. "effectValue": [
  5828. 5.0,
  5829. 40.0,
  5830. 60.0
  5831. ],
  5832. "intensifierIndex": [
  5833. 0
  5834. ],
  5835. "addPropertyType": [
  5836. 102
  5837. ],
  5838. "addPropertyValue": [
  5839. 3.0
  5840. ],
  5841. "PromoteLan": 1260,
  5842. "PromoteLanPara": [
  5843. 3.0
  5844. ],
  5845. "PromoteLanPara_1": [
  5846. 1.0
  5847. ]
  5848. },
  5849. {
  5850. "ID": 20092,
  5851. "PieceID": 13509,
  5852. "power": 225.0,
  5853. "name": 1020092,
  5854. "dec": 1120092,
  5855. "attribute": 0,
  5856. "icon": "icon_s2009",
  5857. "scriptName": "S2009",
  5858. "IDGroup": 2009,
  5859. "timelineName": "",
  5860. "cd": 1.0,
  5861. "addcd": 0.0,
  5862. "SkillType": 2,
  5863. "level": 3,
  5864. "effectValue": [
  5865. 5.0,
  5866. 50.0,
  5867. 70.0
  5868. ],
  5869. "intensifierIndex": [
  5870. 0
  5871. ],
  5872. "addPropertyType": [
  5873. 102
  5874. ],
  5875. "addPropertyValue": [
  5876. 6.0
  5877. ],
  5878. "PromoteLan": 1261,
  5879. "PromoteLanPara": [
  5880. 3.0
  5881. ],
  5882. "PromoteLanPara_1": [
  5883. 1.0
  5884. ]
  5885. },
  5886. {
  5887. "ID": 20093,
  5888. "PieceID": 13509,
  5889. "power": 337.5,
  5890. "name": 1020093,
  5891. "dec": 1120093,
  5892. "attribute": 0,
  5893. "icon": "icon_s2009",
  5894. "scriptName": "S2009",
  5895. "IDGroup": 2009,
  5896. "timelineName": "",
  5897. "cd": 1.0,
  5898. "addcd": 0.0,
  5899. "SkillType": 2,
  5900. "level": 4,
  5901. "effectValue": [
  5902. 5.0,
  5903. 60.0,
  5904. 80.0
  5905. ],
  5906. "intensifierIndex": [
  5907. 0
  5908. ],
  5909. "addPropertyType": [
  5910. 102
  5911. ],
  5912. "addPropertyValue": [
  5913. 9.0
  5914. ],
  5915. "PromoteLan": 1262,
  5916. "PromoteLanPara": [
  5917. 3.0
  5918. ],
  5919. "PromoteLanPara_1": [
  5920. 1.0
  5921. ]
  5922. },
  5923. {
  5924. "ID": 20094,
  5925. "PieceID": 13509,
  5926. "power": 506.25,
  5927. "name": 1020094,
  5928. "dec": 1120094,
  5929. "attribute": 0,
  5930. "icon": "icon_s2009",
  5931. "scriptName": "S2009",
  5932. "IDGroup": 2009,
  5933. "timelineName": "",
  5934. "cd": 1.0,
  5935. "addcd": 0.0,
  5936. "SkillType": 2,
  5937. "level": 5,
  5938. "effectValue": [
  5939. 5.0,
  5940. 70.0,
  5941. 90.0
  5942. ],
  5943. "intensifierIndex": [
  5944. 0
  5945. ],
  5946. "addPropertyType": [
  5947. 102
  5948. ],
  5949. "addPropertyValue": [
  5950. 12.0
  5951. ],
  5952. "PromoteLan": 1263,
  5953. "PromoteLanPara": [
  5954. 3.0
  5955. ],
  5956. "PromoteLanPara_1": [
  5957. 1.0
  5958. ]
  5959. },
  5960. {
  5961. "ID": 20095,
  5962. "PieceID": 13509,
  5963. "power": 759.375,
  5964. "name": 1020095,
  5965. "dec": 1120095,
  5966. "attribute": 0,
  5967. "icon": "icon_s2009",
  5968. "scriptName": "S2009",
  5969. "IDGroup": 2009,
  5970. "timelineName": "",
  5971. "cd": 1.0,
  5972. "addcd": 0.0,
  5973. "SkillType": 2,
  5974. "level": 6,
  5975. "effectValue": [
  5976. 5.0,
  5977. 100.0,
  5978. 100.0
  5979. ],
  5980. "intensifierIndex": [
  5981. 0
  5982. ],
  5983. "addPropertyType": [
  5984. 102
  5985. ],
  5986. "addPropertyValue": [
  5987. 12.0
  5988. ],
  5989. "PromoteLan": 1264,
  5990. "PromoteLanPara_1": [
  5991. 1.0,
  5992. -1.0
  5993. ]
  5994. },
  5995. {
  5996. "ID": 20100,
  5997. "PieceID": 13510,
  5998. "power": 100.0,
  5999. "name": 1020100,
  6000. "dec": 1120100,
  6001. "attribute": 0,
  6002. "icon": "icon_s2010",
  6003. "scriptName": "S2010",
  6004. "IDGroup": 2010,
  6005. "timelineName": "",
  6006. "cd": 1.0,
  6007. "addcd": 0.0,
  6008. "SkillType": 2,
  6009. "level": 1,
  6010. "effectValue": [
  6011. 90.0,
  6012. 0.0
  6013. ],
  6014. "intensifierIndex": [
  6015. 0
  6016. ],
  6017. "PromoteLan": -1
  6018. },
  6019. {
  6020. "ID": 20101,
  6021. "PieceID": 13510,
  6022. "power": 150.0,
  6023. "name": 1020101,
  6024. "dec": 1120101,
  6025. "attribute": 0,
  6026. "icon": "icon_s2010",
  6027. "scriptName": "S2010",
  6028. "IDGroup": 2010,
  6029. "timelineName": "",
  6030. "cd": 1.0,
  6031. "addcd": 0.0,
  6032. "SkillType": 2,
  6033. "level": 2,
  6034. "effectValue": [
  6035. 110.0,
  6036. 20.0,
  6037. 20.0
  6038. ],
  6039. "intensifierIndex": [
  6040. 0
  6041. ],
  6042. "addPropertyType": [
  6043. 102
  6044. ],
  6045. "addPropertyValue": [
  6046. 3.0
  6047. ],
  6048. "PromoteLan": 1260,
  6049. "PromoteLanPara": [
  6050. 3.0
  6051. ]
  6052. },
  6053. {
  6054. "ID": 20102,
  6055. "PieceID": 13510,
  6056. "power": 225.0,
  6057. "name": 1020102,
  6058. "dec": 1120102,
  6059. "attribute": 0,
  6060. "icon": "icon_s2010",
  6061. "scriptName": "S2010",
  6062. "IDGroup": 2010,
  6063. "timelineName": "",
  6064. "cd": 1.0,
  6065. "addcd": 0.0,
  6066. "SkillType": 2,
  6067. "level": 3,
  6068. "effectValue": [
  6069. 130.0,
  6070. 20.0,
  6071. 20.0
  6072. ],
  6073. "intensifierIndex": [
  6074. 0
  6075. ],
  6076. "addPropertyType": [
  6077. 102
  6078. ],
  6079. "addPropertyValue": [
  6080. 6.0
  6081. ],
  6082. "PromoteLan": 1261,
  6083. "PromoteLanPara": [
  6084. 3.0
  6085. ]
  6086. },
  6087. {
  6088. "ID": 20103,
  6089. "PieceID": 13510,
  6090. "power": 337.5,
  6091. "name": 1020103,
  6092. "dec": 1120103,
  6093. "attribute": 0,
  6094. "icon": "icon_s2010",
  6095. "scriptName": "S2010",
  6096. "IDGroup": 2010,
  6097. "timelineName": "",
  6098. "cd": 1.0,
  6099. "addcd": 0.0,
  6100. "SkillType": 2,
  6101. "level": 4,
  6102. "effectValue": [
  6103. 150.0,
  6104. 30.0,
  6105. 30.0
  6106. ],
  6107. "intensifierIndex": [
  6108. 0
  6109. ],
  6110. "addPropertyType": [
  6111. 102
  6112. ],
  6113. "addPropertyValue": [
  6114. 9.0
  6115. ],
  6116. "PromoteLan": 1262,
  6117. "PromoteLanPara": [
  6118. 3.0
  6119. ]
  6120. },
  6121. {
  6122. "ID": 20104,
  6123. "PieceID": 13510,
  6124. "power": 506.25,
  6125. "name": 1020104,
  6126. "dec": 1120104,
  6127. "attribute": 0,
  6128. "icon": "icon_s2010",
  6129. "scriptName": "S2010",
  6130. "IDGroup": 2010,
  6131. "timelineName": "",
  6132. "cd": 1.0,
  6133. "addcd": 0.0,
  6134. "SkillType": 2,
  6135. "level": 5,
  6136. "effectValue": [
  6137. 170.0,
  6138. 30.0,
  6139. 30.0
  6140. ],
  6141. "intensifierIndex": [
  6142. 0
  6143. ],
  6144. "addPropertyType": [
  6145. 102
  6146. ],
  6147. "addPropertyValue": [
  6148. 12.0
  6149. ],
  6150. "PromoteLan": 1263,
  6151. "PromoteLanPara": [
  6152. 3.0
  6153. ]
  6154. },
  6155. {
  6156. "ID": 20105,
  6157. "PieceID": 13510,
  6158. "power": 759.375,
  6159. "name": 1020105,
  6160. "dec": 1120105,
  6161. "attribute": 0,
  6162. "icon": "icon_s2010",
  6163. "scriptName": "S2010",
  6164. "IDGroup": 2010,
  6165. "timelineName": "",
  6166. "cd": 1.0,
  6167. "addcd": 0.0,
  6168. "SkillType": 2,
  6169. "level": 6,
  6170. "effectValue": [
  6171. 190.0,
  6172. 30.0,
  6173. 30.0
  6174. ],
  6175. "intensifierIndex": [
  6176. 0
  6177. ],
  6178. "addPropertyType": [
  6179. 102
  6180. ],
  6181. "addPropertyValue": [
  6182. 12.0
  6183. ],
  6184. "PromoteLan": 1264
  6185. },
  6186. {
  6187. "ID": 20110,
  6188. "PieceID": 13511,
  6189. "power": 100.0,
  6190. "name": 1020110,
  6191. "dec": 1120110,
  6192. "attribute": 0,
  6193. "icon": "icon_s2011",
  6194. "scriptName": "S2011",
  6195. "IDGroup": 2011,
  6196. "timelineName": "",
  6197. "cd": 2.0,
  6198. "addcd": 0.0,
  6199. "SkillType": 2,
  6200. "level": 1,
  6201. "effectValue": [
  6202. 550.0
  6203. ],
  6204. "intensifierIndex": [
  6205. 0
  6206. ],
  6207. "PromoteLan": -1
  6208. },
  6209. {
  6210. "ID": 20111,
  6211. "PieceID": 13511,
  6212. "power": 150.0,
  6213. "name": 1020111,
  6214. "dec": 1120111,
  6215. "attribute": 0,
  6216. "icon": "icon_s2011",
  6217. "scriptName": "S2011",
  6218. "IDGroup": 2011,
  6219. "timelineName": "",
  6220. "cd": 2.0,
  6221. "addcd": 0.0,
  6222. "SkillType": 2,
  6223. "level": 2,
  6224. "effectValue": [
  6225. 650.0
  6226. ],
  6227. "intensifierIndex": [
  6228. 0
  6229. ],
  6230. "addPropertyType": [
  6231. 101
  6232. ],
  6233. "addPropertyValue": [
  6234. 3.0
  6235. ],
  6236. "PromoteLan": 1260,
  6237. "PromoteLanPara": [
  6238. 3.0
  6239. ]
  6240. },
  6241. {
  6242. "ID": 20112,
  6243. "PieceID": 13511,
  6244. "power": 225.0,
  6245. "name": 1020112,
  6246. "dec": 1120112,
  6247. "attribute": 0,
  6248. "icon": "icon_s2011",
  6249. "scriptName": "S2011",
  6250. "IDGroup": 2011,
  6251. "timelineName": "",
  6252. "cd": 2.0,
  6253. "addcd": 0.0,
  6254. "SkillType": 2,
  6255. "level": 3,
  6256. "effectValue": [
  6257. 750.0
  6258. ],
  6259. "intensifierIndex": [
  6260. 0
  6261. ],
  6262. "addPropertyType": [
  6263. 101
  6264. ],
  6265. "addPropertyValue": [
  6266. 6.0
  6267. ],
  6268. "PromoteLan": 1261,
  6269. "PromoteLanPara": [
  6270. 3.0
  6271. ]
  6272. },
  6273. {
  6274. "ID": 20113,
  6275. "PieceID": 13511,
  6276. "power": 337.5,
  6277. "name": 1020113,
  6278. "dec": 1120113,
  6279. "attribute": 0,
  6280. "icon": "icon_s2011",
  6281. "scriptName": "S2011",
  6282. "IDGroup": 2011,
  6283. "timelineName": "",
  6284. "cd": 2.0,
  6285. "addcd": 0.0,
  6286. "SkillType": 2,
  6287. "level": 4,
  6288. "effectValue": [
  6289. 850.0
  6290. ],
  6291. "intensifierIndex": [
  6292. 0
  6293. ],
  6294. "addPropertyType": [
  6295. 101
  6296. ],
  6297. "addPropertyValue": [
  6298. 9.0
  6299. ],
  6300. "PromoteLan": 1262,
  6301. "PromoteLanPara": [
  6302. 3.0
  6303. ]
  6304. },
  6305. {
  6306. "ID": 20114,
  6307. "PieceID": 13511,
  6308. "power": 506.25,
  6309. "name": 1020114,
  6310. "dec": 1120114,
  6311. "attribute": 0,
  6312. "icon": "icon_s2011",
  6313. "scriptName": "S2011",
  6314. "IDGroup": 2011,
  6315. "timelineName": "",
  6316. "cd": 2.0,
  6317. "addcd": 0.0,
  6318. "SkillType": 2,
  6319. "level": 5,
  6320. "effectValue": [
  6321. 950.0
  6322. ],
  6323. "intensifierIndex": [
  6324. 0
  6325. ],
  6326. "addPropertyType": [
  6327. 101
  6328. ],
  6329. "addPropertyValue": [
  6330. 12.0
  6331. ],
  6332. "PromoteLan": 1263,
  6333. "PromoteLanPara": [
  6334. 3.0
  6335. ]
  6336. },
  6337. {
  6338. "ID": 20115,
  6339. "PieceID": 13511,
  6340. "power": 759.375,
  6341. "name": 1020115,
  6342. "dec": 1120115,
  6343. "attribute": 0,
  6344. "icon": "icon_s2011",
  6345. "scriptName": "S2011",
  6346. "IDGroup": 2011,
  6347. "timelineName": "",
  6348. "cd": 2.0,
  6349. "addcd": 0.0,
  6350. "SkillType": 2,
  6351. "level": 6,
  6352. "effectValue": [
  6353. 1050.0
  6354. ],
  6355. "intensifierIndex": [
  6356. 0
  6357. ],
  6358. "addPropertyType": [
  6359. 101
  6360. ],
  6361. "addPropertyValue": [
  6362. 12.0
  6363. ],
  6364. "PromoteLan": 1264
  6365. },
  6366. {
  6367. "ID": 20120,
  6368. "PieceID": 13512,
  6369. "power": 100.0,
  6370. "name": 1020120,
  6371. "dec": 1120120,
  6372. "attribute": 0,
  6373. "icon": "icon_s2012",
  6374. "scriptName": "S2012",
  6375. "IDGroup": 2012,
  6376. "timelineName": "",
  6377. "cd": 1.0,
  6378. "addcd": 0.0,
  6379. "SkillType": 2,
  6380. "level": 1,
  6381. "intensifierIndex": [
  6382. 0
  6383. ],
  6384. "PromoteLan": -1,
  6385. "PromoteLanPara_1": [
  6386. 1.0
  6387. ]
  6388. },
  6389. {
  6390. "ID": 20121,
  6391. "PieceID": 13512,
  6392. "power": 150.0,
  6393. "name": 1020121,
  6394. "dec": 1120121,
  6395. "attribute": 0,
  6396. "icon": "icon_s2012",
  6397. "scriptName": "S2012",
  6398. "IDGroup": 2012,
  6399. "timelineName": "",
  6400. "cd": 1.0,
  6401. "addcd": 0.0,
  6402. "SkillType": 2,
  6403. "level": 2,
  6404. "intensifierIndex": [
  6405. 0
  6406. ],
  6407. "addPropertyType": [
  6408. 102
  6409. ],
  6410. "addPropertyValue": [
  6411. 3.0
  6412. ],
  6413. "PromoteLan": 1260,
  6414. "PromoteLanPara": [
  6415. 3.0
  6416. ],
  6417. "PromoteLanPara_1": [
  6418. 1.0
  6419. ]
  6420. },
  6421. {
  6422. "ID": 20122,
  6423. "PieceID": 13512,
  6424. "power": 225.0,
  6425. "name": 1020122,
  6426. "dec": 1120122,
  6427. "attribute": 0,
  6428. "icon": "icon_s2012",
  6429. "scriptName": "S2012",
  6430. "IDGroup": 2012,
  6431. "timelineName": "",
  6432. "cd": 1.0,
  6433. "addcd": 0.0,
  6434. "SkillType": 2,
  6435. "level": 3,
  6436. "intensifierIndex": [
  6437. 0
  6438. ],
  6439. "addPropertyType": [
  6440. 102
  6441. ],
  6442. "addPropertyValue": [
  6443. 6.0
  6444. ],
  6445. "PromoteLan": 1261,
  6446. "PromoteLanPara": [
  6447. 3.0
  6448. ],
  6449. "PromoteLanPara_1": [
  6450. 1.0
  6451. ]
  6452. },
  6453. {
  6454. "ID": 20123,
  6455. "PieceID": 13512,
  6456. "power": 337.5,
  6457. "name": 1020123,
  6458. "dec": 1120123,
  6459. "attribute": 0,
  6460. "icon": "icon_s2012",
  6461. "scriptName": "S2012",
  6462. "IDGroup": 2012,
  6463. "timelineName": "",
  6464. "cd": 1.0,
  6465. "addcd": 0.0,
  6466. "SkillType": 2,
  6467. "level": 4,
  6468. "intensifierIndex": [
  6469. 0
  6470. ],
  6471. "addPropertyType": [
  6472. 102
  6473. ],
  6474. "addPropertyValue": [
  6475. 9.0
  6476. ],
  6477. "PromoteLan": 1262,
  6478. "PromoteLanPara": [
  6479. 3.0
  6480. ],
  6481. "PromoteLanPara_1": [
  6482. 1.0
  6483. ]
  6484. },
  6485. {
  6486. "ID": 20124,
  6487. "PieceID": 13512,
  6488. "power": 506.25,
  6489. "name": 1020124,
  6490. "dec": 1120124,
  6491. "attribute": 0,
  6492. "icon": "icon_s2012",
  6493. "scriptName": "S2012",
  6494. "IDGroup": 2012,
  6495. "timelineName": "",
  6496. "cd": 1.0,
  6497. "addcd": 0.0,
  6498. "SkillType": 2,
  6499. "level": 5,
  6500. "intensifierIndex": [
  6501. 0
  6502. ],
  6503. "addPropertyType": [
  6504. 102
  6505. ],
  6506. "addPropertyValue": [
  6507. 12.0
  6508. ],
  6509. "PromoteLan": 1263,
  6510. "PromoteLanPara": [
  6511. 3.0
  6512. ],
  6513. "PromoteLanPara_1": [
  6514. 1.0
  6515. ]
  6516. },
  6517. {
  6518. "ID": 20125,
  6519. "PieceID": 13512,
  6520. "power": 759.375,
  6521. "name": 1020125,
  6522. "dec": 1120125,
  6523. "attribute": 0,
  6524. "icon": "icon_s2012",
  6525. "scriptName": "S2012",
  6526. "IDGroup": 2012,
  6527. "timelineName": "",
  6528. "cd": 1.0,
  6529. "addcd": 0.0,
  6530. "SkillType": 2,
  6531. "level": 6,
  6532. "intensifierIndex": [
  6533. 0
  6534. ],
  6535. "addPropertyType": [
  6536. 102
  6537. ],
  6538. "addPropertyValue": [
  6539. 12.0
  6540. ],
  6541. "PromoteLan": 1264,
  6542. "PromoteLanPara_1": [
  6543. 1.0
  6544. ]
  6545. },
  6546. {
  6547. "ID": 20130,
  6548. "PieceID": 13513,
  6549. "power": 100.0,
  6550. "name": 1020130,
  6551. "dec": 1120130,
  6552. "attribute": 0,
  6553. "icon": "icon_s2013",
  6554. "scriptName": "S2013",
  6555. "IDGroup": 2013,
  6556. "timelineName": "",
  6557. "cd": 1.0,
  6558. "addcd": 0.0,
  6559. "SkillType": 2,
  6560. "level": 1,
  6561. "intensifierIndex": [
  6562. 0
  6563. ],
  6564. "PromoteLan": -1,
  6565. "PromoteLanPara_1": [
  6566. 1.0
  6567. ]
  6568. },
  6569. {
  6570. "ID": 20131,
  6571. "PieceID": 13513,
  6572. "power": 150.0,
  6573. "name": 1020131,
  6574. "dec": 1120131,
  6575. "attribute": 0,
  6576. "icon": "icon_s2013",
  6577. "scriptName": "S2013",
  6578. "IDGroup": 2013,
  6579. "timelineName": "",
  6580. "cd": 1.0,
  6581. "addcd": 0.0,
  6582. "SkillType": 2,
  6583. "level": 2,
  6584. "intensifierIndex": [
  6585. 0
  6586. ],
  6587. "addPropertyType": [
  6588. 103
  6589. ],
  6590. "addPropertyValue": [
  6591. 3.0
  6592. ],
  6593. "PromoteLan": 1260,
  6594. "PromoteLanPara": [
  6595. 3.0
  6596. ],
  6597. "PromoteLanPara_1": [
  6598. 1.0
  6599. ]
  6600. },
  6601. {
  6602. "ID": 20132,
  6603. "PieceID": 13513,
  6604. "power": 225.0,
  6605. "name": 1020132,
  6606. "dec": 1120132,
  6607. "attribute": 0,
  6608. "icon": "icon_s2013",
  6609. "scriptName": "S2013",
  6610. "IDGroup": 2013,
  6611. "timelineName": "",
  6612. "cd": 1.0,
  6613. "addcd": 0.0,
  6614. "SkillType": 2,
  6615. "level": 3,
  6616. "intensifierIndex": [
  6617. 0
  6618. ],
  6619. "addPropertyType": [
  6620. 103
  6621. ],
  6622. "addPropertyValue": [
  6623. 6.0
  6624. ],
  6625. "PromoteLan": 1261,
  6626. "PromoteLanPara": [
  6627. 3.0
  6628. ],
  6629. "PromoteLanPara_1": [
  6630. 1.0
  6631. ]
  6632. },
  6633. {
  6634. "ID": 20133,
  6635. "PieceID": 13513,
  6636. "power": 337.5,
  6637. "name": 1020133,
  6638. "dec": 1120133,
  6639. "attribute": 0,
  6640. "icon": "icon_s2013",
  6641. "scriptName": "S2013",
  6642. "IDGroup": 2013,
  6643. "timelineName": "",
  6644. "cd": 1.0,
  6645. "addcd": 0.0,
  6646. "SkillType": 2,
  6647. "level": 4,
  6648. "intensifierIndex": [
  6649. 0
  6650. ],
  6651. "addPropertyType": [
  6652. 103
  6653. ],
  6654. "addPropertyValue": [
  6655. 9.0
  6656. ],
  6657. "PromoteLan": 1262,
  6658. "PromoteLanPara": [
  6659. 3.0
  6660. ],
  6661. "PromoteLanPara_1": [
  6662. 1.0
  6663. ]
  6664. },
  6665. {
  6666. "ID": 20134,
  6667. "PieceID": 13513,
  6668. "power": 506.25,
  6669. "name": 1020134,
  6670. "dec": 1120134,
  6671. "attribute": 0,
  6672. "icon": "icon_s2013",
  6673. "scriptName": "S2013",
  6674. "IDGroup": 2013,
  6675. "timelineName": "",
  6676. "cd": 1.0,
  6677. "addcd": 0.0,
  6678. "SkillType": 2,
  6679. "level": 5,
  6680. "intensifierIndex": [
  6681. 0
  6682. ],
  6683. "addPropertyType": [
  6684. 103
  6685. ],
  6686. "addPropertyValue": [
  6687. 12.0
  6688. ],
  6689. "PromoteLan": 1263,
  6690. "PromoteLanPara": [
  6691. 3.0
  6692. ],
  6693. "PromoteLanPara_1": [
  6694. 1.0
  6695. ]
  6696. },
  6697. {
  6698. "ID": 20135,
  6699. "PieceID": 13513,
  6700. "power": 759.375,
  6701. "name": 1020135,
  6702. "dec": 1120135,
  6703. "attribute": 0,
  6704. "icon": "icon_s2013",
  6705. "scriptName": "S2013",
  6706. "IDGroup": 2013,
  6707. "timelineName": "",
  6708. "cd": 1.0,
  6709. "addcd": 0.0,
  6710. "SkillType": 2,
  6711. "level": 6,
  6712. "intensifierIndex": [
  6713. 0
  6714. ],
  6715. "addPropertyType": [
  6716. 103
  6717. ],
  6718. "addPropertyValue": [
  6719. 12.0
  6720. ],
  6721. "PromoteLan": 1264,
  6722. "PromoteLanPara_1": [
  6723. 1.0
  6724. ]
  6725. },
  6726. {
  6727. "ID": 20140,
  6728. "PieceID": 13514,
  6729. "power": 100.0,
  6730. "name": 1020140,
  6731. "dec": 1120140,
  6732. "attribute": 0,
  6733. "icon": "icon_s2014",
  6734. "scriptName": "S2014",
  6735. "IDGroup": 2014,
  6736. "timelineName": "",
  6737. "cd": 1.0,
  6738. "addcd": 0.0,
  6739. "SkillType": 2,
  6740. "level": 1,
  6741. "effectValue": [
  6742. 5.0,
  6743. 20.0,
  6744. 10.0
  6745. ],
  6746. "intensifierIndex": [
  6747. 0
  6748. ],
  6749. "PromoteLan": -1,
  6750. "PromoteLanPara_1": [
  6751. 0.0,
  6752. -1.0
  6753. ]
  6754. },
  6755. {
  6756. "ID": 20141,
  6757. "PieceID": 13514,
  6758. "power": 150.0,
  6759. "name": 1020141,
  6760. "dec": 1120141,
  6761. "attribute": 0,
  6762. "icon": "icon_s2014",
  6763. "scriptName": "S2014",
  6764. "IDGroup": 2014,
  6765. "timelineName": "",
  6766. "cd": 1.0,
  6767. "addcd": 0.0,
  6768. "SkillType": 2,
  6769. "level": 2,
  6770. "effectValue": [
  6771. 5.0,
  6772. 30.0,
  6773. 15.0
  6774. ],
  6775. "intensifierIndex": [
  6776. 0
  6777. ],
  6778. "addPropertyType": [
  6779. 101
  6780. ],
  6781. "addPropertyValue": [
  6782. 3.0
  6783. ],
  6784. "PromoteLan": 1260,
  6785. "PromoteLanPara": [
  6786. 3.0
  6787. ],
  6788. "PromoteLanPara_1": [
  6789. 0.0,
  6790. -1.0
  6791. ]
  6792. },
  6793. {
  6794. "ID": 20142,
  6795. "PieceID": 13514,
  6796. "power": 225.0,
  6797. "name": 1020142,
  6798. "dec": 1120142,
  6799. "attribute": 0,
  6800. "icon": "icon_s2014",
  6801. "scriptName": "S2014",
  6802. "IDGroup": 2014,
  6803. "timelineName": "",
  6804. "cd": 1.0,
  6805. "addcd": 0.0,
  6806. "SkillType": 2,
  6807. "level": 3,
  6808. "effectValue": [
  6809. 4.0,
  6810. 40.0,
  6811. 15.0
  6812. ],
  6813. "intensifierIndex": [
  6814. 0
  6815. ],
  6816. "addPropertyType": [
  6817. 101
  6818. ],
  6819. "addPropertyValue": [
  6820. 6.0
  6821. ],
  6822. "PromoteLan": 1261,
  6823. "PromoteLanPara": [
  6824. 3.0
  6825. ],
  6826. "PromoteLanPara_1": [
  6827. 0.0,
  6828. -1.0
  6829. ]
  6830. },
  6831. {
  6832. "ID": 20143,
  6833. "PieceID": 13514,
  6834. "power": 337.5,
  6835. "name": 1020143,
  6836. "dec": 1120143,
  6837. "attribute": 0,
  6838. "icon": "icon_s2014",
  6839. "scriptName": "S2014",
  6840. "IDGroup": 2014,
  6841. "timelineName": "",
  6842. "cd": 1.0,
  6843. "addcd": 0.0,
  6844. "SkillType": 2,
  6845. "level": 4,
  6846. "effectValue": [
  6847. 4.0,
  6848. 50.0,
  6849. 20.0
  6850. ],
  6851. "intensifierIndex": [
  6852. 0
  6853. ],
  6854. "addPropertyType": [
  6855. 101
  6856. ],
  6857. "addPropertyValue": [
  6858. 9.0
  6859. ],
  6860. "PromoteLan": 1262,
  6861. "PromoteLanPara": [
  6862. 3.0
  6863. ],
  6864. "PromoteLanPara_1": [
  6865. 0.0,
  6866. -1.0
  6867. ]
  6868. },
  6869. {
  6870. "ID": 20144,
  6871. "PieceID": 13514,
  6872. "power": 506.25,
  6873. "name": 1020144,
  6874. "dec": 1120144,
  6875. "attribute": 0,
  6876. "icon": "icon_s2014",
  6877. "scriptName": "S2014",
  6878. "IDGroup": 2014,
  6879. "timelineName": "",
  6880. "cd": 1.0,
  6881. "addcd": 0.0,
  6882. "SkillType": 2,
  6883. "level": 5,
  6884. "effectValue": [
  6885. 4.0,
  6886. 60.0,
  6887. 25.0
  6888. ],
  6889. "intensifierIndex": [
  6890. 0
  6891. ],
  6892. "addPropertyType": [
  6893. 101
  6894. ],
  6895. "addPropertyValue": [
  6896. 12.0
  6897. ],
  6898. "PromoteLan": 1263,
  6899. "PromoteLanPara": [
  6900. 3.0
  6901. ],
  6902. "PromoteLanPara_1": [
  6903. 0.0,
  6904. -1.0
  6905. ]
  6906. },
  6907. {
  6908. "ID": 20145,
  6909. "PieceID": 13514,
  6910. "power": 759.375,
  6911. "name": 1020145,
  6912. "dec": 1120145,
  6913. "attribute": 0,
  6914. "icon": "icon_s2014",
  6915. "scriptName": "S2014",
  6916. "IDGroup": 2014,
  6917. "timelineName": "",
  6918. "cd": 1.0,
  6919. "addcd": 0.0,
  6920. "SkillType": 2,
  6921. "level": 6,
  6922. "effectValue": [
  6923. 3.0,
  6924. 70.0,
  6925. 30.0
  6926. ],
  6927. "intensifierIndex": [
  6928. 0
  6929. ],
  6930. "addPropertyType": [
  6931. 101
  6932. ],
  6933. "addPropertyValue": [
  6934. 12.0
  6935. ],
  6936. "PromoteLan": 1264,
  6937. "PromoteLanPara_1": [
  6938. 0.0,
  6939. -1.0
  6940. ]
  6941. },
  6942. {
  6943. "ID": 20150,
  6944. "PieceID": 13515,
  6945. "power": 100.0,
  6946. "name": 1020150,
  6947. "dec": 1120150,
  6948. "attribute": 0,
  6949. "icon": "icon_s2015",
  6950. "scriptName": "S2015",
  6951. "IDGroup": 2015,
  6952. "timelineName": "",
  6953. "cd": 1.0,
  6954. "addcd": 0.0,
  6955. "SkillType": 2,
  6956. "level": 1,
  6957. "effectValue": [
  6958. 5.0,
  6959. 20.0,
  6960. 10.0
  6961. ],
  6962. "intensifierIndex": [
  6963. 0
  6964. ],
  6965. "PromoteLan": -1,
  6966. "PromoteLanPara_1": [
  6967. 0.0,
  6968. -1.0
  6969. ]
  6970. },
  6971. {
  6972. "ID": 20151,
  6973. "PieceID": 13515,
  6974. "power": 150.0,
  6975. "name": 1020151,
  6976. "dec": 1120151,
  6977. "attribute": 0,
  6978. "icon": "icon_s2015",
  6979. "scriptName": "S2015",
  6980. "IDGroup": 2015,
  6981. "timelineName": "",
  6982. "cd": 1.0,
  6983. "addcd": 0.0,
  6984. "SkillType": 2,
  6985. "level": 2,
  6986. "effectValue": [
  6987. 5.0,
  6988. 30.0,
  6989. 15.0
  6990. ],
  6991. "intensifierIndex": [
  6992. 0
  6993. ],
  6994. "addPropertyType": [
  6995. 102
  6996. ],
  6997. "addPropertyValue": [
  6998. 3.0
  6999. ],
  7000. "PromoteLan": 1260,
  7001. "PromoteLanPara": [
  7002. 3.0
  7003. ],
  7004. "PromoteLanPara_1": [
  7005. 0.0,
  7006. -1.0
  7007. ]
  7008. },
  7009. {
  7010. "ID": 20152,
  7011. "PieceID": 13515,
  7012. "power": 225.0,
  7013. "name": 1020152,
  7014. "dec": 1120152,
  7015. "attribute": 0,
  7016. "icon": "icon_s2015",
  7017. "scriptName": "S2015",
  7018. "IDGroup": 2015,
  7019. "timelineName": "",
  7020. "cd": 1.0,
  7021. "addcd": 0.0,
  7022. "SkillType": 2,
  7023. "level": 3,
  7024. "effectValue": [
  7025. 4.0,
  7026. 40.0,
  7027. 15.0
  7028. ],
  7029. "intensifierIndex": [
  7030. 0
  7031. ],
  7032. "addPropertyType": [
  7033. 102
  7034. ],
  7035. "addPropertyValue": [
  7036. 6.0
  7037. ],
  7038. "PromoteLan": 1261,
  7039. "PromoteLanPara": [
  7040. 3.0
  7041. ],
  7042. "PromoteLanPara_1": [
  7043. 0.0,
  7044. -1.0
  7045. ]
  7046. },
  7047. {
  7048. "ID": 20153,
  7049. "PieceID": 13515,
  7050. "power": 337.5,
  7051. "name": 1020153,
  7052. "dec": 1120153,
  7053. "attribute": 0,
  7054. "icon": "icon_s2015",
  7055. "scriptName": "S2015",
  7056. "IDGroup": 2015,
  7057. "timelineName": "",
  7058. "cd": 1.0,
  7059. "addcd": 0.0,
  7060. "SkillType": 2,
  7061. "level": 4,
  7062. "effectValue": [
  7063. 4.0,
  7064. 50.0,
  7065. 20.0
  7066. ],
  7067. "intensifierIndex": [
  7068. 0
  7069. ],
  7070. "addPropertyType": [
  7071. 102
  7072. ],
  7073. "addPropertyValue": [
  7074. 9.0
  7075. ],
  7076. "PromoteLan": 1262,
  7077. "PromoteLanPara": [
  7078. 3.0
  7079. ],
  7080. "PromoteLanPara_1": [
  7081. 0.0,
  7082. -1.0
  7083. ]
  7084. },
  7085. {
  7086. "ID": 20154,
  7087. "PieceID": 13515,
  7088. "power": 506.25,
  7089. "name": 1020154,
  7090. "dec": 1120154,
  7091. "attribute": 0,
  7092. "icon": "icon_s2015",
  7093. "scriptName": "S2015",
  7094. "IDGroup": 2015,
  7095. "timelineName": "",
  7096. "cd": 1.0,
  7097. "addcd": 0.0,
  7098. "SkillType": 2,
  7099. "level": 5,
  7100. "effectValue": [
  7101. 4.0,
  7102. 60.0,
  7103. 25.0
  7104. ],
  7105. "intensifierIndex": [
  7106. 0
  7107. ],
  7108. "addPropertyType": [
  7109. 102
  7110. ],
  7111. "addPropertyValue": [
  7112. 12.0
  7113. ],
  7114. "PromoteLan": 1263,
  7115. "PromoteLanPara": [
  7116. 3.0
  7117. ],
  7118. "PromoteLanPara_1": [
  7119. 0.0,
  7120. -1.0
  7121. ]
  7122. },
  7123. {
  7124. "ID": 20155,
  7125. "PieceID": 13515,
  7126. "power": 759.375,
  7127. "name": 1020155,
  7128. "dec": 1120155,
  7129. "attribute": 0,
  7130. "icon": "icon_s2015",
  7131. "scriptName": "S2015",
  7132. "IDGroup": 2015,
  7133. "timelineName": "",
  7134. "cd": 1.0,
  7135. "addcd": 0.0,
  7136. "SkillType": 2,
  7137. "level": 6,
  7138. "effectValue": [
  7139. 3.0,
  7140. 70.0,
  7141. 30.0
  7142. ],
  7143. "intensifierIndex": [
  7144. 0
  7145. ],
  7146. "addPropertyType": [
  7147. 102
  7148. ],
  7149. "addPropertyValue": [
  7150. 12.0
  7151. ],
  7152. "PromoteLan": 1264,
  7153. "PromoteLanPara_1": [
  7154. 0.0,
  7155. -1.0,
  7156. 1.0
  7157. ]
  7158. },
  7159. {
  7160. "ID": 20160,
  7161. "PieceID": 13516,
  7162. "power": 100.0,
  7163. "name": 1020160,
  7164. "dec": 1120160,
  7165. "attribute": 0,
  7166. "icon": "icon_s2016",
  7167. "scriptName": "S2016",
  7168. "IDGroup": 2016,
  7169. "timelineName": "",
  7170. "cd": 1.0,
  7171. "addcd": 0.0,
  7172. "SkillType": 2,
  7173. "level": 1,
  7174. "effectValue": [
  7175. 5.0,
  7176. 20.0,
  7177. 10.0
  7178. ],
  7179. "intensifierIndex": [
  7180. 0
  7181. ],
  7182. "PromoteLan": -1,
  7183. "PromoteLanPara_1": [
  7184. 1.0
  7185. ]
  7186. },
  7187. {
  7188. "ID": 20161,
  7189. "PieceID": 13516,
  7190. "power": 150.0,
  7191. "name": 1020161,
  7192. "dec": 1120161,
  7193. "attribute": 0,
  7194. "icon": "icon_s2016",
  7195. "scriptName": "S2016",
  7196. "IDGroup": 2016,
  7197. "timelineName": "",
  7198. "cd": 1.0,
  7199. "addcd": 0.0,
  7200. "SkillType": 2,
  7201. "level": 2,
  7202. "effectValue": [
  7203. 5.0,
  7204. 30.0,
  7205. 15.0
  7206. ],
  7207. "intensifierIndex": [
  7208. 0
  7209. ],
  7210. "addPropertyType": [
  7211. 103
  7212. ],
  7213. "addPropertyValue": [
  7214. 3.0
  7215. ],
  7216. "PromoteLan": 1260,
  7217. "PromoteLanPara": [
  7218. 3.0
  7219. ],
  7220. "PromoteLanPara_1": [
  7221. 1.0
  7222. ]
  7223. },
  7224. {
  7225. "ID": 20162,
  7226. "PieceID": 13516,
  7227. "power": 225.0,
  7228. "name": 1020162,
  7229. "dec": 1120162,
  7230. "attribute": 0,
  7231. "icon": "icon_s2016",
  7232. "scriptName": "S2016",
  7233. "IDGroup": 2016,
  7234. "timelineName": "",
  7235. "cd": 1.0,
  7236. "addcd": 0.0,
  7237. "SkillType": 2,
  7238. "level": 3,
  7239. "effectValue": [
  7240. 4.0,
  7241. 40.0,
  7242. 15.0
  7243. ],
  7244. "intensifierIndex": [
  7245. 0
  7246. ],
  7247. "addPropertyType": [
  7248. 103
  7249. ],
  7250. "addPropertyValue": [
  7251. 6.0
  7252. ],
  7253. "PromoteLan": 1261,
  7254. "PromoteLanPara": [
  7255. 3.0
  7256. ],
  7257. "PromoteLanPara_1": [
  7258. 1.0
  7259. ]
  7260. },
  7261. {
  7262. "ID": 20163,
  7263. "PieceID": 13516,
  7264. "power": 337.5,
  7265. "name": 1020163,
  7266. "dec": 1120163,
  7267. "attribute": 0,
  7268. "icon": "icon_s2016",
  7269. "scriptName": "S2016",
  7270. "IDGroup": 2016,
  7271. "timelineName": "",
  7272. "cd": 1.0,
  7273. "addcd": 0.0,
  7274. "SkillType": 2,
  7275. "level": 4,
  7276. "effectValue": [
  7277. 4.0,
  7278. 50.0,
  7279. 20.0
  7280. ],
  7281. "intensifierIndex": [
  7282. 0
  7283. ],
  7284. "addPropertyType": [
  7285. 103
  7286. ],
  7287. "addPropertyValue": [
  7288. 9.0
  7289. ],
  7290. "PromoteLan": 1262,
  7291. "PromoteLanPara": [
  7292. 3.0
  7293. ],
  7294. "PromoteLanPara_1": [
  7295. 1.0
  7296. ]
  7297. },
  7298. {
  7299. "ID": 20164,
  7300. "PieceID": 13516,
  7301. "power": 506.25,
  7302. "name": 1020164,
  7303. "dec": 1120164,
  7304. "attribute": 0,
  7305. "icon": "icon_s2016",
  7306. "scriptName": "S2016",
  7307. "IDGroup": 2016,
  7308. "timelineName": "",
  7309. "cd": 1.0,
  7310. "addcd": 0.0,
  7311. "SkillType": 2,
  7312. "level": 5,
  7313. "effectValue": [
  7314. 4.0,
  7315. 60.0,
  7316. 25.0
  7317. ],
  7318. "intensifierIndex": [
  7319. 0
  7320. ],
  7321. "addPropertyType": [
  7322. 103
  7323. ],
  7324. "addPropertyValue": [
  7325. 12.0
  7326. ],
  7327. "PromoteLan": 1263,
  7328. "PromoteLanPara": [
  7329. 3.0
  7330. ],
  7331. "PromoteLanPara_1": [
  7332. 1.0
  7333. ]
  7334. },
  7335. {
  7336. "ID": 20165,
  7337. "PieceID": 13516,
  7338. "power": 759.375,
  7339. "name": 1020165,
  7340. "dec": 1120165,
  7341. "attribute": 0,
  7342. "icon": "icon_s2016",
  7343. "scriptName": "S2016",
  7344. "IDGroup": 2016,
  7345. "timelineName": "",
  7346. "cd": 1.0,
  7347. "addcd": 0.0,
  7348. "SkillType": 2,
  7349. "level": 6,
  7350. "effectValue": [
  7351. 3.0,
  7352. 70.0,
  7353. 30.0
  7354. ],
  7355. "intensifierIndex": [
  7356. 0
  7357. ],
  7358. "addPropertyType": [
  7359. 103
  7360. ],
  7361. "addPropertyValue": [
  7362. 12.0
  7363. ],
  7364. "PromoteLan": 1264,
  7365. "PromoteLanPara_1": [
  7366. 1.0
  7367. ]
  7368. },
  7369. {
  7370. "ID": 20170,
  7371. "PieceID": 13517,
  7372. "power": 100.0,
  7373. "name": 1020170,
  7374. "dec": 1120170,
  7375. "attribute": 0,
  7376. "icon": "icon_s2017",
  7377. "scriptName": "S2017",
  7378. "IDGroup": 2017,
  7379. "timelineName": "",
  7380. "cd": 1.0,
  7381. "addcd": 0.0,
  7382. "SkillType": 2,
  7383. "level": 1,
  7384. "effectValue": [
  7385. 30.0
  7386. ],
  7387. "intensifierIndex": [
  7388. 0
  7389. ],
  7390. "PromoteLan": -1,
  7391. "PromoteLanPara_1": [
  7392. 1.0
  7393. ]
  7394. },
  7395. {
  7396. "ID": 20171,
  7397. "PieceID": 13517,
  7398. "power": 150.0,
  7399. "name": 1020171,
  7400. "dec": 1120171,
  7401. "attribute": 0,
  7402. "icon": "icon_s2017",
  7403. "scriptName": "S2017",
  7404. "IDGroup": 2017,
  7405. "timelineName": "",
  7406. "cd": 1.0,
  7407. "addcd": 0.0,
  7408. "SkillType": 2,
  7409. "level": 2,
  7410. "effectValue": [
  7411. 40.0
  7412. ],
  7413. "intensifierIndex": [
  7414. 0
  7415. ],
  7416. "addPropertyType": [
  7417. 101
  7418. ],
  7419. "addPropertyValue": [
  7420. 3.0
  7421. ],
  7422. "PromoteLan": 1260,
  7423. "PromoteLanPara": [
  7424. 3.0
  7425. ],
  7426. "PromoteLanPara_1": [
  7427. 1.0
  7428. ]
  7429. },
  7430. {
  7431. "ID": 20172,
  7432. "PieceID": 13517,
  7433. "power": 225.0,
  7434. "name": 1020172,
  7435. "dec": 1120172,
  7436. "attribute": 0,
  7437. "icon": "icon_s2017",
  7438. "scriptName": "S2017",
  7439. "IDGroup": 2017,
  7440. "timelineName": "",
  7441. "cd": 1.0,
  7442. "addcd": 0.0,
  7443. "SkillType": 2,
  7444. "level": 3,
  7445. "effectValue": [
  7446. 50.0
  7447. ],
  7448. "intensifierIndex": [
  7449. 0
  7450. ],
  7451. "addPropertyType": [
  7452. 101
  7453. ],
  7454. "addPropertyValue": [
  7455. 6.0
  7456. ],
  7457. "PromoteLan": 1261,
  7458. "PromoteLanPara": [
  7459. 3.0
  7460. ],
  7461. "PromoteLanPara_1": [
  7462. 1.0
  7463. ]
  7464. },
  7465. {
  7466. "ID": 20173,
  7467. "PieceID": 13517,
  7468. "power": 337.5,
  7469. "name": 1020173,
  7470. "dec": 1120173,
  7471. "attribute": 0,
  7472. "icon": "icon_s2017",
  7473. "scriptName": "S2017",
  7474. "IDGroup": 2017,
  7475. "timelineName": "",
  7476. "cd": 1.0,
  7477. "addcd": 0.0,
  7478. "SkillType": 2,
  7479. "level": 4,
  7480. "effectValue": [
  7481. 60.0
  7482. ],
  7483. "intensifierIndex": [
  7484. 0
  7485. ],
  7486. "addPropertyType": [
  7487. 101
  7488. ],
  7489. "addPropertyValue": [
  7490. 9.0
  7491. ],
  7492. "PromoteLan": 1262,
  7493. "PromoteLanPara": [
  7494. 3.0
  7495. ],
  7496. "PromoteLanPara_1": [
  7497. 1.0
  7498. ]
  7499. },
  7500. {
  7501. "ID": 20174,
  7502. "PieceID": 13517,
  7503. "power": 506.25,
  7504. "name": 1020174,
  7505. "dec": 1120174,
  7506. "attribute": 0,
  7507. "icon": "icon_s2017",
  7508. "scriptName": "S2017",
  7509. "IDGroup": 2017,
  7510. "timelineName": "",
  7511. "cd": 1.0,
  7512. "addcd": 0.0,
  7513. "SkillType": 2,
  7514. "level": 5,
  7515. "effectValue": [
  7516. 70.0
  7517. ],
  7518. "intensifierIndex": [
  7519. 0
  7520. ],
  7521. "addPropertyType": [
  7522. 101
  7523. ],
  7524. "addPropertyValue": [
  7525. 12.0
  7526. ],
  7527. "PromoteLan": 1263,
  7528. "PromoteLanPara": [
  7529. 3.0
  7530. ],
  7531. "PromoteLanPara_1": [
  7532. 1.0
  7533. ]
  7534. },
  7535. {
  7536. "ID": 20175,
  7537. "PieceID": 13517,
  7538. "power": 759.375,
  7539. "name": 1020175,
  7540. "dec": 1120175,
  7541. "attribute": 0,
  7542. "icon": "icon_s2017",
  7543. "scriptName": "S2017",
  7544. "IDGroup": 2017,
  7545. "timelineName": "",
  7546. "cd": 1.0,
  7547. "addcd": 0.0,
  7548. "SkillType": 2,
  7549. "level": 6,
  7550. "effectValue": [
  7551. 80.0
  7552. ],
  7553. "intensifierIndex": [
  7554. 0
  7555. ],
  7556. "addPropertyType": [
  7557. 101
  7558. ],
  7559. "addPropertyValue": [
  7560. 12.0
  7561. ],
  7562. "PromoteLan": 1264,
  7563. "PromoteLanPara_1": [
  7564. 1.0
  7565. ]
  7566. },
  7567. {
  7568. "ID": 20180,
  7569. "PieceID": 13518,
  7570. "power": 100.0,
  7571. "name": 1020180,
  7572. "dec": 1120180,
  7573. "attribute": 0,
  7574. "icon": "icon_s2018",
  7575. "scriptName": "S2018",
  7576. "IDGroup": 2018,
  7577. "timelineName": "",
  7578. "cd": 1.0,
  7579. "addcd": 0.0,
  7580. "SkillType": 2,
  7581. "level": 1,
  7582. "effectValue": [
  7583. 10.0,
  7584. 10.0,
  7585. 10.0,
  7586. 5.0
  7587. ],
  7588. "intensifierIndex": [
  7589. 0
  7590. ],
  7591. "PromoteLan": -1
  7592. },
  7593. {
  7594. "ID": 20181,
  7595. "PieceID": 13518,
  7596. "power": 150.0,
  7597. "name": 1020181,
  7598. "dec": 1120181,
  7599. "attribute": 0,
  7600. "icon": "icon_s2018",
  7601. "scriptName": "S2018",
  7602. "IDGroup": 2018,
  7603. "timelineName": "",
  7604. "cd": 1.0,
  7605. "addcd": 0.0,
  7606. "SkillType": 2,
  7607. "level": 2,
  7608. "effectValue": [
  7609. 10.0,
  7610. 10.0,
  7611. 10.0,
  7612. 5.0
  7613. ],
  7614. "intensifierIndex": [
  7615. 0
  7616. ],
  7617. "addPropertyType": [
  7618. 102
  7619. ],
  7620. "addPropertyValue": [
  7621. 3.0
  7622. ],
  7623. "PromoteLan": 1260,
  7624. "PromoteLanPara": [
  7625. 3.0
  7626. ]
  7627. },
  7628. {
  7629. "ID": 20182,
  7630. "PieceID": 13518,
  7631. "power": 225.0,
  7632. "name": 1020182,
  7633. "dec": 1120182,
  7634. "attribute": 0,
  7635. "icon": "icon_s2018",
  7636. "scriptName": "S2018",
  7637. "IDGroup": 2018,
  7638. "timelineName": "",
  7639. "cd": 1.0,
  7640. "addcd": 0.0,
  7641. "SkillType": 2,
  7642. "level": 3,
  7643. "effectValue": [
  7644. 10.0,
  7645. 10.0,
  7646. 10.0,
  7647. 5.0
  7648. ],
  7649. "intensifierIndex": [
  7650. 0
  7651. ],
  7652. "addPropertyType": [
  7653. 102
  7654. ],
  7655. "addPropertyValue": [
  7656. 6.0
  7657. ],
  7658. "PromoteLan": 1261,
  7659. "PromoteLanPara": [
  7660. 3.0
  7661. ]
  7662. },
  7663. {
  7664. "ID": 20183,
  7665. "PieceID": 13518,
  7666. "power": 337.5,
  7667. "name": 1020183,
  7668. "dec": 1120183,
  7669. "attribute": 0,
  7670. "icon": "icon_s2018",
  7671. "scriptName": "S2018",
  7672. "IDGroup": 2018,
  7673. "timelineName": "",
  7674. "cd": 1.0,
  7675. "addcd": 0.0,
  7676. "SkillType": 2,
  7677. "level": 4,
  7678. "effectValue": [
  7679. 10.0,
  7680. 10.0,
  7681. 10.0,
  7682. 5.0
  7683. ],
  7684. "intensifierIndex": [
  7685. 0
  7686. ],
  7687. "addPropertyType": [
  7688. 102
  7689. ],
  7690. "addPropertyValue": [
  7691. 9.0
  7692. ],
  7693. "PromoteLan": 1262,
  7694. "PromoteLanPara": [
  7695. 3.0
  7696. ]
  7697. },
  7698. {
  7699. "ID": 20184,
  7700. "PieceID": 13518,
  7701. "power": 506.25,
  7702. "name": 1020184,
  7703. "dec": 1120184,
  7704. "attribute": 0,
  7705. "icon": "icon_s2018",
  7706. "scriptName": "S2018",
  7707. "IDGroup": 2018,
  7708. "timelineName": "",
  7709. "cd": 1.0,
  7710. "addcd": 0.0,
  7711. "SkillType": 2,
  7712. "level": 5,
  7713. "effectValue": [
  7714. 10.0,
  7715. 10.0,
  7716. 10.0,
  7717. 5.0
  7718. ],
  7719. "intensifierIndex": [
  7720. 0
  7721. ],
  7722. "addPropertyType": [
  7723. 102
  7724. ],
  7725. "addPropertyValue": [
  7726. 12.0
  7727. ],
  7728. "PromoteLan": 1263,
  7729. "PromoteLanPara": [
  7730. 3.0
  7731. ]
  7732. },
  7733. {
  7734. "ID": 20185,
  7735. "PieceID": 13518,
  7736. "power": 759.375,
  7737. "name": 1020185,
  7738. "dec": 1120185,
  7739. "attribute": 0,
  7740. "icon": "icon_s2018",
  7741. "scriptName": "S2018",
  7742. "IDGroup": 2018,
  7743. "timelineName": "",
  7744. "cd": 1.0,
  7745. "addcd": 0.0,
  7746. "SkillType": 2,
  7747. "level": 6,
  7748. "effectValue": [
  7749. 10.0,
  7750. 10.0,
  7751. 10.0,
  7752. 5.0
  7753. ],
  7754. "intensifierIndex": [
  7755. 0
  7756. ],
  7757. "addPropertyType": [
  7758. 102
  7759. ],
  7760. "addPropertyValue": [
  7761. 12.0
  7762. ],
  7763. "PromoteLan": 1264
  7764. },
  7765. {
  7766. "ID": 20190,
  7767. "PieceID": 13519,
  7768. "power": 100.0,
  7769. "name": 1020190,
  7770. "dec": 1120190,
  7771. "attribute": 0,
  7772. "icon": "icon_s2019",
  7773. "scriptName": "S2019",
  7774. "IDGroup": 2019,
  7775. "timelineName": "",
  7776. "cd": 1.0,
  7777. "addcd": 0.0,
  7778. "SkillType": 2,
  7779. "level": 1,
  7780. "effectValue": [
  7781. 20.0
  7782. ],
  7783. "intensifierIndex": [
  7784. 0
  7785. ],
  7786. "PromoteLan": -1,
  7787. "PromoteLanPara_1": [
  7788. 1.0
  7789. ]
  7790. },
  7791. {
  7792. "ID": 20191,
  7793. "PieceID": 13519,
  7794. "power": 150.0,
  7795. "name": 1020191,
  7796. "dec": 1120191,
  7797. "attribute": 0,
  7798. "icon": "icon_s2019",
  7799. "scriptName": "S2019",
  7800. "IDGroup": 2019,
  7801. "timelineName": "",
  7802. "cd": 1.0,
  7803. "addcd": 0.0,
  7804. "SkillType": 2,
  7805. "level": 2,
  7806. "effectValue": [
  7807. 30.0
  7808. ],
  7809. "intensifierIndex": [
  7810. 0
  7811. ],
  7812. "addPropertyType": [
  7813. 103
  7814. ],
  7815. "addPropertyValue": [
  7816. 3.0
  7817. ],
  7818. "PromoteLan": 1260,
  7819. "PromoteLanPara": [
  7820. 3.0
  7821. ],
  7822. "PromoteLanPara_1": [
  7823. 1.0
  7824. ]
  7825. },
  7826. {
  7827. "ID": 20192,
  7828. "PieceID": 13519,
  7829. "power": 225.0,
  7830. "name": 1020192,
  7831. "dec": 1120192,
  7832. "attribute": 0,
  7833. "icon": "icon_s2019",
  7834. "scriptName": "S2019",
  7835. "IDGroup": 2019,
  7836. "timelineName": "",
  7837. "cd": 1.0,
  7838. "addcd": 0.0,
  7839. "SkillType": 2,
  7840. "level": 3,
  7841. "effectValue": [
  7842. 40.0
  7843. ],
  7844. "intensifierIndex": [
  7845. 0
  7846. ],
  7847. "addPropertyType": [
  7848. 103
  7849. ],
  7850. "addPropertyValue": [
  7851. 6.0
  7852. ],
  7853. "PromoteLan": 1261,
  7854. "PromoteLanPara": [
  7855. 3.0
  7856. ],
  7857. "PromoteLanPara_1": [
  7858. 1.0
  7859. ]
  7860. },
  7861. {
  7862. "ID": 20193,
  7863. "PieceID": 13519,
  7864. "power": 337.5,
  7865. "name": 1020193,
  7866. "dec": 1120193,
  7867. "attribute": 0,
  7868. "icon": "icon_s2019",
  7869. "scriptName": "S2019",
  7870. "IDGroup": 2019,
  7871. "timelineName": "",
  7872. "cd": 1.0,
  7873. "addcd": 0.0,
  7874. "SkillType": 2,
  7875. "level": 4,
  7876. "effectValue": [
  7877. 50.0
  7878. ],
  7879. "intensifierIndex": [
  7880. 0
  7881. ],
  7882. "addPropertyType": [
  7883. 103
  7884. ],
  7885. "addPropertyValue": [
  7886. 9.0
  7887. ],
  7888. "PromoteLan": 1262,
  7889. "PromoteLanPara": [
  7890. 3.0
  7891. ],
  7892. "PromoteLanPara_1": [
  7893. 1.0
  7894. ]
  7895. },
  7896. {
  7897. "ID": 20194,
  7898. "PieceID": 13519,
  7899. "power": 506.25,
  7900. "name": 1020194,
  7901. "dec": 1120194,
  7902. "attribute": 0,
  7903. "icon": "icon_s2019",
  7904. "scriptName": "S2019",
  7905. "IDGroup": 2019,
  7906. "timelineName": "",
  7907. "cd": 1.0,
  7908. "addcd": 0.0,
  7909. "SkillType": 2,
  7910. "level": 5,
  7911. "effectValue": [
  7912. 60.0
  7913. ],
  7914. "intensifierIndex": [
  7915. 0
  7916. ],
  7917. "addPropertyType": [
  7918. 103
  7919. ],
  7920. "addPropertyValue": [
  7921. 12.0
  7922. ],
  7923. "PromoteLan": 1263,
  7924. "PromoteLanPara": [
  7925. 3.0
  7926. ],
  7927. "PromoteLanPara_1": [
  7928. 1.0
  7929. ]
  7930. },
  7931. {
  7932. "ID": 20195,
  7933. "PieceID": 13519,
  7934. "power": 759.375,
  7935. "name": 1020195,
  7936. "dec": 1120195,
  7937. "attribute": 0,
  7938. "icon": "icon_s2019",
  7939. "scriptName": "S2019",
  7940. "IDGroup": 2019,
  7941. "timelineName": "",
  7942. "cd": 1.0,
  7943. "addcd": 0.0,
  7944. "SkillType": 2,
  7945. "level": 6,
  7946. "effectValue": [
  7947. 70.0
  7948. ],
  7949. "intensifierIndex": [
  7950. 0
  7951. ],
  7952. "addPropertyType": [
  7953. 103
  7954. ],
  7955. "addPropertyValue": [
  7956. 12.0
  7957. ],
  7958. "PromoteLan": 1264,
  7959. "PromoteLanPara_1": [
  7960. 1.0
  7961. ]
  7962. },
  7963. {
  7964. "ID": 31010,
  7965. "PieceID": 11005,
  7966. "power": 100.0,
  7967. "name": 496,
  7968. "dec": 919,
  7969. "attribute": 1,
  7970. "icon": "icon_s3101",
  7971. "scriptName": "S3101",
  7972. "IDGroup": 3101,
  7973. "timelineName": "",
  7974. "cd": 30.0,
  7975. "addcd": 1.0,
  7976. "SkillType": 3,
  7977. "level": 1,
  7978. "effectValue": [
  7979. 400.0,
  7980. 9.0
  7981. ],
  7982. "intensifierIndex": [
  7983. 1
  7984. ],
  7985. "PromoteLan": -1
  7986. },
  7987. {
  7988. "ID": 31011,
  7989. "PieceID": 11005,
  7990. "power": 120.0,
  7991. "name": 497,
  7992. "dec": 920,
  7993. "attribute": 1,
  7994. "icon": "icon_s3101",
  7995. "scriptName": "S3101",
  7996. "IDGroup": 3101,
  7997. "timelineName": "",
  7998. "cd": 30.0,
  7999. "addcd": 1.0,
  8000. "SkillType": 3,
  8001. "level": 2,
  8002. "effectValue": [
  8003. 560.0,
  8004. 9.0
  8005. ],
  8006. "intensifierIndex": [
  8007. 1
  8008. ],
  8009. "addPropertyType": [
  8010. 106
  8011. ],
  8012. "addPropertyValue": [
  8013. 5.0
  8014. ],
  8015. "PromoteLan": 1265,
  8016. "PromoteLanPara": [
  8017. 5.0
  8018. ]
  8019. },
  8020. {
  8021. "ID": 31012,
  8022. "PieceID": 11005,
  8023. "power": 225.0,
  8024. "name": 498,
  8025. "dec": 921,
  8026. "attribute": 1,
  8027. "icon": "icon_s3101",
  8028. "scriptName": "S3101",
  8029. "IDGroup": 3101,
  8030. "timelineName": "",
  8031. "cd": 30.0,
  8032. "addcd": 1.0,
  8033. "SkillType": 3,
  8034. "level": 3,
  8035. "effectValue": [
  8036. 720.0,
  8037. 9.0
  8038. ],
  8039. "intensifierIndex": [
  8040. 1
  8041. ],
  8042. "addPropertyType": [
  8043. 102,
  8044. 106
  8045. ],
  8046. "addPropertyValue": [
  8047. 5.0,
  8048. 5.0
  8049. ],
  8050. "PromoteLan": 1266,
  8051. "PromoteLanPara": [
  8052. 5.0
  8053. ]
  8054. },
  8055. {
  8056. "ID": 31013,
  8057. "PieceID": 11005,
  8058. "power": 337.5,
  8059. "name": 499,
  8060. "dec": 922,
  8061. "attribute": 1,
  8062. "icon": "icon_s3101",
  8063. "scriptName": "S3101",
  8064. "IDGroup": 3101,
  8065. "timelineName": "",
  8066. "cd": 30.0,
  8067. "addcd": 1.0,
  8068. "SkillType": 3,
  8069. "level": 4,
  8070. "effectValue": [
  8071. 880.0,
  8072. 9.0
  8073. ],
  8074. "intensifierIndex": [
  8075. 1
  8076. ],
  8077. "addPropertyType": [
  8078. 102,
  8079. 106
  8080. ],
  8081. "addPropertyValue": [
  8082. 5.0,
  8083. 10.0
  8084. ],
  8085. "PromoteLan": 1267,
  8086. "PromoteLanPara": [
  8087. 5.0
  8088. ]
  8089. },
  8090. {
  8091. "ID": 31014,
  8092. "PieceID": 11005,
  8093. "power": 506.25,
  8094. "name": 500,
  8095. "dec": 923,
  8096. "attribute": 1,
  8097. "icon": "icon_s3101",
  8098. "scriptName": "S3101",
  8099. "IDGroup": 3101,
  8100. "timelineName": "",
  8101. "cd": 30.0,
  8102. "addcd": 1.0,
  8103. "SkillType": 3,
  8104. "level": 5,
  8105. "effectValue": [
  8106. 1040.0,
  8107. 9.0
  8108. ],
  8109. "intensifierIndex": [
  8110. 1
  8111. ],
  8112. "addPropertyType": [
  8113. 102,
  8114. 106
  8115. ],
  8116. "addPropertyValue": [
  8117. 10.0,
  8118. 10.0
  8119. ],
  8120. "PromoteLan": 1268,
  8121. "PromoteLanPara": [
  8122. 5.0
  8123. ]
  8124. },
  8125. {
  8126. "ID": 31015,
  8127. "PieceID": 11005,
  8128. "power": 759.375,
  8129. "name": 501,
  8130. "dec": 924,
  8131. "attribute": 1,
  8132. "icon": "icon_s3101",
  8133. "scriptName": "S3101",
  8134. "IDGroup": 3101,
  8135. "timelineName": "",
  8136. "cd": 30.0,
  8137. "addcd": 1.0,
  8138. "SkillType": 3,
  8139. "level": 6,
  8140. "effectValue": [
  8141. 1200.0,
  8142. 9.0,
  8143. 15.0
  8144. ],
  8145. "intensifierIndex": [
  8146. 1
  8147. ],
  8148. "addPropertyType": [
  8149. 102,
  8150. 106
  8151. ],
  8152. "addPropertyValue": [
  8153. 10.0,
  8154. 10.0
  8155. ],
  8156. "PromoteLan": 1269
  8157. },
  8158. {
  8159. "ID": 31020,
  8160. "PieceID": 11005,
  8161. "power": 100.0,
  8162. "name": 502,
  8163. "dec": 925,
  8164. "attribute": 1,
  8165. "icon": "icon_s3102",
  8166. "scriptName": "S3102",
  8167. "IDGroup": 3102,
  8168. "timelineName": "",
  8169. "cd": 30.0,
  8170. "addcd": 1.0,
  8171. "SkillType": 3,
  8172. "level": 1,
  8173. "effectValue": [
  8174. 250.0
  8175. ],
  8176. "intensifierIndex": [
  8177. 1
  8178. ],
  8179. "PromoteLan": -1
  8180. },
  8181. {
  8182. "ID": 31021,
  8183. "PieceID": 11005,
  8184. "power": 150.0,
  8185. "name": 503,
  8186. "dec": 926,
  8187. "attribute": 1,
  8188. "icon": "icon_s3102",
  8189. "scriptName": "S3102",
  8190. "IDGroup": 3102,
  8191. "timelineName": "",
  8192. "cd": 30.0,
  8193. "addcd": 1.0,
  8194. "SkillType": 3,
  8195. "level": 2,
  8196. "effectValue": [
  8197. 350.0
  8198. ],
  8199. "intensifierIndex": [
  8200. 1
  8201. ],
  8202. "PromoteLan": 1270
  8203. },
  8204. {
  8205. "ID": 31022,
  8206. "PieceID": 11005,
  8207. "power": 225.0,
  8208. "name": 504,
  8209. "dec": 927,
  8210. "attribute": 1,
  8211. "icon": "icon_s3102",
  8212. "scriptName": "S3102",
  8213. "IDGroup": 3102,
  8214. "timelineName": "",
  8215. "cd": 30.0,
  8216. "addcd": 1.0,
  8217. "SkillType": 3,
  8218. "level": 3,
  8219. "effectValue": [
  8220. 450.0
  8221. ],
  8222. "intensifierIndex": [
  8223. 1
  8224. ],
  8225. "PromoteLan": 1271
  8226. },
  8227. {
  8228. "ID": 31023,
  8229. "PieceID": 11005,
  8230. "power": 337.5,
  8231. "name": 505,
  8232. "dec": 928,
  8233. "attribute": 1,
  8234. "icon": "icon_s3102",
  8235. "scriptName": "S3102",
  8236. "IDGroup": 3102,
  8237. "timelineName": "",
  8238. "cd": 30.0,
  8239. "addcd": 1.0,
  8240. "SkillType": 3,
  8241. "level": 4,
  8242. "effectValue": [
  8243. 550.0
  8244. ],
  8245. "intensifierIndex": [
  8246. 1
  8247. ],
  8248. "PromoteLan": 1272
  8249. },
  8250. {
  8251. "ID": 31024,
  8252. "PieceID": 11005,
  8253. "power": 506.25,
  8254. "name": 506,
  8255. "dec": 929,
  8256. "attribute": 1,
  8257. "icon": "icon_s3102",
  8258. "scriptName": "S3102",
  8259. "IDGroup": 3102,
  8260. "timelineName": "",
  8261. "cd": 30.0,
  8262. "addcd": 1.0,
  8263. "SkillType": 3,
  8264. "level": 5,
  8265. "effectValue": [
  8266. 650.0
  8267. ],
  8268. "intensifierIndex": [
  8269. 1
  8270. ],
  8271. "PromoteLan": 1273
  8272. },
  8273. {
  8274. "ID": 31025,
  8275. "PieceID": 11005,
  8276. "power": 759.375,
  8277. "name": 507,
  8278. "dec": 930,
  8279. "attribute": 1,
  8280. "icon": "icon_s3102",
  8281. "scriptName": "S3102",
  8282. "IDGroup": 3102,
  8283. "timelineName": "",
  8284. "cd": 30.0,
  8285. "addcd": 1.0,
  8286. "SkillType": 3,
  8287. "level": 6,
  8288. "effectValue": [
  8289. 750.0
  8290. ],
  8291. "intensifierIndex": [
  8292. 1
  8293. ],
  8294. "PromoteLan": 1274
  8295. },
  8296. {
  8297. "ID": 32010,
  8298. "PieceID": 11002,
  8299. "power": 100.0,
  8300. "name": 508,
  8301. "dec": 931,
  8302. "attribute": 2,
  8303. "icon": "icon_s3201",
  8304. "scriptName": "S3201",
  8305. "IDGroup": 3201,
  8306. "timelineName": "",
  8307. "cd": 30.0,
  8308. "addcd": 1.0,
  8309. "SkillType": 3,
  8310. "level": 1,
  8311. "effectValue": [
  8312. 50.0,
  8313. 12.0
  8314. ],
  8315. "intensifierIndex": [
  8316. 1
  8317. ],
  8318. "PromoteLan": -1
  8319. },
  8320. {
  8321. "ID": 32011,
  8322. "PieceID": 11002,
  8323. "power": 150.0,
  8324. "name": 509,
  8325. "dec": 932,
  8326. "attribute": 2,
  8327. "icon": "icon_s3201",
  8328. "scriptName": "S3201",
  8329. "IDGroup": 3201,
  8330. "timelineName": "",
  8331. "cd": 30.0,
  8332. "addcd": 1.0,
  8333. "SkillType": 3,
  8334. "level": 2,
  8335. "effectValue": [
  8336. 75.0,
  8337. 12.0
  8338. ],
  8339. "intensifierIndex": [
  8340. 1
  8341. ],
  8342. "PromoteLan": 1275
  8343. },
  8344. {
  8345. "ID": 32012,
  8346. "PieceID": 11002,
  8347. "power": 225.0,
  8348. "name": 510,
  8349. "dec": 933,
  8350. "attribute": 2,
  8351. "icon": "icon_s3201",
  8352. "scriptName": "S3201",
  8353. "IDGroup": 3201,
  8354. "timelineName": "",
  8355. "cd": 30.0,
  8356. "addcd": 1.0,
  8357. "SkillType": 3,
  8358. "level": 3,
  8359. "effectValue": [
  8360. 75.0,
  8361. 12.0
  8362. ],
  8363. "intensifierIndex": [
  8364. 1
  8365. ],
  8366. "addPropertyType": [
  8367. 108
  8368. ],
  8369. "addPropertyValue": [
  8370. 5.0
  8371. ],
  8372. "PromoteLan": 1276,
  8373. "PromoteLanPara": [
  8374. 5.0
  8375. ]
  8376. },
  8377. {
  8378. "ID": 32013,
  8379. "PieceID": 11002,
  8380. "power": 337.5,
  8381. "name": 511,
  8382. "dec": 934,
  8383. "attribute": 2,
  8384. "icon": "icon_s3201",
  8385. "scriptName": "S3201",
  8386. "IDGroup": 3201,
  8387. "timelineName": "",
  8388. "cd": 30.0,
  8389. "addcd": 1.0,
  8390. "SkillType": 3,
  8391. "level": 4,
  8392. "effectValue": [
  8393. 75.0,
  8394. 12.0
  8395. ],
  8396. "intensifierIndex": [
  8397. 1
  8398. ],
  8399. "addPropertyType": [
  8400. 101,
  8401. 108
  8402. ],
  8403. "addPropertyValue": [
  8404. 5.0,
  8405. 5.0
  8406. ],
  8407. "PromoteLan": 1277,
  8408. "PromoteLanPara": [
  8409. 5.0
  8410. ]
  8411. },
  8412. {
  8413. "ID": 32014,
  8414. "PieceID": 11002,
  8415. "power": 506.25,
  8416. "name": 512,
  8417. "dec": 935,
  8418. "attribute": 2,
  8419. "icon": "icon_s3201",
  8420. "scriptName": "S3201",
  8421. "IDGroup": 3201,
  8422. "timelineName": "",
  8423. "cd": 30.0,
  8424. "addcd": 1.0,
  8425. "SkillType": 3,
  8426. "level": 5,
  8427. "effectValue": [
  8428. 75.0,
  8429. 12.0
  8430. ],
  8431. "intensifierIndex": [
  8432. 1
  8433. ],
  8434. "addPropertyType": [
  8435. 101,
  8436. 108
  8437. ],
  8438. "addPropertyValue": [
  8439. 5.0,
  8440. 10.0
  8441. ],
  8442. "PromoteLan": 1278,
  8443. "PromoteLanPara": [
  8444. 5.0
  8445. ]
  8446. },
  8447. {
  8448. "ID": 32015,
  8449. "PieceID": 11002,
  8450. "power": 759.375,
  8451. "name": 513,
  8452. "dec": 936,
  8453. "attribute": 2,
  8454. "icon": "icon_s3201",
  8455. "scriptName": "S3201",
  8456. "IDGroup": 3201,
  8457. "timelineName": "",
  8458. "cd": 30.0,
  8459. "addcd": 1.0,
  8460. "SkillType": 3,
  8461. "level": 6,
  8462. "effectValue": [
  8463. 75.0,
  8464. 12.0,
  8465. 50.0
  8466. ],
  8467. "intensifierIndex": [
  8468. 1
  8469. ],
  8470. "addPropertyType": [
  8471. 101,
  8472. 108
  8473. ],
  8474. "addPropertyValue": [
  8475. 5.0,
  8476. 10.0
  8477. ],
  8478. "PromoteLan": 1279
  8479. },
  8480. {
  8481. "ID": 32020,
  8482. "PieceID": 11002,
  8483. "power": 100.0,
  8484. "name": 514,
  8485. "dec": 937,
  8486. "attribute": 2,
  8487. "icon": "icon_s3202",
  8488. "scriptName": "S3202",
  8489. "IDGroup": 3202,
  8490. "timelineName": "",
  8491. "cd": 30.0,
  8492. "addcd": 1.0,
  8493. "SkillType": 3,
  8494. "level": 1,
  8495. "effectValue": [
  8496. 20.0,
  8497. 2.0,
  8498. 18.0
  8499. ],
  8500. "intensifierIndex": [
  8501. 1
  8502. ],
  8503. "PromoteLan": -1
  8504. },
  8505. {
  8506. "ID": 32021,
  8507. "PieceID": 11002,
  8508. "power": 150.0,
  8509. "name": 515,
  8510. "dec": 938,
  8511. "attribute": 2,
  8512. "icon": "icon_s3202",
  8513. "scriptName": "S3202",
  8514. "IDGroup": 3202,
  8515. "timelineName": "",
  8516. "cd": 30.0,
  8517. "addcd": 1.0,
  8518. "SkillType": 3,
  8519. "level": 2,
  8520. "effectValue": [
  8521. 20.0,
  8522. 2.0,
  8523. 18.0
  8524. ],
  8525. "intensifierIndex": [
  8526. 1
  8527. ],
  8528. "addPropertyType": [
  8529. 108
  8530. ],
  8531. "addPropertyValue": [
  8532. 5.0
  8533. ],
  8534. "PromoteLan": 1280,
  8535. "PromoteLanPara": [
  8536. 5.0
  8537. ]
  8538. },
  8539. {
  8540. "ID": 32022,
  8541. "PieceID": 11002,
  8542. "power": 225.0,
  8543. "name": 516,
  8544. "dec": 939,
  8545. "attribute": 2,
  8546. "icon": "icon_s3202",
  8547. "scriptName": "S3202",
  8548. "IDGroup": 3202,
  8549. "timelineName": "",
  8550. "cd": 30.0,
  8551. "addcd": 1.0,
  8552. "SkillType": 3,
  8553. "level": 3,
  8554. "effectValue": [
  8555. 20.0,
  8556. 2.0,
  8557. 18.0
  8558. ],
  8559. "intensifierIndex": [
  8560. 1
  8561. ],
  8562. "addPropertyType": [
  8563. 103,
  8564. 108
  8565. ],
  8566. "addPropertyValue": [
  8567. 5.0,
  8568. 5.0
  8569. ],
  8570. "PromoteLan": 1281,
  8571. "PromoteLanPara": [
  8572. 5.0
  8573. ]
  8574. },
  8575. {
  8576. "ID": 32023,
  8577. "PieceID": 11002,
  8578. "power": 337.5,
  8579. "name": 517,
  8580. "dec": 940,
  8581. "attribute": 2,
  8582. "icon": "icon_s3202",
  8583. "scriptName": "S3202",
  8584. "IDGroup": 3202,
  8585. "timelineName": "",
  8586. "cd": 30.0,
  8587. "addcd": 1.0,
  8588. "SkillType": 3,
  8589. "level": 4,
  8590. "effectValue": [
  8591. 20.0,
  8592. 3.0,
  8593. 18.0
  8594. ],
  8595. "intensifierIndex": [
  8596. 1
  8597. ],
  8598. "addPropertyType": [
  8599. 103,
  8600. 108
  8601. ],
  8602. "addPropertyValue": [
  8603. 5.0,
  8604. 5.0
  8605. ],
  8606. "PromoteLan": 1282
  8607. },
  8608. {
  8609. "ID": 32024,
  8610. "PieceID": 11002,
  8611. "power": 506.25,
  8612. "name": 518,
  8613. "dec": 941,
  8614. "attribute": 2,
  8615. "icon": "icon_s3202",
  8616. "scriptName": "S3202",
  8617. "IDGroup": 3202,
  8618. "timelineName": "",
  8619. "cd": 30.0,
  8620. "addcd": 1.0,
  8621. "SkillType": 3,
  8622. "level": 5,
  8623. "effectValue": [
  8624. 20.0,
  8625. 3.0,
  8626. 18.0
  8627. ],
  8628. "intensifierIndex": [
  8629. 1
  8630. ],
  8631. "addPropertyType": [
  8632. 103,
  8633. 108
  8634. ],
  8635. "addPropertyValue": [
  8636. 5.0,
  8637. 10.0
  8638. ],
  8639. "PromoteLan": 1283,
  8640. "PromoteLanPara": [
  8641. 5.0
  8642. ]
  8643. },
  8644. {
  8645. "ID": 32025,
  8646. "PieceID": 11002,
  8647. "power": 759.375,
  8648. "name": 519,
  8649. "dec": 942,
  8650. "attribute": 2,
  8651. "icon": "icon_s3202",
  8652. "scriptName": "S3202",
  8653. "IDGroup": 3202,
  8654. "timelineName": "",
  8655. "cd": 30.0,
  8656. "addcd": 1.0,
  8657. "SkillType": 3,
  8658. "level": 6,
  8659. "effectValue": [
  8660. 20.0,
  8661. 3.0,
  8662. 18.0,
  8663. 20.0
  8664. ],
  8665. "intensifierIndex": [
  8666. 1
  8667. ],
  8668. "addPropertyType": [
  8669. 103,
  8670. 108
  8671. ],
  8672. "addPropertyValue": [
  8673. 5.0,
  8674. 10.0
  8675. ],
  8676. "PromoteLan": 1284
  8677. },
  8678. {
  8679. "ID": 32030,
  8680. "PieceID": 11002,
  8681. "power": 100.0,
  8682. "name": 520,
  8683. "dec": 943,
  8684. "attribute": 2,
  8685. "icon": "icon_s3203",
  8686. "scriptName": "S3203",
  8687. "IDGroup": 3203,
  8688. "timelineName": "",
  8689. "cd": 30.0,
  8690. "addcd": 1.0,
  8691. "SkillType": 3,
  8692. "level": 1,
  8693. "effectValue": [
  8694. 350.0,
  8695. 1.0,
  8696. 5.0
  8697. ],
  8698. "intensifierIndex": [
  8699. 1
  8700. ],
  8701. "PromoteLan": -1
  8702. },
  8703. {
  8704. "ID": 32031,
  8705. "PieceID": 11002,
  8706. "power": 150.0,
  8707. "name": 521,
  8708. "dec": 944,
  8709. "attribute": 2,
  8710. "icon": "icon_s3203",
  8711. "scriptName": "S3203",
  8712. "IDGroup": 3203,
  8713. "timelineName": "",
  8714. "cd": 30.0,
  8715. "addcd": 1.0,
  8716. "SkillType": 3,
  8717. "level": 2,
  8718. "effectValue": [
  8719. 490.0,
  8720. 1.0,
  8721. 5.0
  8722. ],
  8723. "intensifierIndex": [
  8724. 1
  8725. ],
  8726. "PromoteLan": 1285
  8727. },
  8728. {
  8729. "ID": 32032,
  8730. "PieceID": 11002,
  8731. "power": 225.0,
  8732. "name": 522,
  8733. "dec": 945,
  8734. "attribute": 2,
  8735. "icon": "icon_s3203",
  8736. "scriptName": "S3203",
  8737. "IDGroup": 3203,
  8738. "timelineName": "",
  8739. "cd": 30.0,
  8740. "addcd": 1.0,
  8741. "SkillType": 3,
  8742. "level": 3,
  8743. "effectValue": [
  8744. 630.0,
  8745. 1.0,
  8746. 5.0
  8747. ],
  8748. "intensifierIndex": [
  8749. 1
  8750. ],
  8751. "PromoteLan": 1286
  8752. },
  8753. {
  8754. "ID": 32033,
  8755. "PieceID": 11002,
  8756. "power": 337.5,
  8757. "name": 523,
  8758. "dec": 946,
  8759. "attribute": 2,
  8760. "icon": "icon_s3203",
  8761. "scriptName": "S3203",
  8762. "IDGroup": 3203,
  8763. "timelineName": "",
  8764. "cd": 30.0,
  8765. "addcd": 1.0,
  8766. "SkillType": 3,
  8767. "level": 4,
  8768. "effectValue": [
  8769. 770.0,
  8770. 1.0,
  8771. 5.0
  8772. ],
  8773. "intensifierIndex": [
  8774. 1
  8775. ],
  8776. "PromoteLan": 1287
  8777. },
  8778. {
  8779. "ID": 32034,
  8780. "PieceID": 11002,
  8781. "power": 506.25,
  8782. "name": 524,
  8783. "dec": 947,
  8784. "attribute": 2,
  8785. "icon": "icon_s3203",
  8786. "scriptName": "S3203",
  8787. "IDGroup": 3203,
  8788. "timelineName": "",
  8789. "cd": 30.0,
  8790. "addcd": 1.0,
  8791. "SkillType": 3,
  8792. "level": 5,
  8793. "effectValue": [
  8794. 910.0,
  8795. 1.0,
  8796. 5.0
  8797. ],
  8798. "intensifierIndex": [
  8799. 1
  8800. ],
  8801. "PromoteLan": 1288
  8802. },
  8803. {
  8804. "ID": 32035,
  8805. "PieceID": 11002,
  8806. "power": 759.375,
  8807. "name": 525,
  8808. "dec": 948,
  8809. "attribute": 2,
  8810. "icon": "icon_s3203",
  8811. "scriptName": "S3203",
  8812. "IDGroup": 3203,
  8813. "timelineName": "",
  8814. "cd": 30.0,
  8815. "addcd": 1.0,
  8816. "SkillType": 3,
  8817. "level": 6,
  8818. "effectValue": [
  8819. 1050.0,
  8820. 1.0,
  8821. 5.0
  8822. ],
  8823. "intensifierIndex": [
  8824. 1
  8825. ],
  8826. "PromoteLan": 1289
  8827. },
  8828. {
  8829. "ID": 33010,
  8830. "PieceID": 11004,
  8831. "power": 100.0,
  8832. "name": 526,
  8833. "dec": 949,
  8834. "attribute": 4,
  8835. "icon": "icon_s3301",
  8836. "scriptName": "S3301",
  8837. "IDGroup": 3301,
  8838. "timelineName": "",
  8839. "cd": 30.0,
  8840. "addcd": 1.0,
  8841. "SkillType": 3,
  8842. "level": 1,
  8843. "effectValue": [
  8844. 1.0,
  8845. 12.0,
  8846. 400.0
  8847. ],
  8848. "intensifierIndex": [
  8849. 2
  8850. ],
  8851. "PromoteLan": -1
  8852. },
  8853. {
  8854. "ID": 33011,
  8855. "PieceID": 11004,
  8856. "power": 150.0,
  8857. "name": 527,
  8858. "dec": 950,
  8859. "attribute": 4,
  8860. "icon": "icon_s3301",
  8861. "scriptName": "S3301",
  8862. "IDGroup": 3301,
  8863. "timelineName": "",
  8864. "cd": 30.0,
  8865. "addcd": 1.0,
  8866. "SkillType": 3,
  8867. "level": 2,
  8868. "effectValue": [
  8869. 2.0,
  8870. 12.0,
  8871. 560.0
  8872. ],
  8873. "intensifierIndex": [
  8874. 2
  8875. ],
  8876. "PromoteLan": 1290
  8877. },
  8878. {
  8879. "ID": 33012,
  8880. "PieceID": 11004,
  8881. "power": 225.0,
  8882. "name": 528,
  8883. "dec": 951,
  8884. "attribute": 4,
  8885. "icon": "icon_s3301",
  8886. "scriptName": "S3301",
  8887. "IDGroup": 3301,
  8888. "timelineName": "",
  8889. "cd": 30.0,
  8890. "addcd": 1.0,
  8891. "SkillType": 3,
  8892. "level": 3,
  8893. "effectValue": [
  8894. 2.0,
  8895. 12.0,
  8896. 720.0
  8897. ],
  8898. "intensifierIndex": [
  8899. 2
  8900. ],
  8901. "addPropertyType": [
  8902. 107
  8903. ],
  8904. "addPropertyValue": [
  8905. 5.0
  8906. ],
  8907. "PromoteLan": 1291,
  8908. "PromoteLanPara": [
  8909. 5.0
  8910. ]
  8911. },
  8912. {
  8913. "ID": 33013,
  8914. "PieceID": 11004,
  8915. "power": 337.5,
  8916. "name": 529,
  8917. "dec": 952,
  8918. "attribute": 4,
  8919. "icon": "icon_s3301",
  8920. "scriptName": "S3301",
  8921. "IDGroup": 3301,
  8922. "timelineName": "",
  8923. "cd": 30.0,
  8924. "addcd": 1.0,
  8925. "SkillType": 3,
  8926. "level": 4,
  8927. "effectValue": [
  8928. 2.0,
  8929. 12.0,
  8930. 880.0,
  8931. 30.0
  8932. ],
  8933. "intensifierIndex": [
  8934. 2
  8935. ],
  8936. "addPropertyType": [
  8937. 107
  8938. ],
  8939. "addPropertyValue": [
  8940. 5.0
  8941. ],
  8942. "PromoteLan": 1292
  8943. },
  8944. {
  8945. "ID": 33014,
  8946. "PieceID": 11004,
  8947. "power": 506.25,
  8948. "name": 530,
  8949. "dec": 953,
  8950. "attribute": 4,
  8951. "icon": "icon_s3301",
  8952. "scriptName": "S3301",
  8953. "IDGroup": 3301,
  8954. "timelineName": "",
  8955. "cd": 30.0,
  8956. "addcd": 1.0,
  8957. "SkillType": 3,
  8958. "level": 5,
  8959. "effectValue": [
  8960. 2.0,
  8961. 12.0,
  8962. 1040.0,
  8963. 30.0
  8964. ],
  8965. "intensifierIndex": [
  8966. 2
  8967. ],
  8968. "addPropertyType": [
  8969. 107
  8970. ],
  8971. "addPropertyValue": [
  8972. 10.0
  8973. ],
  8974. "PromoteLan": 1293,
  8975. "PromoteLanPara": [
  8976. 5.0
  8977. ]
  8978. },
  8979. {
  8980. "ID": 33015,
  8981. "PieceID": 11004,
  8982. "power": 759.375,
  8983. "name": 531,
  8984. "dec": 954,
  8985. "attribute": 4,
  8986. "icon": "icon_s3301",
  8987. "scriptName": "S3301",
  8988. "IDGroup": 3301,
  8989. "timelineName": "",
  8990. "cd": 30.0,
  8991. "addcd": 1.0,
  8992. "SkillType": 3,
  8993. "level": 6,
  8994. "effectValue": [
  8995. 2.0,
  8996. 12.0,
  8997. 1200.0,
  8998. 300.0
  8999. ],
  9000. "intensifierIndex": [
  9001. 2
  9002. ],
  9003. "addPropertyType": [
  9004. 107
  9005. ],
  9006. "addPropertyValue": [
  9007. 10.0
  9008. ],
  9009. "PromoteLan": 1294
  9010. },
  9011. {
  9012. "ID": 33020,
  9013. "PieceID": 11008,
  9014. "power": 100.0,
  9015. "name": 532,
  9016. "dec": 955,
  9017. "attribute": 4,
  9018. "icon": "icon_s3302",
  9019. "scriptName": "S3302",
  9020. "IDGroup": 3302,
  9021. "timelineName": "",
  9022. "cd": 30.0,
  9023. "addcd": 1.0,
  9024. "SkillType": 3,
  9025. "level": 1,
  9026. "effectValue": [
  9027. 10.0,
  9028. 1.0
  9029. ],
  9030. "intensifierIndex": [
  9031. 1
  9032. ],
  9033. "PromoteLan": -1
  9034. },
  9035. {
  9036. "ID": 33021,
  9037. "PieceID": 11008,
  9038. "power": 150.0,
  9039. "name": 533,
  9040. "dec": 956,
  9041. "attribute": 4,
  9042. "icon": "icon_s3302",
  9043. "scriptName": "S3302",
  9044. "IDGroup": 3302,
  9045. "timelineName": "",
  9046. "cd": 30.0,
  9047. "addcd": 1.0,
  9048. "SkillType": 3,
  9049. "level": 2,
  9050. "effectValue": [
  9051. 11.0,
  9052. 1.0
  9053. ],
  9054. "intensifierIndex": [
  9055. 1
  9056. ],
  9057. "PromoteLan": 1295
  9058. },
  9059. {
  9060. "ID": 33022,
  9061. "PieceID": 11008,
  9062. "power": 225.0,
  9063. "name": 534,
  9064. "dec": 957,
  9065. "attribute": 4,
  9066. "icon": "icon_s3302",
  9067. "scriptName": "S3302",
  9068. "IDGroup": 3302,
  9069. "timelineName": "",
  9070. "cd": 30.0,
  9071. "addcd": 1.0,
  9072. "SkillType": 3,
  9073. "level": 3,
  9074. "effectValue": [
  9075. 12.0,
  9076. 1.0
  9077. ],
  9078. "intensifierIndex": [
  9079. 1
  9080. ],
  9081. "PromoteLan": 1296
  9082. },
  9083. {
  9084. "ID": 33023,
  9085. "PieceID": 11008,
  9086. "power": 337.5,
  9087. "name": 535,
  9088. "dec": 958,
  9089. "attribute": 4,
  9090. "icon": "icon_s3302",
  9091. "scriptName": "S3302",
  9092. "IDGroup": 3302,
  9093. "timelineName": "",
  9094. "cd": 30.0,
  9095. "addcd": 1.0,
  9096. "SkillType": 3,
  9097. "level": 4,
  9098. "effectValue": [
  9099. 13.0,
  9100. 1.0
  9101. ],
  9102. "intensifierIndex": [
  9103. 1
  9104. ],
  9105. "PromoteLan": 1297
  9106. },
  9107. {
  9108. "ID": 33024,
  9109. "PieceID": 11008,
  9110. "power": 506.25,
  9111. "name": 536,
  9112. "dec": 959,
  9113. "attribute": 4,
  9114. "icon": "icon_s3302",
  9115. "scriptName": "S3302",
  9116. "IDGroup": 3302,
  9117. "timelineName": "",
  9118. "cd": 30.0,
  9119. "addcd": 1.0,
  9120. "SkillType": 3,
  9121. "level": 5,
  9122. "effectValue": [
  9123. 14.0,
  9124. 1.0
  9125. ],
  9126. "intensifierIndex": [
  9127. 1
  9128. ],
  9129. "PromoteLan": 1298
  9130. },
  9131. {
  9132. "ID": 33025,
  9133. "PieceID": 11008,
  9134. "power": 759.375,
  9135. "name": 537,
  9136. "dec": 960,
  9137. "attribute": 4,
  9138. "icon": "icon_s3302",
  9139. "scriptName": "S3302",
  9140. "IDGroup": 3302,
  9141. "timelineName": "",
  9142. "cd": 30.0,
  9143. "addcd": 1.0,
  9144. "SkillType": 3,
  9145. "level": 6,
  9146. "effectValue": [
  9147. 15.0,
  9148. 1.0
  9149. ],
  9150. "intensifierIndex": [
  9151. 1
  9152. ],
  9153. "PromoteLan": 1299
  9154. },
  9155. {
  9156. "ID": 34010,
  9157. "PieceID": 11004,
  9158. "power": 100.0,
  9159. "name": 538,
  9160. "dec": 961,
  9161. "attribute": 8,
  9162. "icon": "icon_s3401",
  9163. "scriptName": "S3401",
  9164. "IDGroup": 3401,
  9165. "timelineName": "",
  9166. "cd": 30.0,
  9167. "addcd": 1.0,
  9168. "SkillType": 3,
  9169. "level": 1,
  9170. "effectValue": [
  9171. 40.0,
  9172. 12.0
  9173. ],
  9174. "intensifierIndex": [
  9175. 2
  9176. ],
  9177. "PromoteLan": -1
  9178. },
  9179. {
  9180. "ID": 34011,
  9181. "PieceID": 11004,
  9182. "power": 150.0,
  9183. "name": 539,
  9184. "dec": 962,
  9185. "attribute": 8,
  9186. "icon": "icon_s3401",
  9187. "scriptName": "S3401",
  9188. "IDGroup": 3401,
  9189. "timelineName": "",
  9190. "cd": 30.0,
  9191. "addcd": 1.0,
  9192. "SkillType": 3,
  9193. "level": 2,
  9194. "effectValue": [
  9195. 40.0,
  9196. 12.0
  9197. ],
  9198. "intensifierIndex": [
  9199. 2
  9200. ],
  9201. "addPropertyType": [
  9202. 109
  9203. ],
  9204. "addPropertyValue": [
  9205. 5.0
  9206. ],
  9207. "PromoteLan": 1300,
  9208. "PromoteLanPara": [
  9209. 5.0
  9210. ]
  9211. },
  9212. {
  9213. "ID": 34012,
  9214. "PieceID": 11004,
  9215. "power": 225.0,
  9216. "name": 540,
  9217. "dec": 963,
  9218. "attribute": 8,
  9219. "icon": "icon_s3401",
  9220. "scriptName": "S3401",
  9221. "IDGroup": 3401,
  9222. "timelineName": "",
  9223. "cd": 30.0,
  9224. "addcd": 1.0,
  9225. "SkillType": 3,
  9226. "level": 3,
  9227. "effectValue": [
  9228. 60.0,
  9229. 12.0
  9230. ],
  9231. "intensifierIndex": [
  9232. 2
  9233. ],
  9234. "addPropertyType": [
  9235. 109
  9236. ],
  9237. "addPropertyValue": [
  9238. 5.0
  9239. ],
  9240. "PromoteLan": 1301
  9241. },
  9242. {
  9243. "ID": 34013,
  9244. "PieceID": 11004,
  9245. "power": 337.5,
  9246. "name": 541,
  9247. "dec": 964,
  9248. "attribute": 8,
  9249. "icon": "icon_s3401",
  9250. "scriptName": "S3401",
  9251. "IDGroup": 3401,
  9252. "timelineName": "",
  9253. "cd": 30.0,
  9254. "addcd": 1.0,
  9255. "SkillType": 3,
  9256. "level": 4,
  9257. "effectValue": [
  9258. 60.0,
  9259. 12.0
  9260. ],
  9261. "intensifierIndex": [
  9262. 2
  9263. ],
  9264. "addPropertyType": [
  9265. 102,
  9266. 109
  9267. ],
  9268. "addPropertyValue": [
  9269. 5.0,
  9270. 5.0
  9271. ],
  9272. "PromoteLan": 1302,
  9273. "PromoteLanPara": [
  9274. 5.0
  9275. ]
  9276. },
  9277. {
  9278. "ID": 34014,
  9279. "PieceID": 11004,
  9280. "power": 506.25,
  9281. "name": 542,
  9282. "dec": 965,
  9283. "attribute": 8,
  9284. "icon": "icon_s3401",
  9285. "scriptName": "S3401",
  9286. "IDGroup": 3401,
  9287. "timelineName": "",
  9288. "cd": 30.0,
  9289. "addcd": 1.0,
  9290. "SkillType": 3,
  9291. "level": 5,
  9292. "effectValue": [
  9293. 60.0,
  9294. 12.0
  9295. ],
  9296. "intensifierIndex": [
  9297. 2
  9298. ],
  9299. "addPropertyType": [
  9300. 102,
  9301. 109
  9302. ],
  9303. "addPropertyValue": [
  9304. 5.0,
  9305. 10.0
  9306. ],
  9307. "PromoteLan": 1303,
  9308. "PromoteLanPara": [
  9309. 5.0
  9310. ]
  9311. },
  9312. {
  9313. "ID": 34015,
  9314. "PieceID": 11004,
  9315. "power": 759.375,
  9316. "name": 543,
  9317. "dec": 966,
  9318. "attribute": 8,
  9319. "icon": "icon_s3401",
  9320. "scriptName": "S3401",
  9321. "IDGroup": 3401,
  9322. "timelineName": "",
  9323. "cd": 30.0,
  9324. "addcd": 1.0,
  9325. "SkillType": 3,
  9326. "level": 6,
  9327. "effectValue": [
  9328. 100.0,
  9329. 12.0,
  9330. 20.0,
  9331. 9.0
  9332. ],
  9333. "intensifierIndex": [
  9334. 2
  9335. ],
  9336. "addPropertyType": [
  9337. 102,
  9338. 109
  9339. ],
  9340. "addPropertyValue": [
  9341. 5.0,
  9342. 10.0
  9343. ],
  9344. "PromoteLan": 1304
  9345. },
  9346. {
  9347. "ID": 34020,
  9348. "PieceID": 11004,
  9349. "power": 100.0,
  9350. "name": 544,
  9351. "dec": 967,
  9352. "attribute": 8,
  9353. "icon": "icon_s3402",
  9354. "scriptName": "S3402",
  9355. "IDGroup": 3402,
  9356. "timelineName": "",
  9357. "cd": 30.0,
  9358. "addcd": 1.0,
  9359. "SkillType": 3,
  9360. "level": 1,
  9361. "intensifierIndex": [
  9362. 2
  9363. ],
  9364. "PromoteLan": -1
  9365. },
  9366. {
  9367. "ID": 34021,
  9368. "PieceID": 11004,
  9369. "power": 150.0,
  9370. "name": 545,
  9371. "dec": 968,
  9372. "attribute": 8,
  9373. "icon": "icon_s3402",
  9374. "scriptName": "S3402",
  9375. "IDGroup": 3402,
  9376. "timelineName": "",
  9377. "cd": 30.0,
  9378. "addcd": 1.0,
  9379. "SkillType": 3,
  9380. "level": 2,
  9381. "effectValue": [
  9382. 12.0
  9383. ],
  9384. "intensifierIndex": [
  9385. 2
  9386. ],
  9387. "PromoteLan": 1305
  9388. },
  9389. {
  9390. "ID": 34022,
  9391. "PieceID": 11004,
  9392. "power": 225.0,
  9393. "name": 546,
  9394. "dec": 969,
  9395. "attribute": 8,
  9396. "icon": "icon_s3402",
  9397. "scriptName": "S3402",
  9398. "IDGroup": 3402,
  9399. "timelineName": "",
  9400. "cd": 30.0,
  9401. "addcd": 1.0,
  9402. "SkillType": 3,
  9403. "level": 3,
  9404. "effectValue": [
  9405. 12.0
  9406. ],
  9407. "intensifierIndex": [
  9408. 2
  9409. ],
  9410. "addPropertyType": [
  9411. 109
  9412. ],
  9413. "addPropertyValue": [
  9414. 5.0
  9415. ],
  9416. "PromoteLan": 1306,
  9417. "PromoteLanPara": [
  9418. 5.0
  9419. ]
  9420. },
  9421. {
  9422. "ID": 34023,
  9423. "PieceID": 11004,
  9424. "power": 337.5,
  9425. "name": 547,
  9426. "dec": 970,
  9427. "attribute": 8,
  9428. "icon": "icon_s3402",
  9429. "scriptName": "S3402",
  9430. "IDGroup": 3402,
  9431. "timelineName": "",
  9432. "cd": 30.0,
  9433. "addcd": 1.0,
  9434. "SkillType": 3,
  9435. "level": 4,
  9436. "effectValue": [
  9437. 12.0
  9438. ],
  9439. "intensifierIndex": [
  9440. 2
  9441. ],
  9442. "addPropertyType": [
  9443. 102,
  9444. 109
  9445. ],
  9446. "addPropertyValue": [
  9447. 5.0,
  9448. 5.0
  9449. ],
  9450. "PromoteLan": 1307
  9451. },
  9452. {
  9453. "ID": 34024,
  9454. "PieceID": 11004,
  9455. "power": 506.25,
  9456. "name": 548,
  9457. "dec": 971,
  9458. "attribute": 8,
  9459. "icon": "icon_s3402",
  9460. "scriptName": "S3402",
  9461. "IDGroup": 3402,
  9462. "timelineName": "",
  9463. "cd": 30.0,
  9464. "addcd": 1.0,
  9465. "SkillType": 3,
  9466. "level": 5,
  9467. "effectValue": [
  9468. 12.0
  9469. ],
  9470. "intensifierIndex": [
  9471. 2
  9472. ],
  9473. "addPropertyType": [
  9474. 102,
  9475. 109
  9476. ],
  9477. "addPropertyValue": [
  9478. 5.0,
  9479. 10.0
  9480. ],
  9481. "PromoteLan": 1308,
  9482. "PromoteLanPara": [
  9483. 5.0
  9484. ]
  9485. },
  9486. {
  9487. "ID": 34025,
  9488. "PieceID": 11004,
  9489. "power": 759.375,
  9490. "name": 549,
  9491. "dec": 972,
  9492. "attribute": 8,
  9493. "icon": "icon_s3402",
  9494. "scriptName": "S3402",
  9495. "IDGroup": 3402,
  9496. "timelineName": "",
  9497. "cd": 30.0,
  9498. "addcd": 1.0,
  9499. "SkillType": 3,
  9500. "level": 6,
  9501. "effectValue": [
  9502. 12.0,
  9503. 15.0,
  9504. 3.0
  9505. ],
  9506. "intensifierIndex": [
  9507. 2
  9508. ],
  9509. "addPropertyType": [
  9510. 102,
  9511. 109
  9512. ],
  9513. "addPropertyValue": [
  9514. 5.0,
  9515. 10.0
  9516. ],
  9517. "PromoteLan": 1309
  9518. },
  9519. {
  9520. "ID": 35010,
  9521. "PieceID": 11003,
  9522. "power": 100.0,
  9523. "name": 550,
  9524. "dec": 973,
  9525. "attribute": 16,
  9526. "icon": "icon_s3501",
  9527. "scriptName": "S3501",
  9528. "IDGroup": 3501,
  9529. "timelineName": "",
  9530. "cd": 30.0,
  9531. "addcd": 1.0,
  9532. "SkillType": 3,
  9533. "level": 1,
  9534. "effectValue": [
  9535. 10.0,
  9536. 12.0
  9537. ],
  9538. "intensifierIndex": [
  9539. 1
  9540. ],
  9541. "PromoteLan": -1
  9542. },
  9543. {
  9544. "ID": 35011,
  9545. "PieceID": 11003,
  9546. "power": 150.0,
  9547. "name": 551,
  9548. "dec": 974,
  9549. "attribute": 16,
  9550. "icon": "icon_s3501",
  9551. "scriptName": "S3501",
  9552. "IDGroup": 3501,
  9553. "timelineName": "",
  9554. "cd": 30.0,
  9555. "addcd": 1.0,
  9556. "SkillType": 3,
  9557. "level": 2,
  9558. "effectValue": [
  9559. 13.0,
  9560. 12.0
  9561. ],
  9562. "intensifierIndex": [
  9563. 1
  9564. ],
  9565. "PromoteLan": 1310
  9566. },
  9567. {
  9568. "ID": 35012,
  9569. "PieceID": 11003,
  9570. "power": 225.0,
  9571. "name": 552,
  9572. "dec": 975,
  9573. "attribute": 16,
  9574. "icon": "icon_s3501",
  9575. "scriptName": "S3501",
  9576. "IDGroup": 3501,
  9577. "timelineName": "",
  9578. "cd": 30.0,
  9579. "addcd": 1.0,
  9580. "SkillType": 3,
  9581. "level": 3,
  9582. "effectValue": [
  9583. 13.0,
  9584. 12.0
  9585. ],
  9586. "intensifierIndex": [
  9587. 1
  9588. ],
  9589. "addPropertyType": [
  9590. 110
  9591. ],
  9592. "addPropertyValue": [
  9593. 5.0
  9594. ],
  9595. "PromoteLan": 1311,
  9596. "PromoteLanPara": [
  9597. 5.0
  9598. ]
  9599. },
  9600. {
  9601. "ID": 35013,
  9602. "PieceID": 11003,
  9603. "power": 337.5,
  9604. "name": 553,
  9605. "dec": 976,
  9606. "attribute": 16,
  9607. "icon": "icon_s3501",
  9608. "scriptName": "S3501",
  9609. "IDGroup": 3501,
  9610. "timelineName": "",
  9611. "cd": 30.0,
  9612. "addcd": 1.0,
  9613. "SkillType": 3,
  9614. "level": 4,
  9615. "effectValue": [
  9616. 16.0,
  9617. 12.0
  9618. ],
  9619. "intensifierIndex": [
  9620. 1
  9621. ],
  9622. "addPropertyType": [
  9623. 110
  9624. ],
  9625. "addPropertyValue": [
  9626. 5.0
  9627. ],
  9628. "PromoteLan": 1312
  9629. },
  9630. {
  9631. "ID": 35014,
  9632. "PieceID": 11003,
  9633. "power": 506.25,
  9634. "name": 554,
  9635. "dec": 977,
  9636. "attribute": 16,
  9637. "icon": "icon_s3501",
  9638. "scriptName": "S3501",
  9639. "IDGroup": 3501,
  9640. "timelineName": "",
  9641. "cd": 30.0,
  9642. "addcd": 1.0,
  9643. "SkillType": 3,
  9644. "level": 5,
  9645. "effectValue": [
  9646. 16.0,
  9647. 12.0
  9648. ],
  9649. "intensifierIndex": [
  9650. 1
  9651. ],
  9652. "addPropertyType": [
  9653. 110
  9654. ],
  9655. "addPropertyValue": [
  9656. 10.0
  9657. ],
  9658. "PromoteLan": 1313,
  9659. "PromoteLanPara": [
  9660. 5.0
  9661. ]
  9662. },
  9663. {
  9664. "ID": 35015,
  9665. "PieceID": 11003,
  9666. "power": 759.375,
  9667. "name": 555,
  9668. "dec": 978,
  9669. "attribute": 16,
  9670. "icon": "icon_s3501",
  9671. "scriptName": "S3501",
  9672. "IDGroup": 3501,
  9673. "timelineName": "",
  9674. "cd": 30.0,
  9675. "addcd": 1.0,
  9676. "SkillType": 3,
  9677. "level": 6,
  9678. "effectValue": [
  9679. 20.0,
  9680. 12.0
  9681. ],
  9682. "intensifierIndex": [
  9683. 1
  9684. ],
  9685. "addPropertyType": [
  9686. 110
  9687. ],
  9688. "addPropertyValue": [
  9689. 10.0
  9690. ],
  9691. "PromoteLan": 1314
  9692. },
  9693. {
  9694. "ID": 35020,
  9695. "PieceID": 11006,
  9696. "power": 100.0,
  9697. "name": 556,
  9698. "dec": 979,
  9699. "attribute": 16,
  9700. "icon": "icon_s3502",
  9701. "scriptName": "S3502",
  9702. "IDGroup": 3502,
  9703. "timelineName": "",
  9704. "cd": 30.0,
  9705. "addcd": 1.0,
  9706. "SkillType": 3,
  9707. "level": 1,
  9708. "intensifierIndex": [
  9709. 1
  9710. ],
  9711. "PromoteLan": -1
  9712. },
  9713. {
  9714. "ID": 35021,
  9715. "PieceID": 11006,
  9716. "power": 150.0,
  9717. "name": 557,
  9718. "dec": 980,
  9719. "attribute": 16,
  9720. "icon": "icon_s3502",
  9721. "scriptName": "S3502",
  9722. "IDGroup": 3502,
  9723. "timelineName": "",
  9724. "cd": 30.0,
  9725. "addcd": 1.0,
  9726. "SkillType": 3,
  9727. "level": 2,
  9728. "intensifierIndex": [
  9729. 1
  9730. ],
  9731. "PromoteLan": 1315
  9732. },
  9733. {
  9734. "ID": 35022,
  9735. "PieceID": 11006,
  9736. "power": 225.0,
  9737. "name": 558,
  9738. "dec": 981,
  9739. "attribute": 16,
  9740. "icon": "icon_s3502",
  9741. "scriptName": "S3502",
  9742. "IDGroup": 3502,
  9743. "timelineName": "",
  9744. "cd": 30.0,
  9745. "addcd": 1.0,
  9746. "SkillType": 3,
  9747. "level": 3,
  9748. "intensifierIndex": [
  9749. 1
  9750. ],
  9751. "PromoteLan": 1316
  9752. },
  9753. {
  9754. "ID": 35023,
  9755. "PieceID": 11006,
  9756. "power": 337.5,
  9757. "name": 559,
  9758. "dec": 982,
  9759. "attribute": 16,
  9760. "icon": "icon_s3502",
  9761. "scriptName": "S3502",
  9762. "IDGroup": 3502,
  9763. "timelineName": "",
  9764. "cd": 30.0,
  9765. "addcd": 1.0,
  9766. "SkillType": 3,
  9767. "level": 4,
  9768. "intensifierIndex": [
  9769. 1
  9770. ],
  9771. "PromoteLan": 1317
  9772. },
  9773. {
  9774. "ID": 35024,
  9775. "PieceID": 11006,
  9776. "power": 506.25,
  9777. "name": 560,
  9778. "dec": 983,
  9779. "attribute": 16,
  9780. "icon": "icon_s3502",
  9781. "scriptName": "S3502",
  9782. "IDGroup": 3502,
  9783. "timelineName": "",
  9784. "cd": 30.0,
  9785. "addcd": 1.0,
  9786. "SkillType": 3,
  9787. "level": 5,
  9788. "intensifierIndex": [
  9789. 1
  9790. ],
  9791. "PromoteLan": 1318
  9792. },
  9793. {
  9794. "ID": 35025,
  9795. "PieceID": 11006,
  9796. "power": 759.375,
  9797. "name": 561,
  9798. "dec": 984,
  9799. "attribute": 16,
  9800. "icon": "icon_s3502",
  9801. "scriptName": "S3502",
  9802. "IDGroup": 3502,
  9803. "timelineName": "",
  9804. "cd": 30.0,
  9805. "addcd": 1.0,
  9806. "SkillType": 3,
  9807. "level": 6,
  9808. "intensifierIndex": [
  9809. 1
  9810. ],
  9811. "PromoteLan": 1319
  9812. },
  9813. {
  9814. "ID": 601011,
  9815. "PieceID": 0,
  9816. "power": 100.0,
  9817. "name": 696,
  9818. "dec": 699,
  9819. "attribute": 1,
  9820. "icon": "icon_s1001",
  9821. "scriptName": "DS60101",
  9822. "IDGroup": 1001,
  9823. "timelineName": "",
  9824. "cd": 1.0,
  9825. "addcd": 1.0,
  9826. "SkillType": 4,
  9827. "level": 1,
  9828. "effectValue": [
  9829. 10.0,
  9830. 100.0,
  9831. 50.0,
  9832. 50.0,
  9833. 9.0
  9834. ],
  9835. "intensifierIndex": [
  9836. 0
  9837. ],
  9838. "PromoteLan": 0
  9839. },
  9840. {
  9841. "ID": 601021,
  9842. "PieceID": 0,
  9843. "power": 100.0,
  9844. "name": 697,
  9845. "dec": 700,
  9846. "attribute": 1,
  9847. "icon": "icon_s1002",
  9848. "scriptName": "DS60102",
  9849. "IDGroup": 1002,
  9850. "timelineName": "",
  9851. "cd": 1.0,
  9852. "addcd": 1.0,
  9853. "SkillType": 4,
  9854. "level": 1,
  9855. "effectValue": [
  9856. 3.0,
  9857. 3.0,
  9858. 30.0,
  9859. 5.0,
  9860. 1.0,
  9861. 3.0,
  9862. 30.0,
  9863. 3.0,
  9864. 30.0
  9865. ],
  9866. "intensifierIndex": [
  9867. 0
  9868. ],
  9869. "PromoteLan": 0
  9870. },
  9871. {
  9872. "ID": 601031,
  9873. "PieceID": 0,
  9874. "power": 100.0,
  9875. "name": 698,
  9876. "dec": 701,
  9877. "attribute": 1,
  9878. "icon": "icon_s1003",
  9879. "scriptName": "DS60103",
  9880. "IDGroup": 1003,
  9881. "timelineName": "",
  9882. "cd": 1.0,
  9883. "addcd": 1.0,
  9884. "SkillType": 4,
  9885. "level": 1,
  9886. "effectValue": [
  9887. 30.0,
  9888. 1.0
  9889. ],
  9890. "intensifierIndex": [
  9891. 0
  9892. ],
  9893. "PromoteLan": 0
  9894. },
  9895. {
  9896. "ID": 90010,
  9897. "PieceID": 0,
  9898. "power": 300.0,
  9899. "name": 707,
  9900. "dec": 717,
  9901. "attribute": 1,
  9902. "icon": "icon_s9001",
  9903. "scriptName": "S9001",
  9904. "IDGroup": 9001,
  9905. "timelineName": "BossSk1_timeline_TD",
  9906. "cd": 3.0,
  9907. "addcd": 1.0,
  9908. "SkillType": 1,
  9909. "level": 1,
  9910. "effectValue": [
  9911. 42.0,
  9912. 5.0,
  9913. 1.0,
  9914. 10.0,
  9915. 1.0,
  9916. 1.0,
  9917. 30.0
  9918. ],
  9919. "intensifierIndex": [
  9920. 1
  9921. ],
  9922. "PromoteLan": 0
  9923. },
  9924. {
  9925. "ID": 90011,
  9926. "PieceID": 0,
  9927. "power": 450.0,
  9928. "name": 707,
  9929. "dec": 717,
  9930. "attribute": 1,
  9931. "icon": "icon_s9001",
  9932. "scriptName": "S9001",
  9933. "IDGroup": 9001,
  9934. "timelineName": "BossSk1_timeline_TD",
  9935. "cd": 3.0,
  9936. "addcd": 1.0,
  9937. "SkillType": 1,
  9938. "level": 2,
  9939. "effectValue": [
  9940. 45.0,
  9941. 5.0,
  9942. 1.0,
  9943. 10.0,
  9944. 1.0,
  9945. 1.0,
  9946. 30.0
  9947. ],
  9948. "intensifierIndex": [
  9949. 1
  9950. ],
  9951. "PromoteLan": 0
  9952. },
  9953. {
  9954. "ID": 90012,
  9955. "PieceID": 0,
  9956. "power": 675.0,
  9957. "name": 707,
  9958. "dec": 717,
  9959. "attribute": 1,
  9960. "icon": "icon_s9001",
  9961. "scriptName": "S9001",
  9962. "IDGroup": 9001,
  9963. "timelineName": "BossSk1_timeline_TD",
  9964. "cd": 3.0,
  9965. "addcd": 1.0,
  9966. "SkillType": 1,
  9967. "level": 3,
  9968. "effectValue": [
  9969. 54.0,
  9970. 5.0,
  9971. 1.0,
  9972. 10.0,
  9973. 1.0,
  9974. 1.0,
  9975. 30.0
  9976. ],
  9977. "intensifierIndex": [
  9978. 1
  9979. ],
  9980. "PromoteLan": 0
  9981. },
  9982. {
  9983. "ID": 90013,
  9984. "PieceID": 0,
  9985. "power": 1012.5,
  9986. "name": 707,
  9987. "dec": 717,
  9988. "attribute": 1,
  9989. "icon": "icon_s9001",
  9990. "scriptName": "S9001",
  9991. "IDGroup": 9001,
  9992. "timelineName": "BossSk1_timeline_TD",
  9993. "cd": 3.0,
  9994. "addcd": 1.0,
  9995. "SkillType": 1,
  9996. "level": 4,
  9997. "effectValue": [
  9998. 63.0,
  9999. 5.0,
  10000. 1.0,
  10001. 10.0,
  10002. 1.0,
  10003. 1.0,
  10004. 30.0
  10005. ],
  10006. "intensifierIndex": [
  10007. 1
  10008. ],
  10009. "PromoteLan": 0
  10010. },
  10011. {
  10012. "ID": 90014,
  10013. "PieceID": 0,
  10014. "power": 1518.75,
  10015. "name": 707,
  10016. "dec": 717,
  10017. "attribute": 1,
  10018. "icon": "icon_s9001",
  10019. "scriptName": "S9001",
  10020. "IDGroup": 9001,
  10021. "timelineName": "BossSk1_timeline_TD",
  10022. "cd": 3.0,
  10023. "addcd": 1.0,
  10024. "SkillType": 1,
  10025. "level": 5,
  10026. "effectValue": [
  10027. 69.0,
  10028. 5.0,
  10029. 1.0,
  10030. 10.0,
  10031. 1.0,
  10032. 1.0,
  10033. 30.0
  10034. ],
  10035. "intensifierIndex": [
  10036. 1
  10037. ],
  10038. "PromoteLan": 0
  10039. },
  10040. {
  10041. "ID": 90015,
  10042. "PieceID": 0,
  10043. "power": 2278.125,
  10044. "name": 707,
  10045. "dec": 717,
  10046. "attribute": 1,
  10047. "icon": "icon_s9001",
  10048. "scriptName": "S9001",
  10049. "IDGroup": 9001,
  10050. "timelineName": "BossSk1_timeline_TD",
  10051. "cd": 3.0,
  10052. "addcd": 1.0,
  10053. "SkillType": 1,
  10054. "level": 6,
  10055. "effectValue": [
  10056. 81.0,
  10057. 5.0,
  10058. 1.0,
  10059. 10.0,
  10060. 1.0,
  10061. 1.0,
  10062. 30.0
  10063. ],
  10064. "intensifierIndex": [
  10065. 1
  10066. ],
  10067. "PromoteLan": 0
  10068. },
  10069. {
  10070. "ID": 90020,
  10071. "PieceID": 0,
  10072. "power": 300.0,
  10073. "name": 708,
  10074. "dec": 718,
  10075. "attribute": 1,
  10076. "icon": "icon_s9002",
  10077. "scriptName": "S9002",
  10078. "IDGroup": 9002,
  10079. "timelineName": "BossSk2_timeline_TD",
  10080. "cd": 2.0,
  10081. "addcd": 1.0,
  10082. "SkillType": 1,
  10083. "level": 1,
  10084. "effectValue": [
  10085. 20.0,
  10086. 50.0
  10087. ],
  10088. "PromoteLan": 0
  10089. },
  10090. {
  10091. "ID": 90021,
  10092. "PieceID": 0,
  10093. "power": 450.0,
  10094. "name": 708,
  10095. "dec": 718,
  10096. "attribute": 1,
  10097. "icon": "icon_s9002",
  10098. "scriptName": "S9002",
  10099. "IDGroup": 9002,
  10100. "timelineName": "BossSk2_timeline_TD",
  10101. "cd": 2.0,
  10102. "addcd": 1.0,
  10103. "SkillType": 1,
  10104. "level": 2,
  10105. "effectValue": [
  10106. 23.0,
  10107. 50.0
  10108. ],
  10109. "PromoteLan": 0
  10110. },
  10111. {
  10112. "ID": 90022,
  10113. "PieceID": 0,
  10114. "power": 675.0,
  10115. "name": 708,
  10116. "dec": 718,
  10117. "attribute": 1,
  10118. "icon": "icon_s9002",
  10119. "scriptName": "S9002",
  10120. "IDGroup": 9002,
  10121. "timelineName": "BossSk2_timeline_TD",
  10122. "cd": 2.0,
  10123. "addcd": 1.0,
  10124. "SkillType": 1,
  10125. "level": 3,
  10126. "effectValue": [
  10127. 26.0,
  10128. 50.0
  10129. ],
  10130. "PromoteLan": 0
  10131. },
  10132. {
  10133. "ID": 90023,
  10134. "PieceID": 0,
  10135. "power": 1012.5,
  10136. "name": 708,
  10137. "dec": 718,
  10138. "attribute": 1,
  10139. "icon": "icon_s9002",
  10140. "scriptName": "S9002",
  10141. "IDGroup": 9002,
  10142. "timelineName": "BossSk2_timeline_TD",
  10143. "cd": 2.0,
  10144. "addcd": 1.0,
  10145. "SkillType": 1,
  10146. "level": 4,
  10147. "effectValue": [
  10148. 29.0,
  10149. 50.0
  10150. ],
  10151. "PromoteLan": 0
  10152. },
  10153. {
  10154. "ID": 90024,
  10155. "PieceID": 0,
  10156. "power": 1518.75,
  10157. "name": 708,
  10158. "dec": 718,
  10159. "attribute": 1,
  10160. "icon": "icon_s9002",
  10161. "scriptName": "S9002",
  10162. "IDGroup": 9002,
  10163. "timelineName": "BossSk2_timeline_TD",
  10164. "cd": 2.0,
  10165. "addcd": 1.0,
  10166. "SkillType": 1,
  10167. "level": 5,
  10168. "effectValue": [
  10169. 32.0,
  10170. 50.0
  10171. ],
  10172. "PromoteLan": 0
  10173. },
  10174. {
  10175. "ID": 90025,
  10176. "PieceID": 0,
  10177. "power": 2278.125,
  10178. "name": 708,
  10179. "dec": 718,
  10180. "attribute": 1,
  10181. "icon": "icon_s9002",
  10182. "scriptName": "S9002",
  10183. "IDGroup": 9002,
  10184. "timelineName": "BossSk2_timeline_TD",
  10185. "cd": 2.0,
  10186. "addcd": 1.0,
  10187. "SkillType": 1,
  10188. "level": 6,
  10189. "effectValue": [
  10190. 35.0,
  10191. 50.0
  10192. ],
  10193. "PromoteLan": 0
  10194. },
  10195. {
  10196. "ID": 90030,
  10197. "PieceID": 0,
  10198. "power": 100.0,
  10199. "name": 709,
  10200. "dec": 719,
  10201. "attribute": 1,
  10202. "icon": "icon_s9003",
  10203. "scriptName": "S9003",
  10204. "IDGroup": 9003,
  10205. "timelineName": "",
  10206. "cd": 1.0,
  10207. "addcd": 1.0,
  10208. "SkillType": 2,
  10209. "level": 1,
  10210. "effectValue": [
  10211. 1.0
  10212. ],
  10213. "intensifierIndex": [
  10214. 1
  10215. ],
  10216. "PromoteLan": 0
  10217. },
  10218. {
  10219. "ID": 90040,
  10220. "PieceID": 0,
  10221. "power": 80.0,
  10222. "name": 710,
  10223. "dec": 720,
  10224. "attribute": 1,
  10225. "icon": "icon_s9004",
  10226. "scriptName": "S9004",
  10227. "IDGroup": 9004,
  10228. "timelineName": "BossSk4_timeline_TD",
  10229. "cd": 1.0,
  10230. "addcd": 1.0,
  10231. "SkillType": 1,
  10232. "level": 1,
  10233. "effectValue": [
  10234. 50.0
  10235. ],
  10236. "intensifierIndex": [
  10237. 1
  10238. ],
  10239. "PromoteLan": 0
  10240. },
  10241. {
  10242. "ID": 90041,
  10243. "PieceID": 0,
  10244. "power": 120.0,
  10245. "name": 710,
  10246. "dec": 720,
  10247. "attribute": 1,
  10248. "icon": "icon_s9004",
  10249. "scriptName": "S9004",
  10250. "IDGroup": 9004,
  10251. "timelineName": "BossSk4_timeline_TD",
  10252. "cd": 1.0,
  10253. "addcd": 1.0,
  10254. "SkillType": 1,
  10255. "level": 2,
  10256. "effectValue": [
  10257. 57.0
  10258. ],
  10259. "intensifierIndex": [
  10260. 1
  10261. ],
  10262. "PromoteLan": 0
  10263. },
  10264. {
  10265. "ID": 90042,
  10266. "PieceID": 0,
  10267. "power": 180.0,
  10268. "name": 710,
  10269. "dec": 720,
  10270. "attribute": 1,
  10271. "icon": "icon_s9004",
  10272. "scriptName": "S9004",
  10273. "IDGroup": 9004,
  10274. "timelineName": "BossSk4_timeline_TD",
  10275. "cd": 1.0,
  10276. "addcd": 1.0,
  10277. "SkillType": 1,
  10278. "level": 3,
  10279. "effectValue": [
  10280. 60.0
  10281. ],
  10282. "intensifierIndex": [
  10283. 1
  10284. ],
  10285. "PromoteLan": 0
  10286. },
  10287. {
  10288. "ID": 90043,
  10289. "PieceID": 0,
  10290. "power": 270.0,
  10291. "name": 710,
  10292. "dec": 720,
  10293. "attribute": 1,
  10294. "icon": "icon_s9004",
  10295. "scriptName": "S9004",
  10296. "IDGroup": 9004,
  10297. "timelineName": "BossSk4_timeline_TD",
  10298. "cd": 1.0,
  10299. "addcd": 1.0,
  10300. "SkillType": 1,
  10301. "level": 4,
  10302. "effectValue": [
  10303. 63.0
  10304. ],
  10305. "intensifierIndex": [
  10306. 1
  10307. ],
  10308. "PromoteLan": 0
  10309. },
  10310. {
  10311. "ID": 90044,
  10312. "PieceID": 0,
  10313. "power": 405.0,
  10314. "name": 710,
  10315. "dec": 720,
  10316. "attribute": 1,
  10317. "icon": "icon_s9004",
  10318. "scriptName": "S9004",
  10319. "IDGroup": 9004,
  10320. "timelineName": "BossSk4_timeline_TD",
  10321. "cd": 1.0,
  10322. "addcd": 1.0,
  10323. "SkillType": 1,
  10324. "level": 5,
  10325. "effectValue": [
  10326. 67.0
  10327. ],
  10328. "intensifierIndex": [
  10329. 1
  10330. ],
  10331. "PromoteLan": 0
  10332. },
  10333. {
  10334. "ID": 90045,
  10335. "PieceID": 0,
  10336. "power": 607.5,
  10337. "name": 710,
  10338. "dec": 720,
  10339. "attribute": 1,
  10340. "icon": "icon_s9004",
  10341. "scriptName": "S9004",
  10342. "IDGroup": 9004,
  10343. "timelineName": "BossSk4_timeline_TD",
  10344. "cd": 1.0,
  10345. "addcd": 1.0,
  10346. "SkillType": 1,
  10347. "level": 6,
  10348. "effectValue": [
  10349. 73.0
  10350. ],
  10351. "intensifierIndex": [
  10352. 1
  10353. ],
  10354. "PromoteLan": 0
  10355. },
  10356. {
  10357. "ID": 90050,
  10358. "PieceID": 0,
  10359. "power": 80.0,
  10360. "name": 711,
  10361. "dec": 721,
  10362. "attribute": 1,
  10363. "icon": "icon_s9005",
  10364. "scriptName": "S9005",
  10365. "IDGroup": 9005,
  10366. "timelineName": "BossSk4_timeline_TD",
  10367. "cd": 1.0,
  10368. "addcd": 1.0,
  10369. "SkillType": 1,
  10370. "level": 1,
  10371. "effectValue": [
  10372. 50.0
  10373. ],
  10374. "intensifierIndex": [
  10375. 1
  10376. ],
  10377. "PromoteLan": 0
  10378. },
  10379. {
  10380. "ID": 90051,
  10381. "PieceID": 0,
  10382. "power": 120.0,
  10383. "name": 711,
  10384. "dec": 721,
  10385. "attribute": 1,
  10386. "icon": "icon_s9005",
  10387. "scriptName": "S9005",
  10388. "IDGroup": 9005,
  10389. "timelineName": "BossSk4_timeline_TD",
  10390. "cd": 1.0,
  10391. "addcd": 1.0,
  10392. "SkillType": 1,
  10393. "level": 2,
  10394. "effectValue": [
  10395. 57.0
  10396. ],
  10397. "intensifierIndex": [
  10398. 1
  10399. ],
  10400. "PromoteLan": 0
  10401. },
  10402. {
  10403. "ID": 90052,
  10404. "PieceID": 0,
  10405. "power": 180.0,
  10406. "name": 711,
  10407. "dec": 721,
  10408. "attribute": 1,
  10409. "icon": "icon_s9005",
  10410. "scriptName": "S9005",
  10411. "IDGroup": 9005,
  10412. "timelineName": "BossSk4_timeline_TD",
  10413. "cd": 1.0,
  10414. "addcd": 1.0,
  10415. "SkillType": 1,
  10416. "level": 3,
  10417. "effectValue": [
  10418. 60.0
  10419. ],
  10420. "intensifierIndex": [
  10421. 1
  10422. ],
  10423. "PromoteLan": 0
  10424. },
  10425. {
  10426. "ID": 90053,
  10427. "PieceID": 0,
  10428. "power": 270.0,
  10429. "name": 711,
  10430. "dec": 721,
  10431. "attribute": 1,
  10432. "icon": "icon_s9005",
  10433. "scriptName": "S9005",
  10434. "IDGroup": 9005,
  10435. "timelineName": "BossSk4_timeline_TD",
  10436. "cd": 1.0,
  10437. "addcd": 1.0,
  10438. "SkillType": 1,
  10439. "level": 4,
  10440. "effectValue": [
  10441. 63.0
  10442. ],
  10443. "intensifierIndex": [
  10444. 1
  10445. ],
  10446. "PromoteLan": 0
  10447. },
  10448. {
  10449. "ID": 90054,
  10450. "PieceID": 0,
  10451. "power": 405.0,
  10452. "name": 711,
  10453. "dec": 721,
  10454. "attribute": 1,
  10455. "icon": "icon_s9005",
  10456. "scriptName": "S9005",
  10457. "IDGroup": 9005,
  10458. "timelineName": "BossSk4_timeline_TD",
  10459. "cd": 1.0,
  10460. "addcd": 1.0,
  10461. "SkillType": 1,
  10462. "level": 5,
  10463. "effectValue": [
  10464. 67.0
  10465. ],
  10466. "intensifierIndex": [
  10467. 1
  10468. ],
  10469. "PromoteLan": 0
  10470. },
  10471. {
  10472. "ID": 90055,
  10473. "PieceID": 0,
  10474. "power": 607.5,
  10475. "name": 711,
  10476. "dec": 721,
  10477. "attribute": 1,
  10478. "icon": "icon_s9005",
  10479. "scriptName": "S9005",
  10480. "IDGroup": 9005,
  10481. "timelineName": "BossSk4_timeline_TD",
  10482. "cd": 1.0,
  10483. "addcd": 1.0,
  10484. "SkillType": 1,
  10485. "level": 6,
  10486. "effectValue": [
  10487. 73.0
  10488. ],
  10489. "intensifierIndex": [
  10490. 1
  10491. ],
  10492. "PromoteLan": 0
  10493. },
  10494. {
  10495. "ID": 90110,
  10496. "PieceID": 0,
  10497. "power": 100.0,
  10498. "name": 711,
  10499. "dec": 721,
  10500. "attribute": 2,
  10501. "icon": "icon_s9011",
  10502. "scriptName": "S9011",
  10503. "IDGroup": 9011,
  10504. "timelineName": "Boss_fenghuang_TD",
  10505. "cd": 1.0,
  10506. "addcd": 0.0,
  10507. "SkillType": 1,
  10508. "level": 1,
  10509. "effectValue": [
  10510. 3.0,
  10511. 47.0
  10512. ],
  10513. "intensifierIndex": [
  10514. 2
  10515. ],
  10516. "PromoteLan": 0
  10517. },
  10518. {
  10519. "ID": 90111,
  10520. "PieceID": 0,
  10521. "power": 150.0,
  10522. "name": 711,
  10523. "dec": 721,
  10524. "attribute": 2,
  10525. "icon": "icon_s9011",
  10526. "scriptName": "S9011",
  10527. "IDGroup": 9011,
  10528. "timelineName": "Boss_fenghuang_TD",
  10529. "cd": 1.0,
  10530. "addcd": 0.0,
  10531. "SkillType": 1,
  10532. "level": 2,
  10533. "effectValue": [
  10534. 3.0,
  10535. 53.0
  10536. ],
  10537. "intensifierIndex": [
  10538. 2
  10539. ],
  10540. "PromoteLan": 0
  10541. },
  10542. {
  10543. "ID": 90112,
  10544. "PieceID": 0,
  10545. "power": 225.0,
  10546. "name": 711,
  10547. "dec": 721,
  10548. "attribute": 2,
  10549. "icon": "icon_s9011",
  10550. "scriptName": "S9011",
  10551. "IDGroup": 9011,
  10552. "timelineName": "Boss_fenghuang_TD",
  10553. "cd": 1.0,
  10554. "addcd": 0.0,
  10555. "SkillType": 1,
  10556. "level": 3,
  10557. "effectValue": [
  10558. 3.0,
  10559. 63.0
  10560. ],
  10561. "intensifierIndex": [
  10562. 2
  10563. ],
  10564. "PromoteLan": 0
  10565. },
  10566. {
  10567. "ID": 90113,
  10568. "PieceID": 0,
  10569. "power": 337.5,
  10570. "name": 711,
  10571. "dec": 721,
  10572. "attribute": 2,
  10573. "icon": "icon_s9011",
  10574. "scriptName": "S9011",
  10575. "IDGroup": 9011,
  10576. "timelineName": "Boss_fenghuang_TD",
  10577. "cd": 1.0,
  10578. "addcd": 0.0,
  10579. "SkillType": 1,
  10580. "level": 4,
  10581. "effectValue": [
  10582. 3.0,
  10583. 72.0
  10584. ],
  10585. "intensifierIndex": [
  10586. 2
  10587. ],
  10588. "PromoteLan": 0
  10589. },
  10590. {
  10591. "ID": 90114,
  10592. "PieceID": 0,
  10593. "power": 506.25,
  10594. "name": 711,
  10595. "dec": 721,
  10596. "attribute": 2,
  10597. "icon": "icon_s9011",
  10598. "scriptName": "S9011",
  10599. "IDGroup": 9011,
  10600. "timelineName": "Boss_fenghuang_TD",
  10601. "cd": 1.0,
  10602. "addcd": 0.0,
  10603. "SkillType": 1,
  10604. "level": 5,
  10605. "effectValue": [
  10606. 3.0,
  10607. 81.0
  10608. ],
  10609. "intensifierIndex": [
  10610. 2
  10611. ],
  10612. "PromoteLan": 0
  10613. },
  10614. {
  10615. "ID": 90115,
  10616. "PieceID": 0,
  10617. "power": 759.375,
  10618. "name": 711,
  10619. "dec": 721,
  10620. "attribute": 2,
  10621. "icon": "icon_s9011",
  10622. "scriptName": "S9011",
  10623. "IDGroup": 9011,
  10624. "timelineName": "Boss_fenghuang_TD",
  10625. "cd": 1.0,
  10626. "addcd": 0.0,
  10627. "SkillType": 1,
  10628. "level": 6,
  10629. "effectValue": [
  10630. 3.0,
  10631. 94.0
  10632. ],
  10633. "intensifierIndex": [
  10634. 2
  10635. ],
  10636. "PromoteLan": 0
  10637. },
  10638. {
  10639. "ID": 90120,
  10640. "PieceID": 0,
  10641. "power": 100.0,
  10642. "name": 711,
  10643. "dec": 721,
  10644. "attribute": 2,
  10645. "icon": "icon_s9012",
  10646. "scriptName": "S9012",
  10647. "IDGroup": 9012,
  10648. "timelineName": "Boss_fenghuang_TD",
  10649. "cd": 2.0,
  10650. "addcd": 0.0,
  10651. "SkillType": 1,
  10652. "level": 1,
  10653. "effectValue": [
  10654. 210.0,
  10655. 10.0
  10656. ],
  10657. "intensifierIndex": [
  10658. 1
  10659. ],
  10660. "PromoteLan": 0
  10661. },
  10662. {
  10663. "ID": 90121,
  10664. "PieceID": 0,
  10665. "power": 150.0,
  10666. "name": 711,
  10667. "dec": 721,
  10668. "attribute": 2,
  10669. "icon": "icon_s9012",
  10670. "scriptName": "S9012",
  10671. "IDGroup": 9012,
  10672. "timelineName": "Boss_fenghuang_TD",
  10673. "cd": 2.0,
  10674. "addcd": 0.0,
  10675. "SkillType": 1,
  10676. "level": 2,
  10677. "effectValue": [
  10678. 238.0,
  10679. 10.0
  10680. ],
  10681. "intensifierIndex": [
  10682. 1
  10683. ],
  10684. "PromoteLan": 0
  10685. },
  10686. {
  10687. "ID": 90122,
  10688. "PieceID": 0,
  10689. "power": 225.0,
  10690. "name": 711,
  10691. "dec": 721,
  10692. "attribute": 2,
  10693. "icon": "icon_s9012",
  10694. "scriptName": "S9012",
  10695. "IDGroup": 9012,
  10696. "timelineName": "Boss_fenghuang_TD",
  10697. "cd": 2.0,
  10698. "addcd": 0.0,
  10699. "SkillType": 1,
  10700. "level": 3,
  10701. "effectValue": [
  10702. 280.0,
  10703. 10.0
  10704. ],
  10705. "intensifierIndex": [
  10706. 1
  10707. ],
  10708. "PromoteLan": 0
  10709. },
  10710. {
  10711. "ID": 90123,
  10712. "PieceID": 0,
  10713. "power": 337.5,
  10714. "name": 711,
  10715. "dec": 721,
  10716. "attribute": 2,
  10717. "icon": "icon_s9012",
  10718. "scriptName": "S9012",
  10719. "IDGroup": 9012,
  10720. "timelineName": "Boss_fenghuang_TD",
  10721. "cd": 2.0,
  10722. "addcd": 0.0,
  10723. "SkillType": 1,
  10724. "level": 4,
  10725. "effectValue": [
  10726. 322.0,
  10727. 10.0
  10728. ],
  10729. "intensifierIndex": [
  10730. 1
  10731. ],
  10732. "PromoteLan": 0
  10733. },
  10734. {
  10735. "ID": 90124,
  10736. "PieceID": 0,
  10737. "power": 506.25,
  10738. "name": 711,
  10739. "dec": 721,
  10740. "attribute": 2,
  10741. "icon": "icon_s9012",
  10742. "scriptName": "S9012",
  10743. "IDGroup": 9012,
  10744. "timelineName": "Boss_fenghuang_TD",
  10745. "cd": 2.0,
  10746. "addcd": 0.0,
  10747. "SkillType": 1,
  10748. "level": 5,
  10749. "effectValue": [
  10750. 364.0,
  10751. 10.0
  10752. ],
  10753. "intensifierIndex": [
  10754. 1
  10755. ],
  10756. "PromoteLan": 0
  10757. },
  10758. {
  10759. "ID": 90125,
  10760. "PieceID": 0,
  10761. "power": 759.375,
  10762. "name": 711,
  10763. "dec": 721,
  10764. "attribute": 2,
  10765. "icon": "icon_s9012",
  10766. "scriptName": "S9012",
  10767. "IDGroup": 9012,
  10768. "timelineName": "Boss_fenghuang_TD",
  10769. "cd": 2.0,
  10770. "addcd": 0.0,
  10771. "SkillType": 1,
  10772. "level": 6,
  10773. "effectValue": [
  10774. 420.0,
  10775. 10.0
  10776. ],
  10777. "intensifierIndex": [
  10778. 1
  10779. ],
  10780. "PromoteLan": 0
  10781. },
  10782. {
  10783. "ID": 90130,
  10784. "PieceID": 0,
  10785. "power": 100.0,
  10786. "name": 711,
  10787. "dec": 721,
  10788. "attribute": 2,
  10789. "icon": "icon_s9013",
  10790. "scriptName": "S9013",
  10791. "IDGroup": 9013,
  10792. "timelineName": "Boss_fenghuang_TD",
  10793. "cd": 1.0,
  10794. "addcd": 0.0,
  10795. "SkillType": 2,
  10796. "level": 1,
  10797. "effectValue": [
  10798. 10.0,
  10799. 10.0,
  10800. 5.0,
  10801. 60.0
  10802. ],
  10803. "intensifierIndex": [
  10804. 4
  10805. ],
  10806. "PromoteLan": 0
  10807. },
  10808. {
  10809. "ID": 90131,
  10810. "PieceID": 0,
  10811. "power": 150.0,
  10812. "name": 711,
  10813. "dec": 721,
  10814. "attribute": 2,
  10815. "icon": "icon_s9013",
  10816. "scriptName": "S9013",
  10817. "IDGroup": 9013,
  10818. "timelineName": "Boss_fenghuang_TD",
  10819. "cd": 1.0,
  10820. "addcd": 0.0,
  10821. "SkillType": 2,
  10822. "level": 2,
  10823. "effectValue": [
  10824. 10.0,
  10825. 10.0,
  10826. 5.0,
  10827. 80.0
  10828. ],
  10829. "intensifierIndex": [
  10830. 4
  10831. ],
  10832. "PromoteLan": 0
  10833. },
  10834. {
  10835. "ID": 90132,
  10836. "PieceID": 0,
  10837. "power": 225.0,
  10838. "name": 711,
  10839. "dec": 721,
  10840. "attribute": 2,
  10841. "icon": "icon_s9013",
  10842. "scriptName": "S9013",
  10843. "IDGroup": 9013,
  10844. "timelineName": "Boss_fenghuang_TD",
  10845. "cd": 1.0,
  10846. "addcd": 0.0,
  10847. "SkillType": 2,
  10848. "level": 3,
  10849. "effectValue": [
  10850. 10.0,
  10851. 10.0,
  10852. 5.0,
  10853. 100.0
  10854. ],
  10855. "intensifierIndex": [
  10856. 4
  10857. ],
  10858. "PromoteLan": 0
  10859. },
  10860. {
  10861. "ID": 90133,
  10862. "PieceID": 0,
  10863. "power": 337.5,
  10864. "name": 711,
  10865. "dec": 721,
  10866. "attribute": 2,
  10867. "icon": "icon_s9013",
  10868. "scriptName": "S9013",
  10869. "IDGroup": 9013,
  10870. "timelineName": "Boss_fenghuang_TD",
  10871. "cd": 1.0,
  10872. "addcd": 0.0,
  10873. "SkillType": 2,
  10874. "level": 4,
  10875. "effectValue": [
  10876. 10.0,
  10877. 10.0,
  10878. 5.0,
  10879. 120.0
  10880. ],
  10881. "intensifierIndex": [
  10882. 4
  10883. ],
  10884. "PromoteLan": 0
  10885. },
  10886. {
  10887. "ID": 90134,
  10888. "PieceID": 0,
  10889. "power": 506.25,
  10890. "name": 711,
  10891. "dec": 721,
  10892. "attribute": 2,
  10893. "icon": "icon_s9013",
  10894. "scriptName": "S9013",
  10895. "IDGroup": 9013,
  10896. "timelineName": "Boss_fenghuang_TD",
  10897. "cd": 1.0,
  10898. "addcd": 0.0,
  10899. "SkillType": 2,
  10900. "level": 5,
  10901. "effectValue": [
  10902. 10.0,
  10903. 10.0,
  10904. 5.0,
  10905. 140.0
  10906. ],
  10907. "intensifierIndex": [
  10908. 4
  10909. ],
  10910. "PromoteLan": 0
  10911. },
  10912. {
  10913. "ID": 90135,
  10914. "PieceID": 0,
  10915. "power": 759.375,
  10916. "name": 711,
  10917. "dec": 721,
  10918. "attribute": 2,
  10919. "icon": "icon_s9013",
  10920. "scriptName": "S9013",
  10921. "IDGroup": 9013,
  10922. "timelineName": "Boss_fenghuang_TD",
  10923. "cd": 1.0,
  10924. "addcd": 0.0,
  10925. "SkillType": 2,
  10926. "level": 6,
  10927. "effectValue": [
  10928. 10.0,
  10929. 10.0,
  10930. 5.0,
  10931. 160.0
  10932. ],
  10933. "intensifierIndex": [
  10934. 4
  10935. ],
  10936. "PromoteLan": 0
  10937. },
  10938. {
  10939. "ID": 90140,
  10940. "PieceID": 0,
  10941. "power": 100.0,
  10942. "name": 711,
  10943. "dec": 721,
  10944. "attribute": 2,
  10945. "icon": "icon_s9014",
  10946. "scriptName": "S9014",
  10947. "IDGroup": 9014,
  10948. "timelineName": "Boss_fenghuang_TD",
  10949. "cd": 2.0,
  10950. "addcd": 0.0,
  10951. "SkillType": 1,
  10952. "level": 1,
  10953. "effectValue": [
  10954. 3.0,
  10955. 94.0
  10956. ],
  10957. "intensifierIndex": [
  10958. 2
  10959. ],
  10960. "PromoteLan": 0
  10961. },
  10962. {
  10963. "ID": 90141,
  10964. "PieceID": 0,
  10965. "power": 150.0,
  10966. "name": 711,
  10967. "dec": 721,
  10968. "attribute": 2,
  10969. "icon": "icon_s9014",
  10970. "scriptName": "S9014",
  10971. "IDGroup": 9014,
  10972. "timelineName": "Boss_fenghuang_TD",
  10973. "cd": 2.0,
  10974. "addcd": 0.0,
  10975. "SkillType": 1,
  10976. "level": 2,
  10977. "effectValue": [
  10978. 3.0,
  10979. 106.0
  10980. ],
  10981. "intensifierIndex": [
  10982. 2
  10983. ],
  10984. "PromoteLan": 0
  10985. },
  10986. {
  10987. "ID": 90142,
  10988. "PieceID": 0,
  10989. "power": 225.0,
  10990. "name": 711,
  10991. "dec": 721,
  10992. "attribute": 2,
  10993. "icon": "icon_s9014",
  10994. "scriptName": "S9014",
  10995. "IDGroup": 9014,
  10996. "timelineName": "Boss_fenghuang_TD",
  10997. "cd": 2.0,
  10998. "addcd": 0.0,
  10999. "SkillType": 1,
  11000. "level": 3,
  11001. "effectValue": [
  11002. 3.0,
  11003. 126.0
  11004. ],
  11005. "intensifierIndex": [
  11006. 2
  11007. ],
  11008. "PromoteLan": 0
  11009. },
  11010. {
  11011. "ID": 90143,
  11012. "PieceID": 0,
  11013. "power": 337.5,
  11014. "name": 711,
  11015. "dec": 721,
  11016. "attribute": 2,
  11017. "icon": "icon_s9014",
  11018. "scriptName": "S9014",
  11019. "IDGroup": 9014,
  11020. "timelineName": "Boss_fenghuang_TD",
  11021. "cd": 2.0,
  11022. "addcd": 0.0,
  11023. "SkillType": 1,
  11024. "level": 4,
  11025. "effectValue": [
  11026. 3.0,
  11027. 144.0
  11028. ],
  11029. "intensifierIndex": [
  11030. 2
  11031. ],
  11032. "PromoteLan": 0
  11033. },
  11034. {
  11035. "ID": 90144,
  11036. "PieceID": 0,
  11037. "power": 506.25,
  11038. "name": 711,
  11039. "dec": 721,
  11040. "attribute": 2,
  11041. "icon": "icon_s9014",
  11042. "scriptName": "S9014",
  11043. "IDGroup": 9014,
  11044. "timelineName": "Boss_fenghuang_TD",
  11045. "cd": 2.0,
  11046. "addcd": 0.0,
  11047. "SkillType": 1,
  11048. "level": 5,
  11049. "effectValue": [
  11050. 3.0,
  11051. 162.0
  11052. ],
  11053. "intensifierIndex": [
  11054. 2
  11055. ],
  11056. "PromoteLan": 0
  11057. },
  11058. {
  11059. "ID": 90145,
  11060. "PieceID": 0,
  11061. "power": 759.375,
  11062. "name": 711,
  11063. "dec": 721,
  11064. "attribute": 2,
  11065. "icon": "icon_s9014",
  11066. "scriptName": "S9014",
  11067. "IDGroup": 9014,
  11068. "timelineName": "Boss_fenghuang_TD",
  11069. "cd": 2.0,
  11070. "addcd": 0.0,
  11071. "SkillType": 1,
  11072. "level": 6,
  11073. "effectValue": [
  11074. 3.0,
  11075. 188.0
  11076. ],
  11077. "intensifierIndex": [
  11078. 2
  11079. ],
  11080. "PromoteLan": 0
  11081. },
  11082. {
  11083. "ID": 90150,
  11084. "PieceID": 0,
  11085. "power": 100.0,
  11086. "name": 711,
  11087. "dec": 721,
  11088. "attribute": 2,
  11089. "icon": "icon_s9015",
  11090. "scriptName": "S9015",
  11091. "IDGroup": 9015,
  11092. "timelineName": "Boss_fenghuang_TD",
  11093. "cd": 1.0,
  11094. "addcd": 0.0,
  11095. "SkillType": 1,
  11096. "level": 1,
  11097. "effectValue": [
  11098. 3.0,
  11099. 50.0
  11100. ],
  11101. "intensifierIndex": [
  11102. 2
  11103. ],
  11104. "PromoteLan": 0
  11105. },
  11106. {
  11107. "ID": 90151,
  11108. "PieceID": 0,
  11109. "power": 150.0,
  11110. "name": 711,
  11111. "dec": 721,
  11112. "attribute": 2,
  11113. "icon": "icon_s9015",
  11114. "scriptName": "S9015",
  11115. "IDGroup": 9015,
  11116. "timelineName": "Boss_fenghuang_TD",
  11117. "cd": 1.0,
  11118. "addcd": 0.0,
  11119. "SkillType": 1,
  11120. "level": 2,
  11121. "effectValue": [
  11122. 3.0,
  11123. 57.0
  11124. ],
  11125. "intensifierIndex": [
  11126. 2
  11127. ],
  11128. "PromoteLan": 0
  11129. },
  11130. {
  11131. "ID": 90152,
  11132. "PieceID": 0,
  11133. "power": 225.0,
  11134. "name": 711,
  11135. "dec": 721,
  11136. "attribute": 2,
  11137. "icon": "icon_s9015",
  11138. "scriptName": "S9015",
  11139. "IDGroup": 9015,
  11140. "timelineName": "Boss_fenghuang_TD",
  11141. "cd": 1.0,
  11142. "addcd": 0.0,
  11143. "SkillType": 1,
  11144. "level": 3,
  11145. "effectValue": [
  11146. 3.0,
  11147. 60.0
  11148. ],
  11149. "intensifierIndex": [
  11150. 2
  11151. ],
  11152. "PromoteLan": 0
  11153. },
  11154. {
  11155. "ID": 90153,
  11156. "PieceID": 0,
  11157. "power": 337.5,
  11158. "name": 711,
  11159. "dec": 721,
  11160. "attribute": 2,
  11161. "icon": "icon_s9015",
  11162. "scriptName": "S9015",
  11163. "IDGroup": 9015,
  11164. "timelineName": "Boss_fenghuang_TD",
  11165. "cd": 1.0,
  11166. "addcd": 0.0,
  11167. "SkillType": 1,
  11168. "level": 4,
  11169. "effectValue": [
  11170. 3.0,
  11171. 63.0
  11172. ],
  11173. "intensifierIndex": [
  11174. 2
  11175. ],
  11176. "PromoteLan": 0
  11177. },
  11178. {
  11179. "ID": 90154,
  11180. "PieceID": 0,
  11181. "power": 506.25,
  11182. "name": 711,
  11183. "dec": 721,
  11184. "attribute": 2,
  11185. "icon": "icon_s9015",
  11186. "scriptName": "S9015",
  11187. "IDGroup": 9015,
  11188. "timelineName": "Boss_fenghuang_TD",
  11189. "cd": 1.0,
  11190. "addcd": 0.0,
  11191. "SkillType": 1,
  11192. "level": 5,
  11193. "effectValue": [
  11194. 3.0,
  11195. 67.0
  11196. ],
  11197. "intensifierIndex": [
  11198. 2
  11199. ],
  11200. "PromoteLan": 0
  11201. },
  11202. {
  11203. "ID": 90155,
  11204. "PieceID": 0,
  11205. "power": 759.375,
  11206. "name": 711,
  11207. "dec": 721,
  11208. "attribute": 2,
  11209. "icon": "icon_s9015",
  11210. "scriptName": "S9015",
  11211. "IDGroup": 9015,
  11212. "timelineName": "Boss_fenghuang_TD",
  11213. "cd": 1.0,
  11214. "addcd": 0.0,
  11215. "SkillType": 1,
  11216. "level": 6,
  11217. "effectValue": [
  11218. 3.0,
  11219. 73.0
  11220. ],
  11221. "intensifierIndex": [
  11222. 2
  11223. ],
  11224. "PromoteLan": 0
  11225. },
  11226. {
  11227. "ID": 90210,
  11228. "PieceID": 0,
  11229. "power": 100.0,
  11230. "name": 711,
  11231. "dec": 721,
  11232. "attribute": 2,
  11233. "icon": "icon_s9021",
  11234. "scriptName": "S9021",
  11235. "IDGroup": 9021,
  11236. "timelineName": "Boss_BeiHaiGui_TD",
  11237. "cd": 2.0,
  11238. "addcd": 0.0,
  11239. "SkillType": 1,
  11240. "level": 1,
  11241. "effectValue": [
  11242. 1.0,
  11243. 270.0,
  11244. 10.0
  11245. ],
  11246. "intensifierIndex": [
  11247. 2
  11248. ],
  11249. "PromoteLan": 0
  11250. },
  11251. {
  11252. "ID": 90211,
  11253. "PieceID": 0,
  11254. "power": 150.0,
  11255. "name": 711,
  11256. "dec": 721,
  11257. "attribute": 2,
  11258. "icon": "icon_s9021",
  11259. "scriptName": "S9021",
  11260. "IDGroup": 9021,
  11261. "timelineName": "Boss_BeiHaiGui_TD",
  11262. "cd": 2.0,
  11263. "addcd": 0.0,
  11264. "SkillType": 1,
  11265. "level": 2,
  11266. "effectValue": [
  11267. 1.0,
  11268. 300.0,
  11269. 12.0
  11270. ],
  11271. "intensifierIndex": [
  11272. 2
  11273. ],
  11274. "PromoteLan": 0
  11275. },
  11276. {
  11277. "ID": 90212,
  11278. "PieceID": 0,
  11279. "power": 225.0,
  11280. "name": 711,
  11281. "dec": 721,
  11282. "attribute": 2,
  11283. "icon": "icon_s9021",
  11284. "scriptName": "S9021",
  11285. "IDGroup": 9021,
  11286. "timelineName": "Boss_BeiHaiGui_TD",
  11287. "cd": 2.0,
  11288. "addcd": 0.0,
  11289. "SkillType": 1,
  11290. "level": 3,
  11291. "effectValue": [
  11292. 1.0,
  11293. 344.0,
  11294. 14.0
  11295. ],
  11296. "intensifierIndex": [
  11297. 2
  11298. ],
  11299. "PromoteLan": 0
  11300. },
  11301. {
  11302. "ID": 90213,
  11303. "PieceID": 0,
  11304. "power": 337.5,
  11305. "name": 711,
  11306. "dec": 721,
  11307. "attribute": 2,
  11308. "icon": "icon_s9021",
  11309. "scriptName": "S9021",
  11310. "IDGroup": 9021,
  11311. "timelineName": "Boss_BeiHaiGui_TD",
  11312. "cd": 2.0,
  11313. "addcd": 0.0,
  11314. "SkillType": 1,
  11315. "level": 4,
  11316. "effectValue": [
  11317. 1.0,
  11318. 386.0,
  11319. 16.0
  11320. ],
  11321. "intensifierIndex": [
  11322. 2
  11323. ],
  11324. "PromoteLan": 0
  11325. },
  11326. {
  11327. "ID": 90214,
  11328. "PieceID": 0,
  11329. "power": 506.25,
  11330. "name": 711,
  11331. "dec": 721,
  11332. "attribute": 2,
  11333. "icon": "icon_s9021",
  11334. "scriptName": "S9021",
  11335. "IDGroup": 9021,
  11336. "timelineName": "Boss_BeiHaiGui_TD",
  11337. "cd": 2.0,
  11338. "addcd": 0.0,
  11339. "SkillType": 1,
  11340. "level": 5,
  11341. "effectValue": [
  11342. 1.0,
  11343. 426.0,
  11344. 18.0
  11345. ],
  11346. "intensifierIndex": [
  11347. 2
  11348. ],
  11349. "PromoteLan": 0
  11350. },
  11351. {
  11352. "ID": 90215,
  11353. "PieceID": 0,
  11354. "power": 759.375,
  11355. "name": 711,
  11356. "dec": 721,
  11357. "attribute": 2,
  11358. "icon": "icon_s9021",
  11359. "scriptName": "S9021",
  11360. "IDGroup": 9021,
  11361. "timelineName": "Boss_BeiHaiGui_TD",
  11362. "cd": 2.0,
  11363. "addcd": 0.0,
  11364. "SkillType": 1,
  11365. "level": 6,
  11366. "effectValue": [
  11367. 1.0,
  11368. 480.0,
  11369. 20.0
  11370. ],
  11371. "intensifierIndex": [
  11372. 2
  11373. ],
  11374. "PromoteLan": 0
  11375. },
  11376. {
  11377. "ID": 90220,
  11378. "PieceID": 0,
  11379. "power": 100.0,
  11380. "name": 711,
  11381. "dec": 721,
  11382. "attribute": 2,
  11383. "icon": "icon_s9022",
  11384. "scriptName": "S9022",
  11385. "IDGroup": 9022,
  11386. "timelineName": "Boss_BeiHaiGui_TD",
  11387. "cd": 2.0,
  11388. "addcd": 0.0,
  11389. "SkillType": 1,
  11390. "level": 1,
  11391. "effectValue": [
  11392. 20.0,
  11393. 35.0,
  11394. 10.0
  11395. ],
  11396. "PromoteLan": 0
  11397. },
  11398. {
  11399. "ID": 90221,
  11400. "PieceID": 0,
  11401. "power": 150.0,
  11402. "name": 711,
  11403. "dec": 721,
  11404. "attribute": 2,
  11405. "icon": "icon_s9022",
  11406. "scriptName": "S9022",
  11407. "IDGroup": 9022,
  11408. "timelineName": "Boss_BeiHaiGui_TD",
  11409. "cd": 2.0,
  11410. "addcd": 0.0,
  11411. "SkillType": 1,
  11412. "level": 2,
  11413. "effectValue": [
  11414. 20.0,
  11415. 45.0,
  11416. 10.0
  11417. ],
  11418. "PromoteLan": 0
  11419. },
  11420. {
  11421. "ID": 90222,
  11422. "PieceID": 0,
  11423. "power": 225.0,
  11424. "name": 711,
  11425. "dec": 721,
  11426. "attribute": 2,
  11427. "icon": "icon_s9022",
  11428. "scriptName": "S9022",
  11429. "IDGroup": 9022,
  11430. "timelineName": "Boss_BeiHaiGui_TD",
  11431. "cd": 2.0,
  11432. "addcd": 0.0,
  11433. "SkillType": 1,
  11434. "level": 3,
  11435. "effectValue": [
  11436. 20.0,
  11437. 55.0,
  11438. 10.0
  11439. ],
  11440. "PromoteLan": 0
  11441. },
  11442. {
  11443. "ID": 90223,
  11444. "PieceID": 0,
  11445. "power": 337.5,
  11446. "name": 711,
  11447. "dec": 721,
  11448. "attribute": 2,
  11449. "icon": "icon_s9022",
  11450. "scriptName": "S9022",
  11451. "IDGroup": 9022,
  11452. "timelineName": "Boss_BeiHaiGui_TD",
  11453. "cd": 2.0,
  11454. "addcd": 0.0,
  11455. "SkillType": 1,
  11456. "level": 4,
  11457. "effectValue": [
  11458. 20.0,
  11459. 65.0,
  11460. 10.0
  11461. ],
  11462. "PromoteLan": 0
  11463. },
  11464. {
  11465. "ID": 90224,
  11466. "PieceID": 0,
  11467. "power": 506.25,
  11468. "name": 711,
  11469. "dec": 721,
  11470. "attribute": 2,
  11471. "icon": "icon_s9022",
  11472. "scriptName": "S9022",
  11473. "IDGroup": 9022,
  11474. "timelineName": "Boss_BeiHaiGui_TD",
  11475. "cd": 2.0,
  11476. "addcd": 0.0,
  11477. "SkillType": 1,
  11478. "level": 5,
  11479. "effectValue": [
  11480. 20.0,
  11481. 75.0,
  11482. 10.0
  11483. ],
  11484. "PromoteLan": 0
  11485. },
  11486. {
  11487. "ID": 90225,
  11488. "PieceID": 0,
  11489. "power": 759.375,
  11490. "name": 711,
  11491. "dec": 721,
  11492. "attribute": 2,
  11493. "icon": "icon_s9022",
  11494. "scriptName": "S9022",
  11495. "IDGroup": 9022,
  11496. "timelineName": "Boss_BeiHaiGui_TD",
  11497. "cd": 2.0,
  11498. "addcd": 0.0,
  11499. "SkillType": 1,
  11500. "level": 6,
  11501. "effectValue": [
  11502. 20.0,
  11503. 85.0,
  11504. 10.0
  11505. ],
  11506. "PromoteLan": 0
  11507. },
  11508. {
  11509. "ID": 90230,
  11510. "PieceID": 0,
  11511. "power": 100.0,
  11512. "name": 711,
  11513. "dec": 721,
  11514. "attribute": 2,
  11515. "icon": "icon_s9023",
  11516. "scriptName": "S9023",
  11517. "IDGroup": 9023,
  11518. "timelineName": "Boss_BeiHaiGui_TD",
  11519. "cd": 1.0,
  11520. "addcd": 1.0,
  11521. "SkillType": 1,
  11522. "level": 1,
  11523. "effectValue": [
  11524. 3.0,
  11525. 50.0
  11526. ],
  11527. "intensifierIndex": [
  11528. 2
  11529. ],
  11530. "PromoteLan": 0
  11531. },
  11532. {
  11533. "ID": 90231,
  11534. "PieceID": 0,
  11535. "power": 150.0,
  11536. "name": 711,
  11537. "dec": 721,
  11538. "attribute": 2,
  11539. "icon": "icon_s9023",
  11540. "scriptName": "S9023",
  11541. "IDGroup": 9023,
  11542. "timelineName": "Boss_BeiHaiGui_TD",
  11543. "cd": 1.0,
  11544. "addcd": 1.0,
  11545. "SkillType": 1,
  11546. "level": 2,
  11547. "effectValue": [
  11548. 3.0,
  11549. 57.0
  11550. ],
  11551. "intensifierIndex": [
  11552. 2
  11553. ],
  11554. "PromoteLan": 0
  11555. },
  11556. {
  11557. "ID": 90232,
  11558. "PieceID": 0,
  11559. "power": 225.0,
  11560. "name": 711,
  11561. "dec": 721,
  11562. "attribute": 2,
  11563. "icon": "icon_s9023",
  11564. "scriptName": "S9023",
  11565. "IDGroup": 9023,
  11566. "timelineName": "Boss_BeiHaiGui_TD",
  11567. "cd": 1.0,
  11568. "addcd": 1.0,
  11569. "SkillType": 1,
  11570. "level": 3,
  11571. "effectValue": [
  11572. 3.0,
  11573. 60.0
  11574. ],
  11575. "intensifierIndex": [
  11576. 2
  11577. ],
  11578. "PromoteLan": 0
  11579. },
  11580. {
  11581. "ID": 90233,
  11582. "PieceID": 0,
  11583. "power": 337.5,
  11584. "name": 711,
  11585. "dec": 721,
  11586. "attribute": 2,
  11587. "icon": "icon_s9023",
  11588. "scriptName": "S9023",
  11589. "IDGroup": 9023,
  11590. "timelineName": "Boss_BeiHaiGui_TD",
  11591. "cd": 1.0,
  11592. "addcd": 1.0,
  11593. "SkillType": 1,
  11594. "level": 4,
  11595. "effectValue": [
  11596. 3.0,
  11597. 63.0
  11598. ],
  11599. "intensifierIndex": [
  11600. 2
  11601. ],
  11602. "PromoteLan": 0
  11603. },
  11604. {
  11605. "ID": 90234,
  11606. "PieceID": 0,
  11607. "power": 506.25,
  11608. "name": 711,
  11609. "dec": 721,
  11610. "attribute": 2,
  11611. "icon": "icon_s9023",
  11612. "scriptName": "S9023",
  11613. "IDGroup": 9023,
  11614. "timelineName": "Boss_BeiHaiGui_TD",
  11615. "cd": 1.0,
  11616. "addcd": 1.0,
  11617. "SkillType": 1,
  11618. "level": 5,
  11619. "effectValue": [
  11620. 3.0,
  11621. 67.0
  11622. ],
  11623. "intensifierIndex": [
  11624. 2
  11625. ],
  11626. "PromoteLan": 0
  11627. },
  11628. {
  11629. "ID": 90235,
  11630. "PieceID": 0,
  11631. "power": 759.375,
  11632. "name": 711,
  11633. "dec": 721,
  11634. "attribute": 2,
  11635. "icon": "icon_s9023",
  11636. "scriptName": "S9023",
  11637. "IDGroup": 9023,
  11638. "timelineName": "Boss_BeiHaiGui_TD",
  11639. "cd": 1.0,
  11640. "addcd": 1.0,
  11641. "SkillType": 1,
  11642. "level": 6,
  11643. "effectValue": [
  11644. 3.0,
  11645. 73.0
  11646. ],
  11647. "intensifierIndex": [
  11648. 2
  11649. ],
  11650. "PromoteLan": 0
  11651. },
  11652. {
  11653. "ID": 90240,
  11654. "PieceID": 0,
  11655. "power": 100.0,
  11656. "name": 711,
  11657. "dec": 721,
  11658. "attribute": 2,
  11659. "icon": "icon_s9024",
  11660. "scriptName": "S9024",
  11661. "IDGroup": 9024,
  11662. "timelineName": "Boss_BeiHaiGui_TD",
  11663. "cd": 1.0,
  11664. "addcd": 0.0,
  11665. "SkillType": 2,
  11666. "level": 1,
  11667. "effectValue": [
  11668. 50.0,
  11669. 10.0,
  11670. 3.0
  11671. ],
  11672. "PromoteLan": 0
  11673. },
  11674. {
  11675. "ID": 90241,
  11676. "PieceID": 0,
  11677. "power": 150.0,
  11678. "name": 711,
  11679. "dec": 721,
  11680. "attribute": 2,
  11681. "icon": "icon_s9024",
  11682. "scriptName": "S9024",
  11683. "IDGroup": 9024,
  11684. "timelineName": "Boss_BeiHaiGui_TD",
  11685. "cd": 1.0,
  11686. "addcd": 0.0,
  11687. "SkillType": 2,
  11688. "level": 2,
  11689. "effectValue": [
  11690. 50.0,
  11691. 10.0,
  11692. 3.0
  11693. ],
  11694. "PromoteLan": 0
  11695. },
  11696. {
  11697. "ID": 90242,
  11698. "PieceID": 0,
  11699. "power": 225.0,
  11700. "name": 711,
  11701. "dec": 721,
  11702. "attribute": 2,
  11703. "icon": "icon_s9024",
  11704. "scriptName": "S9024",
  11705. "IDGroup": 9024,
  11706. "timelineName": "Boss_BeiHaiGui_TD",
  11707. "cd": 1.0,
  11708. "addcd": 0.0,
  11709. "SkillType": 2,
  11710. "level": 3,
  11711. "effectValue": [
  11712. 50.0,
  11713. 10.0,
  11714. 3.0
  11715. ],
  11716. "PromoteLan": 0
  11717. },
  11718. {
  11719. "ID": 90243,
  11720. "PieceID": 0,
  11721. "power": 337.5,
  11722. "name": 711,
  11723. "dec": 721,
  11724. "attribute": 2,
  11725. "icon": "icon_s9024",
  11726. "scriptName": "S9024",
  11727. "IDGroup": 9024,
  11728. "timelineName": "Boss_BeiHaiGui_TD",
  11729. "cd": 1.0,
  11730. "addcd": 0.0,
  11731. "SkillType": 2,
  11732. "level": 4,
  11733. "effectValue": [
  11734. 50.0,
  11735. 10.0,
  11736. 3.0
  11737. ],
  11738. "PromoteLan": 0
  11739. },
  11740. {
  11741. "ID": 90244,
  11742. "PieceID": 0,
  11743. "power": 506.25,
  11744. "name": 711,
  11745. "dec": 721,
  11746. "attribute": 2,
  11747. "icon": "icon_s9024",
  11748. "scriptName": "S9024",
  11749. "IDGroup": 9024,
  11750. "timelineName": "Boss_BeiHaiGui_TD",
  11751. "cd": 1.0,
  11752. "addcd": 0.0,
  11753. "SkillType": 2,
  11754. "level": 5,
  11755. "effectValue": [
  11756. 50.0,
  11757. 10.0,
  11758. 3.0
  11759. ],
  11760. "PromoteLan": 0
  11761. },
  11762. {
  11763. "ID": 90245,
  11764. "PieceID": 0,
  11765. "power": 759.375,
  11766. "name": 711,
  11767. "dec": 721,
  11768. "attribute": 2,
  11769. "icon": "icon_s9024",
  11770. "scriptName": "S9024",
  11771. "IDGroup": 9024,
  11772. "timelineName": "Boss_BeiHaiGui_TD",
  11773. "cd": 1.0,
  11774. "addcd": 0.0,
  11775. "SkillType": 2,
  11776. "level": 6,
  11777. "effectValue": [
  11778. 50.0,
  11779. 10.0,
  11780. 3.0
  11781. ],
  11782. "PromoteLan": 0
  11783. },
  11784. {
  11785. "ID": 90610,
  11786. "PieceID": 0,
  11787. "power": 100.0,
  11788. "name": 711,
  11789. "dec": 721,
  11790. "attribute": 2,
  11791. "icon": "icon_s9061",
  11792. "scriptName": "S9061",
  11793. "IDGroup": 9061,
  11794. "timelineName": "Boss_Tree_TD",
  11795. "cd": 1.0,
  11796. "addcd": 0.0,
  11797. "SkillType": 2,
  11798. "level": 1,
  11799. "effectValue": [
  11800. 200.0,
  11801. 2.0
  11802. ],
  11803. "PromoteLan": 0
  11804. },
  11805. {
  11806. "ID": 90611,
  11807. "PieceID": 0,
  11808. "power": 150.0,
  11809. "name": 711,
  11810. "dec": 721,
  11811. "attribute": 2,
  11812. "icon": "icon_s9061",
  11813. "scriptName": "S9061",
  11814. "IDGroup": 9061,
  11815. "timelineName": "Boss_Tree_TD",
  11816. "cd": 1.0,
  11817. "addcd": 0.0,
  11818. "SkillType": 2,
  11819. "level": 2,
  11820. "effectValue": [
  11821. 230.0,
  11822. 2.0
  11823. ],
  11824. "PromoteLan": 0
  11825. },
  11826. {
  11827. "ID": 90612,
  11828. "PieceID": 0,
  11829. "power": 225.0,
  11830. "name": 711,
  11831. "dec": 721,
  11832. "attribute": 2,
  11833. "icon": "icon_s9061",
  11834. "scriptName": "S9061",
  11835. "IDGroup": 9061,
  11836. "timelineName": "Boss_Tree_TD",
  11837. "cd": 1.0,
  11838. "addcd": 0.0,
  11839. "SkillType": 2,
  11840. "level": 3,
  11841. "effectValue": [
  11842. 260.0,
  11843. 2.0
  11844. ],
  11845. "PromoteLan": 0
  11846. },
  11847. {
  11848. "ID": 90613,
  11849. "PieceID": 0,
  11850. "power": 337.5,
  11851. "name": 711,
  11852. "dec": 721,
  11853. "attribute": 2,
  11854. "icon": "icon_s9061",
  11855. "scriptName": "S9061",
  11856. "IDGroup": 9061,
  11857. "timelineName": "Boss_Tree_TD",
  11858. "cd": 1.0,
  11859. "addcd": 0.0,
  11860. "SkillType": 2,
  11861. "level": 4,
  11862. "effectValue": [
  11863. 290.0,
  11864. 2.0
  11865. ],
  11866. "PromoteLan": 0
  11867. },
  11868. {
  11869. "ID": 90614,
  11870. "PieceID": 0,
  11871. "power": 506.25,
  11872. "name": 711,
  11873. "dec": 721,
  11874. "attribute": 2,
  11875. "icon": "icon_s9061",
  11876. "scriptName": "S9061",
  11877. "IDGroup": 9061,
  11878. "timelineName": "Boss_Tree_TD",
  11879. "cd": 1.0,
  11880. "addcd": 0.0,
  11881. "SkillType": 2,
  11882. "level": 5,
  11883. "effectValue": [
  11884. 320.0,
  11885. 2.0
  11886. ],
  11887. "PromoteLan": 0
  11888. },
  11889. {
  11890. "ID": 90615,
  11891. "PieceID": 0,
  11892. "power": 759.375,
  11893. "name": 711,
  11894. "dec": 721,
  11895. "attribute": 2,
  11896. "icon": "icon_s9061",
  11897. "scriptName": "S9061",
  11898. "IDGroup": 9061,
  11899. "timelineName": "Boss_Tree_TD",
  11900. "cd": 1.0,
  11901. "addcd": 0.0,
  11902. "SkillType": 2,
  11903. "level": 6,
  11904. "effectValue": [
  11905. 350.0,
  11906. 2.0
  11907. ],
  11908. "PromoteLan": 0
  11909. },
  11910. {
  11911. "ID": 90620,
  11912. "PieceID": 0,
  11913. "power": 100.0,
  11914. "name": 711,
  11915. "dec": 721,
  11916. "attribute": 2,
  11917. "icon": "icon_s9062",
  11918. "scriptName": "S9062",
  11919. "IDGroup": 9062,
  11920. "timelineName": "Boss_Tree_TD",
  11921. "cd": 1.0,
  11922. "addcd": 0.0,
  11923. "SkillType": 2,
  11924. "level": 1,
  11925. "effectValue": [
  11926. 80.0,
  11927. 30.0,
  11928. 20.0
  11929. ],
  11930. "PromoteLan": 0
  11931. },
  11932. {
  11933. "ID": 90621,
  11934. "PieceID": 0,
  11935. "power": 150.0,
  11936. "name": 711,
  11937. "dec": 721,
  11938. "attribute": 2,
  11939. "icon": "icon_s9062",
  11940. "scriptName": "S9062",
  11941. "IDGroup": 9062,
  11942. "timelineName": "Boss_Tree_TD",
  11943. "cd": 1.0,
  11944. "addcd": 0.0,
  11945. "SkillType": 2,
  11946. "level": 2,
  11947. "effectValue": [
  11948. 80.0,
  11949. 30.0,
  11950. 20.0
  11951. ],
  11952. "PromoteLan": 0
  11953. },
  11954. {
  11955. "ID": 90622,
  11956. "PieceID": 0,
  11957. "power": 225.0,
  11958. "name": 711,
  11959. "dec": 721,
  11960. "attribute": 2,
  11961. "icon": "icon_s9062",
  11962. "scriptName": "S9062",
  11963. "IDGroup": 9062,
  11964. "timelineName": "Boss_Tree_TD",
  11965. "cd": 1.0,
  11966. "addcd": 0.0,
  11967. "SkillType": 2,
  11968. "level": 3,
  11969. "effectValue": [
  11970. 80.0,
  11971. 30.0,
  11972. 20.0
  11973. ],
  11974. "PromoteLan": 0
  11975. },
  11976. {
  11977. "ID": 90623,
  11978. "PieceID": 0,
  11979. "power": 337.5,
  11980. "name": 711,
  11981. "dec": 721,
  11982. "attribute": 2,
  11983. "icon": "icon_s9062",
  11984. "scriptName": "S9062",
  11985. "IDGroup": 9062,
  11986. "timelineName": "Boss_Tree_TD",
  11987. "cd": 1.0,
  11988. "addcd": 0.0,
  11989. "SkillType": 2,
  11990. "level": 4,
  11991. "effectValue": [
  11992. 80.0,
  11993. 30.0,
  11994. 20.0
  11995. ],
  11996. "PromoteLan": 0
  11997. },
  11998. {
  11999. "ID": 90624,
  12000. "PieceID": 0,
  12001. "power": 506.25,
  12002. "name": 711,
  12003. "dec": 721,
  12004. "attribute": 2,
  12005. "icon": "icon_s9062",
  12006. "scriptName": "S9062",
  12007. "IDGroup": 9062,
  12008. "timelineName": "Boss_Tree_TD",
  12009. "cd": 1.0,
  12010. "addcd": 0.0,
  12011. "SkillType": 2,
  12012. "level": 5,
  12013. "effectValue": [
  12014. 80.0,
  12015. 30.0,
  12016. 20.0
  12017. ],
  12018. "PromoteLan": 0
  12019. },
  12020. {
  12021. "ID": 90625,
  12022. "PieceID": 0,
  12023. "power": 759.375,
  12024. "name": 711,
  12025. "dec": 721,
  12026. "attribute": 2,
  12027. "icon": "icon_s9062",
  12028. "scriptName": "S9062",
  12029. "IDGroup": 9062,
  12030. "timelineName": "Boss_Tree_TD",
  12031. "cd": 1.0,
  12032. "addcd": 0.0,
  12033. "SkillType": 2,
  12034. "level": 6,
  12035. "effectValue": [
  12036. 80.0,
  12037. 30.0,
  12038. 20.0
  12039. ],
  12040. "PromoteLan": 0
  12041. },
  12042. {
  12043. "ID": 90630,
  12044. "PieceID": 0,
  12045. "power": 100.0,
  12046. "name": 711,
  12047. "dec": 721,
  12048. "attribute": 2,
  12049. "icon": "icon_s9063",
  12050. "scriptName": "S9063",
  12051. "IDGroup": 9063,
  12052. "timelineName": "Boss_Tree_TD",
  12053. "cd": 1.0,
  12054. "addcd": 0.0,
  12055. "SkillType": 1,
  12056. "level": 1,
  12057. "effectValue": [
  12058. 1.0,
  12059. 150.0
  12060. ],
  12061. "intensifierIndex": [
  12062. 2
  12063. ],
  12064. "PromoteLan": 0
  12065. },
  12066. {
  12067. "ID": 90631,
  12068. "PieceID": 0,
  12069. "power": 150.0,
  12070. "name": 711,
  12071. "dec": 721,
  12072. "attribute": 2,
  12073. "icon": "icon_s9063",
  12074. "scriptName": "S9063",
  12075. "IDGroup": 9063,
  12076. "timelineName": "Boss_Tree_TD",
  12077. "cd": 1.0,
  12078. "addcd": 0.0,
  12079. "SkillType": 1,
  12080. "level": 2,
  12081. "effectValue": [
  12082. 1.0,
  12083. 170.0
  12084. ],
  12085. "intensifierIndex": [
  12086. 2
  12087. ],
  12088. "PromoteLan": 0
  12089. },
  12090. {
  12091. "ID": 90632,
  12092. "PieceID": 0,
  12093. "power": 225.0,
  12094. "name": 711,
  12095. "dec": 721,
  12096. "attribute": 2,
  12097. "icon": "icon_s9063",
  12098. "scriptName": "S9063",
  12099. "IDGroup": 9063,
  12100. "timelineName": "Boss_Tree_TD",
  12101. "cd": 1.0,
  12102. "addcd": 0.0,
  12103. "SkillType": 1,
  12104. "level": 3,
  12105. "effectValue": [
  12106. 1.0,
  12107. 180.0
  12108. ],
  12109. "intensifierIndex": [
  12110. 2
  12111. ],
  12112. "PromoteLan": 0
  12113. },
  12114. {
  12115. "ID": 90633,
  12116. "PieceID": 0,
  12117. "power": 337.5,
  12118. "name": 711,
  12119. "dec": 721,
  12120. "attribute": 2,
  12121. "icon": "icon_s9063",
  12122. "scriptName": "S9063",
  12123. "IDGroup": 9063,
  12124. "timelineName": "Boss_Tree_TD",
  12125. "cd": 1.0,
  12126. "addcd": 0.0,
  12127. "SkillType": 1,
  12128. "level": 4,
  12129. "effectValue": [
  12130. 1.0,
  12131. 190.0
  12132. ],
  12133. "intensifierIndex": [
  12134. 2
  12135. ],
  12136. "PromoteLan": 0
  12137. },
  12138. {
  12139. "ID": 90634,
  12140. "PieceID": 0,
  12141. "power": 506.25,
  12142. "name": 711,
  12143. "dec": 721,
  12144. "attribute": 2,
  12145. "icon": "icon_s9063",
  12146. "scriptName": "S9063",
  12147. "IDGroup": 9063,
  12148. "timelineName": "Boss_Tree_TD",
  12149. "cd": 1.0,
  12150. "addcd": 0.0,
  12151. "SkillType": 1,
  12152. "level": 5,
  12153. "effectValue": [
  12154. 1.0,
  12155. 200.0
  12156. ],
  12157. "intensifierIndex": [
  12158. 2
  12159. ],
  12160. "PromoteLan": 0
  12161. },
  12162. {
  12163. "ID": 90635,
  12164. "PieceID": 0,
  12165. "power": 759.375,
  12166. "name": 711,
  12167. "dec": 721,
  12168. "attribute": 2,
  12169. "icon": "icon_s9063",
  12170. "scriptName": "S9063",
  12171. "IDGroup": 9063,
  12172. "timelineName": "Boss_Tree_TD",
  12173. "cd": 1.0,
  12174. "addcd": 0.0,
  12175. "SkillType": 1,
  12176. "level": 6,
  12177. "effectValue": [
  12178. 1.0,
  12179. 220.0
  12180. ],
  12181. "intensifierIndex": [
  12182. 2
  12183. ],
  12184. "PromoteLan": 0
  12185. },
  12186. {
  12187. "ID": 90640,
  12188. "PieceID": 0,
  12189. "power": 100.0,
  12190. "name": 711,
  12191. "dec": 721,
  12192. "attribute": 2,
  12193. "icon": "icon_s9064",
  12194. "scriptName": "S9064",
  12195. "IDGroup": 9064,
  12196. "timelineName": "Boss_Tree_TD",
  12197. "cd": 3.0,
  12198. "addcd": 0.0,
  12199. "SkillType": 1,
  12200. "level": 1,
  12201. "effectValue": [
  12202. 6.0,
  12203. 90.0
  12204. ],
  12205. "PromoteLan": 0
  12206. },
  12207. {
  12208. "ID": 90641,
  12209. "PieceID": 0,
  12210. "power": 150.0,
  12211. "name": 711,
  12212. "dec": 721,
  12213. "attribute": 2,
  12214. "icon": "icon_s9064",
  12215. "scriptName": "S9064",
  12216. "IDGroup": 9064,
  12217. "timelineName": "Boss_Tree_TD",
  12218. "cd": 3.0,
  12219. "addcd": 0.0,
  12220. "SkillType": 1,
  12221. "level": 2,
  12222. "effectValue": [
  12223. 6.0,
  12224. 90.0
  12225. ],
  12226. "PromoteLan": 0
  12227. },
  12228. {
  12229. "ID": 90642,
  12230. "PieceID": 0,
  12231. "power": 225.0,
  12232. "name": 711,
  12233. "dec": 721,
  12234. "attribute": 2,
  12235. "icon": "icon_s9064",
  12236. "scriptName": "S9064",
  12237. "IDGroup": 9064,
  12238. "timelineName": "Boss_Tree_TD",
  12239. "cd": 3.0,
  12240. "addcd": 0.0,
  12241. "SkillType": 1,
  12242. "level": 3,
  12243. "effectValue": [
  12244. 6.0,
  12245. 90.0
  12246. ],
  12247. "PromoteLan": 0
  12248. },
  12249. {
  12250. "ID": 90643,
  12251. "PieceID": 0,
  12252. "power": 337.5,
  12253. "name": 711,
  12254. "dec": 721,
  12255. "attribute": 2,
  12256. "icon": "icon_s9064",
  12257. "scriptName": "S9064",
  12258. "IDGroup": 9064,
  12259. "timelineName": "Boss_Tree_TD",
  12260. "cd": 3.0,
  12261. "addcd": 0.0,
  12262. "SkillType": 1,
  12263. "level": 4,
  12264. "effectValue": [
  12265. 6.0,
  12266. 90.0
  12267. ],
  12268. "PromoteLan": 0
  12269. },
  12270. {
  12271. "ID": 90644,
  12272. "PieceID": 0,
  12273. "power": 506.25,
  12274. "name": 711,
  12275. "dec": 721,
  12276. "attribute": 2,
  12277. "icon": "icon_s9064",
  12278. "scriptName": "S9064",
  12279. "IDGroup": 9064,
  12280. "timelineName": "Boss_Tree_TD",
  12281. "cd": 3.0,
  12282. "addcd": 0.0,
  12283. "SkillType": 1,
  12284. "level": 5,
  12285. "effectValue": [
  12286. 6.0,
  12287. 90.0
  12288. ],
  12289. "PromoteLan": 0
  12290. },
  12291. {
  12292. "ID": 90645,
  12293. "PieceID": 0,
  12294. "power": 759.375,
  12295. "name": 711,
  12296. "dec": 721,
  12297. "attribute": 2,
  12298. "icon": "icon_s9064",
  12299. "scriptName": "S9064",
  12300. "IDGroup": 9064,
  12301. "timelineName": "Boss_Tree_TD",
  12302. "cd": 3.0,
  12303. "addcd": 0.0,
  12304. "SkillType": 1,
  12305. "level": 6,
  12306. "effectValue": [
  12307. 6.0,
  12308. 90.0
  12309. ],
  12310. "PromoteLan": 0
  12311. },
  12312. {
  12313. "ID": 90710,
  12314. "PieceID": 0,
  12315. "power": 100.0,
  12316. "name": 711,
  12317. "dec": 721,
  12318. "attribute": 2,
  12319. "icon": "icon_s9071",
  12320. "scriptName": "S9071",
  12321. "IDGroup": 9071,
  12322. "timelineName": "Boss_Tree_xiao_TD",
  12323. "cd": 1.0,
  12324. "addcd": 1.0,
  12325. "SkillType": 1,
  12326. "level": 1,
  12327. "effectValue": [
  12328. 3.0,
  12329. 50.0
  12330. ],
  12331. "intensifierIndex": [
  12332. 2
  12333. ],
  12334. "PromoteLan": 0
  12335. },
  12336. {
  12337. "ID": 90711,
  12338. "PieceID": 0,
  12339. "power": 150.0,
  12340. "name": 711,
  12341. "dec": 721,
  12342. "attribute": 2,
  12343. "icon": "icon_s9071",
  12344. "scriptName": "S9071",
  12345. "IDGroup": 9071,
  12346. "timelineName": "Boss_Tree_xiao_TD",
  12347. "cd": 1.0,
  12348. "addcd": 1.0,
  12349. "SkillType": 1,
  12350. "level": 2,
  12351. "effectValue": [
  12352. 3.0,
  12353. 57.0
  12354. ],
  12355. "intensifierIndex": [
  12356. 2
  12357. ],
  12358. "PromoteLan": 0
  12359. },
  12360. {
  12361. "ID": 90712,
  12362. "PieceID": 0,
  12363. "power": 225.0,
  12364. "name": 711,
  12365. "dec": 721,
  12366. "attribute": 2,
  12367. "icon": "icon_s9071",
  12368. "scriptName": "S9071",
  12369. "IDGroup": 9071,
  12370. "timelineName": "Boss_Tree_xiao_TD",
  12371. "cd": 1.0,
  12372. "addcd": 1.0,
  12373. "SkillType": 1,
  12374. "level": 3,
  12375. "effectValue": [
  12376. 3.0,
  12377. 60.0
  12378. ],
  12379. "intensifierIndex": [
  12380. 2
  12381. ],
  12382. "PromoteLan": 0
  12383. },
  12384. {
  12385. "ID": 90713,
  12386. "PieceID": 0,
  12387. "power": 337.5,
  12388. "name": 711,
  12389. "dec": 721,
  12390. "attribute": 2,
  12391. "icon": "icon_s9071",
  12392. "scriptName": "S9071",
  12393. "IDGroup": 9071,
  12394. "timelineName": "Boss_Tree_xiao_TD",
  12395. "cd": 1.0,
  12396. "addcd": 1.0,
  12397. "SkillType": 1,
  12398. "level": 4,
  12399. "effectValue": [
  12400. 3.0,
  12401. 63.0
  12402. ],
  12403. "intensifierIndex": [
  12404. 2
  12405. ],
  12406. "PromoteLan": 0
  12407. },
  12408. {
  12409. "ID": 90714,
  12410. "PieceID": 0,
  12411. "power": 506.25,
  12412. "name": 711,
  12413. "dec": 721,
  12414. "attribute": 2,
  12415. "icon": "icon_s9071",
  12416. "scriptName": "S9071",
  12417. "IDGroup": 9071,
  12418. "timelineName": "Boss_Tree_xiao_TD",
  12419. "cd": 1.0,
  12420. "addcd": 1.0,
  12421. "SkillType": 1,
  12422. "level": 5,
  12423. "effectValue": [
  12424. 3.0,
  12425. 67.0
  12426. ],
  12427. "intensifierIndex": [
  12428. 2
  12429. ],
  12430. "PromoteLan": 0
  12431. },
  12432. {
  12433. "ID": 90715,
  12434. "PieceID": 0,
  12435. "power": 759.375,
  12436. "name": 711,
  12437. "dec": 721,
  12438. "attribute": 2,
  12439. "icon": "icon_s9071",
  12440. "scriptName": "S9071",
  12441. "IDGroup": 9071,
  12442. "timelineName": "Boss_Tree_xiao_TD",
  12443. "cd": 1.0,
  12444. "addcd": 1.0,
  12445. "SkillType": 1,
  12446. "level": 6,
  12447. "effectValue": [
  12448. 3.0,
  12449. 73.0
  12450. ],
  12451. "intensifierIndex": [
  12452. 2
  12453. ],
  12454. "PromoteLan": 0
  12455. },
  12456. {
  12457. "ID": 90510,
  12458. "PieceID": 0,
  12459. "power": 100.0,
  12460. "name": 711,
  12461. "dec": 721,
  12462. "attribute": 2,
  12463. "icon": "icon_s9051",
  12464. "scriptName": "S9051",
  12465. "IDGroup": 9051,
  12466. "timelineName": "Boss_QiongQi_TD",
  12467. "cd": 1.0,
  12468. "addcd": 1.0,
  12469. "SkillType": 1,
  12470. "level": 1,
  12471. "effectValue": [
  12472. 3.0,
  12473. 25.0
  12474. ],
  12475. "intensifierIndex": [
  12476. 2
  12477. ],
  12478. "PromoteLan": 0
  12479. },
  12480. {
  12481. "ID": 90511,
  12482. "PieceID": 0,
  12483. "power": 150.0,
  12484. "name": 711,
  12485. "dec": 721,
  12486. "attribute": 2,
  12487. "icon": "icon_s9051",
  12488. "scriptName": "S9051",
  12489. "IDGroup": 9051,
  12490. "timelineName": "Boss_QiongQi_TD",
  12491. "cd": 1.0,
  12492. "addcd": 1.0,
  12493. "SkillType": 1,
  12494. "level": 2,
  12495. "effectValue": [
  12496. 3.0,
  12497. 28.0
  12498. ],
  12499. "intensifierIndex": [
  12500. 2
  12501. ],
  12502. "PromoteLan": 0
  12503. },
  12504. {
  12505. "ID": 90512,
  12506. "PieceID": 0,
  12507. "power": 225.0,
  12508. "name": 711,
  12509. "dec": 721,
  12510. "attribute": 2,
  12511. "icon": "icon_s9051",
  12512. "scriptName": "S9051",
  12513. "IDGroup": 9051,
  12514. "timelineName": "Boss_QiongQi_TD",
  12515. "cd": 1.0,
  12516. "addcd": 1.0,
  12517. "SkillType": 1,
  12518. "level": 3,
  12519. "effectValue": [
  12520. 3.0,
  12521. 30.0
  12522. ],
  12523. "intensifierIndex": [
  12524. 2
  12525. ],
  12526. "PromoteLan": 0
  12527. },
  12528. {
  12529. "ID": 90513,
  12530. "PieceID": 0,
  12531. "power": 337.5,
  12532. "name": 711,
  12533. "dec": 721,
  12534. "attribute": 2,
  12535. "icon": "icon_s9051",
  12536. "scriptName": "S9051",
  12537. "IDGroup": 9051,
  12538. "timelineName": "Boss_QiongQi_TD",
  12539. "cd": 1.0,
  12540. "addcd": 1.0,
  12541. "SkillType": 1,
  12542. "level": 4,
  12543. "effectValue": [
  12544. 3.0,
  12545. 32.0
  12546. ],
  12547. "intensifierIndex": [
  12548. 2
  12549. ],
  12550. "PromoteLan": 0
  12551. },
  12552. {
  12553. "ID": 90514,
  12554. "PieceID": 0,
  12555. "power": 506.25,
  12556. "name": 711,
  12557. "dec": 721,
  12558. "attribute": 2,
  12559. "icon": "icon_s9051",
  12560. "scriptName": "S9051",
  12561. "IDGroup": 9051,
  12562. "timelineName": "Boss_QiongQi_TD",
  12563. "cd": 1.0,
  12564. "addcd": 1.0,
  12565. "SkillType": 1,
  12566. "level": 5,
  12567. "effectValue": [
  12568. 3.0,
  12569. 33.0
  12570. ],
  12571. "intensifierIndex": [
  12572. 2
  12573. ],
  12574. "PromoteLan": 0
  12575. },
  12576. {
  12577. "ID": 90515,
  12578. "PieceID": 0,
  12579. "power": 759.375,
  12580. "name": 711,
  12581. "dec": 721,
  12582. "attribute": 2,
  12583. "icon": "icon_s9051",
  12584. "scriptName": "S9051",
  12585. "IDGroup": 9051,
  12586. "timelineName": "Boss_QiongQi_TD",
  12587. "cd": 1.0,
  12588. "addcd": 1.0,
  12589. "SkillType": 1,
  12590. "level": 6,
  12591. "effectValue": [
  12592. 3.0,
  12593. 37.0
  12594. ],
  12595. "intensifierIndex": [
  12596. 2
  12597. ],
  12598. "PromoteLan": 0
  12599. },
  12600. {
  12601. "ID": 90520,
  12602. "PieceID": 0,
  12603. "power": 100.0,
  12604. "name": 711,
  12605. "dec": 721,
  12606. "attribute": 2,
  12607. "icon": "icon_s9052",
  12608. "scriptName": "S9052",
  12609. "IDGroup": 9052,
  12610. "timelineName": "Boss_QiongQi_TD",
  12611. "cd": 1.0,
  12612. "addcd": 1.0,
  12613. "SkillType": 1,
  12614. "level": 1,
  12615. "effectValue": [
  12616. 5.0,
  12617. 29.0
  12618. ],
  12619. "intensifierIndex": [
  12620. 2
  12621. ],
  12622. "PromoteLan": 0
  12623. },
  12624. {
  12625. "ID": 90521,
  12626. "PieceID": 0,
  12627. "power": 150.0,
  12628. "name": 711,
  12629. "dec": 721,
  12630. "attribute": 2,
  12631. "icon": "icon_s9052",
  12632. "scriptName": "S9052",
  12633. "IDGroup": 9052,
  12634. "timelineName": "Boss_QiongQi_TD",
  12635. "cd": 1.0,
  12636. "addcd": 1.0,
  12637. "SkillType": 1,
  12638. "level": 2,
  12639. "effectValue": [
  12640. 5.0,
  12641. 32.0
  12642. ],
  12643. "intensifierIndex": [
  12644. 2
  12645. ],
  12646. "PromoteLan": 0
  12647. },
  12648. {
  12649. "ID": 90522,
  12650. "PieceID": 0,
  12651. "power": 225.0,
  12652. "name": 711,
  12653. "dec": 721,
  12654. "attribute": 2,
  12655. "icon": "icon_s9052",
  12656. "scriptName": "S9052",
  12657. "IDGroup": 9052,
  12658. "timelineName": "Boss_QiongQi_TD",
  12659. "cd": 1.0,
  12660. "addcd": 1.0,
  12661. "SkillType": 1,
  12662. "level": 3,
  12663. "effectValue": [
  12664. 5.0,
  12665. 38.0
  12666. ],
  12667. "intensifierIndex": [
  12668. 2
  12669. ],
  12670. "PromoteLan": 0
  12671. },
  12672. {
  12673. "ID": 90523,
  12674. "PieceID": 0,
  12675. "power": 337.5,
  12676. "name": 711,
  12677. "dec": 721,
  12678. "attribute": 2,
  12679. "icon": "icon_s9052",
  12680. "scriptName": "S9052",
  12681. "IDGroup": 9052,
  12682. "timelineName": "Boss_QiongQi_TD",
  12683. "cd": 1.0,
  12684. "addcd": 1.0,
  12685. "SkillType": 1,
  12686. "level": 4,
  12687. "effectValue": [
  12688. 5.0,
  12689. 44.0
  12690. ],
  12691. "intensifierIndex": [
  12692. 2
  12693. ],
  12694. "PromoteLan": 0
  12695. },
  12696. {
  12697. "ID": 90524,
  12698. "PieceID": 0,
  12699. "power": 506.25,
  12700. "name": 711,
  12701. "dec": 721,
  12702. "attribute": 2,
  12703. "icon": "icon_s9052",
  12704. "scriptName": "S9052",
  12705. "IDGroup": 9052,
  12706. "timelineName": "Boss_QiongQi_TD",
  12707. "cd": 1.0,
  12708. "addcd": 1.0,
  12709. "SkillType": 1,
  12710. "level": 5,
  12711. "effectValue": [
  12712. 5.0,
  12713. 49.0
  12714. ],
  12715. "intensifierIndex": [
  12716. 2
  12717. ],
  12718. "PromoteLan": 0
  12719. },
  12720. {
  12721. "ID": 90525,
  12722. "PieceID": 0,
  12723. "power": 759.375,
  12724. "name": 711,
  12725. "dec": 721,
  12726. "attribute": 2,
  12727. "icon": "icon_s9052",
  12728. "scriptName": "S9052",
  12729. "IDGroup": 9052,
  12730. "timelineName": "Boss_QiongQi_TD",
  12731. "cd": 1.0,
  12732. "addcd": 1.0,
  12733. "SkillType": 1,
  12734. "level": 6,
  12735. "effectValue": [
  12736. 5.0,
  12737. 57.0
  12738. ],
  12739. "intensifierIndex": [
  12740. 2
  12741. ],
  12742. "PromoteLan": 0
  12743. },
  12744. {
  12745. "ID": 90530,
  12746. "PieceID": 0,
  12747. "power": 100.0,
  12748. "name": 711,
  12749. "dec": 721,
  12750. "attribute": 2,
  12751. "icon": "icon_s9053",
  12752. "scriptName": "S9053",
  12753. "IDGroup": 9053,
  12754. "timelineName": "Boss_QiongQi_TD",
  12755. "cd": 3.0,
  12756. "addcd": 1.0,
  12757. "SkillType": 1,
  12758. "level": 1,
  12759. "effectValue": [
  12760. 50.0,
  12761. 3.0,
  12762. 5.0,
  12763. 81.0,
  12764. 10.0,
  12765. 10.0
  12766. ],
  12767. "intensifierIndex": [
  12768. 4
  12769. ],
  12770. "PromoteLan": 0
  12771. },
  12772. {
  12773. "ID": 90531,
  12774. "PieceID": 0,
  12775. "power": 150.0,
  12776. "name": 711,
  12777. "dec": 721,
  12778. "attribute": 2,
  12779. "icon": "icon_s9053",
  12780. "scriptName": "S9053",
  12781. "IDGroup": 9053,
  12782. "timelineName": "Boss_QiongQi_TD",
  12783. "cd": 3.0,
  12784. "addcd": 1.0,
  12785. "SkillType": 1,
  12786. "level": 2,
  12787. "effectValue": [
  12788. 50.0,
  12789. 3.0,
  12790. 5.0,
  12791. 93.0,
  12792. 10.0,
  12793. 10.0
  12794. ],
  12795. "intensifierIndex": [
  12796. 4
  12797. ],
  12798. "PromoteLan": 0
  12799. },
  12800. {
  12801. "ID": 90532,
  12802. "PieceID": 0,
  12803. "power": 225.0,
  12804. "name": 711,
  12805. "dec": 721,
  12806. "attribute": 2,
  12807. "icon": "icon_s9053",
  12808. "scriptName": "S9053",
  12809. "IDGroup": 9053,
  12810. "timelineName": "Boss_QiongQi_TD",
  12811. "cd": 3.0,
  12812. "addcd": 1.0,
  12813. "SkillType": 1,
  12814. "level": 3,
  12815. "effectValue": [
  12816. 50.0,
  12817. 3.0,
  12818. 5.0,
  12819. 108.0,
  12820. 10.0,
  12821. 10.0
  12822. ],
  12823. "intensifierIndex": [
  12824. 4
  12825. ],
  12826. "PromoteLan": 0
  12827. },
  12828. {
  12829. "ID": 90533,
  12830. "PieceID": 0,
  12831. "power": 337.5,
  12832. "name": 711,
  12833. "dec": 721,
  12834. "attribute": 2,
  12835. "icon": "icon_s9053",
  12836. "scriptName": "S9053",
  12837. "IDGroup": 9053,
  12838. "timelineName": "Boss_QiongQi_TD",
  12839. "cd": 3.0,
  12840. "addcd": 1.0,
  12841. "SkillType": 1,
  12842. "level": 4,
  12843. "effectValue": [
  12844. 50.0,
  12845. 3.0,
  12846. 5.0,
  12847. 123.0,
  12848. 10.0,
  12849. 10.0
  12850. ],
  12851. "intensifierIndex": [
  12852. 4
  12853. ],
  12854. "PromoteLan": 0
  12855. },
  12856. {
  12857. "ID": 90534,
  12858. "PieceID": 0,
  12859. "power": 506.25,
  12860. "name": 711,
  12861. "dec": 721,
  12862. "attribute": 2,
  12863. "icon": "icon_s9053",
  12864. "scriptName": "S9053",
  12865. "IDGroup": 9053,
  12866. "timelineName": "Boss_QiongQi_TD",
  12867. "cd": 3.0,
  12868. "addcd": 1.0,
  12869. "SkillType": 1,
  12870. "level": 5,
  12871. "effectValue": [
  12872. 50.0,
  12873. 3.0,
  12874. 5.0,
  12875. 141.0,
  12876. 10.0,
  12877. 10.0
  12878. ],
  12879. "intensifierIndex": [
  12880. 4
  12881. ],
  12882. "PromoteLan": 0
  12883. },
  12884. {
  12885. "ID": 90535,
  12886. "PieceID": 0,
  12887. "power": 759.375,
  12888. "name": 711,
  12889. "dec": 721,
  12890. "attribute": 2,
  12891. "icon": "icon_s9053",
  12892. "scriptName": "S9053",
  12893. "IDGroup": 9053,
  12894. "timelineName": "Boss_QiongQi_TD",
  12895. "cd": 3.0,
  12896. "addcd": 1.0,
  12897. "SkillType": 1,
  12898. "level": 6,
  12899. "effectValue": [
  12900. 50.0,
  12901. 3.0,
  12902. 5.0,
  12903. 162.0,
  12904. 10.0,
  12905. 10.0
  12906. ],
  12907. "intensifierIndex": [
  12908. 4
  12909. ],
  12910. "PromoteLan": 0
  12911. },
  12912. {
  12913. "ID": 90540,
  12914. "PieceID": 0,
  12915. "power": 100.0,
  12916. "name": 711,
  12917. "dec": 721,
  12918. "attribute": 2,
  12919. "icon": "icon_s9054",
  12920. "scriptName": "S9054",
  12921. "IDGroup": 9054,
  12922. "timelineName": "Boss_QiongQi_TD",
  12923. "cd": 1.0,
  12924. "addcd": 1.0,
  12925. "SkillType": 2,
  12926. "level": 1,
  12927. "effectValue": [
  12928. 3.0,
  12929. 30.0
  12930. ],
  12931. "intensifierIndex": [
  12932. 2
  12933. ],
  12934. "PromoteLan": 0
  12935. },
  12936. {
  12937. "ID": 90541,
  12938. "PieceID": 0,
  12939. "power": 150.0,
  12940. "name": 711,
  12941. "dec": 721,
  12942. "attribute": 2,
  12943. "icon": "icon_s9054",
  12944. "scriptName": "S9054",
  12945. "IDGroup": 9054,
  12946. "timelineName": "Boss_QiongQi_TD",
  12947. "cd": 1.0,
  12948. "addcd": 1.0,
  12949. "SkillType": 2,
  12950. "level": 2,
  12951. "effectValue": [
  12952. 3.0,
  12953. 40.0
  12954. ],
  12955. "intensifierIndex": [
  12956. 2
  12957. ],
  12958. "PromoteLan": 0
  12959. },
  12960. {
  12961. "ID": 90542,
  12962. "PieceID": 0,
  12963. "power": 225.0,
  12964. "name": 711,
  12965. "dec": 721,
  12966. "attribute": 2,
  12967. "icon": "icon_s9054",
  12968. "scriptName": "S9054",
  12969. "IDGroup": 9054,
  12970. "timelineName": "Boss_QiongQi_TD",
  12971. "cd": 1.0,
  12972. "addcd": 1.0,
  12973. "SkillType": 2,
  12974. "level": 3,
  12975. "effectValue": [
  12976. 3.0,
  12977. 50.0
  12978. ],
  12979. "intensifierIndex": [
  12980. 2
  12981. ],
  12982. "PromoteLan": 0
  12983. },
  12984. {
  12985. "ID": 90543,
  12986. "PieceID": 0,
  12987. "power": 337.5,
  12988. "name": 711,
  12989. "dec": 721,
  12990. "attribute": 2,
  12991. "icon": "icon_s9054",
  12992. "scriptName": "S9054",
  12993. "IDGroup": 9054,
  12994. "timelineName": "Boss_QiongQi_TD",
  12995. "cd": 1.0,
  12996. "addcd": 1.0,
  12997. "SkillType": 2,
  12998. "level": 4,
  12999. "effectValue": [
  13000. 3.0,
  13001. 60.0
  13002. ],
  13003. "intensifierIndex": [
  13004. 2
  13005. ],
  13006. "PromoteLan": 0
  13007. },
  13008. {
  13009. "ID": 90544,
  13010. "PieceID": 0,
  13011. "power": 506.25,
  13012. "name": 711,
  13013. "dec": 721,
  13014. "attribute": 2,
  13015. "icon": "icon_s9054",
  13016. "scriptName": "S9054",
  13017. "IDGroup": 9054,
  13018. "timelineName": "Boss_QiongQi_TD",
  13019. "cd": 1.0,
  13020. "addcd": 1.0,
  13021. "SkillType": 2,
  13022. "level": 5,
  13023. "effectValue": [
  13024. 3.0,
  13025. 70.0
  13026. ],
  13027. "intensifierIndex": [
  13028. 2
  13029. ],
  13030. "PromoteLan": 0
  13031. },
  13032. {
  13033. "ID": 90545,
  13034. "PieceID": 0,
  13035. "power": 759.375,
  13036. "name": 711,
  13037. "dec": 721,
  13038. "attribute": 2,
  13039. "icon": "icon_s9054",
  13040. "scriptName": "S9054",
  13041. "IDGroup": 9054,
  13042. "timelineName": "Boss_QiongQi_TD",
  13043. "cd": 1.0,
  13044. "addcd": 1.0,
  13045. "SkillType": 2,
  13046. "level": 6,
  13047. "effectValue": [
  13048. 3.0,
  13049. 80.0
  13050. ],
  13051. "intensifierIndex": [
  13052. 2
  13053. ],
  13054. "PromoteLan": 0
  13055. },
  13056. {
  13057. "ID": 90310,
  13058. "PieceID": 0,
  13059. "power": 100.0,
  13060. "name": 711,
  13061. "dec": 721,
  13062. "attribute": 2,
  13063. "icon": "icon_s9031",
  13064. "scriptName": "S9031",
  13065. "IDGroup": 9031,
  13066. "timelineName": "Gw_zhizhu_TD",
  13067. "cd": 1.0,
  13068. "addcd": 1.0,
  13069. "SkillType": 1,
  13070. "level": 1,
  13071. "effectValue": [
  13072. 3.0,
  13073. 47.0,
  13074. 30.0
  13075. ],
  13076. "intensifierIndex": [
  13077. 2
  13078. ],
  13079. "PromoteLan": 0
  13080. },
  13081. {
  13082. "ID": 90311,
  13083. "PieceID": 0,
  13084. "power": 150.0,
  13085. "name": 711,
  13086. "dec": 721,
  13087. "attribute": 2,
  13088. "icon": "icon_s9031",
  13089. "scriptName": "S9031",
  13090. "IDGroup": 9031,
  13091. "timelineName": "Gw_zhizhu_TD",
  13092. "cd": 1.0,
  13093. "addcd": 1.0,
  13094. "SkillType": 1,
  13095. "level": 2,
  13096. "effectValue": [
  13097. 3.0,
  13098. 53.0,
  13099. 35.0
  13100. ],
  13101. "intensifierIndex": [
  13102. 2
  13103. ],
  13104. "PromoteLan": 0
  13105. },
  13106. {
  13107. "ID": 90312,
  13108. "PieceID": 0,
  13109. "power": 225.0,
  13110. "name": 711,
  13111. "dec": 721,
  13112. "attribute": 2,
  13113. "icon": "icon_s9031",
  13114. "scriptName": "S9031",
  13115. "IDGroup": 9031,
  13116. "timelineName": "Gw_zhizhu_TD",
  13117. "cd": 1.0,
  13118. "addcd": 1.0,
  13119. "SkillType": 1,
  13120. "level": 3,
  13121. "effectValue": [
  13122. 3.0,
  13123. 63.0,
  13124. 40.0
  13125. ],
  13126. "intensifierIndex": [
  13127. 2
  13128. ],
  13129. "PromoteLan": 0
  13130. },
  13131. {
  13132. "ID": 90313,
  13133. "PieceID": 0,
  13134. "power": 337.5,
  13135. "name": 711,
  13136. "dec": 721,
  13137. "attribute": 2,
  13138. "icon": "icon_s9031",
  13139. "scriptName": "S9031",
  13140. "IDGroup": 9031,
  13141. "timelineName": "Gw_zhizhu_TD",
  13142. "cd": 1.0,
  13143. "addcd": 1.0,
  13144. "SkillType": 1,
  13145. "level": 4,
  13146. "effectValue": [
  13147. 3.0,
  13148. 72.0,
  13149. 45.0
  13150. ],
  13151. "intensifierIndex": [
  13152. 2
  13153. ],
  13154. "PromoteLan": 0
  13155. },
  13156. {
  13157. "ID": 90314,
  13158. "PieceID": 0,
  13159. "power": 506.25,
  13160. "name": 711,
  13161. "dec": 721,
  13162. "attribute": 2,
  13163. "icon": "icon_s9031",
  13164. "scriptName": "S9031",
  13165. "IDGroup": 9031,
  13166. "timelineName": "Gw_zhizhu_TD",
  13167. "cd": 1.0,
  13168. "addcd": 1.0,
  13169. "SkillType": 1,
  13170. "level": 5,
  13171. "effectValue": [
  13172. 3.0,
  13173. 81.0,
  13174. 50.0
  13175. ],
  13176. "intensifierIndex": [
  13177. 2
  13178. ],
  13179. "PromoteLan": 0
  13180. },
  13181. {
  13182. "ID": 90315,
  13183. "PieceID": 0,
  13184. "power": 759.375,
  13185. "name": 711,
  13186. "dec": 721,
  13187. "attribute": 2,
  13188. "icon": "icon_s9031",
  13189. "scriptName": "S9031",
  13190. "IDGroup": 9031,
  13191. "timelineName": "Gw_zhizhu_TD",
  13192. "cd": 1.0,
  13193. "addcd": 1.0,
  13194. "SkillType": 1,
  13195. "level": 6,
  13196. "effectValue": [
  13197. 3.0,
  13198. 94.0,
  13199. 55.0
  13200. ],
  13201. "intensifierIndex": [
  13202. 2
  13203. ],
  13204. "PromoteLan": 0
  13205. },
  13206. {
  13207. "ID": 90320,
  13208. "PieceID": 0,
  13209. "power": 100.0,
  13210. "name": 711,
  13211. "dec": 721,
  13212. "attribute": 2,
  13213. "icon": "icon_s9032",
  13214. "scriptName": "S9032",
  13215. "IDGroup": 9032,
  13216. "timelineName": "Gw_zhizhu_TD",
  13217. "cd": 1.0,
  13218. "addcd": 1.0,
  13219. "SkillType": 1,
  13220. "level": 1,
  13221. "effectValue": [
  13222. 3.0,
  13223. 50.0
  13224. ],
  13225. "intensifierIndex": [
  13226. 2
  13227. ],
  13228. "PromoteLan": 0
  13229. },
  13230. {
  13231. "ID": 90321,
  13232. "PieceID": 0,
  13233. "power": 150.0,
  13234. "name": 711,
  13235. "dec": 721,
  13236. "attribute": 2,
  13237. "icon": "icon_s9032",
  13238. "scriptName": "S9032",
  13239. "IDGroup": 9032,
  13240. "timelineName": "Gw_zhizhu_TD",
  13241. "cd": 1.0,
  13242. "addcd": 1.0,
  13243. "SkillType": 1,
  13244. "level": 2,
  13245. "effectValue": [
  13246. 3.0,
  13247. 57.0
  13248. ],
  13249. "intensifierIndex": [
  13250. 2
  13251. ],
  13252. "PromoteLan": 0
  13253. },
  13254. {
  13255. "ID": 90322,
  13256. "PieceID": 0,
  13257. "power": 225.0,
  13258. "name": 711,
  13259. "dec": 721,
  13260. "attribute": 2,
  13261. "icon": "icon_s9032",
  13262. "scriptName": "S9032",
  13263. "IDGroup": 9032,
  13264. "timelineName": "Gw_zhizhu_TD",
  13265. "cd": 1.0,
  13266. "addcd": 1.0,
  13267. "SkillType": 1,
  13268. "level": 3,
  13269. "effectValue": [
  13270. 3.0,
  13271. 67.0
  13272. ],
  13273. "intensifierIndex": [
  13274. 2
  13275. ],
  13276. "PromoteLan": 0
  13277. },
  13278. {
  13279. "ID": 90323,
  13280. "PieceID": 0,
  13281. "power": 337.5,
  13282. "name": 711,
  13283. "dec": 721,
  13284. "attribute": 2,
  13285. "icon": "icon_s9032",
  13286. "scriptName": "S9032",
  13287. "IDGroup": 9032,
  13288. "timelineName": "Gw_zhizhu_TD",
  13289. "cd": 1.0,
  13290. "addcd": 1.0,
  13291. "SkillType": 1,
  13292. "level": 4,
  13293. "effectValue": [
  13294. 3.0,
  13295. 77.0
  13296. ],
  13297. "intensifierIndex": [
  13298. 2
  13299. ],
  13300. "PromoteLan": 0
  13301. },
  13302. {
  13303. "ID": 90324,
  13304. "PieceID": 0,
  13305. "power": 506.25,
  13306. "name": 711,
  13307. "dec": 721,
  13308. "attribute": 2,
  13309. "icon": "icon_s9032",
  13310. "scriptName": "S9032",
  13311. "IDGroup": 9032,
  13312. "timelineName": "Gw_zhizhu_TD",
  13313. "cd": 1.0,
  13314. "addcd": 1.0,
  13315. "SkillType": 1,
  13316. "level": 5,
  13317. "effectValue": [
  13318. 3.0,
  13319. 87.0
  13320. ],
  13321. "intensifierIndex": [
  13322. 2
  13323. ],
  13324. "PromoteLan": 0
  13325. },
  13326. {
  13327. "ID": 90325,
  13328. "PieceID": 0,
  13329. "power": 759.375,
  13330. "name": 711,
  13331. "dec": 721,
  13332. "attribute": 2,
  13333. "icon": "icon_s9032",
  13334. "scriptName": "S9032",
  13335. "IDGroup": 9032,
  13336. "timelineName": "Gw_zhizhu_TD",
  13337. "cd": 1.0,
  13338. "addcd": 1.0,
  13339. "SkillType": 1,
  13340. "level": 6,
  13341. "effectValue": [
  13342. 3.0,
  13343. 100.0
  13344. ],
  13345. "intensifierIndex": [
  13346. 2
  13347. ],
  13348. "PromoteLan": 0
  13349. },
  13350. {
  13351. "ID": 90330,
  13352. "PieceID": 0,
  13353. "power": 100.0,
  13354. "name": 711,
  13355. "dec": 721,
  13356. "attribute": 2,
  13357. "icon": "icon_s9033",
  13358. "scriptName": "S9033",
  13359. "IDGroup": 9033,
  13360. "timelineName": "Gw_zhizhu_TD",
  13361. "cd": 1.0,
  13362. "addcd": 1.0,
  13363. "SkillType": 1,
  13364. "level": 1,
  13365. "effectValue": [
  13366. 3.0,
  13367. 50.0
  13368. ],
  13369. "intensifierIndex": [
  13370. 2
  13371. ],
  13372. "PromoteLan": 0
  13373. },
  13374. {
  13375. "ID": 90331,
  13376. "PieceID": 0,
  13377. "power": 150.0,
  13378. "name": 711,
  13379. "dec": 721,
  13380. "attribute": 2,
  13381. "icon": "icon_s9033",
  13382. "scriptName": "S9033",
  13383. "IDGroup": 9033,
  13384. "timelineName": "Gw_zhizhu_TD",
  13385. "cd": 1.0,
  13386. "addcd": 1.0,
  13387. "SkillType": 1,
  13388. "level": 2,
  13389. "effectValue": [
  13390. 3.0,
  13391. 57.0
  13392. ],
  13393. "intensifierIndex": [
  13394. 2
  13395. ],
  13396. "PromoteLan": 0
  13397. },
  13398. {
  13399. "ID": 90332,
  13400. "PieceID": 0,
  13401. "power": 225.0,
  13402. "name": 711,
  13403. "dec": 721,
  13404. "attribute": 2,
  13405. "icon": "icon_s9033",
  13406. "scriptName": "S9033",
  13407. "IDGroup": 9033,
  13408. "timelineName": "Gw_zhizhu_TD",
  13409. "cd": 1.0,
  13410. "addcd": 1.0,
  13411. "SkillType": 1,
  13412. "level": 3,
  13413. "effectValue": [
  13414. 3.0,
  13415. 60.0
  13416. ],
  13417. "intensifierIndex": [
  13418. 2
  13419. ],
  13420. "PromoteLan": 0
  13421. },
  13422. {
  13423. "ID": 90333,
  13424. "PieceID": 0,
  13425. "power": 337.5,
  13426. "name": 711,
  13427. "dec": 721,
  13428. "attribute": 2,
  13429. "icon": "icon_s9033",
  13430. "scriptName": "S9033",
  13431. "IDGroup": 9033,
  13432. "timelineName": "Gw_zhizhu_TD",
  13433. "cd": 1.0,
  13434. "addcd": 1.0,
  13435. "SkillType": 1,
  13436. "level": 4,
  13437. "effectValue": [
  13438. 3.0,
  13439. 63.0
  13440. ],
  13441. "intensifierIndex": [
  13442. 2
  13443. ],
  13444. "PromoteLan": 0
  13445. },
  13446. {
  13447. "ID": 90334,
  13448. "PieceID": 0,
  13449. "power": 506.25,
  13450. "name": 711,
  13451. "dec": 721,
  13452. "attribute": 2,
  13453. "icon": "icon_s9033",
  13454. "scriptName": "S9033",
  13455. "IDGroup": 9033,
  13456. "timelineName": "Gw_zhizhu_TD",
  13457. "cd": 1.0,
  13458. "addcd": 1.0,
  13459. "SkillType": 1,
  13460. "level": 5,
  13461. "effectValue": [
  13462. 3.0,
  13463. 67.0
  13464. ],
  13465. "intensifierIndex": [
  13466. 2
  13467. ],
  13468. "PromoteLan": 0
  13469. },
  13470. {
  13471. "ID": 90335,
  13472. "PieceID": 0,
  13473. "power": 759.375,
  13474. "name": 711,
  13475. "dec": 721,
  13476. "attribute": 2,
  13477. "icon": "icon_s9033",
  13478. "scriptName": "S9033",
  13479. "IDGroup": 9033,
  13480. "timelineName": "Gw_zhizhu_TD",
  13481. "cd": 1.0,
  13482. "addcd": 1.0,
  13483. "SkillType": 1,
  13484. "level": 6,
  13485. "effectValue": [
  13486. 3.0,
  13487. 73.0
  13488. ],
  13489. "intensifierIndex": [
  13490. 2
  13491. ],
  13492. "PromoteLan": 0
  13493. },
  13494. {
  13495. "ID": 90410,
  13496. "PieceID": 0,
  13497. "power": 100.0,
  13498. "name": 711,
  13499. "dec": 721,
  13500. "attribute": 2,
  13501. "icon": "icon_s9041",
  13502. "scriptName": "S9041",
  13503. "IDGroup": 9041,
  13504. "timelineName": "Boss_ShuGuai_TD",
  13505. "cd": 1.0,
  13506. "addcd": 1.0,
  13507. "SkillType": 1,
  13508. "level": 1,
  13509. "effectValue": [
  13510. 3.0,
  13511. 46.0
  13512. ],
  13513. "intensifierIndex": [
  13514. 2
  13515. ],
  13516. "PromoteLan": 0
  13517. },
  13518. {
  13519. "ID": 90411,
  13520. "PieceID": 0,
  13521. "power": 150.0,
  13522. "name": 711,
  13523. "dec": 721,
  13524. "attribute": 2,
  13525. "icon": "icon_s9041",
  13526. "scriptName": "S9041",
  13527. "IDGroup": 9041,
  13528. "timelineName": "Boss_ShuGuai_TD",
  13529. "cd": 1.0,
  13530. "addcd": 1.0,
  13531. "SkillType": 1,
  13532. "level": 2,
  13533. "effectValue": [
  13534. 3.0,
  13535. 52.0
  13536. ],
  13537. "intensifierIndex": [
  13538. 2
  13539. ],
  13540. "PromoteLan": 0
  13541. },
  13542. {
  13543. "ID": 90412,
  13544. "PieceID": 0,
  13545. "power": 225.0,
  13546. "name": 711,
  13547. "dec": 721,
  13548. "attribute": 2,
  13549. "icon": "icon_s9041",
  13550. "scriptName": "S9041",
  13551. "IDGroup": 9041,
  13552. "timelineName": "Boss_ShuGuai_TD",
  13553. "cd": 1.0,
  13554. "addcd": 1.0,
  13555. "SkillType": 1,
  13556. "level": 3,
  13557. "effectValue": [
  13558. 3.0,
  13559. 61.0
  13560. ],
  13561. "intensifierIndex": [
  13562. 2
  13563. ],
  13564. "PromoteLan": 0
  13565. },
  13566. {
  13567. "ID": 90413,
  13568. "PieceID": 0,
  13569. "power": 337.5,
  13570. "name": 711,
  13571. "dec": 721,
  13572. "attribute": 2,
  13573. "icon": "icon_s9041",
  13574. "scriptName": "S9041",
  13575. "IDGroup": 9041,
  13576. "timelineName": "Boss_ShuGuai_TD",
  13577. "cd": 1.0,
  13578. "addcd": 1.0,
  13579. "SkillType": 1,
  13580. "level": 4,
  13581. "effectValue": [
  13582. 3.0,
  13583. 70.0
  13584. ],
  13585. "intensifierIndex": [
  13586. 2
  13587. ],
  13588. "PromoteLan": 0
  13589. },
  13590. {
  13591. "ID": 90414,
  13592. "PieceID": 0,
  13593. "power": 506.25,
  13594. "name": 711,
  13595. "dec": 721,
  13596. "attribute": 2,
  13597. "icon": "icon_s9041",
  13598. "scriptName": "S9041",
  13599. "IDGroup": 9041,
  13600. "timelineName": "Boss_ShuGuai_TD",
  13601. "cd": 1.0,
  13602. "addcd": 1.0,
  13603. "SkillType": 1,
  13604. "level": 5,
  13605. "effectValue": [
  13606. 3.0,
  13607. 79.0
  13608. ],
  13609. "intensifierIndex": [
  13610. 2
  13611. ],
  13612. "PromoteLan": 0
  13613. },
  13614. {
  13615. "ID": 90415,
  13616. "PieceID": 0,
  13617. "power": 759.375,
  13618. "name": 711,
  13619. "dec": 721,
  13620. "attribute": 2,
  13621. "icon": "icon_s9041",
  13622. "scriptName": "S9041",
  13623. "IDGroup": 9041,
  13624. "timelineName": "Boss_ShuGuai_TD",
  13625. "cd": 1.0,
  13626. "addcd": 1.0,
  13627. "SkillType": 1,
  13628. "level": 6,
  13629. "effectValue": [
  13630. 3.0,
  13631. 91.0
  13632. ],
  13633. "intensifierIndex": [
  13634. 2
  13635. ],
  13636. "PromoteLan": 0
  13637. },
  13638. {
  13639. "ID": 90420,
  13640. "PieceID": 0,
  13641. "power": 100.0,
  13642. "name": 711,
  13643. "dec": 721,
  13644. "attribute": 2,
  13645. "icon": "icon_s9042",
  13646. "scriptName": "S9042",
  13647. "IDGroup": 9042,
  13648. "timelineName": "Boss_ShuGuai_TD",
  13649. "cd": 1.0,
  13650. "addcd": 1.0,
  13651. "SkillType": 1,
  13652. "level": 1,
  13653. "effectValue": [
  13654. 3.0,
  13655. 50.0
  13656. ],
  13657. "intensifierIndex": [
  13658. 2
  13659. ],
  13660. "PromoteLan": 0
  13661. },
  13662. {
  13663. "ID": 90421,
  13664. "PieceID": 0,
  13665. "power": 150.0,
  13666. "name": 711,
  13667. "dec": 721,
  13668. "attribute": 2,
  13669. "icon": "icon_s9042",
  13670. "scriptName": "S9042",
  13671. "IDGroup": 9042,
  13672. "timelineName": "Boss_ShuGuai_TD",
  13673. "cd": 1.0,
  13674. "addcd": 1.0,
  13675. "SkillType": 1,
  13676. "level": 2,
  13677. "effectValue": [
  13678. 3.0,
  13679. 57.0
  13680. ],
  13681. "intensifierIndex": [
  13682. 2
  13683. ],
  13684. "PromoteLan": 0
  13685. },
  13686. {
  13687. "ID": 90422,
  13688. "PieceID": 0,
  13689. "power": 225.0,
  13690. "name": 711,
  13691. "dec": 721,
  13692. "attribute": 2,
  13693. "icon": "icon_s9042",
  13694. "scriptName": "S9042",
  13695. "IDGroup": 9042,
  13696. "timelineName": "Boss_ShuGuai_TD",
  13697. "cd": 1.0,
  13698. "addcd": 1.0,
  13699. "SkillType": 1,
  13700. "level": 3,
  13701. "effectValue": [
  13702. 3.0,
  13703. 60.0
  13704. ],
  13705. "intensifierIndex": [
  13706. 2
  13707. ],
  13708. "PromoteLan": 0
  13709. },
  13710. {
  13711. "ID": 90423,
  13712. "PieceID": 0,
  13713. "power": 337.5,
  13714. "name": 711,
  13715. "dec": 721,
  13716. "attribute": 2,
  13717. "icon": "icon_s9042",
  13718. "scriptName": "S9042",
  13719. "IDGroup": 9042,
  13720. "timelineName": "Boss_ShuGuai_TD",
  13721. "cd": 1.0,
  13722. "addcd": 1.0,
  13723. "SkillType": 1,
  13724. "level": 4,
  13725. "effectValue": [
  13726. 3.0,
  13727. 63.0
  13728. ],
  13729. "intensifierIndex": [
  13730. 2
  13731. ],
  13732. "PromoteLan": 0
  13733. },
  13734. {
  13735. "ID": 90424,
  13736. "PieceID": 0,
  13737. "power": 506.25,
  13738. "name": 711,
  13739. "dec": 721,
  13740. "attribute": 2,
  13741. "icon": "icon_s9042",
  13742. "scriptName": "S9042",
  13743. "IDGroup": 9042,
  13744. "timelineName": "Boss_ShuGuai_TD",
  13745. "cd": 1.0,
  13746. "addcd": 1.0,
  13747. "SkillType": 1,
  13748. "level": 5,
  13749. "effectValue": [
  13750. 3.0,
  13751. 67.0
  13752. ],
  13753. "intensifierIndex": [
  13754. 2
  13755. ],
  13756. "PromoteLan": 0
  13757. },
  13758. {
  13759. "ID": 90425,
  13760. "PieceID": 0,
  13761. "power": 759.375,
  13762. "name": 711,
  13763. "dec": 721,
  13764. "attribute": 2,
  13765. "icon": "icon_s9042",
  13766. "scriptName": "S9042",
  13767. "IDGroup": 9042,
  13768. "timelineName": "Boss_ShuGuai_TD",
  13769. "cd": 1.0,
  13770. "addcd": 1.0,
  13771. "SkillType": 1,
  13772. "level": 6,
  13773. "effectValue": [
  13774. 3.0,
  13775. 73.0
  13776. ],
  13777. "intensifierIndex": [
  13778. 2
  13779. ],
  13780. "PromoteLan": 0
  13781. },
  13782. {
  13783. "ID": 90430,
  13784. "PieceID": 0,
  13785. "power": 100.0,
  13786. "name": 711,
  13787. "dec": 721,
  13788. "attribute": 2,
  13789. "icon": "icon_s9043",
  13790. "scriptName": "S9043",
  13791. "IDGroup": 9043,
  13792. "timelineName": "Boss_ShuGuai_TD",
  13793. "cd": 1.0,
  13794. "addcd": 1.0,
  13795. "SkillType": 1,
  13796. "level": 1,
  13797. "effectValue": [
  13798. 2.0,
  13799. 24.0
  13800. ],
  13801. "intensifierIndex": [
  13802. 2
  13803. ],
  13804. "PromoteLan": 0
  13805. },
  13806. {
  13807. "ID": 90431,
  13808. "PieceID": 0,
  13809. "power": 150.0,
  13810. "name": 711,
  13811. "dec": 721,
  13812. "attribute": 2,
  13813. "icon": "icon_s9043",
  13814. "scriptName": "S9043",
  13815. "IDGroup": 9043,
  13816. "timelineName": "Boss_ShuGuai_TD",
  13817. "cd": 1.0,
  13818. "addcd": 1.0,
  13819. "SkillType": 1,
  13820. "level": 2,
  13821. "effectValue": [
  13822. 2.0,
  13823. 27.0
  13824. ],
  13825. "intensifierIndex": [
  13826. 2
  13827. ],
  13828. "PromoteLan": 0
  13829. },
  13830. {
  13831. "ID": 90432,
  13832. "PieceID": 0,
  13833. "power": 225.0,
  13834. "name": 711,
  13835. "dec": 721,
  13836. "attribute": 2,
  13837. "icon": "icon_s9043",
  13838. "scriptName": "S9043",
  13839. "IDGroup": 9043,
  13840. "timelineName": "Boss_ShuGuai_TD",
  13841. "cd": 1.0,
  13842. "addcd": 1.0,
  13843. "SkillType": 1,
  13844. "level": 3,
  13845. "effectValue": [
  13846. 2.0,
  13847. 31.0
  13848. ],
  13849. "intensifierIndex": [
  13850. 2
  13851. ],
  13852. "PromoteLan": 0
  13853. },
  13854. {
  13855. "ID": 90433,
  13856. "PieceID": 0,
  13857. "power": 337.5,
  13858. "name": 711,
  13859. "dec": 721,
  13860. "attribute": 2,
  13861. "icon": "icon_s9043",
  13862. "scriptName": "S9043",
  13863. "IDGroup": 9043,
  13864. "timelineName": "Boss_ShuGuai_TD",
  13865. "cd": 1.0,
  13866. "addcd": 1.0,
  13867. "SkillType": 1,
  13868. "level": 4,
  13869. "effectValue": [
  13870. 2.0,
  13871. 36.0
  13872. ],
  13873. "intensifierIndex": [
  13874. 2
  13875. ],
  13876. "PromoteLan": 0
  13877. },
  13878. {
  13879. "ID": 90434,
  13880. "PieceID": 0,
  13881. "power": 506.25,
  13882. "name": 711,
  13883. "dec": 721,
  13884. "attribute": 2,
  13885. "icon": "icon_s9043",
  13886. "scriptName": "S9043",
  13887. "IDGroup": 9043,
  13888. "timelineName": "Boss_ShuGuai_TD",
  13889. "cd": 1.0,
  13890. "addcd": 1.0,
  13891. "SkillType": 1,
  13892. "level": 5,
  13893. "effectValue": [
  13894. 2.0,
  13895. 41.0
  13896. ],
  13897. "intensifierIndex": [
  13898. 2
  13899. ],
  13900. "PromoteLan": 0
  13901. },
  13902. {
  13903. "ID": 90435,
  13904. "PieceID": 0,
  13905. "power": 759.375,
  13906. "name": 711,
  13907. "dec": 721,
  13908. "attribute": 2,
  13909. "icon": "icon_s9043",
  13910. "scriptName": "S9043",
  13911. "IDGroup": 9043,
  13912. "timelineName": "Boss_ShuGuai_TD",
  13913. "cd": 1.0,
  13914. "addcd": 1.0,
  13915. "SkillType": 1,
  13916. "level": 6,
  13917. "effectValue": [
  13918. 2.0,
  13919. 47.0
  13920. ],
  13921. "intensifierIndex": [
  13922. 2
  13923. ],
  13924. "PromoteLan": 0
  13925. },
  13926. {
  13927. "ID": 90440,
  13928. "PieceID": 0,
  13929. "power": 100.0,
  13930. "name": 711,
  13931. "dec": 721,
  13932. "attribute": 2,
  13933. "icon": "icon_s9044",
  13934. "scriptName": "S9044",
  13935. "IDGroup": 9044,
  13936. "timelineName": "Boss_ShuGuai_TD",
  13937. "cd": 3.0,
  13938. "addcd": 1.0,
  13939. "SkillType": 1,
  13940. "level": 1,
  13941. "effectValue": [
  13942. 1.0,
  13943. 450.0
  13944. ],
  13945. "intensifierIndex": [
  13946. 2
  13947. ],
  13948. "PromoteLan": 0
  13949. },
  13950. {
  13951. "ID": 90441,
  13952. "PieceID": 0,
  13953. "power": 150.0,
  13954. "name": 711,
  13955. "dec": 721,
  13956. "attribute": 2,
  13957. "icon": "icon_s9044",
  13958. "scriptName": "S9044",
  13959. "IDGroup": 9044,
  13960. "timelineName": "Boss_ShuGuai_TD",
  13961. "cd": 3.0,
  13962. "addcd": 1.0,
  13963. "SkillType": 1,
  13964. "level": 2,
  13965. "effectValue": [
  13966. 1.0,
  13967. 510.0
  13968. ],
  13969. "intensifierIndex": [
  13970. 2
  13971. ],
  13972. "PromoteLan": 0
  13973. },
  13974. {
  13975. "ID": 90442,
  13976. "PieceID": 0,
  13977. "power": 225.0,
  13978. "name": 711,
  13979. "dec": 721,
  13980. "attribute": 2,
  13981. "icon": "icon_s9044",
  13982. "scriptName": "S9044",
  13983. "IDGroup": 9044,
  13984. "timelineName": "Boss_ShuGuai_TD",
  13985. "cd": 3.0,
  13986. "addcd": 1.0,
  13987. "SkillType": 1,
  13988. "level": 3,
  13989. "effectValue": [
  13990. 1.0,
  13991. 600.0
  13992. ],
  13993. "intensifierIndex": [
  13994. 2
  13995. ],
  13996. "PromoteLan": 0
  13997. },
  13998. {
  13999. "ID": 90443,
  14000. "PieceID": 0,
  14001. "power": 337.5,
  14002. "name": 711,
  14003. "dec": 721,
  14004. "attribute": 2,
  14005. "icon": "icon_s9044",
  14006. "scriptName": "S9044",
  14007. "IDGroup": 9044,
  14008. "timelineName": "Boss_ShuGuai_TD",
  14009. "cd": 3.0,
  14010. "addcd": 1.0,
  14011. "SkillType": 1,
  14012. "level": 4,
  14013. "effectValue": [
  14014. 1.0,
  14015. 690.0
  14016. ],
  14017. "intensifierIndex": [
  14018. 2
  14019. ],
  14020. "PromoteLan": 0
  14021. },
  14022. {
  14023. "ID": 90444,
  14024. "PieceID": 0,
  14025. "power": 506.25,
  14026. "name": 711,
  14027. "dec": 721,
  14028. "attribute": 2,
  14029. "icon": "icon_s9044",
  14030. "scriptName": "S9044",
  14031. "IDGroup": 9044,
  14032. "timelineName": "Boss_ShuGuai_TD",
  14033. "cd": 3.0,
  14034. "addcd": 1.0,
  14035. "SkillType": 1,
  14036. "level": 5,
  14037. "effectValue": [
  14038. 1.0,
  14039. 780.0
  14040. ],
  14041. "intensifierIndex": [
  14042. 2
  14043. ],
  14044. "PromoteLan": 0
  14045. },
  14046. {
  14047. "ID": 90445,
  14048. "PieceID": 0,
  14049. "power": 759.375,
  14050. "name": 711,
  14051. "dec": 721,
  14052. "attribute": 2,
  14053. "icon": "icon_s9044",
  14054. "scriptName": "S9044",
  14055. "IDGroup": 9044,
  14056. "timelineName": "Boss_ShuGuai_TD",
  14057. "cd": 3.0,
  14058. "addcd": 1.0,
  14059. "SkillType": 1,
  14060. "level": 6,
  14061. "effectValue": [
  14062. 1.0,
  14063. 900.0
  14064. ],
  14065. "intensifierIndex": [
  14066. 2
  14067. ],
  14068. "PromoteLan": 0
  14069. },
  14070. {
  14071. "ID": 90910,
  14072. "PieceID": 0,
  14073. "power": 100.0,
  14074. "name": 711,
  14075. "dec": 721,
  14076. "attribute": 2,
  14077. "icon": "icon_s9091",
  14078. "scriptName": "S9091",
  14079. "IDGroup": 9091,
  14080. "timelineName": "gw_xianhei_TD",
  14081. "cd": 1.0,
  14082. "addcd": 1.0,
  14083. "SkillType": 1,
  14084. "level": 1,
  14085. "effectValue": [
  14086. 1.0,
  14087. 150.0
  14088. ],
  14089. "intensifierIndex": [
  14090. 2
  14091. ],
  14092. "PromoteLan": 0
  14093. },
  14094. {
  14095. "ID": 90911,
  14096. "PieceID": 0,
  14097. "power": 150.0,
  14098. "name": 711,
  14099. "dec": 721,
  14100. "attribute": 2,
  14101. "icon": "icon_s9091",
  14102. "scriptName": "S9091",
  14103. "IDGroup": 9091,
  14104. "timelineName": "gw_xianhei_TD",
  14105. "cd": 1.0,
  14106. "addcd": 1.0,
  14107. "SkillType": 1,
  14108. "level": 2,
  14109. "effectValue": [
  14110. 1.0,
  14111. 170.0
  14112. ],
  14113. "intensifierIndex": [
  14114. 2
  14115. ],
  14116. "PromoteLan": 0
  14117. },
  14118. {
  14119. "ID": 90912,
  14120. "PieceID": 0,
  14121. "power": 225.0,
  14122. "name": 711,
  14123. "dec": 721,
  14124. "attribute": 2,
  14125. "icon": "icon_s9091",
  14126. "scriptName": "S9091",
  14127. "IDGroup": 9091,
  14128. "timelineName": "gw_xianhei_TD",
  14129. "cd": 1.0,
  14130. "addcd": 1.0,
  14131. "SkillType": 1,
  14132. "level": 3,
  14133. "effectValue": [
  14134. 1.0,
  14135. 200.0
  14136. ],
  14137. "intensifierIndex": [
  14138. 2
  14139. ],
  14140. "PromoteLan": 0
  14141. },
  14142. {
  14143. "ID": 90913,
  14144. "PieceID": 0,
  14145. "power": 337.5,
  14146. "name": 711,
  14147. "dec": 721,
  14148. "attribute": 2,
  14149. "icon": "icon_s9091",
  14150. "scriptName": "S9091",
  14151. "IDGroup": 9091,
  14152. "timelineName": "gw_xianhei_TD",
  14153. "cd": 1.0,
  14154. "addcd": 1.0,
  14155. "SkillType": 1,
  14156. "level": 4,
  14157. "effectValue": [
  14158. 1.0,
  14159. 230.0
  14160. ],
  14161. "intensifierIndex": [
  14162. 2
  14163. ],
  14164. "PromoteLan": 0
  14165. },
  14166. {
  14167. "ID": 90914,
  14168. "PieceID": 0,
  14169. "power": 506.25,
  14170. "name": 711,
  14171. "dec": 721,
  14172. "attribute": 2,
  14173. "icon": "icon_s9091",
  14174. "scriptName": "S9091",
  14175. "IDGroup": 9091,
  14176. "timelineName": "gw_xianhei_TD",
  14177. "cd": 1.0,
  14178. "addcd": 1.0,
  14179. "SkillType": 1,
  14180. "level": 5,
  14181. "effectValue": [
  14182. 1.0,
  14183. 260.0
  14184. ],
  14185. "intensifierIndex": [
  14186. 2
  14187. ],
  14188. "PromoteLan": 0
  14189. },
  14190. {
  14191. "ID": 90915,
  14192. "PieceID": 0,
  14193. "power": 759.375,
  14194. "name": 711,
  14195. "dec": 721,
  14196. "attribute": 2,
  14197. "icon": "icon_s9091",
  14198. "scriptName": "S9091",
  14199. "IDGroup": 9091,
  14200. "timelineName": "gw_xianhei_TD",
  14201. "cd": 1.0,
  14202. "addcd": 1.0,
  14203. "SkillType": 1,
  14204. "level": 6,
  14205. "effectValue": [
  14206. 1.0,
  14207. 300.0
  14208. ],
  14209. "intensifierIndex": [
  14210. 2
  14211. ],
  14212. "PromoteLan": 0
  14213. },
  14214. {
  14215. "ID": 90920,
  14216. "PieceID": 0,
  14217. "power": 100.0,
  14218. "name": 711,
  14219. "dec": 721,
  14220. "attribute": 2,
  14221. "icon": "icon_s9092",
  14222. "scriptName": "S9092",
  14223. "IDGroup": 9092,
  14224. "timelineName": "gw_xianhei_TD",
  14225. "cd": 1.0,
  14226. "addcd": 1.0,
  14227. "SkillType": 1,
  14228. "level": 1,
  14229. "effectValue": [
  14230. 300.0
  14231. ],
  14232. "intensifierIndex": [
  14233. 1
  14234. ],
  14235. "PromoteLan": 0
  14236. },
  14237. {
  14238. "ID": 90921,
  14239. "PieceID": 0,
  14240. "power": 150.0,
  14241. "name": 711,
  14242. "dec": 721,
  14243. "attribute": 2,
  14244. "icon": "icon_s9092",
  14245. "scriptName": "S9092",
  14246. "IDGroup": 9092,
  14247. "timelineName": "gw_xianhei_TD",
  14248. "cd": 1.0,
  14249. "addcd": 1.0,
  14250. "SkillType": 1,
  14251. "level": 2,
  14252. "effectValue": [
  14253. 400.0
  14254. ],
  14255. "intensifierIndex": [
  14256. 1
  14257. ],
  14258. "PromoteLan": 0
  14259. },
  14260. {
  14261. "ID": 90922,
  14262. "PieceID": 0,
  14263. "power": 225.0,
  14264. "name": 711,
  14265. "dec": 721,
  14266. "attribute": 2,
  14267. "icon": "icon_s9092",
  14268. "scriptName": "S9092",
  14269. "IDGroup": 9092,
  14270. "timelineName": "gw_xianhei_TD",
  14271. "cd": 1.0,
  14272. "addcd": 1.0,
  14273. "SkillType": 1,
  14274. "level": 3,
  14275. "effectValue": [
  14276. 500.0
  14277. ],
  14278. "intensifierIndex": [
  14279. 1
  14280. ],
  14281. "PromoteLan": 0
  14282. },
  14283. {
  14284. "ID": 90923,
  14285. "PieceID": 0,
  14286. "power": 337.5,
  14287. "name": 711,
  14288. "dec": 721,
  14289. "attribute": 2,
  14290. "icon": "icon_s9092",
  14291. "scriptName": "S9092",
  14292. "IDGroup": 9092,
  14293. "timelineName": "gw_xianhei_TD",
  14294. "cd": 1.0,
  14295. "addcd": 1.0,
  14296. "SkillType": 1,
  14297. "level": 4,
  14298. "effectValue": [
  14299. 600.0
  14300. ],
  14301. "intensifierIndex": [
  14302. 1
  14303. ],
  14304. "PromoteLan": 0
  14305. },
  14306. {
  14307. "ID": 90924,
  14308. "PieceID": 0,
  14309. "power": 506.25,
  14310. "name": 711,
  14311. "dec": 721,
  14312. "attribute": 2,
  14313. "icon": "icon_s9092",
  14314. "scriptName": "S9092",
  14315. "IDGroup": 9092,
  14316. "timelineName": "gw_xianhei_TD",
  14317. "cd": 1.0,
  14318. "addcd": 1.0,
  14319. "SkillType": 1,
  14320. "level": 5,
  14321. "effectValue": [
  14322. 700.0
  14323. ],
  14324. "intensifierIndex": [
  14325. 1
  14326. ],
  14327. "PromoteLan": 0
  14328. },
  14329. {
  14330. "ID": 90925,
  14331. "PieceID": 0,
  14332. "power": 759.375,
  14333. "name": 711,
  14334. "dec": 721,
  14335. "attribute": 2,
  14336. "icon": "icon_s9092",
  14337. "scriptName": "S9092",
  14338. "IDGroup": 9092,
  14339. "timelineName": "gw_xianhei_TD",
  14340. "cd": 1.0,
  14341. "addcd": 1.0,
  14342. "SkillType": 1,
  14343. "level": 6,
  14344. "effectValue": [
  14345. 800.0
  14346. ],
  14347. "intensifierIndex": [
  14348. 1
  14349. ],
  14350. "PromoteLan": 0
  14351. },
  14352. {
  14353. "ID": 91010,
  14354. "PieceID": 0,
  14355. "power": 100.0,
  14356. "name": 711,
  14357. "dec": 721,
  14358. "attribute": 2,
  14359. "icon": "icon_s9101",
  14360. "scriptName": "S9101",
  14361. "IDGroup": 9101,
  14362. "timelineName": "gw_huli_TD",
  14363. "cd": 1.0,
  14364. "addcd": 1.0,
  14365. "SkillType": 1,
  14366. "level": 1,
  14367. "effectValue": [
  14368. 3.0,
  14369. 50.0
  14370. ],
  14371. "intensifierIndex": [
  14372. 2
  14373. ],
  14374. "PromoteLan": 0
  14375. },
  14376. {
  14377. "ID": 91011,
  14378. "PieceID": 0,
  14379. "power": 150.0,
  14380. "name": 711,
  14381. "dec": 721,
  14382. "attribute": 2,
  14383. "icon": "icon_s9101",
  14384. "scriptName": "S9101",
  14385. "IDGroup": 9101,
  14386. "timelineName": "gw_huli_TD",
  14387. "cd": 1.0,
  14388. "addcd": 1.0,
  14389. "SkillType": 1,
  14390. "level": 2,
  14391. "effectValue": [
  14392. 3.0,
  14393. 57.0
  14394. ],
  14395. "intensifierIndex": [
  14396. 2
  14397. ],
  14398. "PromoteLan": 0
  14399. },
  14400. {
  14401. "ID": 91012,
  14402. "PieceID": 0,
  14403. "power": 225.0,
  14404. "name": 711,
  14405. "dec": 721,
  14406. "attribute": 2,
  14407. "icon": "icon_s9101",
  14408. "scriptName": "S9101",
  14409. "IDGroup": 9101,
  14410. "timelineName": "gw_huli_TD",
  14411. "cd": 1.0,
  14412. "addcd": 1.0,
  14413. "SkillType": 1,
  14414. "level": 3,
  14415. "effectValue": [
  14416. 3.0,
  14417. 67.0
  14418. ],
  14419. "intensifierIndex": [
  14420. 2
  14421. ],
  14422. "PromoteLan": 0
  14423. },
  14424. {
  14425. "ID": 91013,
  14426. "PieceID": 0,
  14427. "power": 337.5,
  14428. "name": 711,
  14429. "dec": 721,
  14430. "attribute": 2,
  14431. "icon": "icon_s9101",
  14432. "scriptName": "S9101",
  14433. "IDGroup": 9101,
  14434. "timelineName": "gw_huli_TD",
  14435. "cd": 1.0,
  14436. "addcd": 1.0,
  14437. "SkillType": 1,
  14438. "level": 4,
  14439. "effectValue": [
  14440. 3.0,
  14441. 77.0
  14442. ],
  14443. "intensifierIndex": [
  14444. 2
  14445. ],
  14446. "PromoteLan": 0
  14447. },
  14448. {
  14449. "ID": 91014,
  14450. "PieceID": 0,
  14451. "power": 506.25,
  14452. "name": 711,
  14453. "dec": 721,
  14454. "attribute": 2,
  14455. "icon": "icon_s9101",
  14456. "scriptName": "S9101",
  14457. "IDGroup": 9101,
  14458. "timelineName": "gw_huli_TD",
  14459. "cd": 1.0,
  14460. "addcd": 1.0,
  14461. "SkillType": 1,
  14462. "level": 5,
  14463. "effectValue": [
  14464. 3.0,
  14465. 87.0
  14466. ],
  14467. "intensifierIndex": [
  14468. 2
  14469. ],
  14470. "PromoteLan": 0
  14471. },
  14472. {
  14473. "ID": 91015,
  14474. "PieceID": 0,
  14475. "power": 759.375,
  14476. "name": 711,
  14477. "dec": 721,
  14478. "attribute": 2,
  14479. "icon": "icon_s9101",
  14480. "scriptName": "S9101",
  14481. "IDGroup": 9101,
  14482. "timelineName": "gw_huli_TD",
  14483. "cd": 1.0,
  14484. "addcd": 1.0,
  14485. "SkillType": 1,
  14486. "level": 6,
  14487. "effectValue": [
  14488. 3.0,
  14489. 100.0
  14490. ],
  14491. "intensifierIndex": [
  14492. 2
  14493. ],
  14494. "PromoteLan": 0
  14495. },
  14496. {
  14497. "ID": 91020,
  14498. "PieceID": 0,
  14499. "power": 100.0,
  14500. "name": 711,
  14501. "dec": 721,
  14502. "attribute": 2,
  14503. "icon": "icon_s9102",
  14504. "scriptName": "S9102",
  14505. "IDGroup": 9102,
  14506. "timelineName": "gw_huli_TD",
  14507. "cd": 1.0,
  14508. "addcd": 1.0,
  14509. "SkillType": 1,
  14510. "level": 1,
  14511. "effectValue": [
  14512. 1.0
  14513. ],
  14514. "PromoteLan": 0
  14515. },
  14516. {
  14517. "ID": 91021,
  14518. "PieceID": 0,
  14519. "power": 150.0,
  14520. "name": 711,
  14521. "dec": 721,
  14522. "attribute": 2,
  14523. "icon": "icon_s9102",
  14524. "scriptName": "S9102",
  14525. "IDGroup": 9102,
  14526. "timelineName": "gw_huli_TD",
  14527. "cd": 1.0,
  14528. "addcd": 1.0,
  14529. "SkillType": 1,
  14530. "level": 2,
  14531. "effectValue": [
  14532. 1.0
  14533. ],
  14534. "PromoteLan": 0
  14535. },
  14536. {
  14537. "ID": 91022,
  14538. "PieceID": 0,
  14539. "power": 225.0,
  14540. "name": 711,
  14541. "dec": 721,
  14542. "attribute": 2,
  14543. "icon": "icon_s9102",
  14544. "scriptName": "S9102",
  14545. "IDGroup": 9102,
  14546. "timelineName": "gw_huli_TD",
  14547. "cd": 1.0,
  14548. "addcd": 1.0,
  14549. "SkillType": 1,
  14550. "level": 3,
  14551. "effectValue": [
  14552. 1.0
  14553. ],
  14554. "PromoteLan": 0
  14555. },
  14556. {
  14557. "ID": 91023,
  14558. "PieceID": 0,
  14559. "power": 337.5,
  14560. "name": 711,
  14561. "dec": 721,
  14562. "attribute": 2,
  14563. "icon": "icon_s9102",
  14564. "scriptName": "S9102",
  14565. "IDGroup": 9102,
  14566. "timelineName": "gw_huli_TD",
  14567. "cd": 1.0,
  14568. "addcd": 1.0,
  14569. "SkillType": 1,
  14570. "level": 4,
  14571. "effectValue": [
  14572. 1.0
  14573. ],
  14574. "PromoteLan": 0
  14575. },
  14576. {
  14577. "ID": 91024,
  14578. "PieceID": 0,
  14579. "power": 506.25,
  14580. "name": 711,
  14581. "dec": 721,
  14582. "attribute": 2,
  14583. "icon": "icon_s9102",
  14584. "scriptName": "S9102",
  14585. "IDGroup": 9102,
  14586. "timelineName": "gw_huli_TD",
  14587. "cd": 1.0,
  14588. "addcd": 1.0,
  14589. "SkillType": 1,
  14590. "level": 5,
  14591. "effectValue": [
  14592. 1.0
  14593. ],
  14594. "PromoteLan": 0
  14595. },
  14596. {
  14597. "ID": 91025,
  14598. "PieceID": 0,
  14599. "power": 759.375,
  14600. "name": 711,
  14601. "dec": 721,
  14602. "attribute": 2,
  14603. "icon": "icon_s9102",
  14604. "scriptName": "S9102",
  14605. "IDGroup": 9102,
  14606. "timelineName": "gw_huli_TD",
  14607. "cd": 1.0,
  14608. "addcd": 1.0,
  14609. "SkillType": 1,
  14610. "level": 6,
  14611. "effectValue": [
  14612. 1.0
  14613. ],
  14614. "PromoteLan": 0
  14615. }
  14616. ]
  14617. }