SkillConfig.json 196 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097509850995100510151025103510451055106510751085109511051115112511351145115511651175118511951205121512251235124512551265127512851295130513151325133513451355136513751385139514051415142514351445145514651475148514951505151515251535154515551565157515851595160516151625163516451655166516751685169517051715172517351745175517651775178517951805181518251835184518551865187518851895190519151925193519451955196519751985199520052015202520352045205520652075208520952105211521252135214521552165217521852195220522152225223522452255226522752285229523052315232523352345235523652375238523952405241524252435244524552465247524852495250525152525253525452555256525752585259526052615262526352645265526652675268526952705271527252735274527552765277527852795280528152825283528452855286528752885289529052915292529352945295529652975298529953005301530253035304530553065307530853095310531153125313531453155316531753185319532053215322532353245325532653275328532953305331533253335334533553365337533853395340534153425343534453455346534753485349535053515352535353545355535653575358535953605361536253635364536553665367536853695370537153725373537453755376537753785379538053815382538353845385538653875388538953905391539253935394539553965397539853995400540154025403540454055406540754085409541054115412541354145415541654175418541954205421542254235424542554265427542854295430543154325433543454355436543754385439544054415442544354445445544654475448544954505451545254535454545554565457545854595460546154625463546454655466546754685469547054715472547354745475547654775478547954805481548254835484548554865487548854895490549154925493549454955496549754985499550055015502550355045505550655075508550955105511551255135514551555165517551855195520552155225523552455255526552755285529553055315532553355345535553655375538553955405541554255435544554555465547554855495550555155525553555455555556555755585559556055615562556355645565556655675568556955705571557255735574557555765577557855795580558155825583558455855586558755885589559055915592559355945595559655975598559956005601560256035604560556065607560856095610561156125613561456155616561756185619562056215622562356245625562656275628562956305631563256335634563556365637563856395640564156425643564456455646564756485649565056515652565356545655565656575658565956605661566256635664566556665667566856695670567156725673567456755676567756785679568056815682568356845685568656875688568956905691569256935694569556965697569856995700570157025703570457055706570757085709571057115712571357145715571657175718571957205721572257235724572557265727572857295730573157325733573457355736573757385739574057415742574357445745574657475748574957505751575257535754575557565757575857595760576157625763576457655766576757685769577057715772577357745775577657775778577957805781578257835784578557865787578857895790579157925793579457955796579757985799580058015802580358045805580658075808580958105811581258135814581558165817581858195820582158225823582458255826582758285829583058315832583358345835583658375838583958405841584258435844584558465847584858495850585158525853585458555856585758585859586058615862586358645865586658675868586958705871587258735874587558765877587858795880588158825883588458855886588758885889589058915892589358945895589658975898589959005901590259035904590559065907590859095910591159125913591459155916591759185919592059215922592359245925592659275928592959305931593259335934593559365937593859395940594159425943594459455946594759485949595059515952595359545955595659575958595959605961596259635964596559665967596859695970597159725973597459755976597759785979598059815982598359845985598659875988598959905991599259935994599559965997599859996000600160026003600460056006600760086009601060116012601360146015601660176018601960206021602260236024602560266027602860296030603160326033603460356036603760386039604060416042604360446045604660476048604960506051605260536054605560566057605860596060606160626063606460656066606760686069607060716072607360746075607660776078607960806081608260836084608560866087608860896090609160926093609460956096609760986099610061016102610361046105610661076108610961106111611261136114611561166117611861196120612161226123612461256126612761286129613061316132613361346135613661376138613961406141614261436144614561466147614861496150615161526153615461556156615761586159616061616162616361646165616661676168616961706171617261736174617561766177617861796180618161826183618461856186618761886189619061916192619361946195619661976198619962006201620262036204620562066207620862096210621162126213621462156216621762186219622062216222622362246225622662276228622962306231623262336234623562366237623862396240624162426243624462456246624762486249625062516252625362546255625662576258625962606261626262636264626562666267626862696270627162726273627462756276627762786279628062816282628362846285628662876288628962906291629262936294629562966297629862996300630163026303630463056306630763086309631063116312631363146315631663176318631963206321632263236324632563266327632863296330633163326333633463356336633763386339634063416342634363446345634663476348634963506351635263536354635563566357635863596360636163626363636463656366636763686369637063716372637363746375637663776378637963806381638263836384638563866387638863896390639163926393639463956396639763986399640064016402640364046405640664076408640964106411641264136414641564166417641864196420642164226423642464256426642764286429643064316432643364346435643664376438643964406441644264436444644564466447644864496450645164526453645464556456645764586459646064616462646364646465646664676468646964706471647264736474647564766477647864796480648164826483648464856486648764886489649064916492649364946495649664976498649965006501650265036504650565066507650865096510651165126513651465156516651765186519652065216522652365246525652665276528652965306531653265336534653565366537653865396540654165426543654465456546654765486549655065516552655365546555655665576558655965606561656265636564656565666567656865696570657165726573657465756576657765786579658065816582658365846585658665876588658965906591659265936594659565966597659865996600660166026603660466056606660766086609661066116612661366146615661666176618661966206621662266236624662566266627662866296630663166326633663466356636663766386639664066416642664366446645664666476648664966506651665266536654665566566657665866596660666166626663666466656666666766686669667066716672667366746675667666776678667966806681668266836684668566866687668866896690669166926693669466956696669766986699670067016702670367046705670667076708670967106711671267136714671567166717671867196720672167226723672467256726672767286729673067316732673367346735673667376738673967406741674267436744674567466747674867496750675167526753675467556756675767586759676067616762676367646765676667676768676967706771677267736774677567766777677867796780678167826783678467856786678767886789679067916792679367946795679667976798679968006801680268036804680568066807680868096810681168126813681468156816681768186819682068216822682368246825682668276828682968306831683268336834683568366837683868396840684168426843684468456846684768486849685068516852685368546855685668576858685968606861686268636864686568666867686868696870687168726873687468756876687768786879688068816882688368846885688668876888688968906891689268936894689568966897689868996900690169026903690469056906690769086909691069116912691369146915691669176918691969206921692269236924692569266927692869296930693169326933693469356936693769386939694069416942694369446945694669476948694969506951695269536954695569566957695869596960696169626963696469656966696769686969697069716972697369746975697669776978697969806981698269836984698569866987698869896990699169926993699469956996699769986999700070017002700370047005700670077008700970107011701270137014701570167017701870197020702170227023702470257026702770287029703070317032703370347035703670377038703970407041704270437044704570467047704870497050705170527053705470557056705770587059706070617062706370647065706670677068706970707071707270737074707570767077707870797080708170827083708470857086708770887089709070917092709370947095709670977098709971007101710271037104710571067107710871097110711171127113711471157116711771187119712071217122712371247125712671277128712971307131713271337134713571367137713871397140714171427143714471457146714771487149715071517152715371547155715671577158715971607161716271637164716571667167716871697170717171727173717471757176717771787179718071817182718371847185718671877188718971907191719271937194719571967197719871997200720172027203720472057206720772087209721072117212721372147215721672177218721972207221722272237224722572267227722872297230723172327233723472357236723772387239724072417242724372447245724672477248724972507251725272537254725572567257725872597260726172627263726472657266726772687269727072717272727372747275727672777278727972807281728272837284728572867287728872897290729172927293729472957296729772987299730073017302730373047305730673077308730973107311731273137314731573167317731873197320732173227323732473257326732773287329733073317332733373347335733673377338733973407341734273437344734573467347734873497350735173527353735473557356735773587359736073617362736373647365736673677368736973707371737273737374737573767377737873797380738173827383738473857386738773887389739073917392739373947395739673977398739974007401740274037404740574067407740874097410741174127413741474157416741774187419742074217422742374247425742674277428742974307431743274337434743574367437743874397440744174427443744474457446744774487449745074517452745374547455745674577458745974607461746274637464746574667467746874697470747174727473747474757476747774787479748074817482748374847485748674877488748974907491749274937494749574967497749874997500750175027503750475057506750775087509751075117512751375147515751675177518751975207521752275237524752575267527752875297530753175327533753475357536753775387539754075417542754375447545754675477548754975507551755275537554755575567557755875597560756175627563756475657566756775687569757075717572757375747575757675777578757975807581758275837584758575867587758875897590759175927593759475957596759775987599760076017602760376047605760676077608760976107611761276137614761576167617761876197620762176227623762476257626762776287629763076317632763376347635763676377638763976407641764276437644764576467647764876497650765176527653765476557656765776587659766076617662766376647665766676677668766976707671767276737674767576767677767876797680768176827683768476857686768776887689769076917692769376947695769676977698769977007701770277037704770577067707770877097710771177127713771477157716771777187719772077217722772377247725772677277728772977307731773277337734773577367737773877397740774177427743774477457746774777487749775077517752775377547755775677577758775977607761776277637764776577667767776877697770777177727773777477757776777777787779778077817782778377847785778677877788778977907791779277937794779577967797779877997800780178027803780478057806780778087809781078117812781378147815781678177818781978207821782278237824782578267827782878297830783178327833783478357836783778387839784078417842784378447845784678477848784978507851785278537854785578567857785878597860786178627863786478657866786778687869787078717872787378747875787678777878787978807881788278837884788578867887788878897890789178927893789478957896789778987899790079017902790379047905790679077908790979107911791279137914791579167917791879197920792179227923792479257926792779287929793079317932793379347935793679377938793979407941794279437944794579467947794879497950795179527953795479557956795779587959796079617962796379647965796679677968796979707971797279737974797579767977797879797980798179827983798479857986798779887989799079917992799379947995799679977998799980008001800280038004800580068007800880098010801180128013801480158016801780188019802080218022802380248025802680278028802980308031803280338034803580368037803880398040804180428043804480458046804780488049805080518052805380548055805680578058805980608061806280638064806580668067806880698070807180728073807480758076807780788079808080818082808380848085808680878088808980908091809280938094809580968097809880998100810181028103810481058106810781088109811081118112811381148115811681178118811981208121812281238124812581268127812881298130813181328133813481358136813781388139814081418142814381448145814681478148814981508151815281538154815581568157815881598160816181628163816481658166816781688169817081718172817381748175817681778178817981808181818281838184818581868187818881898190819181928193819481958196819781988199820082018202820382048205820682078208820982108211821282138214821582168217821882198220822182228223822482258226822782288229823082318232823382348235823682378238823982408241824282438244824582468247824882498250825182528253825482558256825782588259826082618262826382648265826682678268826982708271827282738274827582768277827882798280828182828283828482858286828782888289829082918292829382948295829682978298829983008301830283038304830583068307830883098310831183128313831483158316831783188319832083218322832383248325832683278328832983308331833283338334833583368337833883398340834183428343834483458346834783488349835083518352835383548355835683578358835983608361836283638364836583668367836883698370837183728373837483758376837783788379838083818382838383848385838683878388838983908391839283938394839583968397839883998400840184028403840484058406840784088409841084118412841384148415841684178418841984208421842284238424842584268427842884298430843184328433843484358436843784388439844084418442844384448445844684478448844984508451845284538454845584568457845884598460846184628463846484658466846784688469847084718472847384748475847684778478847984808481848284838484848584868487848884898490849184928493849484958496849784988499850085018502850385048505850685078508850985108511851285138514851585168517851885198520852185228523852485258526852785288529853085318532853385348535853685378538853985408541854285438544854585468547854885498550855185528553855485558556855785588559856085618562856385648565856685678568856985708571857285738574857585768577857885798580858185828583858485858586858785888589859085918592859385948595859685978598859986008601860286038604860586068607860886098610861186128613861486158616861786188619862086218622862386248625862686278628862986308631863286338634863586368637863886398640864186428643864486458646864786488649865086518652865386548655865686578658865986608661866286638664866586668667866886698670867186728673867486758676867786788679868086818682868386848685868686878688868986908691869286938694869586968697869886998700870187028703870487058706870787088709871087118712871387148715871687178718871987208721872287238724872587268727872887298730873187328733873487358736873787388739874087418742874387448745874687478748874987508751875287538754875587568757875887598760876187628763876487658766876787688769877087718772877387748775877687778778877987808781878287838784878587868787878887898790879187928793879487958796879787988799880088018802880388048805880688078808880988108811881288138814881588168817881888198820882188228823882488258826882788288829883088318832883388348835883688378838883988408841884288438844884588468847884888498850885188528853885488558856885788588859886088618862886388648865886688678868886988708871887288738874887588768877887888798880888188828883888488858886888788888889889088918892889388948895889688978898889989008901890289038904890589068907890889098910891189128913891489158916891789188919892089218922892389248925892689278928892989308931893289338934893589368937893889398940894189428943894489458946894789488949895089518952895389548955895689578958895989608961896289638964896589668967896889698970897189728973897489758976897789788979898089818982898389848985898689878988898989908991899289938994899589968997899889999000900190029003900490059006900790089009901090119012901390149015901690179018901990209021902290239024902590269027902890299030903190329033903490359036903790389039904090419042904390449045904690479048904990509051905290539054905590569057905890599060906190629063906490659066906790689069907090719072907390749075907690779078907990809081908290839084908590869087908890899090909190929093909490959096909790989099910091019102910391049105910691079108910991109111911291139114911591169117911891199120912191229123912491259126912791289129913091319132913391349135913691379138913991409141914291439144914591469147914891499150915191529153915491559156915791589159916091619162916391649165916691679168916991709171917291739174917591769177917891799180918191829183918491859186918791889189919091919192919391949195919691979198919992009201920292039204920592069207920892099210921192129213921492159216921792189219922092219222922392249225922692279228922992309231923292339234923592369237923892399240924192429243924492459246924792489249925092519252925392549255925692579258925992609261926292639264926592669267926892699270927192729273927492759276927792789279928092819282928392849285928692879288928992909291929292939294929592969297929892999300930193029303930493059306930793089309931093119312931393149315931693179318931993209321932293239324932593269327932893299330933193329333933493359336933793389339934093419342934393449345934693479348934993509351935293539354935593569357935893599360936193629363936493659366936793689369937093719372937393749375937693779378937993809381938293839384938593869387938893899390939193929393939493959396939793989399940094019402940394049405940694079408940994109411941294139414941594169417941894199420942194229423942494259426942794289429943094319432943394349435943694379438943994409441944294439444944594469447944894499450945194529453945494559456945794589459946094619462946394649465946694679468946994709471947294739474947594769477947894799480948194829483948494859486948794889489949094919492949394949495949694979498949995009501950295039504950595069507950895099510951195129513951495159516951795189519952095219522952395249525952695279528952995309531953295339534953595369537953895399540954195429543954495459546954795489549955095519552955395549555955695579558955995609561956295639564956595669567956895699570957195729573957495759576957795789579958095819582958395849585958695879588958995909591959295939594959595969597959895999600960196029603960496059606960796089609961096119612961396149615961696179618961996209621962296239624962596269627962896299630963196329633963496359636963796389639964096419642964396449645964696479648964996509651965296539654965596569657965896599660966196629663966496659666966796689669967096719672967396749675967696779678967996809681968296839684968596869687968896899690969196929693969496959696969796989699970097019702970397049705970697079708970997109711971297139714971597169717971897199720972197229723972497259726972797289729973097319732973397349735973697379738973997409741974297439744974597469747974897499750975197529753975497559756975797589759976097619762976397649765976697679768976997709771977297739774977597769777977897799780978197829783978497859786978797889789979097919792979397949795979697979798979998009801980298039804980598069807980898099810981198129813981498159816981798189819982098219822982398249825982698279828982998309831983298339834983598369837983898399840984198429843984498459846984798489849985098519852985398549855985698579858985998609861986298639864986598669867986898699870987198729873987498759876987798789879988098819882988398849885988698879888988998909891989298939894989598969897989898999900990199029903990499059906990799089909991099119912991399149915991699179918991999209921992299239924992599269927992899299930993199329933993499359936993799389939994099419942994399449945994699479948994999509951995299539954995599569957995899599960996199629963996499659966996799689969997099719972997399749975997699779978997999809981998299839984998599869987998899899990999199929993999499959996999799989999100001000110002100031000410005100061000710008100091001010011100121001310014100151001610017100181001910020100211002210023100241002510026100271002810029100301003110032100331003410035100361003710038100391004010041100421004310044100451004610047100481004910050100511005210053100541005510056100571005810059100601006110062100631006410065100661006710068100691007010071100721007310074100751007610077100781007910080100811008210083100841008510086100871008810089100901009110092100931009410095100961009710098100991010010101101021010310104101051010610107101081010910110101111011210113101141011510116101171011810119101201012110122101231012410125101261012710128101291013010131101321013310134101351013610137101381013910140101411014210143101441014510146101471014810149101501015110152101531015410155101561015710158101591016010161101621016310164101651016610167101681016910170101711017210173101741017510176101771017810179101801018110182101831018410185101861018710188101891019010191101921019310194101951019610197101981019910200102011020210203102041020510206102071020810209102101021110212102131021410215102161021710218102191022010221102221022310224102251022610227102281022910230102311023210233102341023510236102371023810239102401024110242102431024410245102461024710248102491025010251102521025310254102551025610257102581025910260102611026210263102641026510266102671026810269102701027110272102731027410275102761027710278102791028010281102821028310284102851028610287102881028910290102911029210293102941029510296102971029810299103001030110302103031030410305103061030710308103091031010311103121031310314103151031610317103181031910320103211032210323103241032510326103271032810329103301033110332103331033410335103361033710338103391034010341103421034310344103451034610347103481034910350103511035210353103541035510356103571035810359103601036110362103631036410365103661036710368103691037010371103721037310374103751037610377103781037910380103811038210383103841038510386103871038810389103901039110392103931039410395103961039710398103991040010401104021040310404104051040610407104081040910410104111041210413104141041510416104171041810419104201042110422104231042410425104261042710428104291043010431104321043310434104351043610437104381043910440104411044210443104441044510446104471044810449104501045110452104531045410455104561045710458104591046010461104621046310464104651046610467104681046910470104711047210473104741047510476104771047810479104801048110482104831048410485104861048710488104891049010491104921049310494104951049610497104981049910500105011050210503105041050510506105071050810509105101051110512105131051410515105161051710518105191052010521105221052310524105251052610527105281052910530105311053210533105341053510536105371053810539105401054110542105431054410545105461054710548105491055010551105521055310554105551055610557105581055910560105611056210563105641056510566105671056810569105701057110572105731057410575105761057710578105791058010581105821058310584105851058610587105881058910590105911059210593105941059510596105971059810599106001060110602106031060410605106061060710608106091061010611106121061310614106151061610617106181061910620106211062210623106241062510626106271062810629106301063110632106331063410635106361063710638106391064010641106421064310644106451064610647106481064910650106511065210653106541065510656106571065810659106601066110662106631066410665106661066710668106691067010671106721067310674106751067610677106781067910680106811068210683106841068510686106871068810689106901069110692106931069410695106961069710698106991070010701107021070310704107051070610707107081070910710107111071210713107141071510716107171071810719107201072110722107231072410725107261072710728107291073010731107321073310734107351073610737107381073910740107411074210743107441074510746107471074810749107501075110752107531075410755
  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. 40.0,
  21. 20.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. 8.0,
  45. 40.0,
  46. 20.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. 8.0,
  73. 40.0,
  74. 20.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. 9.0,
  107. 40.0,
  108. 20.0,
  109. 20.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. 9.0,
  142. 40.0,
  143. 20.0,
  144. 20.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. 9.0,
  177. 48.0,
  178. 20.0,
  179. 20.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": 100.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. 6.0,
  209. 50.0
  210. ],
  211. "intensifierIndex": [
  212. 2
  213. ],
  214. "PromoteLan": -1
  215. },
  216. {
  217. "ID": 11021,
  218. "PieceID": 13002,
  219. "power": 150.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. 6.0,
  233. 50.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": 225.0,
  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. 6.0,
  261. 50.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": 337.5,
  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. 6.0,
  295. 50.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": 506.25,
  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. 6.0,
  329. 50.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": 759.375,
  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. 6.0,
  363. 50.0,
  364. 25.0,
  365. 100.0,
  366. 30.0
  367. ],
  368. "intensifierIndex": [
  369. 2
  370. ],
  371. "addPropertyType": [
  372. 102
  373. ],
  374. "addPropertyValue": [
  375. 20.0
  376. ],
  377. "PromoteLan": 1109
  378. },
  379. {
  380. "ID": 11030,
  381. "PieceID": 13003,
  382. "power": 100.0,
  383. "name": 328,
  384. "dec": 751,
  385. "attribute": 1,
  386. "icon": "icon_s1103",
  387. "scriptName": "S1103",
  388. "IDGroup": 1103,
  389. "timelineName": "1103_timeline_TD",
  390. "cd": 1.0,
  391. "addcd": 1.0,
  392. "SkillType": 1,
  393. "level": 1,
  394. "effectValue": [
  395. 6.0,
  396. 40.0,
  397. 20.0
  398. ],
  399. "intensifierIndex": [
  400. 2
  401. ],
  402. "PromoteLan": -1
  403. },
  404. {
  405. "ID": 11031,
  406. "PieceID": 13003,
  407. "power": 150.0,
  408. "name": 329,
  409. "dec": 752,
  410. "attribute": 1,
  411. "icon": "icon_s1103",
  412. "scriptName": "S1103",
  413. "IDGroup": 1103,
  414. "timelineName": "1103_timeline_TD",
  415. "cd": 1.0,
  416. "addcd": 1.0,
  417. "SkillType": 1,
  418. "level": 2,
  419. "effectValue": [
  420. 6.0,
  421. 40.0,
  422. 20.0,
  423. 25.0
  424. ],
  425. "intensifierIndex": [
  426. 2
  427. ],
  428. "PromoteLan": 1110
  429. },
  430. {
  431. "ID": 11032,
  432. "PieceID": 13003,
  433. "power": 225.0,
  434. "name": 330,
  435. "dec": 753,
  436. "attribute": 1,
  437. "icon": "icon_s1103",
  438. "scriptName": "S1103",
  439. "IDGroup": 1103,
  440. "timelineName": "1103_timeline_TD",
  441. "cd": 1.0,
  442. "addcd": 1.0,
  443. "SkillType": 1,
  444. "level": 3,
  445. "effectValue": [
  446. 6.0,
  447. 40.0,
  448. 20.0,
  449. 25.0
  450. ],
  451. "intensifierIndex": [
  452. 2
  453. ],
  454. "addPropertyType": [
  455. 103
  456. ],
  457. "addPropertyValue": [
  458. 10.0
  459. ],
  460. "PromoteLan": 1111,
  461. "PromoteLanPara": [
  462. 10.0
  463. ]
  464. },
  465. {
  466. "ID": 11033,
  467. "PieceID": 13003,
  468. "power": 337.5,
  469. "name": 331,
  470. "dec": 754,
  471. "attribute": 1,
  472. "icon": "icon_s1103",
  473. "scriptName": "S1103",
  474. "IDGroup": 1103,
  475. "timelineName": "1103_timeline_TD",
  476. "cd": 1.0,
  477. "addcd": 1.0,
  478. "SkillType": 1,
  479. "level": 4,
  480. "effectValue": [
  481. 8.0,
  482. 40.0,
  483. 20.0,
  484. 25.0
  485. ],
  486. "intensifierIndex": [
  487. 2
  488. ],
  489. "addPropertyType": [
  490. 103
  491. ],
  492. "addPropertyValue": [
  493. 10.0
  494. ],
  495. "PromoteLan": 1112,
  496. "PromoteLanPara": [
  497. 2.0
  498. ]
  499. },
  500. {
  501. "ID": 11034,
  502. "PieceID": 13003,
  503. "power": 506.25,
  504. "name": 332,
  505. "dec": 755,
  506. "attribute": 1,
  507. "icon": "icon_s1103",
  508. "scriptName": "S1103",
  509. "IDGroup": 1103,
  510. "timelineName": "1103_timeline_TD",
  511. "cd": 1.0,
  512. "addcd": 1.0,
  513. "SkillType": 1,
  514. "level": 5,
  515. "effectValue": [
  516. 8.0,
  517. 40.0,
  518. 20.0,
  519. 25.0
  520. ],
  521. "intensifierIndex": [
  522. 2
  523. ],
  524. "addPropertyType": [
  525. 103
  526. ],
  527. "addPropertyValue": [
  528. 20.0
  529. ],
  530. "PromoteLan": 1113,
  531. "PromoteLanPara": [
  532. 10.0
  533. ]
  534. },
  535. {
  536. "ID": 11035,
  537. "PieceID": 13003,
  538. "power": 759.375,
  539. "name": 333,
  540. "dec": 756,
  541. "attribute": 1,
  542. "icon": "icon_s1103",
  543. "scriptName": "S1103",
  544. "IDGroup": 1103,
  545. "timelineName": "1103_timeline_TD",
  546. "cd": 1.0,
  547. "addcd": 1.0,
  548. "SkillType": 1,
  549. "level": 6,
  550. "effectValue": [
  551. 8.0,
  552. 40.0,
  553. 20.0,
  554. 25.0,
  555. 20.0
  556. ],
  557. "intensifierIndex": [
  558. 2
  559. ],
  560. "addPropertyType": [
  561. 103
  562. ],
  563. "addPropertyValue": [
  564. 20.0
  565. ],
  566. "PromoteLan": 1114
  567. },
  568. {
  569. "ID": 11040,
  570. "PieceID": 13004,
  571. "power": 100.0,
  572. "name": 334,
  573. "dec": 757,
  574. "attribute": 1,
  575. "icon": "icon_s1104",
  576. "scriptName": "S1104",
  577. "IDGroup": 1104,
  578. "timelineName": "1104_timeline_TD",
  579. "cd": 1.0,
  580. "addcd": 1.0,
  581. "SkillType": 1,
  582. "level": 1,
  583. "effectValue": [
  584. 6.0,
  585. 50.0
  586. ],
  587. "intensifierIndex": [
  588. 2
  589. ],
  590. "PromoteLan": -1
  591. },
  592. {
  593. "ID": 11041,
  594. "PieceID": 13004,
  595. "power": 150.0,
  596. "name": 335,
  597. "dec": 758,
  598. "attribute": 1,
  599. "icon": "icon_s1104",
  600. "scriptName": "S1104",
  601. "IDGroup": 1104,
  602. "timelineName": "1104_timeline_TD",
  603. "cd": 1.0,
  604. "addcd": 1.0,
  605. "SkillType": 1,
  606. "level": 2,
  607. "effectValue": [
  608. 6.0,
  609. 50.0
  610. ],
  611. "intensifierIndex": [
  612. 2
  613. ],
  614. "addPropertyType": [
  615. 102
  616. ],
  617. "addPropertyValue": [
  618. 5.0
  619. ],
  620. "PromoteLan": 1115,
  621. "PromoteLanPara": [
  622. 5.0
  623. ]
  624. },
  625. {
  626. "ID": 11042,
  627. "PieceID": 13004,
  628. "power": 225.0,
  629. "name": 336,
  630. "dec": 759,
  631. "attribute": 1,
  632. "icon": "icon_s1104",
  633. "scriptName": "S1104",
  634. "IDGroup": 1104,
  635. "timelineName": "1104_timeline_TD",
  636. "cd": 1.0,
  637. "addcd": 1.0,
  638. "SkillType": 1,
  639. "level": 3,
  640. "effectValue": [
  641. 8.0,
  642. 50.0
  643. ],
  644. "intensifierIndex": [
  645. 2
  646. ],
  647. "addPropertyType": [
  648. 102
  649. ],
  650. "addPropertyValue": [
  651. 5.0
  652. ],
  653. "PromoteLan": 1116,
  654. "PromoteLanPara": [
  655. 2.0
  656. ]
  657. },
  658. {
  659. "ID": 11043,
  660. "PieceID": 13004,
  661. "power": 337.5,
  662. "name": 337,
  663. "dec": 760,
  664. "attribute": 1,
  665. "icon": "icon_s1104",
  666. "scriptName": "S1104",
  667. "IDGroup": 1104,
  668. "timelineName": "1104_timeline_TD",
  669. "cd": 1.0,
  670. "addcd": 1.0,
  671. "SkillType": 1,
  672. "level": 4,
  673. "effectValue": [
  674. 8.0,
  675. 50.0
  676. ],
  677. "intensifierIndex": [
  678. 2
  679. ],
  680. "addPropertyType": [
  681. 102
  682. ],
  683. "addPropertyValue": [
  684. 10.0
  685. ],
  686. "PromoteLan": 1117,
  687. "PromoteLanPara": [
  688. 5.0
  689. ]
  690. },
  691. {
  692. "ID": 11044,
  693. "PieceID": 13004,
  694. "power": 506.25,
  695. "name": 338,
  696. "dec": 761,
  697. "attribute": 1,
  698. "icon": "icon_s1104",
  699. "scriptName": "S1104",
  700. "IDGroup": 1104,
  701. "timelineName": "1104_timeline_TD",
  702. "cd": 1.0,
  703. "addcd": 1.0,
  704. "SkillType": 1,
  705. "level": 5,
  706. "effectValue": [
  707. 10.0,
  708. 50.0
  709. ],
  710. "intensifierIndex": [
  711. 2
  712. ],
  713. "addPropertyType": [
  714. 102
  715. ],
  716. "addPropertyValue": [
  717. 10.0
  718. ],
  719. "PromoteLan": 1118,
  720. "PromoteLanPara": [
  721. 2.0
  722. ]
  723. },
  724. {
  725. "ID": 11045,
  726. "PieceID": 13004,
  727. "power": 759.375,
  728. "name": 339,
  729. "dec": 762,
  730. "attribute": 1,
  731. "icon": "icon_s1104",
  732. "scriptName": "S1104",
  733. "IDGroup": 1104,
  734. "timelineName": "1104_timeline_TD",
  735. "cd": 1.0,
  736. "addcd": 1.0,
  737. "SkillType": 1,
  738. "level": 6,
  739. "effectValue": [
  740. 10.0,
  741. 50.0
  742. ],
  743. "intensifierIndex": [
  744. 2
  745. ],
  746. "addPropertyType": [
  747. 102
  748. ],
  749. "addPropertyValue": [
  750. 15.0
  751. ],
  752. "PromoteLan": 1119,
  753. "PromoteLanPara": [
  754. 5.0
  755. ]
  756. },
  757. {
  758. "ID": 11050,
  759. "PieceID": 13005,
  760. "power": 100.0,
  761. "name": 340,
  762. "dec": 763,
  763. "attribute": 1,
  764. "icon": "icon_s1105",
  765. "scriptName": "S1105",
  766. "IDGroup": 1105,
  767. "timelineName": "1105_timeline_TD",
  768. "cd": 1.0,
  769. "addcd": 1.0,
  770. "SkillType": 1,
  771. "level": 1,
  772. "effectValue": [
  773. 3.0,
  774. 80.0,
  775. 40.0
  776. ],
  777. "intensifierIndex": [
  778. 2
  779. ],
  780. "PromoteLan": -1
  781. },
  782. {
  783. "ID": 11051,
  784. "PieceID": 13005,
  785. "power": 150.0,
  786. "name": 341,
  787. "dec": 764,
  788. "attribute": 1,
  789. "icon": "icon_s1105",
  790. "scriptName": "S1105",
  791. "IDGroup": 1105,
  792. "timelineName": "1105_timeline_TD",
  793. "cd": 1.0,
  794. "addcd": 1.0,
  795. "SkillType": 1,
  796. "level": 2,
  797. "effectValue": [
  798. 3.0,
  799. 80.0,
  800. 40.0
  801. ],
  802. "intensifierIndex": [
  803. 2
  804. ],
  805. "addPropertyType": [
  806. 103
  807. ],
  808. "addPropertyValue": [
  809. 5.0
  810. ],
  811. "PromoteLan": 1120,
  812. "PromoteLanPara": [
  813. 5.0
  814. ]
  815. },
  816. {
  817. "ID": 11052,
  818. "PieceID": 13005,
  819. "power": 225.0,
  820. "name": 342,
  821. "dec": 765,
  822. "attribute": 1,
  823. "icon": "icon_s1105",
  824. "scriptName": "S1105",
  825. "IDGroup": 1105,
  826. "timelineName": "1105_timeline_TD",
  827. "cd": 1.0,
  828. "addcd": 1.0,
  829. "SkillType": 1,
  830. "level": 3,
  831. "effectValue": [
  832. 4.0,
  833. 80.0,
  834. 40.0
  835. ],
  836. "intensifierIndex": [
  837. 2
  838. ],
  839. "addPropertyType": [
  840. 103
  841. ],
  842. "addPropertyValue": [
  843. 5.0
  844. ],
  845. "PromoteLan": 1121,
  846. "PromoteLanPara": [
  847. 1.0
  848. ]
  849. },
  850. {
  851. "ID": 11053,
  852. "PieceID": 13005,
  853. "power": 337.5,
  854. "name": 343,
  855. "dec": 766,
  856. "attribute": 1,
  857. "icon": "icon_s1105",
  858. "scriptName": "S1105",
  859. "IDGroup": 1105,
  860. "timelineName": "1105_timeline_TD",
  861. "cd": 1.0,
  862. "addcd": 1.0,
  863. "SkillType": 1,
  864. "level": 4,
  865. "effectValue": [
  866. 4.0,
  867. 80.0,
  868. 40.0
  869. ],
  870. "intensifierIndex": [
  871. 2
  872. ],
  873. "addPropertyType": [
  874. 103
  875. ],
  876. "addPropertyValue": [
  877. 10.0
  878. ],
  879. "PromoteLan": 1122,
  880. "PromoteLanPara": [
  881. 5.0
  882. ]
  883. },
  884. {
  885. "ID": 11054,
  886. "PieceID": 13005,
  887. "power": 506.25,
  888. "name": 344,
  889. "dec": 767,
  890. "attribute": 1,
  891. "icon": "icon_s1105",
  892. "scriptName": "S1105",
  893. "IDGroup": 1105,
  894. "timelineName": "1105_timeline_TD",
  895. "cd": 1.0,
  896. "addcd": 1.0,
  897. "SkillType": 1,
  898. "level": 5,
  899. "effectValue": [
  900. 5.0,
  901. 80.0,
  902. 40.0
  903. ],
  904. "intensifierIndex": [
  905. 2
  906. ],
  907. "addPropertyType": [
  908. 103
  909. ],
  910. "addPropertyValue": [
  911. 10.0
  912. ],
  913. "PromoteLan": 1123,
  914. "PromoteLanPara": [
  915. 1.0
  916. ]
  917. },
  918. {
  919. "ID": 11055,
  920. "PieceID": 13005,
  921. "power": 759.375,
  922. "name": 345,
  923. "dec": 768,
  924. "attribute": 1,
  925. "icon": "icon_s1105",
  926. "scriptName": "S1105",
  927. "IDGroup": 1105,
  928. "timelineName": "1105_timeline_TD",
  929. "cd": 1.0,
  930. "addcd": 1.0,
  931. "SkillType": 1,
  932. "level": 6,
  933. "effectValue": [
  934. 5.0,
  935. 80.0,
  936. 40.0
  937. ],
  938. "intensifierIndex": [
  939. 2
  940. ],
  941. "addPropertyType": [
  942. 103
  943. ],
  944. "addPropertyValue": [
  945. 15.0
  946. ],
  947. "PromoteLan": 1124,
  948. "PromoteLanPara": [
  949. 5.0
  950. ]
  951. },
  952. {
  953. "ID": 12010,
  954. "PieceID": 13006,
  955. "power": 100.0,
  956. "name": 346,
  957. "dec": 769,
  958. "attribute": 2,
  959. "icon": "icon_s1201",
  960. "scriptName": "S1201",
  961. "IDGroup": 1201,
  962. "timelineName": "1201_timeline_TD",
  963. "cd": 1.0,
  964. "addcd": 1.0,
  965. "SkillType": 1,
  966. "level": 1,
  967. "effectValue": [
  968. 6.0,
  969. 40.0,
  970. 20.0
  971. ],
  972. "intensifierIndex": [
  973. 2
  974. ],
  975. "PromoteLan": -1
  976. },
  977. {
  978. "ID": 12011,
  979. "PieceID": 13006,
  980. "power": 150.0,
  981. "name": 347,
  982. "dec": 770,
  983. "attribute": 2,
  984. "icon": "icon_s1201",
  985. "scriptName": "S1201",
  986. "IDGroup": 1201,
  987. "timelineName": "1201_timeline_TD",
  988. "cd": 1.0,
  989. "addcd": 1.0,
  990. "SkillType": 1,
  991. "level": 2,
  992. "effectValue": [
  993. 6.0,
  994. 40.0,
  995. 20.0
  996. ],
  997. "intensifierIndex": [
  998. 2
  999. ],
  1000. "PromoteLan": 1125,
  1001. "PromoteLanPara": [
  1002. 1.0
  1003. ]
  1004. },
  1005. {
  1006. "ID": 12012,
  1007. "PieceID": 13006,
  1008. "power": 225.0,
  1009. "name": 348,
  1010. "dec": 771,
  1011. "attribute": 2,
  1012. "icon": "icon_s1201",
  1013. "scriptName": "S1201",
  1014. "IDGroup": 1201,
  1015. "timelineName": "1201_timeline_TD",
  1016. "cd": 1.0,
  1017. "addcd": 1.0,
  1018. "SkillType": 1,
  1019. "level": 3,
  1020. "effectValue": [
  1021. 9.0,
  1022. 40.0,
  1023. 20.0
  1024. ],
  1025. "intensifierIndex": [
  1026. 2
  1027. ],
  1028. "addPropertyType": [
  1029. 101
  1030. ],
  1031. "addPropertyValue": [
  1032. 10.0
  1033. ],
  1034. "PromoteLan": 1126,
  1035. "PromoteLanPara": [
  1036. 10.0
  1037. ]
  1038. },
  1039. {
  1040. "ID": 12013,
  1041. "PieceID": 13006,
  1042. "power": 337.5,
  1043. "name": 349,
  1044. "dec": 772,
  1045. "attribute": 2,
  1046. "icon": "icon_s1201",
  1047. "scriptName": "S1201",
  1048. "IDGroup": 1201,
  1049. "timelineName": "1201_timeline_TD",
  1050. "cd": 1.0,
  1051. "addcd": 1.0,
  1052. "SkillType": 1,
  1053. "level": 4,
  1054. "effectValue": [
  1055. 9.0,
  1056. 40.0,
  1057. 20.0
  1058. ],
  1059. "intensifierIndex": [
  1060. 2
  1061. ],
  1062. "addPropertyType": [
  1063. 101
  1064. ],
  1065. "addPropertyValue": [
  1066. 10.0
  1067. ],
  1068. "PromoteLan": 1127,
  1069. "PromoteLanPara": [
  1070. 1.0
  1071. ]
  1072. },
  1073. {
  1074. "ID": 12014,
  1075. "PieceID": 13006,
  1076. "power": 506.25,
  1077. "name": 350,
  1078. "dec": 773,
  1079. "attribute": 2,
  1080. "icon": "icon_s1201",
  1081. "scriptName": "S1201",
  1082. "IDGroup": 1201,
  1083. "timelineName": "1201_timeline_TD",
  1084. "cd": 1.0,
  1085. "addcd": 1.0,
  1086. "SkillType": 1,
  1087. "level": 5,
  1088. "effectValue": [
  1089. 12.0,
  1090. 40.0,
  1091. 20.0
  1092. ],
  1093. "intensifierIndex": [
  1094. 2
  1095. ],
  1096. "addPropertyType": [
  1097. 101
  1098. ],
  1099. "addPropertyValue": [
  1100. 20.0
  1101. ],
  1102. "PromoteLan": 1128,
  1103. "PromoteLanPara": [
  1104. 10.0
  1105. ]
  1106. },
  1107. {
  1108. "ID": 12015,
  1109. "PieceID": 13006,
  1110. "power": 759.375,
  1111. "name": 351,
  1112. "dec": 774,
  1113. "attribute": 2,
  1114. "icon": "icon_s1201",
  1115. "scriptName": "S1201",
  1116. "IDGroup": 1201,
  1117. "timelineName": "1201_timeline_TD",
  1118. "cd": 1.0,
  1119. "addcd": 1.0,
  1120. "SkillType": 1,
  1121. "level": 6,
  1122. "effectValue": [
  1123. 12.0,
  1124. 40.0,
  1125. 20.0
  1126. ],
  1127. "intensifierIndex": [
  1128. 2
  1129. ],
  1130. "addPropertyType": [
  1131. 101
  1132. ],
  1133. "addPropertyValue": [
  1134. 20.0
  1135. ],
  1136. "PromoteLan": 1129,
  1137. "PromoteLanPara": [
  1138. 1.0
  1139. ]
  1140. },
  1141. {
  1142. "ID": 12020,
  1143. "PieceID": 13007,
  1144. "power": 100.0,
  1145. "name": 352,
  1146. "dec": 775,
  1147. "attribute": 2,
  1148. "icon": "icon_s1202",
  1149. "scriptName": "S1202",
  1150. "IDGroup": 1202,
  1151. "timelineName": "1202_timeline_TD",
  1152. "cd": 1.0,
  1153. "addcd": 1.0,
  1154. "SkillType": 1,
  1155. "level": 1,
  1156. "effectValue": [
  1157. 3.0,
  1158. 80.0,
  1159. 40.0
  1160. ],
  1161. "intensifierIndex": [
  1162. 2
  1163. ],
  1164. "PromoteLan": -1
  1165. },
  1166. {
  1167. "ID": 12021,
  1168. "PieceID": 13007,
  1169. "power": 150.0,
  1170. "name": 353,
  1171. "dec": 776,
  1172. "attribute": 2,
  1173. "icon": "icon_s1202",
  1174. "scriptName": "S1202",
  1175. "IDGroup": 1202,
  1176. "timelineName": "1202_timeline_TD",
  1177. "cd": 1.0,
  1178. "addcd": 1.0,
  1179. "SkillType": 1,
  1180. "level": 2,
  1181. "effectValue": [
  1182. 4.0,
  1183. 80.0,
  1184. 40.0
  1185. ],
  1186. "intensifierIndex": [
  1187. 2
  1188. ],
  1189. "PromoteLan": 1130,
  1190. "PromoteLanPara": [
  1191. 1.0
  1192. ]
  1193. },
  1194. {
  1195. "ID": 12022,
  1196. "PieceID": 13007,
  1197. "power": 225.0,
  1198. "name": 354,
  1199. "dec": 777,
  1200. "attribute": 2,
  1201. "icon": "icon_s1202",
  1202. "scriptName": "S1202",
  1203. "IDGroup": 1202,
  1204. "timelineName": "1202_timeline_TD",
  1205. "cd": 1.0,
  1206. "addcd": 1.0,
  1207. "SkillType": 1,
  1208. "level": 3,
  1209. "effectValue": [
  1210. 4.0,
  1211. 80.0,
  1212. 40.0
  1213. ],
  1214. "intensifierIndex": [
  1215. 2
  1216. ],
  1217. "addPropertyType": [
  1218. 103
  1219. ],
  1220. "addPropertyValue": [
  1221. 10.0
  1222. ],
  1223. "PromoteLan": 1131,
  1224. "PromoteLanPara": [
  1225. 10.0
  1226. ]
  1227. },
  1228. {
  1229. "ID": 12023,
  1230. "PieceID": 13007,
  1231. "power": 337.5,
  1232. "name": 355,
  1233. "dec": 778,
  1234. "attribute": 2,
  1235. "icon": "icon_s1202",
  1236. "scriptName": "S1202",
  1237. "IDGroup": 1202,
  1238. "timelineName": "1202_timeline_TD",
  1239. "cd": 1.0,
  1240. "addcd": 1.0,
  1241. "SkillType": 1,
  1242. "level": 4,
  1243. "effectValue": [
  1244. 5.0,
  1245. 80.0,
  1246. 40.0
  1247. ],
  1248. "intensifierIndex": [
  1249. 2
  1250. ],
  1251. "addPropertyType": [
  1252. 103
  1253. ],
  1254. "addPropertyValue": [
  1255. 10.0
  1256. ],
  1257. "PromoteLan": 1132,
  1258. "PromoteLanPara": [
  1259. 1.0
  1260. ]
  1261. },
  1262. {
  1263. "ID": 12024,
  1264. "PieceID": 13007,
  1265. "power": 506.25,
  1266. "name": 356,
  1267. "dec": 779,
  1268. "attribute": 2,
  1269. "icon": "icon_s1202",
  1270. "scriptName": "S1202",
  1271. "IDGroup": 1202,
  1272. "timelineName": "1202_timeline_TD",
  1273. "cd": 1.0,
  1274. "addcd": 1.0,
  1275. "SkillType": 1,
  1276. "level": 5,
  1277. "effectValue": [
  1278. 5.0,
  1279. 80.0,
  1280. 40.0
  1281. ],
  1282. "intensifierIndex": [
  1283. 2
  1284. ],
  1285. "addPropertyType": [
  1286. 103
  1287. ],
  1288. "addPropertyValue": [
  1289. 20.0
  1290. ],
  1291. "PromoteLan": 1133,
  1292. "PromoteLanPara": [
  1293. 10.0
  1294. ]
  1295. },
  1296. {
  1297. "ID": 12025,
  1298. "PieceID": 13007,
  1299. "power": 759.375,
  1300. "name": 357,
  1301. "dec": 780,
  1302. "attribute": 2,
  1303. "icon": "icon_s1202",
  1304. "scriptName": "S1202",
  1305. "IDGroup": 1202,
  1306. "timelineName": "1202_timeline_TD",
  1307. "cd": 1.0,
  1308. "addcd": 1.0,
  1309. "SkillType": 1,
  1310. "level": 6,
  1311. "effectValue": [
  1312. 6.0,
  1313. 80.0,
  1314. 40.0
  1315. ],
  1316. "intensifierIndex": [
  1317. 2
  1318. ],
  1319. "addPropertyType": [
  1320. 103
  1321. ],
  1322. "addPropertyValue": [
  1323. 20.0
  1324. ],
  1325. "PromoteLan": 1134,
  1326. "PromoteLanPara": [
  1327. 1.0
  1328. ]
  1329. },
  1330. {
  1331. "ID": 12040,
  1332. "PieceID": 13009,
  1333. "power": 100.0,
  1334. "name": 358,
  1335. "dec": 781,
  1336. "attribute": 2,
  1337. "icon": "icon_s1204",
  1338. "scriptName": "S1204",
  1339. "IDGroup": 1204,
  1340. "timelineName": "1204_timeline_TD",
  1341. "cd": 1.0,
  1342. "addcd": 1.0,
  1343. "SkillType": 1,
  1344. "level": 1,
  1345. "effectValue": [
  1346. 3.0,
  1347. 100.0
  1348. ],
  1349. "intensifierIndex": [
  1350. 2
  1351. ],
  1352. "PromoteLan": -1
  1353. },
  1354. {
  1355. "ID": 12041,
  1356. "PieceID": 13009,
  1357. "power": 150.0,
  1358. "name": 359,
  1359. "dec": 782,
  1360. "attribute": 2,
  1361. "icon": "icon_s1204",
  1362. "scriptName": "S1204",
  1363. "IDGroup": 1204,
  1364. "timelineName": "1204_timeline_TD",
  1365. "cd": 1.0,
  1366. "addcd": 1.0,
  1367. "SkillType": 1,
  1368. "level": 2,
  1369. "effectValue": [
  1370. 3.0,
  1371. 100.0
  1372. ],
  1373. "intensifierIndex": [
  1374. 2
  1375. ],
  1376. "addPropertyType": [
  1377. 102
  1378. ],
  1379. "addPropertyValue": [
  1380. 5.0
  1381. ],
  1382. "PromoteLan": 1140,
  1383. "PromoteLanPara": [
  1384. 5.0
  1385. ]
  1386. },
  1387. {
  1388. "ID": 12042,
  1389. "PieceID": 13009,
  1390. "power": 225.0,
  1391. "name": 360,
  1392. "dec": 783,
  1393. "attribute": 2,
  1394. "icon": "icon_s1204",
  1395. "scriptName": "S1204",
  1396. "IDGroup": 1204,
  1397. "timelineName": "1204_timeline_TD",
  1398. "cd": 1.0,
  1399. "addcd": 1.0,
  1400. "SkillType": 1,
  1401. "level": 3,
  1402. "effectValue": [
  1403. 4.0,
  1404. 100.0
  1405. ],
  1406. "intensifierIndex": [
  1407. 2
  1408. ],
  1409. "addPropertyType": [
  1410. 102
  1411. ],
  1412. "addPropertyValue": [
  1413. 5.0
  1414. ],
  1415. "PromoteLan": 1141,
  1416. "PromoteLanPara": [
  1417. 1.0
  1418. ]
  1419. },
  1420. {
  1421. "ID": 12043,
  1422. "PieceID": 13009,
  1423. "power": 337.5,
  1424. "name": 361,
  1425. "dec": 784,
  1426. "attribute": 2,
  1427. "icon": "icon_s1204",
  1428. "scriptName": "S1204",
  1429. "IDGroup": 1204,
  1430. "timelineName": "1204_timeline_TD",
  1431. "cd": 1.0,
  1432. "addcd": 1.0,
  1433. "SkillType": 1,
  1434. "level": 4,
  1435. "effectValue": [
  1436. 4.0,
  1437. 100.0
  1438. ],
  1439. "intensifierIndex": [
  1440. 2
  1441. ],
  1442. "addPropertyType": [
  1443. 102
  1444. ],
  1445. "addPropertyValue": [
  1446. 10.0
  1447. ],
  1448. "PromoteLan": 1142,
  1449. "PromoteLanPara": [
  1450. 10.0
  1451. ]
  1452. },
  1453. {
  1454. "ID": 12044,
  1455. "PieceID": 13009,
  1456. "power": 506.25,
  1457. "name": 362,
  1458. "dec": 785,
  1459. "attribute": 2,
  1460. "icon": "icon_s1204",
  1461. "scriptName": "S1204",
  1462. "IDGroup": 1204,
  1463. "timelineName": "1204_timeline_TD",
  1464. "cd": 1.0,
  1465. "addcd": 1.0,
  1466. "SkillType": 1,
  1467. "level": 5,
  1468. "effectValue": [
  1469. 5.0,
  1470. 100.0
  1471. ],
  1472. "intensifierIndex": [
  1473. 2
  1474. ],
  1475. "addPropertyType": [
  1476. 102
  1477. ],
  1478. "addPropertyValue": [
  1479. 10.0
  1480. ],
  1481. "PromoteLan": 1143,
  1482. "PromoteLanPara": [
  1483. 1.0
  1484. ]
  1485. },
  1486. {
  1487. "ID": 12045,
  1488. "PieceID": 13009,
  1489. "power": 759.375,
  1490. "name": 363,
  1491. "dec": 786,
  1492. "attribute": 2,
  1493. "icon": "icon_s1204",
  1494. "scriptName": "S1204",
  1495. "IDGroup": 1204,
  1496. "timelineName": "1204_timeline_TD",
  1497. "cd": 1.0,
  1498. "addcd": 1.0,
  1499. "SkillType": 1,
  1500. "level": 6,
  1501. "effectValue": [
  1502. 5.0,
  1503. 100.0
  1504. ],
  1505. "intensifierIndex": [
  1506. 2
  1507. ],
  1508. "addPropertyType": [
  1509. 102
  1510. ],
  1511. "addPropertyValue": [
  1512. 15.0
  1513. ],
  1514. "PromoteLan": 1144,
  1515. "PromoteLanPara": [
  1516. 15.0
  1517. ]
  1518. },
  1519. {
  1520. "ID": 12050,
  1521. "PieceID": 13010,
  1522. "power": 100.0,
  1523. "name": 364,
  1524. "dec": 787,
  1525. "attribute": 2,
  1526. "icon": "icon_s1205",
  1527. "scriptName": "S1205",
  1528. "IDGroup": 1205,
  1529. "timelineName": "1205_timeline_TD",
  1530. "cd": 1.0,
  1531. "addcd": 1.0,
  1532. "SkillType": 1,
  1533. "level": 1,
  1534. "effectValue": [
  1535. 6.0,
  1536. 50.0
  1537. ],
  1538. "intensifierIndex": [
  1539. 2
  1540. ],
  1541. "PromoteLan": -1
  1542. },
  1543. {
  1544. "ID": 12051,
  1545. "PieceID": 13010,
  1546. "power": 150.0,
  1547. "name": 365,
  1548. "dec": 788,
  1549. "attribute": 2,
  1550. "icon": "icon_s1205",
  1551. "scriptName": "S1205",
  1552. "IDGroup": 1205,
  1553. "timelineName": "1205_timeline_TD",
  1554. "cd": 1.0,
  1555. "addcd": 1.0,
  1556. "SkillType": 1,
  1557. "level": 2,
  1558. "effectValue": [
  1559. 6.0,
  1560. 50.0
  1561. ],
  1562. "intensifierIndex": [
  1563. 2
  1564. ],
  1565. "addPropertyType": [
  1566. 103
  1567. ],
  1568. "addPropertyValue": [
  1569. 5.0
  1570. ],
  1571. "PromoteLan": 1145,
  1572. "PromoteLanPara": [
  1573. 5.0
  1574. ]
  1575. },
  1576. {
  1577. "ID": 12052,
  1578. "PieceID": 13010,
  1579. "power": 225.0,
  1580. "name": 366,
  1581. "dec": 789,
  1582. "attribute": 2,
  1583. "icon": "icon_s1205",
  1584. "scriptName": "S1205",
  1585. "IDGroup": 1205,
  1586. "timelineName": "1205_timeline_TD",
  1587. "cd": 1.0,
  1588. "addcd": 1.0,
  1589. "SkillType": 1,
  1590. "level": 3,
  1591. "effectValue": [
  1592. 8.0,
  1593. 50.0
  1594. ],
  1595. "intensifierIndex": [
  1596. 2
  1597. ],
  1598. "addPropertyType": [
  1599. 103
  1600. ],
  1601. "addPropertyValue": [
  1602. 5.0
  1603. ],
  1604. "PromoteLan": 1146,
  1605. "PromoteLanPara": [
  1606. 2.0
  1607. ]
  1608. },
  1609. {
  1610. "ID": 12053,
  1611. "PieceID": 13010,
  1612. "power": 337.5,
  1613. "name": 367,
  1614. "dec": 790,
  1615. "attribute": 2,
  1616. "icon": "icon_s1205",
  1617. "scriptName": "S1205",
  1618. "IDGroup": 1205,
  1619. "timelineName": "1205_timeline_TD",
  1620. "cd": 1.0,
  1621. "addcd": 1.0,
  1622. "SkillType": 1,
  1623. "level": 4,
  1624. "effectValue": [
  1625. 8.0,
  1626. 50.0
  1627. ],
  1628. "intensifierIndex": [
  1629. 2
  1630. ],
  1631. "addPropertyType": [
  1632. 103
  1633. ],
  1634. "addPropertyValue": [
  1635. 10.0
  1636. ],
  1637. "PromoteLan": 1147,
  1638. "PromoteLanPara": [
  1639. 5.0
  1640. ]
  1641. },
  1642. {
  1643. "ID": 12054,
  1644. "PieceID": 13010,
  1645. "power": 506.25,
  1646. "name": 368,
  1647. "dec": 791,
  1648. "attribute": 2,
  1649. "icon": "icon_s1205",
  1650. "scriptName": "S1205",
  1651. "IDGroup": 1205,
  1652. "timelineName": "1205_timeline_TD",
  1653. "cd": 1.0,
  1654. "addcd": 1.0,
  1655. "SkillType": 1,
  1656. "level": 5,
  1657. "effectValue": [
  1658. 10.0,
  1659. 50.0
  1660. ],
  1661. "intensifierIndex": [
  1662. 2
  1663. ],
  1664. "addPropertyType": [
  1665. 103
  1666. ],
  1667. "addPropertyValue": [
  1668. 10.0
  1669. ],
  1670. "PromoteLan": 1148,
  1671. "PromoteLanPara": [
  1672. 2.0
  1673. ]
  1674. },
  1675. {
  1676. "ID": 12055,
  1677. "PieceID": 13010,
  1678. "power": 759.375,
  1679. "name": 369,
  1680. "dec": 792,
  1681. "attribute": 2,
  1682. "icon": "icon_s1205",
  1683. "scriptName": "S1205",
  1684. "IDGroup": 1205,
  1685. "timelineName": "1205_timeline_TD",
  1686. "cd": 1.0,
  1687. "addcd": 1.0,
  1688. "SkillType": 1,
  1689. "level": 6,
  1690. "effectValue": [
  1691. 10.0,
  1692. 50.0
  1693. ],
  1694. "intensifierIndex": [
  1695. 2
  1696. ],
  1697. "addPropertyType": [
  1698. 103
  1699. ],
  1700. "addPropertyValue": [
  1701. 15.0
  1702. ],
  1703. "PromoteLan": 1149,
  1704. "PromoteLanPara": [
  1705. 5.0
  1706. ]
  1707. },
  1708. {
  1709. "ID": 13010,
  1710. "PieceID": 13011,
  1711. "power": 100.0,
  1712. "name": 370,
  1713. "dec": 793,
  1714. "attribute": 4,
  1715. "icon": "icon_s1301",
  1716. "scriptName": "S1301",
  1717. "IDGroup": 1301,
  1718. "timelineName": "1301_timeline_TD",
  1719. "cd": 1.0,
  1720. "addcd": 1.0,
  1721. "SkillType": 1,
  1722. "level": 1,
  1723. "effectValue": [
  1724. 3.0,
  1725. 80.0,
  1726. 40.0
  1727. ],
  1728. "intensifierIndex": [
  1729. 2
  1730. ],
  1731. "PromoteLan": -1
  1732. },
  1733. {
  1734. "ID": 13011,
  1735. "PieceID": 13011,
  1736. "power": 150.0,
  1737. "name": 371,
  1738. "dec": 794,
  1739. "attribute": 4,
  1740. "icon": "icon_s1301",
  1741. "scriptName": "S1301",
  1742. "IDGroup": 1301,
  1743. "timelineName": "1301_timeline_TD",
  1744. "cd": 1.0,
  1745. "addcd": 1.0,
  1746. "SkillType": 1,
  1747. "level": 2,
  1748. "effectValue": [
  1749. 4.0,
  1750. 80.0,
  1751. 40.0
  1752. ],
  1753. "intensifierIndex": [
  1754. 2
  1755. ],
  1756. "PromoteLan": 1150,
  1757. "PromoteLanPara": [
  1758. 1.0
  1759. ]
  1760. },
  1761. {
  1762. "ID": 13012,
  1763. "PieceID": 13011,
  1764. "power": 225.0,
  1765. "name": 372,
  1766. "dec": 795,
  1767. "attribute": 4,
  1768. "icon": "icon_s1301",
  1769. "scriptName": "S1301",
  1770. "IDGroup": 1301,
  1771. "timelineName": "1301_timeline_TD",
  1772. "cd": 1.0,
  1773. "addcd": 1.0,
  1774. "SkillType": 1,
  1775. "level": 3,
  1776. "effectValue": [
  1777. 4.0,
  1778. 80.0,
  1779. 40.0
  1780. ],
  1781. "intensifierIndex": [
  1782. 2
  1783. ],
  1784. "addPropertyType": [
  1785. 101
  1786. ],
  1787. "addPropertyValue": [
  1788. 10.0
  1789. ],
  1790. "PromoteLan": 1151,
  1791. "PromoteLanPara": [
  1792. 10.0
  1793. ]
  1794. },
  1795. {
  1796. "ID": 13013,
  1797. "PieceID": 13011,
  1798. "power": 337.5,
  1799. "name": 373,
  1800. "dec": 796,
  1801. "attribute": 4,
  1802. "icon": "icon_s1301",
  1803. "scriptName": "S1301",
  1804. "IDGroup": 1301,
  1805. "timelineName": "1301_timeline_TD",
  1806. "cd": 1.0,
  1807. "addcd": 1.0,
  1808. "SkillType": 1,
  1809. "level": 4,
  1810. "effectValue": [
  1811. 5.0,
  1812. 80.0,
  1813. 40.0
  1814. ],
  1815. "intensifierIndex": [
  1816. 2
  1817. ],
  1818. "addPropertyType": [
  1819. 101
  1820. ],
  1821. "addPropertyValue": [
  1822. 10.0
  1823. ],
  1824. "PromoteLan": 1152,
  1825. "PromoteLanPara": [
  1826. 1.0
  1827. ]
  1828. },
  1829. {
  1830. "ID": 13014,
  1831. "PieceID": 13011,
  1832. "power": 506.25,
  1833. "name": 374,
  1834. "dec": 797,
  1835. "attribute": 4,
  1836. "icon": "icon_s1301",
  1837. "scriptName": "S1301",
  1838. "IDGroup": 1301,
  1839. "timelineName": "1301_timeline_TD",
  1840. "cd": 1.0,
  1841. "addcd": 1.0,
  1842. "SkillType": 1,
  1843. "level": 5,
  1844. "effectValue": [
  1845. 5.0,
  1846. 80.0,
  1847. 40.0
  1848. ],
  1849. "intensifierIndex": [
  1850. 2
  1851. ],
  1852. "addPropertyType": [
  1853. 101
  1854. ],
  1855. "addPropertyValue": [
  1856. 20.0
  1857. ],
  1858. "PromoteLan": 1153,
  1859. "PromoteLanPara": [
  1860. 10.0
  1861. ]
  1862. },
  1863. {
  1864. "ID": 13015,
  1865. "PieceID": 13011,
  1866. "power": 759.375,
  1867. "name": 375,
  1868. "dec": 798,
  1869. "attribute": 4,
  1870. "icon": "icon_s1301",
  1871. "scriptName": "S1301",
  1872. "IDGroup": 1301,
  1873. "timelineName": "1301_timeline_TD",
  1874. "cd": 1.0,
  1875. "addcd": 1.0,
  1876. "SkillType": 1,
  1877. "level": 6,
  1878. "effectValue": [
  1879. 6.0,
  1880. 80.0,
  1881. 40.0
  1882. ],
  1883. "intensifierIndex": [
  1884. 2
  1885. ],
  1886. "addPropertyType": [
  1887. 101
  1888. ],
  1889. "addPropertyValue": [
  1890. 20.0
  1891. ],
  1892. "PromoteLan": 1154,
  1893. "PromoteLanPara": [
  1894. 1.0
  1895. ]
  1896. },
  1897. {
  1898. "ID": 13020,
  1899. "PieceID": 13012,
  1900. "power": 100.0,
  1901. "name": 376,
  1902. "dec": 799,
  1903. "attribute": 4,
  1904. "icon": "icon_s1302",
  1905. "scriptName": "S1302",
  1906. "IDGroup": 1302,
  1907. "timelineName": "1302_timeline_TD",
  1908. "cd": 1.0,
  1909. "addcd": 1.0,
  1910. "SkillType": 1,
  1911. "level": 1,
  1912. "effectValue": [
  1913. 3.0,
  1914. 80.0,
  1915. 30.0,
  1916. 5.0,
  1917. 6.0,
  1918. 100.0
  1919. ],
  1920. "intensifierIndex": [
  1921. 2
  1922. ],
  1923. "PromoteLan": -1
  1924. },
  1925. {
  1926. "ID": 13021,
  1927. "PieceID": 13012,
  1928. "power": 150.0,
  1929. "name": 377,
  1930. "dec": 800,
  1931. "attribute": 4,
  1932. "icon": "icon_s1302",
  1933. "scriptName": "S1302",
  1934. "IDGroup": 1302,
  1935. "timelineName": "1302_timeline_TD",
  1936. "cd": 1.0,
  1937. "addcd": 1.0,
  1938. "SkillType": 1,
  1939. "level": 2,
  1940. "effectValue": [
  1941. 4.0,
  1942. 80.0,
  1943. 30.0,
  1944. 5.0,
  1945. 6.0,
  1946. 100.0
  1947. ],
  1948. "intensifierIndex": [
  1949. 2
  1950. ],
  1951. "PromoteLan": 1155,
  1952. "PromoteLanPara": [
  1953. 1.0
  1954. ]
  1955. },
  1956. {
  1957. "ID": 13022,
  1958. "PieceID": 13012,
  1959. "power": 225.0,
  1960. "name": 378,
  1961. "dec": 801,
  1962. "attribute": 4,
  1963. "icon": "icon_s1302",
  1964. "scriptName": "S1302",
  1965. "IDGroup": 1302,
  1966. "timelineName": "1302_timeline_TD",
  1967. "cd": 1.0,
  1968. "addcd": 1.0,
  1969. "SkillType": 1,
  1970. "level": 3,
  1971. "effectValue": [
  1972. 4.0,
  1973. 80.0,
  1974. 30.0,
  1975. 5.0,
  1976. 6.0,
  1977. 100.0
  1978. ],
  1979. "intensifierIndex": [
  1980. 2
  1981. ],
  1982. "addPropertyType": [
  1983. 103
  1984. ],
  1985. "addPropertyValue": [
  1986. 10.0
  1987. ],
  1988. "PromoteLan": 1156,
  1989. "PromoteLanPara": [
  1990. 10.0
  1991. ]
  1992. },
  1993. {
  1994. "ID": 13023,
  1995. "PieceID": 13012,
  1996. "power": 337.5,
  1997. "name": 379,
  1998. "dec": 802,
  1999. "attribute": 4,
  2000. "icon": "icon_s1302",
  2001. "scriptName": "S1302",
  2002. "IDGroup": 1302,
  2003. "timelineName": "1302_timeline_TD",
  2004. "cd": 1.0,
  2005. "addcd": 1.0,
  2006. "SkillType": 1,
  2007. "level": 4,
  2008. "effectValue": [
  2009. 5.0,
  2010. 80.0,
  2011. 30.0,
  2012. 5.0,
  2013. 6.0,
  2014. 100.0
  2015. ],
  2016. "intensifierIndex": [
  2017. 2
  2018. ],
  2019. "addPropertyType": [
  2020. 103
  2021. ],
  2022. "addPropertyValue": [
  2023. 10.0
  2024. ],
  2025. "PromoteLan": 1157,
  2026. "PromoteLanPara": [
  2027. 1.0
  2028. ]
  2029. },
  2030. {
  2031. "ID": 13024,
  2032. "PieceID": 13012,
  2033. "power": 506.25,
  2034. "name": 380,
  2035. "dec": 803,
  2036. "attribute": 4,
  2037. "icon": "icon_s1302",
  2038. "scriptName": "S1302",
  2039. "IDGroup": 1302,
  2040. "timelineName": "1302_timeline_TD",
  2041. "cd": 1.0,
  2042. "addcd": 1.0,
  2043. "SkillType": 1,
  2044. "level": 5,
  2045. "effectValue": [
  2046. 5.0,
  2047. 80.0,
  2048. 30.0,
  2049. 5.0,
  2050. 6.0,
  2051. 100.0
  2052. ],
  2053. "intensifierIndex": [
  2054. 2
  2055. ],
  2056. "addPropertyType": [
  2057. 103
  2058. ],
  2059. "addPropertyValue": [
  2060. 20.0
  2061. ],
  2062. "PromoteLan": 1158,
  2063. "PromoteLanPara": [
  2064. 10.0
  2065. ]
  2066. },
  2067. {
  2068. "ID": 13025,
  2069. "PieceID": 13012,
  2070. "power": 759.375,
  2071. "name": 381,
  2072. "dec": 804,
  2073. "attribute": 4,
  2074. "icon": "icon_s1302",
  2075. "scriptName": "S1302",
  2076. "IDGroup": 1302,
  2077. "timelineName": "1302_timeline_TD",
  2078. "cd": 1.0,
  2079. "addcd": 1.0,
  2080. "SkillType": 1,
  2081. "level": 6,
  2082. "effectValue": [
  2083. 6.0,
  2084. 80.0,
  2085. 30.0,
  2086. 5.0,
  2087. 6.0,
  2088. 100.0
  2089. ],
  2090. "intensifierIndex": [
  2091. 2
  2092. ],
  2093. "addPropertyType": [
  2094. 103
  2095. ],
  2096. "addPropertyValue": [
  2097. 20.0
  2098. ],
  2099. "PromoteLan": 1159,
  2100. "PromoteLanPara": [
  2101. 1.0
  2102. ]
  2103. },
  2104. {
  2105. "ID": 13040,
  2106. "PieceID": 13014,
  2107. "power": 100.0,
  2108. "name": 382,
  2109. "dec": 805,
  2110. "attribute": 4,
  2111. "icon": "icon_s1304",
  2112. "scriptName": "S1304",
  2113. "IDGroup": 1304,
  2114. "timelineName": "1304_timeline_TD",
  2115. "cd": 1.0,
  2116. "addcd": 1.0,
  2117. "SkillType": 1,
  2118. "level": 1,
  2119. "effectValue": [
  2120. 6.0,
  2121. 50.0
  2122. ],
  2123. "intensifierIndex": [
  2124. 2
  2125. ],
  2126. "PromoteLan": -1
  2127. },
  2128. {
  2129. "ID": 13041,
  2130. "PieceID": 13014,
  2131. "power": 150.0,
  2132. "name": 383,
  2133. "dec": 806,
  2134. "attribute": 4,
  2135. "icon": "icon_s1304",
  2136. "scriptName": "S1304",
  2137. "IDGroup": 1304,
  2138. "timelineName": "1304_timeline_TD",
  2139. "cd": 1.0,
  2140. "addcd": 1.0,
  2141. "SkillType": 1,
  2142. "level": 2,
  2143. "effectValue": [
  2144. 6.0,
  2145. 50.0
  2146. ],
  2147. "intensifierIndex": [
  2148. 2
  2149. ],
  2150. "addPropertyType": [
  2151. 101
  2152. ],
  2153. "addPropertyValue": [
  2154. 5.0
  2155. ],
  2156. "PromoteLan": 1165,
  2157. "PromoteLanPara": [
  2158. 5.0
  2159. ]
  2160. },
  2161. {
  2162. "ID": 13042,
  2163. "PieceID": 13014,
  2164. "power": 225.0,
  2165. "name": 384,
  2166. "dec": 807,
  2167. "attribute": 4,
  2168. "icon": "icon_s1304",
  2169. "scriptName": "S1304",
  2170. "IDGroup": 1304,
  2171. "timelineName": "1304_timeline_TD",
  2172. "cd": 1.0,
  2173. "addcd": 1.0,
  2174. "SkillType": 1,
  2175. "level": 3,
  2176. "effectValue": [
  2177. 8.0,
  2178. 50.0
  2179. ],
  2180. "intensifierIndex": [
  2181. 2
  2182. ],
  2183. "addPropertyType": [
  2184. 101
  2185. ],
  2186. "addPropertyValue": [
  2187. 5.0
  2188. ],
  2189. "PromoteLan": 1166,
  2190. "PromoteLanPara": [
  2191. 2.0
  2192. ]
  2193. },
  2194. {
  2195. "ID": 13043,
  2196. "PieceID": 13014,
  2197. "power": 337.5,
  2198. "name": 385,
  2199. "dec": 808,
  2200. "attribute": 4,
  2201. "icon": "icon_s1304",
  2202. "scriptName": "S1304",
  2203. "IDGroup": 1304,
  2204. "timelineName": "1304_timeline_TD",
  2205. "cd": 1.0,
  2206. "addcd": 1.0,
  2207. "SkillType": 1,
  2208. "level": 4,
  2209. "effectValue": [
  2210. 8.0,
  2211. 50.0
  2212. ],
  2213. "intensifierIndex": [
  2214. 2
  2215. ],
  2216. "addPropertyType": [
  2217. 101
  2218. ],
  2219. "addPropertyValue": [
  2220. 10.0
  2221. ],
  2222. "PromoteLan": 1167,
  2223. "PromoteLanPara": [
  2224. 5.0
  2225. ]
  2226. },
  2227. {
  2228. "ID": 13044,
  2229. "PieceID": 13014,
  2230. "power": 506.25,
  2231. "name": 386,
  2232. "dec": 809,
  2233. "attribute": 4,
  2234. "icon": "icon_s1304",
  2235. "scriptName": "S1304",
  2236. "IDGroup": 1304,
  2237. "timelineName": "1304_timeline_TD",
  2238. "cd": 1.0,
  2239. "addcd": 1.0,
  2240. "SkillType": 1,
  2241. "level": 5,
  2242. "effectValue": [
  2243. 10.0,
  2244. 50.0
  2245. ],
  2246. "intensifierIndex": [
  2247. 2
  2248. ],
  2249. "addPropertyType": [
  2250. 101
  2251. ],
  2252. "addPropertyValue": [
  2253. 10.0
  2254. ],
  2255. "PromoteLan": 1168,
  2256. "PromoteLanPara": [
  2257. 2.0
  2258. ]
  2259. },
  2260. {
  2261. "ID": 13045,
  2262. "PieceID": 13014,
  2263. "power": 759.375,
  2264. "name": 387,
  2265. "dec": 810,
  2266. "attribute": 4,
  2267. "icon": "icon_s1304",
  2268. "scriptName": "S1304",
  2269. "IDGroup": 1304,
  2270. "timelineName": "1304_timeline_TD",
  2271. "cd": 1.0,
  2272. "addcd": 1.0,
  2273. "SkillType": 1,
  2274. "level": 6,
  2275. "effectValue": [
  2276. 10.0,
  2277. 50.0
  2278. ],
  2279. "intensifierIndex": [
  2280. 2
  2281. ],
  2282. "addPropertyType": [
  2283. 101
  2284. ],
  2285. "addPropertyValue": [
  2286. 15.0
  2287. ],
  2288. "PromoteLan": 1169,
  2289. "PromoteLanPara": [
  2290. 5.0
  2291. ]
  2292. },
  2293. {
  2294. "ID": 13050,
  2295. "PieceID": 13015,
  2296. "power": 100.0,
  2297. "name": 388,
  2298. "dec": 811,
  2299. "attribute": 4,
  2300. "icon": "icon_s1305",
  2301. "scriptName": "S1305",
  2302. "IDGroup": 1305,
  2303. "timelineName": "1305_timeline_TD",
  2304. "cd": 1.0,
  2305. "addcd": 1.0,
  2306. "SkillType": 1,
  2307. "level": 1,
  2308. "effectValue": [
  2309. 9.0,
  2310. 35.0
  2311. ],
  2312. "intensifierIndex": [
  2313. 2
  2314. ],
  2315. "PromoteLan": -1
  2316. },
  2317. {
  2318. "ID": 13051,
  2319. "PieceID": 13015,
  2320. "power": 150.0,
  2321. "name": 389,
  2322. "dec": 812,
  2323. "attribute": 4,
  2324. "icon": "icon_s1305",
  2325. "scriptName": "S1305",
  2326. "IDGroup": 1305,
  2327. "timelineName": "1305_timeline_TD",
  2328. "cd": 1.0,
  2329. "addcd": 1.0,
  2330. "SkillType": 1,
  2331. "level": 2,
  2332. "effectValue": [
  2333. 9.0,
  2334. 35.0
  2335. ],
  2336. "intensifierIndex": [
  2337. 2
  2338. ],
  2339. "addPropertyType": [
  2340. 102
  2341. ],
  2342. "addPropertyValue": [
  2343. 5.0
  2344. ],
  2345. "PromoteLan": 1170,
  2346. "PromoteLanPara": [
  2347. 5.0
  2348. ]
  2349. },
  2350. {
  2351. "ID": 13052,
  2352. "PieceID": 13015,
  2353. "power": 225.0,
  2354. "name": 390,
  2355. "dec": 813,
  2356. "attribute": 4,
  2357. "icon": "icon_s1305",
  2358. "scriptName": "S1305",
  2359. "IDGroup": 1305,
  2360. "timelineName": "1305_timeline_TD",
  2361. "cd": 1.0,
  2362. "addcd": 1.0,
  2363. "SkillType": 1,
  2364. "level": 3,
  2365. "effectValue": [
  2366. 12.0,
  2367. 35.0
  2368. ],
  2369. "intensifierIndex": [
  2370. 2
  2371. ],
  2372. "addPropertyType": [
  2373. 102
  2374. ],
  2375. "addPropertyValue": [
  2376. 5.0
  2377. ],
  2378. "PromoteLan": 1171,
  2379. "PromoteLanPara": [
  2380. 3.0
  2381. ]
  2382. },
  2383. {
  2384. "ID": 13053,
  2385. "PieceID": 13015,
  2386. "power": 337.5,
  2387. "name": 391,
  2388. "dec": 814,
  2389. "attribute": 4,
  2390. "icon": "icon_s1305",
  2391. "scriptName": "S1305",
  2392. "IDGroup": 1305,
  2393. "timelineName": "1305_timeline_TD",
  2394. "cd": 1.0,
  2395. "addcd": 1.0,
  2396. "SkillType": 1,
  2397. "level": 4,
  2398. "effectValue": [
  2399. 12.0,
  2400. 35.0
  2401. ],
  2402. "intensifierIndex": [
  2403. 2
  2404. ],
  2405. "addPropertyType": [
  2406. 102
  2407. ],
  2408. "addPropertyValue": [
  2409. 10.0
  2410. ],
  2411. "PromoteLan": 1172,
  2412. "PromoteLanPara": [
  2413. 5.0
  2414. ]
  2415. },
  2416. {
  2417. "ID": 13054,
  2418. "PieceID": 13015,
  2419. "power": 506.25,
  2420. "name": 392,
  2421. "dec": 815,
  2422. "attribute": 4,
  2423. "icon": "icon_s1305",
  2424. "scriptName": "S1305",
  2425. "IDGroup": 1305,
  2426. "timelineName": "1305_timeline_TD",
  2427. "cd": 1.0,
  2428. "addcd": 1.0,
  2429. "SkillType": 1,
  2430. "level": 5,
  2431. "effectValue": [
  2432. 15.0,
  2433. 35.0
  2434. ],
  2435. "intensifierIndex": [
  2436. 2
  2437. ],
  2438. "addPropertyType": [
  2439. 102
  2440. ],
  2441. "addPropertyValue": [
  2442. 10.0
  2443. ],
  2444. "PromoteLan": 1173,
  2445. "PromoteLanPara": [
  2446. 3.0
  2447. ]
  2448. },
  2449. {
  2450. "ID": 13055,
  2451. "PieceID": 13015,
  2452. "power": 759.375,
  2453. "name": 393,
  2454. "dec": 816,
  2455. "attribute": 4,
  2456. "icon": "icon_s1305",
  2457. "scriptName": "S1305",
  2458. "IDGroup": 1305,
  2459. "timelineName": "1305_timeline_TD",
  2460. "cd": 1.0,
  2461. "addcd": 1.0,
  2462. "SkillType": 1,
  2463. "level": 6,
  2464. "effectValue": [
  2465. 15.0,
  2466. 35.0
  2467. ],
  2468. "intensifierIndex": [
  2469. 2
  2470. ],
  2471. "addPropertyType": [
  2472. 102
  2473. ],
  2474. "addPropertyValue": [
  2475. 15.0
  2476. ],
  2477. "PromoteLan": 1174,
  2478. "PromoteLanPara": [
  2479. 5.0
  2480. ]
  2481. },
  2482. {
  2483. "ID": 14010,
  2484. "PieceID": 13016,
  2485. "power": 100.0,
  2486. "name": 394,
  2487. "dec": 817,
  2488. "attribute": 8,
  2489. "icon": "icon_s1401",
  2490. "scriptName": "S1401",
  2491. "IDGroup": 1401,
  2492. "timelineName": "1401_timeline_TD",
  2493. "cd": 1.0,
  2494. "addcd": 1.0,
  2495. "SkillType": 1,
  2496. "level": 1,
  2497. "effectValue": [
  2498. 6.0,
  2499. 40.0,
  2500. 20.0
  2501. ],
  2502. "intensifierIndex": [
  2503. 2
  2504. ],
  2505. "PromoteLan": -1
  2506. },
  2507. {
  2508. "ID": 14011,
  2509. "PieceID": 13016,
  2510. "power": 150.0,
  2511. "name": 395,
  2512. "dec": 818,
  2513. "attribute": 8,
  2514. "icon": "icon_s1401",
  2515. "scriptName": "S1401",
  2516. "IDGroup": 1401,
  2517. "timelineName": "1401_timeline_TD",
  2518. "cd": 1.0,
  2519. "addcd": 1.0,
  2520. "SkillType": 1,
  2521. "level": 2,
  2522. "effectValue": [
  2523. 8.0,
  2524. 40.0,
  2525. 20.0
  2526. ],
  2527. "intensifierIndex": [
  2528. 2
  2529. ],
  2530. "PromoteLan": 1175,
  2531. "PromoteLanPara": [
  2532. 2.0
  2533. ]
  2534. },
  2535. {
  2536. "ID": 14012,
  2537. "PieceID": 13016,
  2538. "power": 225.0,
  2539. "name": 396,
  2540. "dec": 819,
  2541. "attribute": 8,
  2542. "icon": "icon_s1401",
  2543. "scriptName": "S1401",
  2544. "IDGroup": 1401,
  2545. "timelineName": "1401_timeline_TD",
  2546. "cd": 1.0,
  2547. "addcd": 1.0,
  2548. "SkillType": 1,
  2549. "level": 3,
  2550. "effectValue": [
  2551. 8.0,
  2552. 40.0,
  2553. 20.0
  2554. ],
  2555. "intensifierIndex": [
  2556. 2
  2557. ],
  2558. "addPropertyType": [
  2559. 101
  2560. ],
  2561. "addPropertyValue": [
  2562. 10.0
  2563. ],
  2564. "PromoteLan": 1176,
  2565. "PromoteLanPara": [
  2566. 10.0
  2567. ]
  2568. },
  2569. {
  2570. "ID": 14013,
  2571. "PieceID": 13016,
  2572. "power": 337.5,
  2573. "name": 397,
  2574. "dec": 820,
  2575. "attribute": 8,
  2576. "icon": "icon_s1401",
  2577. "scriptName": "S1401",
  2578. "IDGroup": 1401,
  2579. "timelineName": "1401_timeline_TD",
  2580. "cd": 1.0,
  2581. "addcd": 1.0,
  2582. "SkillType": 1,
  2583. "level": 4,
  2584. "effectValue": [
  2585. 10.0,
  2586. 40.0,
  2587. 20.0
  2588. ],
  2589. "intensifierIndex": [
  2590. 2
  2591. ],
  2592. "addPropertyType": [
  2593. 101
  2594. ],
  2595. "addPropertyValue": [
  2596. 10.0
  2597. ],
  2598. "PromoteLan": 1177,
  2599. "PromoteLanPara": [
  2600. 4.0
  2601. ]
  2602. },
  2603. {
  2604. "ID": 14014,
  2605. "PieceID": 13016,
  2606. "power": 506.25,
  2607. "name": 398,
  2608. "dec": 821,
  2609. "attribute": 8,
  2610. "icon": "icon_s1401",
  2611. "scriptName": "S1401",
  2612. "IDGroup": 1401,
  2613. "timelineName": "1401_timeline_TD",
  2614. "cd": 1.0,
  2615. "addcd": 1.0,
  2616. "SkillType": 1,
  2617. "level": 5,
  2618. "effectValue": [
  2619. 10.0,
  2620. 40.0,
  2621. 20.0
  2622. ],
  2623. "intensifierIndex": [
  2624. 2
  2625. ],
  2626. "addPropertyType": [
  2627. 101
  2628. ],
  2629. "addPropertyValue": [
  2630. 20.0
  2631. ],
  2632. "PromoteLan": 1178,
  2633. "PromoteLanPara": [
  2634. 10.0
  2635. ]
  2636. },
  2637. {
  2638. "ID": 14015,
  2639. "PieceID": 13016,
  2640. "power": 759.375,
  2641. "name": 399,
  2642. "dec": 822,
  2643. "attribute": 8,
  2644. "icon": "icon_s1401",
  2645. "scriptName": "S1401",
  2646. "IDGroup": 1401,
  2647. "timelineName": "1401_timeline_TD",
  2648. "cd": 1.0,
  2649. "addcd": 1.0,
  2650. "SkillType": 1,
  2651. "level": 6,
  2652. "effectValue": [
  2653. 10.0,
  2654. 40.0,
  2655. 20.0,
  2656. 20.0
  2657. ],
  2658. "intensifierIndex": [
  2659. 2
  2660. ],
  2661. "addPropertyType": [
  2662. 101
  2663. ],
  2664. "addPropertyValue": [
  2665. 20.0
  2666. ],
  2667. "PromoteLan": 1179
  2668. },
  2669. {
  2670. "ID": 14020,
  2671. "PieceID": 13017,
  2672. "power": 100.0,
  2673. "name": 400,
  2674. "dec": 823,
  2675. "attribute": 8,
  2676. "icon": "icon_s1402",
  2677. "scriptName": "S1402",
  2678. "IDGroup": 1402,
  2679. "timelineName": "1402_timeline_TD",
  2680. "cd": 1.0,
  2681. "addcd": 1.0,
  2682. "SkillType": 1,
  2683. "level": 1,
  2684. "effectValue": [
  2685. 3.0,
  2686. 100.0
  2687. ],
  2688. "intensifierIndex": [
  2689. 2
  2690. ],
  2691. "PromoteLan": -1
  2692. },
  2693. {
  2694. "ID": 14021,
  2695. "PieceID": 13017,
  2696. "power": 150.0,
  2697. "name": 401,
  2698. "dec": 824,
  2699. "attribute": 8,
  2700. "icon": "icon_s1402",
  2701. "scriptName": "S1402",
  2702. "IDGroup": 1402,
  2703. "timelineName": "1402_timeline_TD",
  2704. "cd": 1.0,
  2705. "addcd": 1.0,
  2706. "SkillType": 1,
  2707. "level": 2,
  2708. "effectValue": [
  2709. 3.0,
  2710. 100.0,
  2711. 3.0
  2712. ],
  2713. "intensifierIndex": [
  2714. 2
  2715. ],
  2716. "PromoteLan": 1180
  2717. },
  2718. {
  2719. "ID": 14022,
  2720. "PieceID": 13017,
  2721. "power": 225.0,
  2722. "name": 402,
  2723. "dec": 825,
  2724. "attribute": 8,
  2725. "icon": "icon_s1402",
  2726. "scriptName": "S1402",
  2727. "IDGroup": 1402,
  2728. "timelineName": "1402_timeline_TD",
  2729. "cd": 1.0,
  2730. "addcd": 1.0,
  2731. "SkillType": 1,
  2732. "level": 3,
  2733. "effectValue": [
  2734. 3.0,
  2735. 100.0,
  2736. 3.0
  2737. ],
  2738. "intensifierIndex": [
  2739. 2
  2740. ],
  2741. "addPropertyType": [
  2742. 102
  2743. ],
  2744. "addPropertyValue": [
  2745. 10.0
  2746. ],
  2747. "PromoteLan": 1181,
  2748. "PromoteLanPara": [
  2749. 10.0
  2750. ]
  2751. },
  2752. {
  2753. "ID": 14023,
  2754. "PieceID": 13017,
  2755. "power": 337.5,
  2756. "name": 403,
  2757. "dec": 826,
  2758. "attribute": 8,
  2759. "icon": "icon_s1402",
  2760. "scriptName": "S1402",
  2761. "IDGroup": 1402,
  2762. "timelineName": "1402_timeline_TD",
  2763. "cd": 1.0,
  2764. "addcd": 1.0,
  2765. "SkillType": 1,
  2766. "level": 4,
  2767. "effectValue": [
  2768. 4.0,
  2769. 100.0,
  2770. 3.0,
  2771. 100.0
  2772. ],
  2773. "intensifierIndex": [
  2774. 2
  2775. ],
  2776. "addPropertyType": [
  2777. 102
  2778. ],
  2779. "addPropertyValue": [
  2780. 10.0
  2781. ],
  2782. "PromoteLan": 1182,
  2783. "PromoteLanPara": [
  2784. 1.0
  2785. ]
  2786. },
  2787. {
  2788. "ID": 14024,
  2789. "PieceID": 13017,
  2790. "power": 506.25,
  2791. "name": 404,
  2792. "dec": 827,
  2793. "attribute": 8,
  2794. "icon": "icon_s1402",
  2795. "scriptName": "S1402",
  2796. "IDGroup": 1402,
  2797. "timelineName": "1402_timeline_TD",
  2798. "cd": 1.0,
  2799. "addcd": 1.0,
  2800. "SkillType": 1,
  2801. "level": 5,
  2802. "effectValue": [
  2803. 4.0,
  2804. 100.0,
  2805. 3.0,
  2806. 100.0
  2807. ],
  2808. "intensifierIndex": [
  2809. 2
  2810. ],
  2811. "addPropertyType": [
  2812. 102
  2813. ],
  2814. "addPropertyValue": [
  2815. 20.0
  2816. ],
  2817. "PromoteLan": 1183,
  2818. "PromoteLanPara": [
  2819. 10.0
  2820. ]
  2821. },
  2822. {
  2823. "ID": 14025,
  2824. "PieceID": 13017,
  2825. "power": 759.375,
  2826. "name": 405,
  2827. "dec": 828,
  2828. "attribute": 8,
  2829. "icon": "icon_s1402",
  2830. "scriptName": "S1402",
  2831. "IDGroup": 1402,
  2832. "timelineName": "1402_timeline_TD",
  2833. "cd": 1.0,
  2834. "addcd": 1.0,
  2835. "SkillType": 1,
  2836. "level": 6,
  2837. "effectValue": [
  2838. 4.0,
  2839. 100.0,
  2840. 3.0,
  2841. 100.0,
  2842. 25.0
  2843. ],
  2844. "intensifierIndex": [
  2845. 2
  2846. ],
  2847. "addPropertyType": [
  2848. 102
  2849. ],
  2850. "addPropertyValue": [
  2851. 20.0
  2852. ],
  2853. "PromoteLan": 1184
  2854. },
  2855. {
  2856. "ID": 14030,
  2857. "PieceID": 13018,
  2858. "power": 100.0,
  2859. "name": 406,
  2860. "dec": 829,
  2861. "attribute": 8,
  2862. "icon": "icon_s1403",
  2863. "scriptName": "S1403",
  2864. "IDGroup": 1403,
  2865. "timelineName": "1403_timeline_TD",
  2866. "cd": 1.0,
  2867. "addcd": 1.0,
  2868. "SkillType": 1,
  2869. "level": 1,
  2870. "effectValue": [
  2871. 1.0,
  2872. 48.0,
  2873. 25.0
  2874. ],
  2875. "intensifierIndex": [
  2876. 2
  2877. ],
  2878. "PromoteLan": -1
  2879. },
  2880. {
  2881. "ID": 14031,
  2882. "PieceID": 13018,
  2883. "power": 150.0,
  2884. "name": 407,
  2885. "dec": 830,
  2886. "attribute": 8,
  2887. "icon": "icon_s1403",
  2888. "scriptName": "S1403",
  2889. "IDGroup": 1403,
  2890. "timelineName": "1403_timeline_TD",
  2891. "cd": 1.0,
  2892. "addcd": 1.0,
  2893. "SkillType": 1,
  2894. "level": 2,
  2895. "effectValue": [
  2896. 1.0,
  2897. 48.0,
  2898. 25.0,
  2899. 30.0
  2900. ],
  2901. "intensifierIndex": [
  2902. 2
  2903. ],
  2904. "PromoteLan": 1185
  2905. },
  2906. {
  2907. "ID": 14032,
  2908. "PieceID": 13018,
  2909. "power": 225.0,
  2910. "name": 408,
  2911. "dec": 831,
  2912. "attribute": 8,
  2913. "icon": "icon_s1403",
  2914. "scriptName": "S1403",
  2915. "IDGroup": 1403,
  2916. "timelineName": "1403_timeline_TD",
  2917. "cd": 1.0,
  2918. "addcd": 1.0,
  2919. "SkillType": 1,
  2920. "level": 3,
  2921. "effectValue": [
  2922. 1.0,
  2923. 48.0,
  2924. 25.0,
  2925. 30.0
  2926. ],
  2927. "intensifierIndex": [
  2928. 2
  2929. ],
  2930. "addPropertyType": [
  2931. 103
  2932. ],
  2933. "addPropertyValue": [
  2934. 10.0
  2935. ],
  2936. "PromoteLan": 1186,
  2937. "PromoteLanPara": [
  2938. 10.0
  2939. ]
  2940. },
  2941. {
  2942. "ID": 14033,
  2943. "PieceID": 13018,
  2944. "power": 337.5,
  2945. "name": 409,
  2946. "dec": 832,
  2947. "attribute": 8,
  2948. "icon": "icon_s1403",
  2949. "scriptName": "S1403",
  2950. "IDGroup": 1403,
  2951. "timelineName": "1403_timeline_TD",
  2952. "cd": 1.0,
  2953. "addcd": 1.0,
  2954. "SkillType": 1,
  2955. "level": 4,
  2956. "effectValue": [
  2957. 1.0,
  2958. 60.0,
  2959. 25.0,
  2960. 30.0
  2961. ],
  2962. "intensifierIndex": [
  2963. 2
  2964. ],
  2965. "addPropertyType": [
  2966. 103
  2967. ],
  2968. "addPropertyValue": [
  2969. 10.0
  2970. ],
  2971. "PromoteLan": 1187
  2972. },
  2973. {
  2974. "ID": 14034,
  2975. "PieceID": 13018,
  2976. "power": 506.25,
  2977. "name": 410,
  2978. "dec": 833,
  2979. "attribute": 8,
  2980. "icon": "icon_s1403",
  2981. "scriptName": "S1403",
  2982. "IDGroup": 1403,
  2983. "timelineName": "1403_timeline_TD",
  2984. "cd": 1.0,
  2985. "addcd": 1.0,
  2986. "SkillType": 1,
  2987. "level": 5,
  2988. "effectValue": [
  2989. 1.0,
  2990. 60.0,
  2991. 25.0,
  2992. 30.0
  2993. ],
  2994. "intensifierIndex": [
  2995. 2
  2996. ],
  2997. "addPropertyType": [
  2998. 103
  2999. ],
  3000. "addPropertyValue": [
  3001. 20.0
  3002. ],
  3003. "PromoteLan": 1188,
  3004. "PromoteLanPara": [
  3005. 10.0
  3006. ]
  3007. },
  3008. {
  3009. "ID": 14035,
  3010. "PieceID": 13018,
  3011. "power": 759.375,
  3012. "name": 411,
  3013. "dec": 834,
  3014. "attribute": 8,
  3015. "icon": "icon_s1403",
  3016. "scriptName": "S1403",
  3017. "IDGroup": 1403,
  3018. "timelineName": "1403_timeline_TD",
  3019. "cd": 1.0,
  3020. "addcd": 1.0,
  3021. "SkillType": 1,
  3022. "level": 6,
  3023. "effectValue": [
  3024. 1.0,
  3025. 60.0,
  3026. 25.0,
  3027. 30.0,
  3028. 40.0
  3029. ],
  3030. "intensifierIndex": [
  3031. 2
  3032. ],
  3033. "addPropertyType": [
  3034. 103
  3035. ],
  3036. "addPropertyValue": [
  3037. 20.0
  3038. ],
  3039. "PromoteLan": 1189
  3040. },
  3041. {
  3042. "ID": 14040,
  3043. "PieceID": 13019,
  3044. "power": 100.0,
  3045. "name": 412,
  3046. "dec": 835,
  3047. "attribute": 8,
  3048. "icon": "icon_s1404",
  3049. "scriptName": "S1404",
  3050. "IDGroup": 1404,
  3051. "timelineName": "1404_timeline_TD",
  3052. "cd": 1.0,
  3053. "addcd": 1.0,
  3054. "SkillType": 1,
  3055. "level": 1,
  3056. "effectValue": [
  3057. 3.0,
  3058. 80.0,
  3059. 40.0
  3060. ],
  3061. "intensifierIndex": [
  3062. 2
  3063. ],
  3064. "PromoteLan": -1
  3065. },
  3066. {
  3067. "ID": 14041,
  3068. "PieceID": 13019,
  3069. "power": 150.0,
  3070. "name": 413,
  3071. "dec": 836,
  3072. "attribute": 8,
  3073. "icon": "icon_s1404",
  3074. "scriptName": "S1404",
  3075. "IDGroup": 1404,
  3076. "timelineName": "1404_timeline_TD",
  3077. "cd": 1.0,
  3078. "addcd": 1.0,
  3079. "SkillType": 1,
  3080. "level": 2,
  3081. "effectValue": [
  3082. 3.0,
  3083. 80.0,
  3084. 40.0
  3085. ],
  3086. "intensifierIndex": [
  3087. 2
  3088. ],
  3089. "addPropertyType": [
  3090. 103
  3091. ],
  3092. "addPropertyValue": [
  3093. 5.0
  3094. ],
  3095. "PromoteLan": 1190,
  3096. "PromoteLanPara": [
  3097. 5.0
  3098. ]
  3099. },
  3100. {
  3101. "ID": 14042,
  3102. "PieceID": 13019,
  3103. "power": 225.0,
  3104. "name": 414,
  3105. "dec": 837,
  3106. "attribute": 8,
  3107. "icon": "icon_s1404",
  3108. "scriptName": "S1404",
  3109. "IDGroup": 1404,
  3110. "timelineName": "1404_timeline_TD",
  3111. "cd": 1.0,
  3112. "addcd": 1.0,
  3113. "SkillType": 1,
  3114. "level": 3,
  3115. "effectValue": [
  3116. 4.0,
  3117. 80.0,
  3118. 40.0
  3119. ],
  3120. "intensifierIndex": [
  3121. 2
  3122. ],
  3123. "addPropertyType": [
  3124. 103
  3125. ],
  3126. "addPropertyValue": [
  3127. 5.0
  3128. ],
  3129. "PromoteLan": 1191,
  3130. "PromoteLanPara": [
  3131. 1.0
  3132. ]
  3133. },
  3134. {
  3135. "ID": 14043,
  3136. "PieceID": 13019,
  3137. "power": 337.5,
  3138. "name": 415,
  3139. "dec": 838,
  3140. "attribute": 8,
  3141. "icon": "icon_s1404",
  3142. "scriptName": "S1404",
  3143. "IDGroup": 1404,
  3144. "timelineName": "1404_timeline_TD",
  3145. "cd": 1.0,
  3146. "addcd": 1.0,
  3147. "SkillType": 1,
  3148. "level": 4,
  3149. "effectValue": [
  3150. 4.0,
  3151. 80.0,
  3152. 40.0
  3153. ],
  3154. "intensifierIndex": [
  3155. 2
  3156. ],
  3157. "addPropertyType": [
  3158. 103
  3159. ],
  3160. "addPropertyValue": [
  3161. 10.0
  3162. ],
  3163. "PromoteLan": 1192,
  3164. "PromoteLanPara": [
  3165. 5.0
  3166. ]
  3167. },
  3168. {
  3169. "ID": 14044,
  3170. "PieceID": 13019,
  3171. "power": 506.25,
  3172. "name": 416,
  3173. "dec": 839,
  3174. "attribute": 8,
  3175. "icon": "icon_s1404",
  3176. "scriptName": "S1404",
  3177. "IDGroup": 1404,
  3178. "timelineName": "1404_timeline_TD",
  3179. "cd": 1.0,
  3180. "addcd": 1.0,
  3181. "SkillType": 1,
  3182. "level": 5,
  3183. "effectValue": [
  3184. 5.0,
  3185. 80.0,
  3186. 40.0
  3187. ],
  3188. "intensifierIndex": [
  3189. 2
  3190. ],
  3191. "addPropertyType": [
  3192. 103
  3193. ],
  3194. "addPropertyValue": [
  3195. 10.0
  3196. ],
  3197. "PromoteLan": 1193,
  3198. "PromoteLanPara": [
  3199. 2.0
  3200. ]
  3201. },
  3202. {
  3203. "ID": 14045,
  3204. "PieceID": 13019,
  3205. "power": 759.375,
  3206. "name": 417,
  3207. "dec": 840,
  3208. "attribute": 8,
  3209. "icon": "icon_s1404",
  3210. "scriptName": "S1404",
  3211. "IDGroup": 1404,
  3212. "timelineName": "1404_timeline_TD",
  3213. "cd": 1.0,
  3214. "addcd": 1.0,
  3215. "SkillType": 1,
  3216. "level": 6,
  3217. "effectValue": [
  3218. 5.0,
  3219. 80.0,
  3220. 40.0
  3221. ],
  3222. "intensifierIndex": [
  3223. 2
  3224. ],
  3225. "addPropertyType": [
  3226. 103
  3227. ],
  3228. "addPropertyValue": [
  3229. 15.0
  3230. ],
  3231. "PromoteLan": 1194,
  3232. "PromoteLanPara": [
  3233. 5.0
  3234. ]
  3235. },
  3236. {
  3237. "ID": 14050,
  3238. "PieceID": 13020,
  3239. "power": 100.0,
  3240. "name": 418,
  3241. "dec": 841,
  3242. "attribute": 8,
  3243. "icon": "icon_s1405",
  3244. "scriptName": "S1405",
  3245. "IDGroup": 1405,
  3246. "timelineName": "1405_timeline_TD",
  3247. "cd": 1.0,
  3248. "addcd": 1.0,
  3249. "SkillType": 1,
  3250. "level": 1,
  3251. "effectValue": [
  3252. 6.0,
  3253. 50.0
  3254. ],
  3255. "intensifierIndex": [
  3256. 2
  3257. ],
  3258. "PromoteLan": -1
  3259. },
  3260. {
  3261. "ID": 14051,
  3262. "PieceID": 13020,
  3263. "power": 150.0,
  3264. "name": 419,
  3265. "dec": 842,
  3266. "attribute": 8,
  3267. "icon": "icon_s1405",
  3268. "scriptName": "S1405",
  3269. "IDGroup": 1405,
  3270. "timelineName": "1405_timeline_TD",
  3271. "cd": 1.0,
  3272. "addcd": 1.0,
  3273. "SkillType": 1,
  3274. "level": 2,
  3275. "effectValue": [
  3276. 6.0,
  3277. 50.0
  3278. ],
  3279. "intensifierIndex": [
  3280. 2
  3281. ],
  3282. "addPropertyType": [
  3283. 101
  3284. ],
  3285. "addPropertyValue": [
  3286. 5.0
  3287. ],
  3288. "PromoteLan": 1195,
  3289. "PromoteLanPara": [
  3290. 5.0
  3291. ]
  3292. },
  3293. {
  3294. "ID": 14052,
  3295. "PieceID": 13020,
  3296. "power": 225.0,
  3297. "name": 420,
  3298. "dec": 843,
  3299. "attribute": 8,
  3300. "icon": "icon_s1405",
  3301. "scriptName": "S1405",
  3302. "IDGroup": 1405,
  3303. "timelineName": "1405_timeline_TD",
  3304. "cd": 1.0,
  3305. "addcd": 1.0,
  3306. "SkillType": 1,
  3307. "level": 3,
  3308. "effectValue": [
  3309. 8.0,
  3310. 50.0
  3311. ],
  3312. "intensifierIndex": [
  3313. 2
  3314. ],
  3315. "addPropertyType": [
  3316. 101
  3317. ],
  3318. "addPropertyValue": [
  3319. 5.0
  3320. ],
  3321. "PromoteLan": 1196,
  3322. "PromoteLanPara": [
  3323. 2.0
  3324. ]
  3325. },
  3326. {
  3327. "ID": 14053,
  3328. "PieceID": 13020,
  3329. "power": 337.5,
  3330. "name": 421,
  3331. "dec": 844,
  3332. "attribute": 8,
  3333. "icon": "icon_s1405",
  3334. "scriptName": "S1405",
  3335. "IDGroup": 1405,
  3336. "timelineName": "1405_timeline_TD",
  3337. "cd": 1.0,
  3338. "addcd": 1.0,
  3339. "SkillType": 1,
  3340. "level": 4,
  3341. "effectValue": [
  3342. 8.0,
  3343. 50.0
  3344. ],
  3345. "intensifierIndex": [
  3346. 2
  3347. ],
  3348. "addPropertyType": [
  3349. 101
  3350. ],
  3351. "addPropertyValue": [
  3352. 10.0
  3353. ],
  3354. "PromoteLan": 1197,
  3355. "PromoteLanPara": [
  3356. 5.0
  3357. ]
  3358. },
  3359. {
  3360. "ID": 14054,
  3361. "PieceID": 13020,
  3362. "power": 506.25,
  3363. "name": 422,
  3364. "dec": 845,
  3365. "attribute": 8,
  3366. "icon": "icon_s1405",
  3367. "scriptName": "S1405",
  3368. "IDGroup": 1405,
  3369. "timelineName": "1405_timeline_TD",
  3370. "cd": 1.0,
  3371. "addcd": 1.0,
  3372. "SkillType": 1,
  3373. "level": 5,
  3374. "effectValue": [
  3375. 10.0,
  3376. 50.0
  3377. ],
  3378. "intensifierIndex": [
  3379. 2
  3380. ],
  3381. "addPropertyType": [
  3382. 101
  3383. ],
  3384. "addPropertyValue": [
  3385. 10.0
  3386. ],
  3387. "PromoteLan": 1198,
  3388. "PromoteLanPara": [
  3389. 2.0
  3390. ]
  3391. },
  3392. {
  3393. "ID": 14055,
  3394. "PieceID": 13020,
  3395. "power": 759.375,
  3396. "name": 423,
  3397. "dec": 846,
  3398. "attribute": 8,
  3399. "icon": "icon_s1405",
  3400. "scriptName": "S1405",
  3401. "IDGroup": 1405,
  3402. "timelineName": "1405_timeline_TD",
  3403. "cd": 1.0,
  3404. "addcd": 1.0,
  3405. "SkillType": 1,
  3406. "level": 6,
  3407. "effectValue": [
  3408. 10.0,
  3409. 50.0
  3410. ],
  3411. "intensifierIndex": [
  3412. 2
  3413. ],
  3414. "addPropertyType": [
  3415. 101
  3416. ],
  3417. "addPropertyValue": [
  3418. 15.0
  3419. ],
  3420. "PromoteLan": 1199,
  3421. "PromoteLanPara": [
  3422. 5.0
  3423. ]
  3424. },
  3425. {
  3426. "ID": 15010,
  3427. "PieceID": 13021,
  3428. "power": 100.0,
  3429. "name": 424,
  3430. "dec": 847,
  3431. "attribute": 16,
  3432. "icon": "icon_s1501",
  3433. "scriptName": "S1501",
  3434. "IDGroup": 1501,
  3435. "timelineName": "1501_timeline_TD",
  3436. "cd": 1.0,
  3437. "addcd": 1.0,
  3438. "SkillType": 1,
  3439. "level": 1,
  3440. "effectValue": [
  3441. 6.0,
  3442. 40.0,
  3443. 20.0
  3444. ],
  3445. "intensifierIndex": [
  3446. 2
  3447. ],
  3448. "PromoteLan": -1
  3449. },
  3450. {
  3451. "ID": 15011,
  3452. "PieceID": 13021,
  3453. "power": 150.0,
  3454. "name": 425,
  3455. "dec": 848,
  3456. "attribute": 16,
  3457. "icon": "icon_s1501",
  3458. "scriptName": "S1501",
  3459. "IDGroup": 1501,
  3460. "timelineName": "1501_timeline_TD",
  3461. "cd": 1.0,
  3462. "addcd": 1.0,
  3463. "SkillType": 1,
  3464. "level": 2,
  3465. "effectValue": [
  3466. 6.0,
  3467. 40.0,
  3468. 20.0
  3469. ],
  3470. "intensifierIndex": [
  3471. 2
  3472. ],
  3473. "PromoteLan": 1200,
  3474. "PromoteLanPara": [
  3475. 2.0
  3476. ]
  3477. },
  3478. {
  3479. "ID": 15012,
  3480. "PieceID": 13021,
  3481. "power": 225.0,
  3482. "name": 426,
  3483. "dec": 849,
  3484. "attribute": 16,
  3485. "icon": "icon_s1501",
  3486. "scriptName": "S1501",
  3487. "IDGroup": 1501,
  3488. "timelineName": "1501_timeline_TD",
  3489. "cd": 1.0,
  3490. "addcd": 1.0,
  3491. "SkillType": 1,
  3492. "level": 3,
  3493. "effectValue": [
  3494. 8.0,
  3495. 40.0,
  3496. 20.0
  3497. ],
  3498. "intensifierIndex": [
  3499. 2
  3500. ],
  3501. "addPropertyType": [
  3502. 101
  3503. ],
  3504. "addPropertyValue": [
  3505. 10.0
  3506. ],
  3507. "PromoteLan": 1201,
  3508. "PromoteLanPara": [
  3509. 10.0
  3510. ]
  3511. },
  3512. {
  3513. "ID": 15013,
  3514. "PieceID": 13021,
  3515. "power": 337.5,
  3516. "name": 427,
  3517. "dec": 850,
  3518. "attribute": 16,
  3519. "icon": "icon_s1501",
  3520. "scriptName": "S1501",
  3521. "IDGroup": 1501,
  3522. "timelineName": "1501_timeline_TD",
  3523. "cd": 1.0,
  3524. "addcd": 1.0,
  3525. "SkillType": 1,
  3526. "level": 4,
  3527. "effectValue": [
  3528. 8.0,
  3529. 40.0,
  3530. 20.0
  3531. ],
  3532. "intensifierIndex": [
  3533. 2
  3534. ],
  3535. "addPropertyType": [
  3536. 101
  3537. ],
  3538. "addPropertyValue": [
  3539. 10.0
  3540. ],
  3541. "PromoteLan": 1202,
  3542. "PromoteLanPara": [
  3543. 2.0
  3544. ]
  3545. },
  3546. {
  3547. "ID": 15014,
  3548. "PieceID": 13021,
  3549. "power": 506.25,
  3550. "name": 428,
  3551. "dec": 851,
  3552. "attribute": 16,
  3553. "icon": "icon_s1501",
  3554. "scriptName": "S1501",
  3555. "IDGroup": 1501,
  3556. "timelineName": "1501_timeline_TD",
  3557. "cd": 1.0,
  3558. "addcd": 1.0,
  3559. "SkillType": 1,
  3560. "level": 5,
  3561. "effectValue": [
  3562. 10.0,
  3563. 40.0,
  3564. 20.0
  3565. ],
  3566. "intensifierIndex": [
  3567. 2
  3568. ],
  3569. "addPropertyType": [
  3570. 101
  3571. ],
  3572. "addPropertyValue": [
  3573. 20.0
  3574. ],
  3575. "PromoteLan": 1203,
  3576. "PromoteLanPara": [
  3577. 10.0
  3578. ]
  3579. },
  3580. {
  3581. "ID": 15015,
  3582. "PieceID": 13021,
  3583. "power": 759.375,
  3584. "name": 429,
  3585. "dec": 852,
  3586. "attribute": 16,
  3587. "icon": "icon_s1501",
  3588. "scriptName": "S1501",
  3589. "IDGroup": 1501,
  3590. "timelineName": "1501_timeline_TD",
  3591. "cd": 1.0,
  3592. "addcd": 1.0,
  3593. "SkillType": 1,
  3594. "level": 6,
  3595. "effectValue": [
  3596. 10.0,
  3597. 40.0,
  3598. 20.0
  3599. ],
  3600. "intensifierIndex": [
  3601. 2
  3602. ],
  3603. "addPropertyType": [
  3604. 101
  3605. ],
  3606. "addPropertyValue": [
  3607. 20.0
  3608. ],
  3609. "PromoteLan": 1204,
  3610. "PromoteLanPara": [
  3611. 2.0
  3612. ]
  3613. },
  3614. {
  3615. "ID": 15020,
  3616. "PieceID": 13022,
  3617. "power": 100.0,
  3618. "name": 430,
  3619. "dec": 853,
  3620. "attribute": 16,
  3621. "icon": "icon_s1502",
  3622. "scriptName": "S1502",
  3623. "IDGroup": 1502,
  3624. "timelineName": "1502_timeline_TD",
  3625. "cd": 1.0,
  3626. "addcd": 1.0,
  3627. "SkillType": 1,
  3628. "level": 1,
  3629. "effectValue": [
  3630. 3.0,
  3631. 80.0,
  3632. 30.0
  3633. ],
  3634. "intensifierIndex": [
  3635. 2
  3636. ],
  3637. "PromoteLan": -1
  3638. },
  3639. {
  3640. "ID": 15021,
  3641. "PieceID": 13022,
  3642. "power": 150.0,
  3643. "name": 431,
  3644. "dec": 854,
  3645. "attribute": 16,
  3646. "icon": "icon_s1502",
  3647. "scriptName": "S1502",
  3648. "IDGroup": 1502,
  3649. "timelineName": "1502_timeline_TD",
  3650. "cd": 1.0,
  3651. "addcd": 1.0,
  3652. "SkillType": 1,
  3653. "level": 2,
  3654. "effectValue": [
  3655. 4.0,
  3656. 80.0,
  3657. 30.0
  3658. ],
  3659. "intensifierIndex": [
  3660. 2
  3661. ],
  3662. "PromoteLan": 1205,
  3663. "PromoteLanPara": [
  3664. 1.0
  3665. ]
  3666. },
  3667. {
  3668. "ID": 15022,
  3669. "PieceID": 13022,
  3670. "power": 225.0,
  3671. "name": 432,
  3672. "dec": 855,
  3673. "attribute": 16,
  3674. "icon": "icon_s1502",
  3675. "scriptName": "S1502",
  3676. "IDGroup": 1502,
  3677. "timelineName": "1502_timeline_TD",
  3678. "cd": 1.0,
  3679. "addcd": 1.0,
  3680. "SkillType": 1,
  3681. "level": 3,
  3682. "effectValue": [
  3683. 4.0,
  3684. 80.0,
  3685. 30.0
  3686. ],
  3687. "intensifierIndex": [
  3688. 2
  3689. ],
  3690. "addPropertyType": [
  3691. 102
  3692. ],
  3693. "addPropertyValue": [
  3694. 10.0
  3695. ],
  3696. "PromoteLan": 1206,
  3697. "PromoteLanPara": [
  3698. 10.0
  3699. ]
  3700. },
  3701. {
  3702. "ID": 15023,
  3703. "PieceID": 13022,
  3704. "power": 337.5,
  3705. "name": 433,
  3706. "dec": 856,
  3707. "attribute": 16,
  3708. "icon": "icon_s1502",
  3709. "scriptName": "S1502",
  3710. "IDGroup": 1502,
  3711. "timelineName": "1502_timeline_TD",
  3712. "cd": 1.0,
  3713. "addcd": 1.0,
  3714. "SkillType": 1,
  3715. "level": 4,
  3716. "effectValue": [
  3717. 5.0,
  3718. 80.0,
  3719. 30.0
  3720. ],
  3721. "intensifierIndex": [
  3722. 2
  3723. ],
  3724. "addPropertyType": [
  3725. 102
  3726. ],
  3727. "addPropertyValue": [
  3728. 10.0
  3729. ],
  3730. "PromoteLan": 1207,
  3731. "PromoteLanPara": [
  3732. 1.0
  3733. ]
  3734. },
  3735. {
  3736. "ID": 15024,
  3737. "PieceID": 13022,
  3738. "power": 506.25,
  3739. "name": 434,
  3740. "dec": 857,
  3741. "attribute": 16,
  3742. "icon": "icon_s1502",
  3743. "scriptName": "S1502",
  3744. "IDGroup": 1502,
  3745. "timelineName": "1502_timeline_TD",
  3746. "cd": 1.0,
  3747. "addcd": 1.0,
  3748. "SkillType": 1,
  3749. "level": 5,
  3750. "effectValue": [
  3751. 5.0,
  3752. 80.0,
  3753. 30.0
  3754. ],
  3755. "intensifierIndex": [
  3756. 2
  3757. ],
  3758. "addPropertyType": [
  3759. 102
  3760. ],
  3761. "addPropertyValue": [
  3762. 20.0
  3763. ],
  3764. "PromoteLan": 1208,
  3765. "PromoteLanPara": [
  3766. 10.0
  3767. ]
  3768. },
  3769. {
  3770. "ID": 15025,
  3771. "PieceID": 13022,
  3772. "power": 759.375,
  3773. "name": 435,
  3774. "dec": 858,
  3775. "attribute": 16,
  3776. "icon": "icon_s1502",
  3777. "scriptName": "S1502",
  3778. "IDGroup": 1502,
  3779. "timelineName": "1502_timeline_TD",
  3780. "cd": 1.0,
  3781. "addcd": 1.0,
  3782. "SkillType": 1,
  3783. "level": 6,
  3784. "effectValue": [
  3785. 6.0,
  3786. 80.0,
  3787. 30.0
  3788. ],
  3789. "intensifierIndex": [
  3790. 2
  3791. ],
  3792. "addPropertyType": [
  3793. 102
  3794. ],
  3795. "addPropertyValue": [
  3796. 20.0
  3797. ],
  3798. "PromoteLan": 1209,
  3799. "PromoteLanPara": [
  3800. 1.0
  3801. ]
  3802. },
  3803. {
  3804. "ID": 15040,
  3805. "PieceID": 13024,
  3806. "power": 100.0,
  3807. "name": 436,
  3808. "dec": 859,
  3809. "attribute": 16,
  3810. "icon": "icon_s1504",
  3811. "scriptName": "S1504",
  3812. "IDGroup": 1504,
  3813. "timelineName": "1504_timeline_TD",
  3814. "cd": 1.0,
  3815. "addcd": 1.0,
  3816. "SkillType": 1,
  3817. "level": 1,
  3818. "effectValue": [
  3819. 3.0,
  3820. 100.0
  3821. ],
  3822. "intensifierIndex": [
  3823. 2
  3824. ],
  3825. "PromoteLan": -1
  3826. },
  3827. {
  3828. "ID": 15041,
  3829. "PieceID": 13024,
  3830. "power": 150.0,
  3831. "name": 437,
  3832. "dec": 860,
  3833. "attribute": 16,
  3834. "icon": "icon_s1504",
  3835. "scriptName": "S1504",
  3836. "IDGroup": 1504,
  3837. "timelineName": "1504_timeline_TD",
  3838. "cd": 1.0,
  3839. "addcd": 1.0,
  3840. "SkillType": 1,
  3841. "level": 2,
  3842. "effectValue": [
  3843. 3.0,
  3844. 100.0
  3845. ],
  3846. "intensifierIndex": [
  3847. 2
  3848. ],
  3849. "addPropertyType": [
  3850. 102
  3851. ],
  3852. "addPropertyValue": [
  3853. 5.0
  3854. ],
  3855. "PromoteLan": 1215,
  3856. "PromoteLanPara": [
  3857. 5.0
  3858. ]
  3859. },
  3860. {
  3861. "ID": 15042,
  3862. "PieceID": 13024,
  3863. "power": 225.0,
  3864. "name": 438,
  3865. "dec": 861,
  3866. "attribute": 16,
  3867. "icon": "icon_s1504",
  3868. "scriptName": "S1504",
  3869. "IDGroup": 1504,
  3870. "timelineName": "1504_timeline_TD",
  3871. "cd": 1.0,
  3872. "addcd": 1.0,
  3873. "SkillType": 1,
  3874. "level": 3,
  3875. "effectValue": [
  3876. 4.0,
  3877. 100.0
  3878. ],
  3879. "intensifierIndex": [
  3880. 2
  3881. ],
  3882. "addPropertyType": [
  3883. 102
  3884. ],
  3885. "addPropertyValue": [
  3886. 5.0
  3887. ],
  3888. "PromoteLan": 1216,
  3889. "PromoteLanPara": [
  3890. 1.0
  3891. ]
  3892. },
  3893. {
  3894. "ID": 15043,
  3895. "PieceID": 13024,
  3896. "power": 337.5,
  3897. "name": 439,
  3898. "dec": 862,
  3899. "attribute": 16,
  3900. "icon": "icon_s1504",
  3901. "scriptName": "S1504",
  3902. "IDGroup": 1504,
  3903. "timelineName": "1504_timeline_TD",
  3904. "cd": 1.0,
  3905. "addcd": 1.0,
  3906. "SkillType": 1,
  3907. "level": 4,
  3908. "effectValue": [
  3909. 4.0,
  3910. 100.0
  3911. ],
  3912. "intensifierIndex": [
  3913. 2
  3914. ],
  3915. "addPropertyType": [
  3916. 102
  3917. ],
  3918. "addPropertyValue": [
  3919. 10.0
  3920. ],
  3921. "PromoteLan": 1217,
  3922. "PromoteLanPara": [
  3923. 5.0
  3924. ]
  3925. },
  3926. {
  3927. "ID": 15044,
  3928. "PieceID": 13024,
  3929. "power": 506.25,
  3930. "name": 440,
  3931. "dec": 863,
  3932. "attribute": 16,
  3933. "icon": "icon_s1504",
  3934. "scriptName": "S1504",
  3935. "IDGroup": 1504,
  3936. "timelineName": "1504_timeline_TD",
  3937. "cd": 1.0,
  3938. "addcd": 1.0,
  3939. "SkillType": 1,
  3940. "level": 5,
  3941. "effectValue": [
  3942. 5.0,
  3943. 100.0
  3944. ],
  3945. "intensifierIndex": [
  3946. 2
  3947. ],
  3948. "addPropertyType": [
  3949. 102
  3950. ],
  3951. "addPropertyValue": [
  3952. 10.0
  3953. ],
  3954. "PromoteLan": 1218,
  3955. "PromoteLanPara": [
  3956. 1.0
  3957. ]
  3958. },
  3959. {
  3960. "ID": 15045,
  3961. "PieceID": 13024,
  3962. "power": 759.375,
  3963. "name": 441,
  3964. "dec": 864,
  3965. "attribute": 16,
  3966. "icon": "icon_s1504",
  3967. "scriptName": "S1504",
  3968. "IDGroup": 1504,
  3969. "timelineName": "1504_timeline_TD",
  3970. "cd": 1.0,
  3971. "addcd": 1.0,
  3972. "SkillType": 1,
  3973. "level": 6,
  3974. "effectValue": [
  3975. 5.0,
  3976. 100.0
  3977. ],
  3978. "intensifierIndex": [
  3979. 2
  3980. ],
  3981. "addPropertyType": [
  3982. 102
  3983. ],
  3984. "addPropertyValue": [
  3985. 15.0
  3986. ],
  3987. "PromoteLan": 1219,
  3988. "PromoteLanPara": [
  3989. 5.0
  3990. ]
  3991. },
  3992. {
  3993. "ID": 15050,
  3994. "PieceID": 13025,
  3995. "power": 100.0,
  3996. "name": 442,
  3997. "dec": 865,
  3998. "attribute": 16,
  3999. "icon": "icon_s1505",
  4000. "scriptName": "S1505",
  4001. "IDGroup": 1505,
  4002. "timelineName": "1505_timeline_TD",
  4003. "cd": 1.0,
  4004. "addcd": 1.0,
  4005. "SkillType": 1,
  4006. "level": 1,
  4007. "effectValue": [
  4008. 9.0,
  4009. 35.0
  4010. ],
  4011. "intensifierIndex": [
  4012. 2
  4013. ],
  4014. "PromoteLan": -1
  4015. },
  4016. {
  4017. "ID": 15051,
  4018. "PieceID": 13025,
  4019. "power": 150.0,
  4020. "name": 443,
  4021. "dec": 866,
  4022. "attribute": 16,
  4023. "icon": "icon_s1505",
  4024. "scriptName": "S1505",
  4025. "IDGroup": 1505,
  4026. "timelineName": "1505_timeline_TD",
  4027. "cd": 1.0,
  4028. "addcd": 1.0,
  4029. "SkillType": 1,
  4030. "level": 2,
  4031. "effectValue": [
  4032. 9.0,
  4033. 35.0
  4034. ],
  4035. "intensifierIndex": [
  4036. 2
  4037. ],
  4038. "addPropertyType": [
  4039. 101
  4040. ],
  4041. "addPropertyValue": [
  4042. 5.0
  4043. ],
  4044. "PromoteLan": 1220,
  4045. "PromoteLanPara": [
  4046. 5.0
  4047. ]
  4048. },
  4049. {
  4050. "ID": 15052,
  4051. "PieceID": 13025,
  4052. "power": 225.0,
  4053. "name": 444,
  4054. "dec": 867,
  4055. "attribute": 16,
  4056. "icon": "icon_s1505",
  4057. "scriptName": "S1505",
  4058. "IDGroup": 1505,
  4059. "timelineName": "1505_timeline_TD",
  4060. "cd": 1.0,
  4061. "addcd": 1.0,
  4062. "SkillType": 1,
  4063. "level": 3,
  4064. "effectValue": [
  4065. 12.0,
  4066. 35.0
  4067. ],
  4068. "intensifierIndex": [
  4069. 2
  4070. ],
  4071. "addPropertyType": [
  4072. 101
  4073. ],
  4074. "addPropertyValue": [
  4075. 5.0
  4076. ],
  4077. "PromoteLan": 1221,
  4078. "PromoteLanPara": [
  4079. 3.0
  4080. ]
  4081. },
  4082. {
  4083. "ID": 15053,
  4084. "PieceID": 13025,
  4085. "power": 337.5,
  4086. "name": 445,
  4087. "dec": 868,
  4088. "attribute": 16,
  4089. "icon": "icon_s1505",
  4090. "scriptName": "S1505",
  4091. "IDGroup": 1505,
  4092. "timelineName": "1505_timeline_TD",
  4093. "cd": 1.0,
  4094. "addcd": 1.0,
  4095. "SkillType": 1,
  4096. "level": 4,
  4097. "effectValue": [
  4098. 12.0,
  4099. 35.0
  4100. ],
  4101. "intensifierIndex": [
  4102. 2
  4103. ],
  4104. "addPropertyType": [
  4105. 101
  4106. ],
  4107. "addPropertyValue": [
  4108. 10.0
  4109. ],
  4110. "PromoteLan": 1222,
  4111. "PromoteLanPara": [
  4112. 5.0
  4113. ]
  4114. },
  4115. {
  4116. "ID": 15054,
  4117. "PieceID": 13025,
  4118. "power": 506.25,
  4119. "name": 446,
  4120. "dec": 869,
  4121. "attribute": 16,
  4122. "icon": "icon_s1505",
  4123. "scriptName": "S1505",
  4124. "IDGroup": 1505,
  4125. "timelineName": "1505_timeline_TD",
  4126. "cd": 1.0,
  4127. "addcd": 1.0,
  4128. "SkillType": 1,
  4129. "level": 5,
  4130. "effectValue": [
  4131. 15.0,
  4132. 35.0
  4133. ],
  4134. "intensifierIndex": [
  4135. 2
  4136. ],
  4137. "addPropertyType": [
  4138. 101
  4139. ],
  4140. "addPropertyValue": [
  4141. 10.0
  4142. ],
  4143. "PromoteLan": 1223,
  4144. "PromoteLanPara": [
  4145. 3.0
  4146. ]
  4147. },
  4148. {
  4149. "ID": 15055,
  4150. "PieceID": 13025,
  4151. "power": 759.375,
  4152. "name": 447,
  4153. "dec": 870,
  4154. "attribute": 16,
  4155. "icon": "icon_s1505",
  4156. "scriptName": "S1505",
  4157. "IDGroup": 1505,
  4158. "timelineName": "1505_timeline_TD",
  4159. "cd": 1.0,
  4160. "addcd": 1.0,
  4161. "SkillType": 1,
  4162. "level": 6,
  4163. "effectValue": [
  4164. 15.0,
  4165. 35.0
  4166. ],
  4167. "intensifierIndex": [
  4168. 2
  4169. ],
  4170. "addPropertyType": [
  4171. 101
  4172. ],
  4173. "addPropertyValue": [
  4174. 15.0
  4175. ],
  4176. "PromoteLan": 1224,
  4177. "PromoteLanPara": [
  4178. 5.0
  4179. ]
  4180. },
  4181. {
  4182. "ID": 20010,
  4183. "PieceID": 13006,
  4184. "power": 100.0,
  4185. "name": 448,
  4186. "dec": 871,
  4187. "attribute": 0,
  4188. "icon": "icon_s2001",
  4189. "scriptName": "S2001",
  4190. "IDGroup": 2001,
  4191. "timelineName": "",
  4192. "cd": 1.0,
  4193. "addcd": 1.0,
  4194. "SkillType": 2,
  4195. "level": 1,
  4196. "intensifierIndex": [
  4197. 0
  4198. ],
  4199. "PromoteLan": -1
  4200. },
  4201. {
  4202. "ID": 20011,
  4203. "PieceID": 13006,
  4204. "power": 150.0,
  4205. "name": 449,
  4206. "dec": 872,
  4207. "attribute": 0,
  4208. "icon": "icon_s2001",
  4209. "scriptName": "S2001",
  4210. "IDGroup": 2001,
  4211. "timelineName": "",
  4212. "cd": 1.0,
  4213. "addcd": 1.0,
  4214. "SkillType": 2,
  4215. "level": 2,
  4216. "intensifierIndex": [
  4217. 0
  4218. ],
  4219. "addPropertyType": [
  4220. 103
  4221. ],
  4222. "addPropertyValue": [
  4223. 3.0
  4224. ],
  4225. "PromoteLan": 1225,
  4226. "PromoteLanPara": [
  4227. 3.0
  4228. ]
  4229. },
  4230. {
  4231. "ID": 20012,
  4232. "PieceID": 13006,
  4233. "power": 225.0,
  4234. "name": 450,
  4235. "dec": 873,
  4236. "attribute": 0,
  4237. "icon": "icon_s2001",
  4238. "scriptName": "S2001",
  4239. "IDGroup": 2001,
  4240. "timelineName": "",
  4241. "cd": 1.0,
  4242. "addcd": 1.0,
  4243. "SkillType": 2,
  4244. "level": 3,
  4245. "intensifierIndex": [
  4246. 0
  4247. ],
  4248. "addPropertyType": [
  4249. 103
  4250. ],
  4251. "addPropertyValue": [
  4252. 6.0
  4253. ],
  4254. "PromoteLan": 1226,
  4255. "PromoteLanPara": [
  4256. 3.0
  4257. ]
  4258. },
  4259. {
  4260. "ID": 20013,
  4261. "PieceID": 13006,
  4262. "power": 337.5,
  4263. "name": 451,
  4264. "dec": 874,
  4265. "attribute": 0,
  4266. "icon": "icon_s2001",
  4267. "scriptName": "S2001",
  4268. "IDGroup": 2001,
  4269. "timelineName": "",
  4270. "cd": 1.0,
  4271. "addcd": 1.0,
  4272. "SkillType": 2,
  4273. "level": 4,
  4274. "intensifierIndex": [
  4275. 0
  4276. ],
  4277. "addPropertyType": [
  4278. 103
  4279. ],
  4280. "addPropertyValue": [
  4281. 9.0
  4282. ],
  4283. "PromoteLan": 1227,
  4284. "PromoteLanPara": [
  4285. 3.0
  4286. ]
  4287. },
  4288. {
  4289. "ID": 20014,
  4290. "PieceID": 13006,
  4291. "power": 506.25,
  4292. "name": 452,
  4293. "dec": 875,
  4294. "attribute": 0,
  4295. "icon": "icon_s2001",
  4296. "scriptName": "S2001",
  4297. "IDGroup": 2001,
  4298. "timelineName": "",
  4299. "cd": 1.0,
  4300. "addcd": 1.0,
  4301. "SkillType": 2,
  4302. "level": 5,
  4303. "intensifierIndex": [
  4304. 0
  4305. ],
  4306. "addPropertyType": [
  4307. 103
  4308. ],
  4309. "addPropertyValue": [
  4310. 12.0
  4311. ],
  4312. "PromoteLan": 1228,
  4313. "PromoteLanPara": [
  4314. 3.0
  4315. ]
  4316. },
  4317. {
  4318. "ID": 20015,
  4319. "PieceID": 13006,
  4320. "power": 759.375,
  4321. "name": 453,
  4322. "dec": 876,
  4323. "attribute": 0,
  4324. "icon": "icon_s2001",
  4325. "scriptName": "S2001",
  4326. "IDGroup": 2001,
  4327. "timelineName": "",
  4328. "cd": 1.0,
  4329. "addcd": 1.0,
  4330. "SkillType": 2,
  4331. "level": 6,
  4332. "intensifierIndex": [
  4333. 0
  4334. ],
  4335. "addPropertyType": [
  4336. 103
  4337. ],
  4338. "addPropertyValue": [
  4339. 12.0
  4340. ],
  4341. "PromoteLan": 1229
  4342. },
  4343. {
  4344. "ID": 20020,
  4345. "PieceID": 13006,
  4346. "power": 100.0,
  4347. "name": 454,
  4348. "dec": 877,
  4349. "attribute": 0,
  4350. "icon": "icon_s2002",
  4351. "scriptName": "S2002",
  4352. "IDGroup": 2002,
  4353. "timelineName": "",
  4354. "cd": 1.0,
  4355. "addcd": 1.0,
  4356. "SkillType": 2,
  4357. "level": 1,
  4358. "effectValue": [
  4359. 1.0
  4360. ],
  4361. "intensifierIndex": [
  4362. 0
  4363. ],
  4364. "PromoteLan": -1
  4365. },
  4366. {
  4367. "ID": 20021,
  4368. "PieceID": 13006,
  4369. "power": 150.0,
  4370. "name": 455,
  4371. "dec": 878,
  4372. "attribute": 0,
  4373. "icon": "icon_s2002",
  4374. "scriptName": "S2002",
  4375. "IDGroup": 2002,
  4376. "timelineName": "",
  4377. "cd": 1.0,
  4378. "addcd": 1.0,
  4379. "SkillType": 2,
  4380. "level": 2,
  4381. "effectValue": [
  4382. 1.0
  4383. ],
  4384. "intensifierIndex": [
  4385. 0
  4386. ],
  4387. "addPropertyType": [
  4388. 102
  4389. ],
  4390. "addPropertyValue": [
  4391. 3.0
  4392. ],
  4393. "PromoteLan": 1230,
  4394. "PromoteLanPara": [
  4395. 3.0
  4396. ]
  4397. },
  4398. {
  4399. "ID": 20022,
  4400. "PieceID": 13006,
  4401. "power": 225.0,
  4402. "name": 456,
  4403. "dec": 879,
  4404. "attribute": 0,
  4405. "icon": "icon_s2002",
  4406. "scriptName": "S2002",
  4407. "IDGroup": 2002,
  4408. "timelineName": "",
  4409. "cd": 1.0,
  4410. "addcd": 1.0,
  4411. "SkillType": 2,
  4412. "level": 3,
  4413. "effectValue": [
  4414. 1.0
  4415. ],
  4416. "intensifierIndex": [
  4417. 0
  4418. ],
  4419. "addPropertyType": [
  4420. 102
  4421. ],
  4422. "addPropertyValue": [
  4423. 6.0
  4424. ],
  4425. "PromoteLan": 1231,
  4426. "PromoteLanPara": [
  4427. 3.0
  4428. ]
  4429. },
  4430. {
  4431. "ID": 20023,
  4432. "PieceID": 13006,
  4433. "power": 337.5,
  4434. "name": 457,
  4435. "dec": 880,
  4436. "attribute": 0,
  4437. "icon": "icon_s2002",
  4438. "scriptName": "S2002",
  4439. "IDGroup": 2002,
  4440. "timelineName": "",
  4441. "cd": 1.0,
  4442. "addcd": 1.0,
  4443. "SkillType": 2,
  4444. "level": 4,
  4445. "effectValue": [
  4446. 1.0
  4447. ],
  4448. "intensifierIndex": [
  4449. 0
  4450. ],
  4451. "addPropertyType": [
  4452. 102
  4453. ],
  4454. "addPropertyValue": [
  4455. 9.0
  4456. ],
  4457. "PromoteLan": 1232,
  4458. "PromoteLanPara": [
  4459. 3.0
  4460. ]
  4461. },
  4462. {
  4463. "ID": 20024,
  4464. "PieceID": 13006,
  4465. "power": 506.25,
  4466. "name": 458,
  4467. "dec": 881,
  4468. "attribute": 0,
  4469. "icon": "icon_s2002",
  4470. "scriptName": "S2002",
  4471. "IDGroup": 2002,
  4472. "timelineName": "",
  4473. "cd": 1.0,
  4474. "addcd": 1.0,
  4475. "SkillType": 2,
  4476. "level": 5,
  4477. "effectValue": [
  4478. 1.0
  4479. ],
  4480. "intensifierIndex": [
  4481. 0
  4482. ],
  4483. "addPropertyType": [
  4484. 102
  4485. ],
  4486. "addPropertyValue": [
  4487. 12.0
  4488. ],
  4489. "PromoteLan": 1233,
  4490. "PromoteLanPara": [
  4491. 3.0
  4492. ]
  4493. },
  4494. {
  4495. "ID": 20025,
  4496. "PieceID": 13006,
  4497. "power": 759.375,
  4498. "name": 459,
  4499. "dec": 882,
  4500. "attribute": 0,
  4501. "icon": "icon_s2002",
  4502. "scriptName": "S2002",
  4503. "IDGroup": 2002,
  4504. "timelineName": "",
  4505. "cd": 1.0,
  4506. "addcd": 1.0,
  4507. "SkillType": 2,
  4508. "level": 6,
  4509. "effectValue": [
  4510. 3.0
  4511. ],
  4512. "intensifierIndex": [
  4513. 0
  4514. ],
  4515. "addPropertyType": [
  4516. 102
  4517. ],
  4518. "addPropertyValue": [
  4519. 12.0
  4520. ],
  4521. "PromoteLan": 1234
  4522. },
  4523. {
  4524. "ID": 20030,
  4525. "PieceID": 13011,
  4526. "power": 100.0,
  4527. "name": 460,
  4528. "dec": 883,
  4529. "attribute": 0,
  4530. "icon": "icon_s2003",
  4531. "scriptName": "S2003",
  4532. "IDGroup": 2003,
  4533. "timelineName": "",
  4534. "cd": 1.0,
  4535. "addcd": 1.0,
  4536. "SkillType": 2,
  4537. "level": 1,
  4538. "effectValue": [
  4539. 50.0
  4540. ],
  4541. "intensifierIndex": [
  4542. 0
  4543. ],
  4544. "PromoteLan": -1,
  4545. "PromoteLanPara_1": [
  4546. 1.0
  4547. ]
  4548. },
  4549. {
  4550. "ID": 20031,
  4551. "PieceID": 13011,
  4552. "power": 150.0,
  4553. "name": 461,
  4554. "dec": 884,
  4555. "attribute": 0,
  4556. "icon": "icon_s2003",
  4557. "scriptName": "S2003",
  4558. "IDGroup": 2003,
  4559. "timelineName": "",
  4560. "cd": 1.0,
  4561. "addcd": 1.0,
  4562. "SkillType": 2,
  4563. "level": 2,
  4564. "effectValue": [
  4565. 50.0
  4566. ],
  4567. "intensifierIndex": [
  4568. 0
  4569. ],
  4570. "addPropertyType": [
  4571. 103
  4572. ],
  4573. "addPropertyValue": [
  4574. 3.0
  4575. ],
  4576. "PromoteLan": 1235,
  4577. "PromoteLanPara": [
  4578. 3.0
  4579. ],
  4580. "PromoteLanPara_1": [
  4581. 1.0
  4582. ]
  4583. },
  4584. {
  4585. "ID": 20032,
  4586. "PieceID": 13011,
  4587. "power": 225.0,
  4588. "name": 462,
  4589. "dec": 885,
  4590. "attribute": 0,
  4591. "icon": "icon_s2003",
  4592. "scriptName": "S2003",
  4593. "IDGroup": 2003,
  4594. "timelineName": "",
  4595. "cd": 1.0,
  4596. "addcd": 1.0,
  4597. "SkillType": 2,
  4598. "level": 3,
  4599. "effectValue": [
  4600. 50.0
  4601. ],
  4602. "intensifierIndex": [
  4603. 0
  4604. ],
  4605. "addPropertyType": [
  4606. 103
  4607. ],
  4608. "addPropertyValue": [
  4609. 6.0
  4610. ],
  4611. "PromoteLan": 1236,
  4612. "PromoteLanPara": [
  4613. 3.0
  4614. ],
  4615. "PromoteLanPara_1": [
  4616. 1.0
  4617. ]
  4618. },
  4619. {
  4620. "ID": 20033,
  4621. "PieceID": 13011,
  4622. "power": 337.5,
  4623. "name": 463,
  4624. "dec": 886,
  4625. "attribute": 0,
  4626. "icon": "icon_s2003",
  4627. "scriptName": "S2003",
  4628. "IDGroup": 2003,
  4629. "timelineName": "",
  4630. "cd": 1.0,
  4631. "addcd": 1.0,
  4632. "SkillType": 2,
  4633. "level": 4,
  4634. "effectValue": [
  4635. 50.0
  4636. ],
  4637. "intensifierIndex": [
  4638. 0
  4639. ],
  4640. "addPropertyType": [
  4641. 103
  4642. ],
  4643. "addPropertyValue": [
  4644. 9.0
  4645. ],
  4646. "PromoteLan": 1237,
  4647. "PromoteLanPara": [
  4648. 3.0
  4649. ],
  4650. "PromoteLanPara_1": [
  4651. 1.0
  4652. ]
  4653. },
  4654. {
  4655. "ID": 20034,
  4656. "PieceID": 13011,
  4657. "power": 506.25,
  4658. "name": 464,
  4659. "dec": 887,
  4660. "attribute": 0,
  4661. "icon": "icon_s2003",
  4662. "scriptName": "S2003",
  4663. "IDGroup": 2003,
  4664. "timelineName": "",
  4665. "cd": 1.0,
  4666. "addcd": 1.0,
  4667. "SkillType": 2,
  4668. "level": 5,
  4669. "effectValue": [
  4670. 50.0
  4671. ],
  4672. "intensifierIndex": [
  4673. 0
  4674. ],
  4675. "addPropertyType": [
  4676. 103
  4677. ],
  4678. "addPropertyValue": [
  4679. 12.0
  4680. ],
  4681. "PromoteLan": 1238,
  4682. "PromoteLanPara": [
  4683. 3.0
  4684. ],
  4685. "PromoteLanPara_1": [
  4686. 1.0
  4687. ]
  4688. },
  4689. {
  4690. "ID": 20035,
  4691. "PieceID": 13011,
  4692. "power": 759.375,
  4693. "name": 465,
  4694. "dec": 888,
  4695. "attribute": 0,
  4696. "icon": "icon_s2003",
  4697. "scriptName": "S2003",
  4698. "IDGroup": 2003,
  4699. "timelineName": "",
  4700. "cd": 1.0,
  4701. "addcd": 1.0,
  4702. "SkillType": 2,
  4703. "level": 6,
  4704. "effectValue": [
  4705. 100.0
  4706. ],
  4707. "intensifierIndex": [
  4708. 0
  4709. ],
  4710. "addPropertyType": [
  4711. 103
  4712. ],
  4713. "addPropertyValue": [
  4714. 12.0
  4715. ],
  4716. "PromoteLan": 1239,
  4717. "PromoteLanPara_1": [
  4718. 1.0
  4719. ]
  4720. },
  4721. {
  4722. "ID": 20040,
  4723. "PieceID": 13007,
  4724. "power": 100.0,
  4725. "name": 466,
  4726. "dec": 889,
  4727. "attribute": 0,
  4728. "icon": "icon_s2004",
  4729. "scriptName": "S2004",
  4730. "IDGroup": 2004,
  4731. "timelineName": "",
  4732. "cd": 1.0,
  4733. "addcd": 1.0,
  4734. "SkillType": 2,
  4735. "level": 1,
  4736. "effectValue": [
  4737. 30.0
  4738. ],
  4739. "intensifierIndex": [
  4740. 0
  4741. ],
  4742. "PromoteLan": -1,
  4743. "PromoteLanPara_1": [
  4744. 1.0,
  4745. -1.0
  4746. ]
  4747. },
  4748. {
  4749. "ID": 20041,
  4750. "PieceID": 13007,
  4751. "power": 150.0,
  4752. "name": 467,
  4753. "dec": 890,
  4754. "attribute": 0,
  4755. "icon": "icon_s2004",
  4756. "scriptName": "S2004",
  4757. "IDGroup": 2004,
  4758. "timelineName": "",
  4759. "cd": 1.0,
  4760. "addcd": 1.0,
  4761. "SkillType": 2,
  4762. "level": 2,
  4763. "effectValue": [
  4764. 30.0
  4765. ],
  4766. "intensifierIndex": [
  4767. 0
  4768. ],
  4769. "addPropertyType": [
  4770. 101
  4771. ],
  4772. "addPropertyValue": [
  4773. 3.0
  4774. ],
  4775. "PromoteLan": 1240,
  4776. "PromoteLanPara": [
  4777. 3.0
  4778. ],
  4779. "PromoteLanPara_1": [
  4780. 1.0,
  4781. -1.0
  4782. ]
  4783. },
  4784. {
  4785. "ID": 20042,
  4786. "PieceID": 13007,
  4787. "power": 225.0,
  4788. "name": 468,
  4789. "dec": 891,
  4790. "attribute": 0,
  4791. "icon": "icon_s2004",
  4792. "scriptName": "S2004",
  4793. "IDGroup": 2004,
  4794. "timelineName": "",
  4795. "cd": 1.0,
  4796. "addcd": 1.0,
  4797. "SkillType": 2,
  4798. "level": 3,
  4799. "effectValue": [
  4800. 30.0
  4801. ],
  4802. "intensifierIndex": [
  4803. 0
  4804. ],
  4805. "addPropertyType": [
  4806. 101
  4807. ],
  4808. "addPropertyValue": [
  4809. 6.0
  4810. ],
  4811. "PromoteLan": 1241,
  4812. "PromoteLanPara": [
  4813. 3.0
  4814. ],
  4815. "PromoteLanPara_1": [
  4816. 1.0,
  4817. -1.0
  4818. ]
  4819. },
  4820. {
  4821. "ID": 20043,
  4822. "PieceID": 13007,
  4823. "power": 337.5,
  4824. "name": 469,
  4825. "dec": 892,
  4826. "attribute": 0,
  4827. "icon": "icon_s2004",
  4828. "scriptName": "S2004",
  4829. "IDGroup": 2004,
  4830. "timelineName": "",
  4831. "cd": 1.0,
  4832. "addcd": 1.0,
  4833. "SkillType": 2,
  4834. "level": 4,
  4835. "effectValue": [
  4836. 30.0
  4837. ],
  4838. "intensifierIndex": [
  4839. 0
  4840. ],
  4841. "addPropertyType": [
  4842. 101
  4843. ],
  4844. "addPropertyValue": [
  4845. 9.0
  4846. ],
  4847. "PromoteLan": 1242,
  4848. "PromoteLanPara": [
  4849. 3.0
  4850. ],
  4851. "PromoteLanPara_1": [
  4852. 1.0,
  4853. -1.0
  4854. ]
  4855. },
  4856. {
  4857. "ID": 20044,
  4858. "PieceID": 13007,
  4859. "power": 506.25,
  4860. "name": 470,
  4861. "dec": 893,
  4862. "attribute": 0,
  4863. "icon": "icon_s2004",
  4864. "scriptName": "S2004",
  4865. "IDGroup": 2004,
  4866. "timelineName": "",
  4867. "cd": 1.0,
  4868. "addcd": 1.0,
  4869. "SkillType": 2,
  4870. "level": 5,
  4871. "effectValue": [
  4872. 30.0
  4873. ],
  4874. "intensifierIndex": [
  4875. 0
  4876. ],
  4877. "addPropertyType": [
  4878. 101
  4879. ],
  4880. "addPropertyValue": [
  4881. 12.0
  4882. ],
  4883. "PromoteLan": 1243,
  4884. "PromoteLanPara": [
  4885. 3.0
  4886. ],
  4887. "PromoteLanPara_1": [
  4888. 1.0,
  4889. -1.0
  4890. ]
  4891. },
  4892. {
  4893. "ID": 20045,
  4894. "PieceID": 13007,
  4895. "power": 759.375,
  4896. "name": 471,
  4897. "dec": 894,
  4898. "attribute": 0,
  4899. "icon": "icon_s2004",
  4900. "scriptName": "S2004",
  4901. "IDGroup": 2004,
  4902. "timelineName": "",
  4903. "cd": 1.0,
  4904. "addcd": 1.0,
  4905. "SkillType": 2,
  4906. "level": 6,
  4907. "effectValue": [
  4908. 30.0,
  4909. 15.0,
  4910. 10.0
  4911. ],
  4912. "intensifierIndex": [
  4913. 0
  4914. ],
  4915. "addPropertyType": [
  4916. 101
  4917. ],
  4918. "addPropertyValue": [
  4919. 12.0
  4920. ],
  4921. "PromoteLan": 1244,
  4922. "PromoteLanPara_1": [
  4923. 1.0,
  4924. -1.0
  4925. ]
  4926. },
  4927. {
  4928. "ID": 20050,
  4929. "PieceID": 13008,
  4930. "power": 100.0,
  4931. "name": 472,
  4932. "dec": 895,
  4933. "attribute": 0,
  4934. "icon": "icon_s2005",
  4935. "scriptName": "S2005",
  4936. "IDGroup": 2005,
  4937. "timelineName": "",
  4938. "cd": 1.0,
  4939. "addcd": 1.0,
  4940. "SkillType": 2,
  4941. "level": 1,
  4942. "effectValue": [
  4943. 1.0,
  4944. 20.0
  4945. ],
  4946. "intensifierIndex": [
  4947. 0
  4948. ],
  4949. "PromoteLan": -1
  4950. },
  4951. {
  4952. "ID": 20051,
  4953. "PieceID": 13008,
  4954. "power": 150.0,
  4955. "name": 473,
  4956. "dec": 896,
  4957. "attribute": 0,
  4958. "icon": "icon_s2005",
  4959. "scriptName": "S2005",
  4960. "IDGroup": 2005,
  4961. "timelineName": "",
  4962. "cd": 1.0,
  4963. "addcd": 1.0,
  4964. "SkillType": 2,
  4965. "level": 2,
  4966. "effectValue": [
  4967. 1.0,
  4968. 20.0
  4969. ],
  4970. "intensifierIndex": [
  4971. 0
  4972. ],
  4973. "addPropertyType": [
  4974. 102
  4975. ],
  4976. "addPropertyValue": [
  4977. 3.0
  4978. ],
  4979. "PromoteLan": 1245,
  4980. "PromoteLanPara": [
  4981. 3.0
  4982. ]
  4983. },
  4984. {
  4985. "ID": 20052,
  4986. "PieceID": 13008,
  4987. "power": 225.0,
  4988. "name": 474,
  4989. "dec": 897,
  4990. "attribute": 0,
  4991. "icon": "icon_s2005",
  4992. "scriptName": "S2005",
  4993. "IDGroup": 2005,
  4994. "timelineName": "",
  4995. "cd": 1.0,
  4996. "addcd": 1.0,
  4997. "SkillType": 2,
  4998. "level": 3,
  4999. "effectValue": [
  5000. 1.0,
  5001. 20.0
  5002. ],
  5003. "intensifierIndex": [
  5004. 0
  5005. ],
  5006. "addPropertyType": [
  5007. 102
  5008. ],
  5009. "addPropertyValue": [
  5010. 6.0
  5011. ],
  5012. "PromoteLan": 1246,
  5013. "PromoteLanPara": [
  5014. 3.0
  5015. ]
  5016. },
  5017. {
  5018. "ID": 20053,
  5019. "PieceID": 13008,
  5020. "power": 337.5,
  5021. "name": 475,
  5022. "dec": 898,
  5023. "attribute": 0,
  5024. "icon": "icon_s2005",
  5025. "scriptName": "S2005",
  5026. "IDGroup": 2005,
  5027. "timelineName": "",
  5028. "cd": 1.0,
  5029. "addcd": 1.0,
  5030. "SkillType": 2,
  5031. "level": 4,
  5032. "effectValue": [
  5033. 1.0,
  5034. 20.0
  5035. ],
  5036. "intensifierIndex": [
  5037. 0
  5038. ],
  5039. "addPropertyType": [
  5040. 102
  5041. ],
  5042. "addPropertyValue": [
  5043. 9.0
  5044. ],
  5045. "PromoteLan": 1247,
  5046. "PromoteLanPara": [
  5047. 3.0
  5048. ]
  5049. },
  5050. {
  5051. "ID": 20054,
  5052. "PieceID": 13008,
  5053. "power": 506.25,
  5054. "name": 476,
  5055. "dec": 899,
  5056. "attribute": 0,
  5057. "icon": "icon_s2005",
  5058. "scriptName": "S2005",
  5059. "IDGroup": 2005,
  5060. "timelineName": "",
  5061. "cd": 1.0,
  5062. "addcd": 1.0,
  5063. "SkillType": 2,
  5064. "level": 5,
  5065. "effectValue": [
  5066. 1.0,
  5067. 20.0
  5068. ],
  5069. "intensifierIndex": [
  5070. 0
  5071. ],
  5072. "addPropertyType": [
  5073. 102
  5074. ],
  5075. "addPropertyValue": [
  5076. 12.0
  5077. ],
  5078. "PromoteLan": 1248,
  5079. "PromoteLanPara": [
  5080. 3.0
  5081. ]
  5082. },
  5083. {
  5084. "ID": 20055,
  5085. "PieceID": 13008,
  5086. "power": 759.375,
  5087. "name": 477,
  5088. "dec": 900,
  5089. "attribute": 0,
  5090. "icon": "icon_s2005",
  5091. "scriptName": "S2005",
  5092. "IDGroup": 2005,
  5093. "timelineName": "",
  5094. "cd": 1.0,
  5095. "addcd": 1.0,
  5096. "SkillType": 2,
  5097. "level": 6,
  5098. "effectValue": [
  5099. 2.0,
  5100. 20.0,
  5101. 1.0
  5102. ],
  5103. "intensifierIndex": [
  5104. 0
  5105. ],
  5106. "addPropertyType": [
  5107. 102
  5108. ],
  5109. "addPropertyValue": [
  5110. 12.0
  5111. ],
  5112. "PromoteLan": 1249
  5113. },
  5114. {
  5115. "ID": 20060,
  5116. "PieceID": 13009,
  5117. "power": 100.0,
  5118. "name": 478,
  5119. "dec": 901,
  5120. "attribute": 0,
  5121. "icon": "icon_s2006",
  5122. "scriptName": "S2006",
  5123. "IDGroup": 2006,
  5124. "timelineName": "",
  5125. "cd": 1.0,
  5126. "addcd": 1.0,
  5127. "SkillType": 2,
  5128. "level": 1,
  5129. "effectValue": [
  5130. 30.0,
  5131. 30.0
  5132. ],
  5133. "intensifierIndex": [
  5134. 0
  5135. ],
  5136. "PromoteLan": -1
  5137. },
  5138. {
  5139. "ID": 20061,
  5140. "PieceID": 13009,
  5141. "power": 150.0,
  5142. "name": 479,
  5143. "dec": 902,
  5144. "attribute": 0,
  5145. "icon": "icon_s2006",
  5146. "scriptName": "S2006",
  5147. "IDGroup": 2006,
  5148. "timelineName": "",
  5149. "cd": 1.0,
  5150. "addcd": 1.0,
  5151. "SkillType": 2,
  5152. "level": 2,
  5153. "effectValue": [
  5154. 30.0,
  5155. 30.0
  5156. ],
  5157. "intensifierIndex": [
  5158. 0
  5159. ],
  5160. "addPropertyType": [
  5161. 103
  5162. ],
  5163. "addPropertyValue": [
  5164. 3.0
  5165. ],
  5166. "PromoteLan": 1250,
  5167. "PromoteLanPara": [
  5168. 3.0
  5169. ]
  5170. },
  5171. {
  5172. "ID": 20062,
  5173. "PieceID": 13009,
  5174. "power": 225.0,
  5175. "name": 480,
  5176. "dec": 903,
  5177. "attribute": 0,
  5178. "icon": "icon_s2006",
  5179. "scriptName": "S2006",
  5180. "IDGroup": 2006,
  5181. "timelineName": "",
  5182. "cd": 1.0,
  5183. "addcd": 1.0,
  5184. "SkillType": 2,
  5185. "level": 3,
  5186. "effectValue": [
  5187. 30.0,
  5188. 30.0
  5189. ],
  5190. "intensifierIndex": [
  5191. 0
  5192. ],
  5193. "addPropertyType": [
  5194. 103
  5195. ],
  5196. "addPropertyValue": [
  5197. 6.0
  5198. ],
  5199. "PromoteLan": 1251,
  5200. "PromoteLanPara": [
  5201. 3.0
  5202. ]
  5203. },
  5204. {
  5205. "ID": 20063,
  5206. "PieceID": 13009,
  5207. "power": 337.5,
  5208. "name": 481,
  5209. "dec": 904,
  5210. "attribute": 0,
  5211. "icon": "icon_s2006",
  5212. "scriptName": "S2006",
  5213. "IDGroup": 2006,
  5214. "timelineName": "",
  5215. "cd": 1.0,
  5216. "addcd": 1.0,
  5217. "SkillType": 2,
  5218. "level": 4,
  5219. "effectValue": [
  5220. 30.0,
  5221. 30.0
  5222. ],
  5223. "intensifierIndex": [
  5224. 0
  5225. ],
  5226. "addPropertyType": [
  5227. 103
  5228. ],
  5229. "addPropertyValue": [
  5230. 9.0
  5231. ],
  5232. "PromoteLan": 1252,
  5233. "PromoteLanPara": [
  5234. 3.0
  5235. ]
  5236. },
  5237. {
  5238. "ID": 20064,
  5239. "PieceID": 13009,
  5240. "power": 506.25,
  5241. "name": 482,
  5242. "dec": 905,
  5243. "attribute": 0,
  5244. "icon": "icon_s2006",
  5245. "scriptName": "S2006",
  5246. "IDGroup": 2006,
  5247. "timelineName": "",
  5248. "cd": 1.0,
  5249. "addcd": 1.0,
  5250. "SkillType": 2,
  5251. "level": 5,
  5252. "effectValue": [
  5253. 30.0,
  5254. 30.0
  5255. ],
  5256. "intensifierIndex": [
  5257. 0
  5258. ],
  5259. "addPropertyType": [
  5260. 103
  5261. ],
  5262. "addPropertyValue": [
  5263. 12.0
  5264. ],
  5265. "PromoteLan": 1253,
  5266. "PromoteLanPara": [
  5267. 3.0
  5268. ]
  5269. },
  5270. {
  5271. "ID": 20065,
  5272. "PieceID": 13009,
  5273. "power": 759.375,
  5274. "name": 483,
  5275. "dec": 906,
  5276. "attribute": 0,
  5277. "icon": "icon_s2006",
  5278. "scriptName": "S2006",
  5279. "IDGroup": 2006,
  5280. "timelineName": "",
  5281. "cd": 1.0,
  5282. "addcd": 1.0,
  5283. "SkillType": 2,
  5284. "level": 6,
  5285. "effectValue": [
  5286. 30.0,
  5287. 30.0,
  5288. 30.0
  5289. ],
  5290. "intensifierIndex": [
  5291. 0
  5292. ],
  5293. "addPropertyType": [
  5294. 103
  5295. ],
  5296. "addPropertyValue": [
  5297. 12.0
  5298. ],
  5299. "PromoteLan": 1254
  5300. },
  5301. {
  5302. "ID": 20070,
  5303. "PieceID": 13010,
  5304. "power": 100.0,
  5305. "name": 484,
  5306. "dec": 907,
  5307. "attribute": 0,
  5308. "icon": "icon_s2007",
  5309. "scriptName": "S2007",
  5310. "IDGroup": 2007,
  5311. "timelineName": "",
  5312. "cd": 1.0,
  5313. "addcd": 1.0,
  5314. "SkillType": 2,
  5315. "level": 1,
  5316. "effectValue": [
  5317. 20.0,
  5318. 9.0
  5319. ],
  5320. "intensifierIndex": [
  5321. 0
  5322. ],
  5323. "PromoteLan": -1
  5324. },
  5325. {
  5326. "ID": 20071,
  5327. "PieceID": 13010,
  5328. "power": 150.0,
  5329. "name": 485,
  5330. "dec": 908,
  5331. "attribute": 0,
  5332. "icon": "icon_s2007",
  5333. "scriptName": "S2007",
  5334. "IDGroup": 2007,
  5335. "timelineName": "",
  5336. "cd": 1.0,
  5337. "addcd": 1.0,
  5338. "SkillType": 2,
  5339. "level": 2,
  5340. "effectValue": [
  5341. 20.0,
  5342. 9.0
  5343. ],
  5344. "intensifierIndex": [
  5345. 0
  5346. ],
  5347. "addPropertyType": [
  5348. 101
  5349. ],
  5350. "addPropertyValue": [
  5351. 3.0
  5352. ],
  5353. "PromoteLan": 1255,
  5354. "PromoteLanPara": [
  5355. 3.0
  5356. ]
  5357. },
  5358. {
  5359. "ID": 20072,
  5360. "PieceID": 13010,
  5361. "power": 225.0,
  5362. "name": 486,
  5363. "dec": 909,
  5364. "attribute": 0,
  5365. "icon": "icon_s2007",
  5366. "scriptName": "S2007",
  5367. "IDGroup": 2007,
  5368. "timelineName": "",
  5369. "cd": 1.0,
  5370. "addcd": 1.0,
  5371. "SkillType": 2,
  5372. "level": 3,
  5373. "effectValue": [
  5374. 20.0,
  5375. 9.0
  5376. ],
  5377. "intensifierIndex": [
  5378. 0
  5379. ],
  5380. "addPropertyType": [
  5381. 101
  5382. ],
  5383. "addPropertyValue": [
  5384. 6.0
  5385. ],
  5386. "PromoteLan": 1256,
  5387. "PromoteLanPara": [
  5388. 3.0
  5389. ]
  5390. },
  5391. {
  5392. "ID": 20073,
  5393. "PieceID": 13010,
  5394. "power": 337.5,
  5395. "name": 487,
  5396. "dec": 910,
  5397. "attribute": 0,
  5398. "icon": "icon_s2007",
  5399. "scriptName": "S2007",
  5400. "IDGroup": 2007,
  5401. "timelineName": "",
  5402. "cd": 1.0,
  5403. "addcd": 1.0,
  5404. "SkillType": 2,
  5405. "level": 4,
  5406. "effectValue": [
  5407. 20.0,
  5408. 9.0
  5409. ],
  5410. "intensifierIndex": [
  5411. 0
  5412. ],
  5413. "addPropertyType": [
  5414. 101
  5415. ],
  5416. "addPropertyValue": [
  5417. 9.0
  5418. ],
  5419. "PromoteLan": 1257,
  5420. "PromoteLanPara": [
  5421. 3.0
  5422. ]
  5423. },
  5424. {
  5425. "ID": 20074,
  5426. "PieceID": 13010,
  5427. "power": 506.25,
  5428. "name": 488,
  5429. "dec": 911,
  5430. "attribute": 0,
  5431. "icon": "icon_s2007",
  5432. "scriptName": "S2007",
  5433. "IDGroup": 2007,
  5434. "timelineName": "",
  5435. "cd": 1.0,
  5436. "addcd": 1.0,
  5437. "SkillType": 2,
  5438. "level": 5,
  5439. "effectValue": [
  5440. 20.0,
  5441. 9.0
  5442. ],
  5443. "intensifierIndex": [
  5444. 0
  5445. ],
  5446. "addPropertyType": [
  5447. 101
  5448. ],
  5449. "addPropertyValue": [
  5450. 12.0
  5451. ],
  5452. "PromoteLan": 1258,
  5453. "PromoteLanPara": [
  5454. 3.0
  5455. ]
  5456. },
  5457. {
  5458. "ID": 20075,
  5459. "PieceID": 13010,
  5460. "power": 759.375,
  5461. "name": 489,
  5462. "dec": 912,
  5463. "attribute": 0,
  5464. "icon": "icon_s2007",
  5465. "scriptName": "S2007",
  5466. "IDGroup": 2007,
  5467. "timelineName": "",
  5468. "cd": 1.0,
  5469. "addcd": 1.0,
  5470. "SkillType": 2,
  5471. "level": 6,
  5472. "effectValue": [
  5473. 20.0,
  5474. 9.0,
  5475. 15.0
  5476. ],
  5477. "intensifierIndex": [
  5478. 0
  5479. ],
  5480. "addPropertyType": [
  5481. 101
  5482. ],
  5483. "addPropertyValue": [
  5484. 12.0
  5485. ],
  5486. "PromoteLan": 1259
  5487. },
  5488. {
  5489. "ID": 20080,
  5490. "PieceID": 13010,
  5491. "power": 100.0,
  5492. "name": 490,
  5493. "dec": 913,
  5494. "attribute": 0,
  5495. "icon": "icon_s2008",
  5496. "scriptName": "S2008",
  5497. "IDGroup": 2008,
  5498. "timelineName": "",
  5499. "cd": 1.0,
  5500. "addcd": 1.0,
  5501. "SkillType": 2,
  5502. "level": 1,
  5503. "effectValue": [
  5504. 1.0,
  5505. 100.0
  5506. ],
  5507. "intensifierIndex": [
  5508. 0
  5509. ],
  5510. "PromoteLan": -1
  5511. },
  5512. {
  5513. "ID": 20081,
  5514. "PieceID": 13010,
  5515. "power": 150.0,
  5516. "name": 491,
  5517. "dec": 914,
  5518. "attribute": 0,
  5519. "icon": "icon_s2008",
  5520. "scriptName": "S2008",
  5521. "IDGroup": 2008,
  5522. "timelineName": "",
  5523. "cd": 1.0,
  5524. "addcd": 1.0,
  5525. "SkillType": 2,
  5526. "level": 2,
  5527. "effectValue": [
  5528. 1.0,
  5529. 100.0
  5530. ],
  5531. "intensifierIndex": [
  5532. 0
  5533. ],
  5534. "addPropertyType": [
  5535. 102
  5536. ],
  5537. "addPropertyValue": [
  5538. 3.0
  5539. ],
  5540. "PromoteLan": 1260,
  5541. "PromoteLanPara": [
  5542. 3.0
  5543. ]
  5544. },
  5545. {
  5546. "ID": 20082,
  5547. "PieceID": 13010,
  5548. "power": 225.0,
  5549. "name": 492,
  5550. "dec": 915,
  5551. "attribute": 0,
  5552. "icon": "icon_s2008",
  5553. "scriptName": "S2008",
  5554. "IDGroup": 2008,
  5555. "timelineName": "",
  5556. "cd": 1.0,
  5557. "addcd": 1.0,
  5558. "SkillType": 2,
  5559. "level": 3,
  5560. "effectValue": [
  5561. 1.0,
  5562. 100.0
  5563. ],
  5564. "intensifierIndex": [
  5565. 0
  5566. ],
  5567. "addPropertyType": [
  5568. 102
  5569. ],
  5570. "addPropertyValue": [
  5571. 6.0
  5572. ],
  5573. "PromoteLan": 1261,
  5574. "PromoteLanPara": [
  5575. 3.0
  5576. ]
  5577. },
  5578. {
  5579. "ID": 20083,
  5580. "PieceID": 13010,
  5581. "power": 337.5,
  5582. "name": 493,
  5583. "dec": 916,
  5584. "attribute": 0,
  5585. "icon": "icon_s2008",
  5586. "scriptName": "S2008",
  5587. "IDGroup": 2008,
  5588. "timelineName": "",
  5589. "cd": 1.0,
  5590. "addcd": 1.0,
  5591. "SkillType": 2,
  5592. "level": 4,
  5593. "effectValue": [
  5594. 1.0,
  5595. 100.0
  5596. ],
  5597. "intensifierIndex": [
  5598. 0
  5599. ],
  5600. "addPropertyType": [
  5601. 102
  5602. ],
  5603. "addPropertyValue": [
  5604. 9.0
  5605. ],
  5606. "PromoteLan": 1262,
  5607. "PromoteLanPara": [
  5608. 3.0
  5609. ]
  5610. },
  5611. {
  5612. "ID": 20084,
  5613. "PieceID": 13010,
  5614. "power": 506.25,
  5615. "name": 494,
  5616. "dec": 917,
  5617. "attribute": 0,
  5618. "icon": "icon_s2008",
  5619. "scriptName": "S2008",
  5620. "IDGroup": 2008,
  5621. "timelineName": "",
  5622. "cd": 1.0,
  5623. "addcd": 1.0,
  5624. "SkillType": 2,
  5625. "level": 5,
  5626. "effectValue": [
  5627. 1.0,
  5628. 100.0
  5629. ],
  5630. "intensifierIndex": [
  5631. 0
  5632. ],
  5633. "addPropertyType": [
  5634. 102
  5635. ],
  5636. "addPropertyValue": [
  5637. 12.0
  5638. ],
  5639. "PromoteLan": 1263,
  5640. "PromoteLanPara": [
  5641. 3.0
  5642. ]
  5643. },
  5644. {
  5645. "ID": 20085,
  5646. "PieceID": 13010,
  5647. "power": 759.375,
  5648. "name": 495,
  5649. "dec": 918,
  5650. "attribute": 0,
  5651. "icon": "icon_s2008",
  5652. "scriptName": "S2008",
  5653. "IDGroup": 2008,
  5654. "timelineName": "",
  5655. "cd": 1.0,
  5656. "addcd": 1.0,
  5657. "SkillType": 2,
  5658. "level": 6,
  5659. "effectValue": [
  5660. 2.0,
  5661. 100.0,
  5662. 1.0
  5663. ],
  5664. "intensifierIndex": [
  5665. 0
  5666. ],
  5667. "addPropertyType": [
  5668. 102
  5669. ],
  5670. "addPropertyValue": [
  5671. 12.0
  5672. ],
  5673. "PromoteLan": 1264,
  5674. "PromoteLanPara_1": [
  5675. 1.0,
  5676. -1.0
  5677. ]
  5678. },
  5679. {
  5680. "ID": 31010,
  5681. "PieceID": 11005,
  5682. "power": 100.0,
  5683. "name": 496,
  5684. "dec": 919,
  5685. "attribute": 1,
  5686. "icon": "icon_fb3101",
  5687. "scriptName": "S3101",
  5688. "IDGroup": 3101,
  5689. "timelineName": "",
  5690. "cd": 80.0,
  5691. "addcd": 1.0,
  5692. "SkillType": 3,
  5693. "level": 1,
  5694. "effectValue": [
  5695. 100.0,
  5696. 9.0
  5697. ],
  5698. "intensifierIndex": [
  5699. 1
  5700. ],
  5701. "PromoteLan": -1
  5702. },
  5703. {
  5704. "ID": 31011,
  5705. "PieceID": 11005,
  5706. "power": 120.0,
  5707. "name": 497,
  5708. "dec": 920,
  5709. "attribute": 1,
  5710. "icon": "icon_fb3101",
  5711. "scriptName": "S3101",
  5712. "IDGroup": 3101,
  5713. "timelineName": "",
  5714. "cd": 80.0,
  5715. "addcd": 1.0,
  5716. "SkillType": 3,
  5717. "level": 2,
  5718. "effectValue": [
  5719. 120.0,
  5720. 9.0
  5721. ],
  5722. "intensifierIndex": [
  5723. 1
  5724. ],
  5725. "addPropertyType": [
  5726. 106
  5727. ],
  5728. "addPropertyValue": [
  5729. 5.0
  5730. ],
  5731. "PromoteLan": 1265,
  5732. "PromoteLanPara": [
  5733. 5.0
  5734. ]
  5735. },
  5736. {
  5737. "ID": 31012,
  5738. "PieceID": 11005,
  5739. "power": 225.0,
  5740. "name": 498,
  5741. "dec": 921,
  5742. "attribute": 1,
  5743. "icon": "icon_fb3101",
  5744. "scriptName": "S3101",
  5745. "IDGroup": 3101,
  5746. "timelineName": "",
  5747. "cd": 80.0,
  5748. "addcd": 1.0,
  5749. "SkillType": 3,
  5750. "level": 3,
  5751. "effectValue": [
  5752. 140.0,
  5753. 9.0
  5754. ],
  5755. "intensifierIndex": [
  5756. 1
  5757. ],
  5758. "addPropertyType": [
  5759. 102,
  5760. 106
  5761. ],
  5762. "addPropertyValue": [
  5763. 5.0,
  5764. 5.0
  5765. ],
  5766. "PromoteLan": 1266,
  5767. "PromoteLanPara": [
  5768. 5.0
  5769. ]
  5770. },
  5771. {
  5772. "ID": 31013,
  5773. "PieceID": 11005,
  5774. "power": 337.5,
  5775. "name": 499,
  5776. "dec": 922,
  5777. "attribute": 1,
  5778. "icon": "icon_fb3101",
  5779. "scriptName": "S3101",
  5780. "IDGroup": 3101,
  5781. "timelineName": "",
  5782. "cd": 80.0,
  5783. "addcd": 1.0,
  5784. "SkillType": 3,
  5785. "level": 4,
  5786. "effectValue": [
  5787. 160.0,
  5788. 9.0
  5789. ],
  5790. "intensifierIndex": [
  5791. 1
  5792. ],
  5793. "addPropertyType": [
  5794. 102,
  5795. 106
  5796. ],
  5797. "addPropertyValue": [
  5798. 5.0,
  5799. 10.0
  5800. ],
  5801. "PromoteLan": 1267,
  5802. "PromoteLanPara": [
  5803. 5.0
  5804. ]
  5805. },
  5806. {
  5807. "ID": 31014,
  5808. "PieceID": 11005,
  5809. "power": 506.25,
  5810. "name": 500,
  5811. "dec": 923,
  5812. "attribute": 1,
  5813. "icon": "icon_fb3101",
  5814. "scriptName": "S3101",
  5815. "IDGroup": 3101,
  5816. "timelineName": "",
  5817. "cd": 80.0,
  5818. "addcd": 1.0,
  5819. "SkillType": 3,
  5820. "level": 5,
  5821. "effectValue": [
  5822. 180.0,
  5823. 9.0
  5824. ],
  5825. "intensifierIndex": [
  5826. 1
  5827. ],
  5828. "addPropertyType": [
  5829. 102,
  5830. 106
  5831. ],
  5832. "addPropertyValue": [
  5833. 10.0,
  5834. 10.0
  5835. ],
  5836. "PromoteLan": 1268,
  5837. "PromoteLanPara": [
  5838. 5.0
  5839. ]
  5840. },
  5841. {
  5842. "ID": 31015,
  5843. "PieceID": 11005,
  5844. "power": 759.375,
  5845. "name": 501,
  5846. "dec": 924,
  5847. "attribute": 1,
  5848. "icon": "icon_fb3101",
  5849. "scriptName": "S3101",
  5850. "IDGroup": 3101,
  5851. "timelineName": "",
  5852. "cd": 80.0,
  5853. "addcd": 1.0,
  5854. "SkillType": 3,
  5855. "level": 6,
  5856. "effectValue": [
  5857. 200.0,
  5858. 9.0,
  5859. 15.0
  5860. ],
  5861. "intensifierIndex": [
  5862. 1
  5863. ],
  5864. "addPropertyType": [
  5865. 102,
  5866. 106
  5867. ],
  5868. "addPropertyValue": [
  5869. 10.0,
  5870. 10.0
  5871. ],
  5872. "PromoteLan": 1269
  5873. },
  5874. {
  5875. "ID": 31020,
  5876. "PieceID": 11005,
  5877. "power": 100.0,
  5878. "name": 502,
  5879. "dec": 925,
  5880. "attribute": 1,
  5881. "icon": "icon_s3102",
  5882. "scriptName": "S3102",
  5883. "IDGroup": 3102,
  5884. "timelineName": "",
  5885. "cd": 80.0,
  5886. "addcd": 1.0,
  5887. "SkillType": 3,
  5888. "level": 1,
  5889. "effectValue": [
  5890. 200.0
  5891. ],
  5892. "intensifierIndex": [
  5893. 1
  5894. ],
  5895. "PromoteLan": -1
  5896. },
  5897. {
  5898. "ID": 31021,
  5899. "PieceID": 11005,
  5900. "power": 150.0,
  5901. "name": 503,
  5902. "dec": 926,
  5903. "attribute": 1,
  5904. "icon": "icon_s3102",
  5905. "scriptName": "S3102",
  5906. "IDGroup": 3102,
  5907. "timelineName": "",
  5908. "cd": 80.0,
  5909. "addcd": 1.0,
  5910. "SkillType": 3,
  5911. "level": 2,
  5912. "effectValue": [
  5913. 220.0
  5914. ],
  5915. "intensifierIndex": [
  5916. 1
  5917. ],
  5918. "PromoteLan": 1270
  5919. },
  5920. {
  5921. "ID": 31022,
  5922. "PieceID": 11005,
  5923. "power": 225.0,
  5924. "name": 504,
  5925. "dec": 927,
  5926. "attribute": 1,
  5927. "icon": "icon_s3102",
  5928. "scriptName": "S3102",
  5929. "IDGroup": 3102,
  5930. "timelineName": "",
  5931. "cd": 80.0,
  5932. "addcd": 1.0,
  5933. "SkillType": 3,
  5934. "level": 3,
  5935. "effectValue": [
  5936. 240.0
  5937. ],
  5938. "intensifierIndex": [
  5939. 1
  5940. ],
  5941. "PromoteLan": 1271
  5942. },
  5943. {
  5944. "ID": 31023,
  5945. "PieceID": 11005,
  5946. "power": 337.5,
  5947. "name": 505,
  5948. "dec": 928,
  5949. "attribute": 1,
  5950. "icon": "icon_s3102",
  5951. "scriptName": "S3102",
  5952. "IDGroup": 3102,
  5953. "timelineName": "",
  5954. "cd": 80.0,
  5955. "addcd": 1.0,
  5956. "SkillType": 3,
  5957. "level": 4,
  5958. "effectValue": [
  5959. 260.0
  5960. ],
  5961. "intensifierIndex": [
  5962. 1
  5963. ],
  5964. "PromoteLan": 1272
  5965. },
  5966. {
  5967. "ID": 31024,
  5968. "PieceID": 11005,
  5969. "power": 506.25,
  5970. "name": 506,
  5971. "dec": 929,
  5972. "attribute": 1,
  5973. "icon": "icon_s3102",
  5974. "scriptName": "S3102",
  5975. "IDGroup": 3102,
  5976. "timelineName": "",
  5977. "cd": 80.0,
  5978. "addcd": 1.0,
  5979. "SkillType": 3,
  5980. "level": 5,
  5981. "effectValue": [
  5982. 280.0
  5983. ],
  5984. "intensifierIndex": [
  5985. 1
  5986. ],
  5987. "PromoteLan": 1273
  5988. },
  5989. {
  5990. "ID": 31025,
  5991. "PieceID": 11005,
  5992. "power": 759.375,
  5993. "name": 507,
  5994. "dec": 930,
  5995. "attribute": 1,
  5996. "icon": "icon_s3102",
  5997. "scriptName": "S3102",
  5998. "IDGroup": 3102,
  5999. "timelineName": "",
  6000. "cd": 80.0,
  6001. "addcd": 1.0,
  6002. "SkillType": 3,
  6003. "level": 6,
  6004. "effectValue": [
  6005. 300.0
  6006. ],
  6007. "intensifierIndex": [
  6008. 1
  6009. ],
  6010. "PromoteLan": 1274
  6011. },
  6012. {
  6013. "ID": 32010,
  6014. "PieceID": 11002,
  6015. "power": 100.0,
  6016. "name": 508,
  6017. "dec": 931,
  6018. "attribute": 2,
  6019. "icon": "icon_fb3201",
  6020. "scriptName": "S3201",
  6021. "IDGroup": 3201,
  6022. "timelineName": "",
  6023. "cd": 80.0,
  6024. "addcd": 1.0,
  6025. "SkillType": 3,
  6026. "level": 1,
  6027. "effectValue": [
  6028. 50.0,
  6029. 12.0
  6030. ],
  6031. "intensifierIndex": [
  6032. 1
  6033. ],
  6034. "PromoteLan": -1
  6035. },
  6036. {
  6037. "ID": 32011,
  6038. "PieceID": 11002,
  6039. "power": 150.0,
  6040. "name": 509,
  6041. "dec": 932,
  6042. "attribute": 2,
  6043. "icon": "icon_fb3201",
  6044. "scriptName": "S3201",
  6045. "IDGroup": 3201,
  6046. "timelineName": "",
  6047. "cd": 80.0,
  6048. "addcd": 1.0,
  6049. "SkillType": 3,
  6050. "level": 2,
  6051. "effectValue": [
  6052. 75.0,
  6053. 12.0
  6054. ],
  6055. "intensifierIndex": [
  6056. 1
  6057. ],
  6058. "PromoteLan": 1275
  6059. },
  6060. {
  6061. "ID": 32012,
  6062. "PieceID": 11002,
  6063. "power": 225.0,
  6064. "name": 510,
  6065. "dec": 933,
  6066. "attribute": 2,
  6067. "icon": "icon_fb3201",
  6068. "scriptName": "S3201",
  6069. "IDGroup": 3201,
  6070. "timelineName": "",
  6071. "cd": 80.0,
  6072. "addcd": 1.0,
  6073. "SkillType": 3,
  6074. "level": 3,
  6075. "effectValue": [
  6076. 75.0,
  6077. 12.0
  6078. ],
  6079. "intensifierIndex": [
  6080. 1
  6081. ],
  6082. "addPropertyType": [
  6083. 108
  6084. ],
  6085. "addPropertyValue": [
  6086. 5.0
  6087. ],
  6088. "PromoteLan": 1276,
  6089. "PromoteLanPara": [
  6090. 5.0
  6091. ]
  6092. },
  6093. {
  6094. "ID": 32013,
  6095. "PieceID": 11002,
  6096. "power": 337.5,
  6097. "name": 511,
  6098. "dec": 934,
  6099. "attribute": 2,
  6100. "icon": "icon_fb3201",
  6101. "scriptName": "S3201",
  6102. "IDGroup": 3201,
  6103. "timelineName": "",
  6104. "cd": 80.0,
  6105. "addcd": 1.0,
  6106. "SkillType": 3,
  6107. "level": 4,
  6108. "effectValue": [
  6109. 75.0,
  6110. 12.0
  6111. ],
  6112. "intensifierIndex": [
  6113. 1
  6114. ],
  6115. "addPropertyType": [
  6116. 101,
  6117. 108
  6118. ],
  6119. "addPropertyValue": [
  6120. 5.0,
  6121. 5.0
  6122. ],
  6123. "PromoteLan": 1277,
  6124. "PromoteLanPara": [
  6125. 5.0
  6126. ]
  6127. },
  6128. {
  6129. "ID": 32014,
  6130. "PieceID": 11002,
  6131. "power": 506.25,
  6132. "name": 512,
  6133. "dec": 935,
  6134. "attribute": 2,
  6135. "icon": "icon_fb3201",
  6136. "scriptName": "S3201",
  6137. "IDGroup": 3201,
  6138. "timelineName": "",
  6139. "cd": 80.0,
  6140. "addcd": 1.0,
  6141. "SkillType": 3,
  6142. "level": 5,
  6143. "effectValue": [
  6144. 75.0,
  6145. 12.0
  6146. ],
  6147. "intensifierIndex": [
  6148. 1
  6149. ],
  6150. "addPropertyType": [
  6151. 101,
  6152. 108
  6153. ],
  6154. "addPropertyValue": [
  6155. 5.0,
  6156. 10.0
  6157. ],
  6158. "PromoteLan": 1278,
  6159. "PromoteLanPara": [
  6160. 5.0
  6161. ]
  6162. },
  6163. {
  6164. "ID": 32015,
  6165. "PieceID": 11002,
  6166. "power": 759.375,
  6167. "name": 513,
  6168. "dec": 936,
  6169. "attribute": 2,
  6170. "icon": "icon_fb3201",
  6171. "scriptName": "S3201",
  6172. "IDGroup": 3201,
  6173. "timelineName": "",
  6174. "cd": 80.0,
  6175. "addcd": 1.0,
  6176. "SkillType": 3,
  6177. "level": 6,
  6178. "effectValue": [
  6179. 75.0,
  6180. 12.0,
  6181. 50.0
  6182. ],
  6183. "intensifierIndex": [
  6184. 1
  6185. ],
  6186. "addPropertyType": [
  6187. 101,
  6188. 108
  6189. ],
  6190. "addPropertyValue": [
  6191. 5.0,
  6192. 10.0
  6193. ],
  6194. "PromoteLan": 1279
  6195. },
  6196. {
  6197. "ID": 32020,
  6198. "PieceID": 11002,
  6199. "power": 100.0,
  6200. "name": 514,
  6201. "dec": 937,
  6202. "attribute": 2,
  6203. "icon": "icon_fb3202",
  6204. "scriptName": "S3202",
  6205. "IDGroup": 3202,
  6206. "timelineName": "",
  6207. "cd": 80.0,
  6208. "addcd": 1.0,
  6209. "SkillType": 3,
  6210. "level": 1,
  6211. "effectValue": [
  6212. 20.0,
  6213. 2.0,
  6214. 18.0
  6215. ],
  6216. "intensifierIndex": [
  6217. 1
  6218. ],
  6219. "PromoteLan": -1
  6220. },
  6221. {
  6222. "ID": 32021,
  6223. "PieceID": 11002,
  6224. "power": 150.0,
  6225. "name": 515,
  6226. "dec": 938,
  6227. "attribute": 2,
  6228. "icon": "icon_fb3202",
  6229. "scriptName": "S3202",
  6230. "IDGroup": 3202,
  6231. "timelineName": "",
  6232. "cd": 80.0,
  6233. "addcd": 1.0,
  6234. "SkillType": 3,
  6235. "level": 2,
  6236. "effectValue": [
  6237. 20.0,
  6238. 2.0,
  6239. 18.0
  6240. ],
  6241. "intensifierIndex": [
  6242. 1
  6243. ],
  6244. "addPropertyType": [
  6245. 108
  6246. ],
  6247. "addPropertyValue": [
  6248. 5.0
  6249. ],
  6250. "PromoteLan": 1280,
  6251. "PromoteLanPara": [
  6252. 5.0
  6253. ]
  6254. },
  6255. {
  6256. "ID": 32022,
  6257. "PieceID": 11002,
  6258. "power": 225.0,
  6259. "name": 516,
  6260. "dec": 939,
  6261. "attribute": 2,
  6262. "icon": "icon_fb3202",
  6263. "scriptName": "S3202",
  6264. "IDGroup": 3202,
  6265. "timelineName": "",
  6266. "cd": 80.0,
  6267. "addcd": 1.0,
  6268. "SkillType": 3,
  6269. "level": 3,
  6270. "effectValue": [
  6271. 20.0,
  6272. 2.0,
  6273. 18.0
  6274. ],
  6275. "intensifierIndex": [
  6276. 1
  6277. ],
  6278. "addPropertyType": [
  6279. 103,
  6280. 108
  6281. ],
  6282. "addPropertyValue": [
  6283. 5.0,
  6284. 5.0
  6285. ],
  6286. "PromoteLan": 1281,
  6287. "PromoteLanPara": [
  6288. 5.0
  6289. ]
  6290. },
  6291. {
  6292. "ID": 32023,
  6293. "PieceID": 11002,
  6294. "power": 337.5,
  6295. "name": 517,
  6296. "dec": 940,
  6297. "attribute": 2,
  6298. "icon": "icon_fb3202",
  6299. "scriptName": "S3202",
  6300. "IDGroup": 3202,
  6301. "timelineName": "",
  6302. "cd": 80.0,
  6303. "addcd": 1.0,
  6304. "SkillType": 3,
  6305. "level": 4,
  6306. "effectValue": [
  6307. 20.0,
  6308. 3.0,
  6309. 18.0
  6310. ],
  6311. "intensifierIndex": [
  6312. 1
  6313. ],
  6314. "addPropertyType": [
  6315. 103,
  6316. 108
  6317. ],
  6318. "addPropertyValue": [
  6319. 5.0,
  6320. 5.0
  6321. ],
  6322. "PromoteLan": 1282
  6323. },
  6324. {
  6325. "ID": 32024,
  6326. "PieceID": 11002,
  6327. "power": 506.25,
  6328. "name": 518,
  6329. "dec": 941,
  6330. "attribute": 2,
  6331. "icon": "icon_fb3202",
  6332. "scriptName": "S3202",
  6333. "IDGroup": 3202,
  6334. "timelineName": "",
  6335. "cd": 80.0,
  6336. "addcd": 1.0,
  6337. "SkillType": 3,
  6338. "level": 5,
  6339. "effectValue": [
  6340. 20.0,
  6341. 3.0,
  6342. 18.0
  6343. ],
  6344. "intensifierIndex": [
  6345. 1
  6346. ],
  6347. "addPropertyType": [
  6348. 103,
  6349. 108
  6350. ],
  6351. "addPropertyValue": [
  6352. 5.0,
  6353. 10.0
  6354. ],
  6355. "PromoteLan": 1283,
  6356. "PromoteLanPara": [
  6357. 5.0
  6358. ]
  6359. },
  6360. {
  6361. "ID": 32025,
  6362. "PieceID": 11002,
  6363. "power": 759.375,
  6364. "name": 519,
  6365. "dec": 942,
  6366. "attribute": 2,
  6367. "icon": "icon_fb3202",
  6368. "scriptName": "S3202",
  6369. "IDGroup": 3202,
  6370. "timelineName": "",
  6371. "cd": 80.0,
  6372. "addcd": 1.0,
  6373. "SkillType": 3,
  6374. "level": 6,
  6375. "effectValue": [
  6376. 20.0,
  6377. 3.0,
  6378. 18.0,
  6379. 20.0
  6380. ],
  6381. "intensifierIndex": [
  6382. 1
  6383. ],
  6384. "addPropertyType": [
  6385. 103,
  6386. 108
  6387. ],
  6388. "addPropertyValue": [
  6389. 5.0,
  6390. 10.0
  6391. ],
  6392. "PromoteLan": 1284
  6393. },
  6394. {
  6395. "ID": 32030,
  6396. "PieceID": 11002,
  6397. "power": 100.0,
  6398. "name": 520,
  6399. "dec": 943,
  6400. "attribute": 2,
  6401. "icon": "icon_s3203",
  6402. "scriptName": "S3203",
  6403. "IDGroup": 3203,
  6404. "timelineName": "",
  6405. "cd": 80.0,
  6406. "addcd": 1.0,
  6407. "SkillType": 3,
  6408. "level": 1,
  6409. "effectValue": [
  6410. 30.0,
  6411. 1.0,
  6412. 5.0
  6413. ],
  6414. "intensifierIndex": [
  6415. 1
  6416. ],
  6417. "PromoteLan": -1
  6418. },
  6419. {
  6420. "ID": 32031,
  6421. "PieceID": 11002,
  6422. "power": 150.0,
  6423. "name": 521,
  6424. "dec": 944,
  6425. "attribute": 2,
  6426. "icon": "icon_s3203",
  6427. "scriptName": "S3203",
  6428. "IDGroup": 3203,
  6429. "timelineName": "",
  6430. "cd": 80.0,
  6431. "addcd": 1.0,
  6432. "SkillType": 3,
  6433. "level": 2,
  6434. "effectValue": [
  6435. 40.0,
  6436. 1.0,
  6437. 5.0
  6438. ],
  6439. "intensifierIndex": [
  6440. 1
  6441. ],
  6442. "PromoteLan": 1285
  6443. },
  6444. {
  6445. "ID": 32032,
  6446. "PieceID": 11002,
  6447. "power": 225.0,
  6448. "name": 522,
  6449. "dec": 945,
  6450. "attribute": 2,
  6451. "icon": "icon_s3203",
  6452. "scriptName": "S3203",
  6453. "IDGroup": 3203,
  6454. "timelineName": "",
  6455. "cd": 80.0,
  6456. "addcd": 1.0,
  6457. "SkillType": 3,
  6458. "level": 3,
  6459. "effectValue": [
  6460. 50.0,
  6461. 1.0,
  6462. 5.0
  6463. ],
  6464. "intensifierIndex": [
  6465. 1
  6466. ],
  6467. "PromoteLan": 1286
  6468. },
  6469. {
  6470. "ID": 32033,
  6471. "PieceID": 11002,
  6472. "power": 337.5,
  6473. "name": 523,
  6474. "dec": 946,
  6475. "attribute": 2,
  6476. "icon": "icon_s3203",
  6477. "scriptName": "S3203",
  6478. "IDGroup": 3203,
  6479. "timelineName": "",
  6480. "cd": 80.0,
  6481. "addcd": 1.0,
  6482. "SkillType": 3,
  6483. "level": 4,
  6484. "effectValue": [
  6485. 60.0,
  6486. 1.0,
  6487. 5.0
  6488. ],
  6489. "intensifierIndex": [
  6490. 1
  6491. ],
  6492. "PromoteLan": 1287
  6493. },
  6494. {
  6495. "ID": 32034,
  6496. "PieceID": 11002,
  6497. "power": 506.25,
  6498. "name": 524,
  6499. "dec": 947,
  6500. "attribute": 2,
  6501. "icon": "icon_s3203",
  6502. "scriptName": "S3203",
  6503. "IDGroup": 3203,
  6504. "timelineName": "",
  6505. "cd": 80.0,
  6506. "addcd": 1.0,
  6507. "SkillType": 3,
  6508. "level": 5,
  6509. "effectValue": [
  6510. 70.0,
  6511. 1.0,
  6512. 5.0
  6513. ],
  6514. "intensifierIndex": [
  6515. 1
  6516. ],
  6517. "PromoteLan": 1288
  6518. },
  6519. {
  6520. "ID": 32035,
  6521. "PieceID": 11002,
  6522. "power": 759.375,
  6523. "name": 525,
  6524. "dec": 948,
  6525. "attribute": 2,
  6526. "icon": "icon_s3203",
  6527. "scriptName": "S3203",
  6528. "IDGroup": 3203,
  6529. "timelineName": "",
  6530. "cd": 80.0,
  6531. "addcd": 1.0,
  6532. "SkillType": 3,
  6533. "level": 6,
  6534. "effectValue": [
  6535. 80.0,
  6536. 1.0,
  6537. 5.0
  6538. ],
  6539. "intensifierIndex": [
  6540. 1
  6541. ],
  6542. "PromoteLan": 1289
  6543. },
  6544. {
  6545. "ID": 33010,
  6546. "PieceID": 11004,
  6547. "power": 100.0,
  6548. "name": 526,
  6549. "dec": 949,
  6550. "attribute": 4,
  6551. "icon": "icon_fb3301",
  6552. "scriptName": "S3301",
  6553. "IDGroup": 3301,
  6554. "timelineName": "",
  6555. "cd": 80.0,
  6556. "addcd": 1.0,
  6557. "SkillType": 3,
  6558. "level": 1,
  6559. "effectValue": [
  6560. 1.0,
  6561. 12.0,
  6562. 1000.0
  6563. ],
  6564. "intensifierIndex": [
  6565. 2
  6566. ],
  6567. "PromoteLan": -1
  6568. },
  6569. {
  6570. "ID": 33011,
  6571. "PieceID": 11004,
  6572. "power": 150.0,
  6573. "name": 527,
  6574. "dec": 950,
  6575. "attribute": 4,
  6576. "icon": "icon_fb3301",
  6577. "scriptName": "S3301",
  6578. "IDGroup": 3301,
  6579. "timelineName": "",
  6580. "cd": 80.0,
  6581. "addcd": 1.0,
  6582. "SkillType": 3,
  6583. "level": 2,
  6584. "effectValue": [
  6585. 2.0,
  6586. 12.0,
  6587. 1000.0
  6588. ],
  6589. "intensifierIndex": [
  6590. 2
  6591. ],
  6592. "PromoteLan": 1290
  6593. },
  6594. {
  6595. "ID": 33012,
  6596. "PieceID": 11004,
  6597. "power": 225.0,
  6598. "name": 528,
  6599. "dec": 951,
  6600. "attribute": 4,
  6601. "icon": "icon_fb3301",
  6602. "scriptName": "S3301",
  6603. "IDGroup": 3301,
  6604. "timelineName": "",
  6605. "cd": 80.0,
  6606. "addcd": 1.0,
  6607. "SkillType": 3,
  6608. "level": 3,
  6609. "effectValue": [
  6610. 2.0,
  6611. 12.0,
  6612. 1000.0
  6613. ],
  6614. "intensifierIndex": [
  6615. 2
  6616. ],
  6617. "addPropertyType": [
  6618. 107
  6619. ],
  6620. "addPropertyValue": [
  6621. 5.0
  6622. ],
  6623. "PromoteLan": 1291,
  6624. "PromoteLanPara": [
  6625. 5.0
  6626. ]
  6627. },
  6628. {
  6629. "ID": 33013,
  6630. "PieceID": 11004,
  6631. "power": 337.5,
  6632. "name": 529,
  6633. "dec": 952,
  6634. "attribute": 4,
  6635. "icon": "icon_fb3301",
  6636. "scriptName": "S3301",
  6637. "IDGroup": 3301,
  6638. "timelineName": "",
  6639. "cd": 80.0,
  6640. "addcd": 1.0,
  6641. "SkillType": 3,
  6642. "level": 4,
  6643. "effectValue": [
  6644. 2.0,
  6645. 12.0,
  6646. 1000.0,
  6647. 30.0
  6648. ],
  6649. "intensifierIndex": [
  6650. 2
  6651. ],
  6652. "addPropertyType": [
  6653. 107
  6654. ],
  6655. "addPropertyValue": [
  6656. 5.0
  6657. ],
  6658. "PromoteLan": 1292
  6659. },
  6660. {
  6661. "ID": 33014,
  6662. "PieceID": 11004,
  6663. "power": 506.25,
  6664. "name": 530,
  6665. "dec": 953,
  6666. "attribute": 4,
  6667. "icon": "icon_fb3301",
  6668. "scriptName": "S3301",
  6669. "IDGroup": 3301,
  6670. "timelineName": "",
  6671. "cd": 80.0,
  6672. "addcd": 1.0,
  6673. "SkillType": 3,
  6674. "level": 5,
  6675. "effectValue": [
  6676. 2.0,
  6677. 12.0,
  6678. 1000.0,
  6679. 30.0
  6680. ],
  6681. "intensifierIndex": [
  6682. 2
  6683. ],
  6684. "addPropertyType": [
  6685. 107
  6686. ],
  6687. "addPropertyValue": [
  6688. 10.0
  6689. ],
  6690. "PromoteLan": 1293,
  6691. "PromoteLanPara": [
  6692. 5.0
  6693. ]
  6694. },
  6695. {
  6696. "ID": 33015,
  6697. "PieceID": 11004,
  6698. "power": 759.375,
  6699. "name": 531,
  6700. "dec": 954,
  6701. "attribute": 4,
  6702. "icon": "icon_fb3301",
  6703. "scriptName": "S3301",
  6704. "IDGroup": 3301,
  6705. "timelineName": "",
  6706. "cd": 80.0,
  6707. "addcd": 1.0,
  6708. "SkillType": 3,
  6709. "level": 6,
  6710. "effectValue": [
  6711. 2.0,
  6712. 12.0,
  6713. 1000.0,
  6714. 300.0
  6715. ],
  6716. "intensifierIndex": [
  6717. 2
  6718. ],
  6719. "addPropertyType": [
  6720. 107
  6721. ],
  6722. "addPropertyValue": [
  6723. 10.0
  6724. ],
  6725. "PromoteLan": 1294
  6726. },
  6727. {
  6728. "ID": 33020,
  6729. "PieceID": 11008,
  6730. "power": 100.0,
  6731. "name": 532,
  6732. "dec": 955,
  6733. "attribute": 4,
  6734. "icon": "icon_s3302",
  6735. "scriptName": "S3302",
  6736. "IDGroup": 3302,
  6737. "timelineName": "",
  6738. "cd": 80.0,
  6739. "addcd": 1.0,
  6740. "SkillType": 3,
  6741. "level": 1,
  6742. "effectValue": [
  6743. 10.0,
  6744. 1.0
  6745. ],
  6746. "intensifierIndex": [
  6747. 1
  6748. ],
  6749. "PromoteLan": -1
  6750. },
  6751. {
  6752. "ID": 33021,
  6753. "PieceID": 11008,
  6754. "power": 150.0,
  6755. "name": 533,
  6756. "dec": 956,
  6757. "attribute": 4,
  6758. "icon": "icon_s3302",
  6759. "scriptName": "S3302",
  6760. "IDGroup": 3302,
  6761. "timelineName": "",
  6762. "cd": 80.0,
  6763. "addcd": 1.0,
  6764. "SkillType": 3,
  6765. "level": 2,
  6766. "effectValue": [
  6767. 11.0,
  6768. 1.0
  6769. ],
  6770. "intensifierIndex": [
  6771. 1
  6772. ],
  6773. "PromoteLan": 1295
  6774. },
  6775. {
  6776. "ID": 33022,
  6777. "PieceID": 11008,
  6778. "power": 225.0,
  6779. "name": 534,
  6780. "dec": 957,
  6781. "attribute": 4,
  6782. "icon": "icon_s3302",
  6783. "scriptName": "S3302",
  6784. "IDGroup": 3302,
  6785. "timelineName": "",
  6786. "cd": 80.0,
  6787. "addcd": 1.0,
  6788. "SkillType": 3,
  6789. "level": 3,
  6790. "effectValue": [
  6791. 12.0,
  6792. 1.0
  6793. ],
  6794. "intensifierIndex": [
  6795. 1
  6796. ],
  6797. "PromoteLan": 1296
  6798. },
  6799. {
  6800. "ID": 33023,
  6801. "PieceID": 11008,
  6802. "power": 337.5,
  6803. "name": 535,
  6804. "dec": 958,
  6805. "attribute": 4,
  6806. "icon": "icon_s3302",
  6807. "scriptName": "S3302",
  6808. "IDGroup": 3302,
  6809. "timelineName": "",
  6810. "cd": 80.0,
  6811. "addcd": 1.0,
  6812. "SkillType": 3,
  6813. "level": 4,
  6814. "effectValue": [
  6815. 13.0,
  6816. 1.0
  6817. ],
  6818. "intensifierIndex": [
  6819. 1
  6820. ],
  6821. "PromoteLan": 1297
  6822. },
  6823. {
  6824. "ID": 33024,
  6825. "PieceID": 11008,
  6826. "power": 506.25,
  6827. "name": 536,
  6828. "dec": 959,
  6829. "attribute": 4,
  6830. "icon": "icon_s3302",
  6831. "scriptName": "S3302",
  6832. "IDGroup": 3302,
  6833. "timelineName": "",
  6834. "cd": 80.0,
  6835. "addcd": 1.0,
  6836. "SkillType": 3,
  6837. "level": 5,
  6838. "effectValue": [
  6839. 14.0,
  6840. 1.0
  6841. ],
  6842. "intensifierIndex": [
  6843. 1
  6844. ],
  6845. "PromoteLan": 1298
  6846. },
  6847. {
  6848. "ID": 33025,
  6849. "PieceID": 11008,
  6850. "power": 759.375,
  6851. "name": 537,
  6852. "dec": 960,
  6853. "attribute": 4,
  6854. "icon": "icon_s3302",
  6855. "scriptName": "S3302",
  6856. "IDGroup": 3302,
  6857. "timelineName": "",
  6858. "cd": 80.0,
  6859. "addcd": 1.0,
  6860. "SkillType": 3,
  6861. "level": 6,
  6862. "effectValue": [
  6863. 15.0,
  6864. 1.0
  6865. ],
  6866. "intensifierIndex": [
  6867. 1
  6868. ],
  6869. "PromoteLan": 1299
  6870. },
  6871. {
  6872. "ID": 34010,
  6873. "PieceID": 11004,
  6874. "power": 100.0,
  6875. "name": 538,
  6876. "dec": 961,
  6877. "attribute": 8,
  6878. "icon": "icon_fb3401",
  6879. "scriptName": "S3401",
  6880. "IDGroup": 3401,
  6881. "timelineName": "",
  6882. "cd": 80.0,
  6883. "addcd": 1.0,
  6884. "SkillType": 3,
  6885. "level": 1,
  6886. "effectValue": [
  6887. 40.0,
  6888. 12.0
  6889. ],
  6890. "intensifierIndex": [
  6891. 2
  6892. ],
  6893. "PromoteLan": -1
  6894. },
  6895. {
  6896. "ID": 34011,
  6897. "PieceID": 11004,
  6898. "power": 150.0,
  6899. "name": 539,
  6900. "dec": 962,
  6901. "attribute": 8,
  6902. "icon": "icon_fb3401",
  6903. "scriptName": "S3401",
  6904. "IDGroup": 3401,
  6905. "timelineName": "",
  6906. "cd": 80.0,
  6907. "addcd": 1.0,
  6908. "SkillType": 3,
  6909. "level": 2,
  6910. "effectValue": [
  6911. 40.0,
  6912. 12.0
  6913. ],
  6914. "intensifierIndex": [
  6915. 2
  6916. ],
  6917. "addPropertyType": [
  6918. 109
  6919. ],
  6920. "addPropertyValue": [
  6921. 5.0
  6922. ],
  6923. "PromoteLan": 1300,
  6924. "PromoteLanPara": [
  6925. 5.0
  6926. ]
  6927. },
  6928. {
  6929. "ID": 34012,
  6930. "PieceID": 11004,
  6931. "power": 225.0,
  6932. "name": 540,
  6933. "dec": 963,
  6934. "attribute": 8,
  6935. "icon": "icon_fb3401",
  6936. "scriptName": "S3401",
  6937. "IDGroup": 3401,
  6938. "timelineName": "",
  6939. "cd": 80.0,
  6940. "addcd": 1.0,
  6941. "SkillType": 3,
  6942. "level": 3,
  6943. "effectValue": [
  6944. 60.0,
  6945. 12.0
  6946. ],
  6947. "intensifierIndex": [
  6948. 2
  6949. ],
  6950. "addPropertyType": [
  6951. 109
  6952. ],
  6953. "addPropertyValue": [
  6954. 5.0
  6955. ],
  6956. "PromoteLan": 1301
  6957. },
  6958. {
  6959. "ID": 34013,
  6960. "PieceID": 11004,
  6961. "power": 337.5,
  6962. "name": 541,
  6963. "dec": 964,
  6964. "attribute": 8,
  6965. "icon": "icon_fb3401",
  6966. "scriptName": "S3401",
  6967. "IDGroup": 3401,
  6968. "timelineName": "",
  6969. "cd": 80.0,
  6970. "addcd": 1.0,
  6971. "SkillType": 3,
  6972. "level": 4,
  6973. "effectValue": [
  6974. 60.0,
  6975. 12.0
  6976. ],
  6977. "intensifierIndex": [
  6978. 2
  6979. ],
  6980. "addPropertyType": [
  6981. 102,
  6982. 109
  6983. ],
  6984. "addPropertyValue": [
  6985. 5.0,
  6986. 5.0
  6987. ],
  6988. "PromoteLan": 1302,
  6989. "PromoteLanPara": [
  6990. 5.0
  6991. ]
  6992. },
  6993. {
  6994. "ID": 34014,
  6995. "PieceID": 11004,
  6996. "power": 506.25,
  6997. "name": 542,
  6998. "dec": 965,
  6999. "attribute": 8,
  7000. "icon": "icon_fb3401",
  7001. "scriptName": "S3401",
  7002. "IDGroup": 3401,
  7003. "timelineName": "",
  7004. "cd": 80.0,
  7005. "addcd": 1.0,
  7006. "SkillType": 3,
  7007. "level": 5,
  7008. "effectValue": [
  7009. 60.0,
  7010. 12.0
  7011. ],
  7012. "intensifierIndex": [
  7013. 2
  7014. ],
  7015. "addPropertyType": [
  7016. 102,
  7017. 109
  7018. ],
  7019. "addPropertyValue": [
  7020. 5.0,
  7021. 10.0
  7022. ],
  7023. "PromoteLan": 1303,
  7024. "PromoteLanPara": [
  7025. 5.0
  7026. ]
  7027. },
  7028. {
  7029. "ID": 34015,
  7030. "PieceID": 11004,
  7031. "power": 759.375,
  7032. "name": 543,
  7033. "dec": 966,
  7034. "attribute": 8,
  7035. "icon": "icon_fb3401",
  7036. "scriptName": "S3401",
  7037. "IDGroup": 3401,
  7038. "timelineName": "",
  7039. "cd": 80.0,
  7040. "addcd": 1.0,
  7041. "SkillType": 3,
  7042. "level": 6,
  7043. "effectValue": [
  7044. 100.0,
  7045. 12.0,
  7046. 20.0,
  7047. 9.0
  7048. ],
  7049. "intensifierIndex": [
  7050. 2
  7051. ],
  7052. "addPropertyType": [
  7053. 102,
  7054. 109
  7055. ],
  7056. "addPropertyValue": [
  7057. 5.0,
  7058. 10.0
  7059. ],
  7060. "PromoteLan": 1304
  7061. },
  7062. {
  7063. "ID": 34020,
  7064. "PieceID": 11004,
  7065. "power": 100.0,
  7066. "name": 544,
  7067. "dec": 967,
  7068. "attribute": 8,
  7069. "icon": "icon_s3402",
  7070. "scriptName": "S3402",
  7071. "IDGroup": 3402,
  7072. "timelineName": "",
  7073. "cd": 80.0,
  7074. "addcd": 1.0,
  7075. "SkillType": 3,
  7076. "level": 1,
  7077. "intensifierIndex": [
  7078. 2
  7079. ],
  7080. "PromoteLan": -1
  7081. },
  7082. {
  7083. "ID": 34021,
  7084. "PieceID": 11004,
  7085. "power": 150.0,
  7086. "name": 545,
  7087. "dec": 968,
  7088. "attribute": 8,
  7089. "icon": "icon_s3402",
  7090. "scriptName": "S3402",
  7091. "IDGroup": 3402,
  7092. "timelineName": "",
  7093. "cd": 80.0,
  7094. "addcd": 1.0,
  7095. "SkillType": 3,
  7096. "level": 2,
  7097. "effectValue": [
  7098. 12.0
  7099. ],
  7100. "intensifierIndex": [
  7101. 2
  7102. ],
  7103. "PromoteLan": 1305
  7104. },
  7105. {
  7106. "ID": 34022,
  7107. "PieceID": 11004,
  7108. "power": 225.0,
  7109. "name": 546,
  7110. "dec": 969,
  7111. "attribute": 8,
  7112. "icon": "icon_s3402",
  7113. "scriptName": "S3402",
  7114. "IDGroup": 3402,
  7115. "timelineName": "",
  7116. "cd": 80.0,
  7117. "addcd": 1.0,
  7118. "SkillType": 3,
  7119. "level": 3,
  7120. "effectValue": [
  7121. 12.0
  7122. ],
  7123. "intensifierIndex": [
  7124. 2
  7125. ],
  7126. "addPropertyType": [
  7127. 109
  7128. ],
  7129. "addPropertyValue": [
  7130. 5.0
  7131. ],
  7132. "PromoteLan": 1306,
  7133. "PromoteLanPara": [
  7134. 5.0
  7135. ]
  7136. },
  7137. {
  7138. "ID": 34023,
  7139. "PieceID": 11004,
  7140. "power": 337.5,
  7141. "name": 547,
  7142. "dec": 970,
  7143. "attribute": 8,
  7144. "icon": "icon_s3402",
  7145. "scriptName": "S3402",
  7146. "IDGroup": 3402,
  7147. "timelineName": "",
  7148. "cd": 80.0,
  7149. "addcd": 1.0,
  7150. "SkillType": 3,
  7151. "level": 4,
  7152. "effectValue": [
  7153. 12.0
  7154. ],
  7155. "intensifierIndex": [
  7156. 2
  7157. ],
  7158. "addPropertyType": [
  7159. 102,
  7160. 109
  7161. ],
  7162. "addPropertyValue": [
  7163. 5.0,
  7164. 5.0
  7165. ],
  7166. "PromoteLan": 1307
  7167. },
  7168. {
  7169. "ID": 34024,
  7170. "PieceID": 11004,
  7171. "power": 506.25,
  7172. "name": 548,
  7173. "dec": 971,
  7174. "attribute": 8,
  7175. "icon": "icon_s3402",
  7176. "scriptName": "S3402",
  7177. "IDGroup": 3402,
  7178. "timelineName": "",
  7179. "cd": 80.0,
  7180. "addcd": 1.0,
  7181. "SkillType": 3,
  7182. "level": 5,
  7183. "effectValue": [
  7184. 12.0
  7185. ],
  7186. "intensifierIndex": [
  7187. 2
  7188. ],
  7189. "addPropertyType": [
  7190. 102,
  7191. 109
  7192. ],
  7193. "addPropertyValue": [
  7194. 5.0,
  7195. 10.0
  7196. ],
  7197. "PromoteLan": 1308,
  7198. "PromoteLanPara": [
  7199. 5.0
  7200. ]
  7201. },
  7202. {
  7203. "ID": 34025,
  7204. "PieceID": 11004,
  7205. "power": 759.375,
  7206. "name": 549,
  7207. "dec": 972,
  7208. "attribute": 8,
  7209. "icon": "icon_s3402",
  7210. "scriptName": "S3402",
  7211. "IDGroup": 3402,
  7212. "timelineName": "",
  7213. "cd": 80.0,
  7214. "addcd": 1.0,
  7215. "SkillType": 3,
  7216. "level": 6,
  7217. "effectValue": [
  7218. 12.0,
  7219. 15.0,
  7220. 3.0
  7221. ],
  7222. "intensifierIndex": [
  7223. 2
  7224. ],
  7225. "addPropertyType": [
  7226. 102,
  7227. 109
  7228. ],
  7229. "addPropertyValue": [
  7230. 5.0,
  7231. 10.0
  7232. ],
  7233. "PromoteLan": 1309
  7234. },
  7235. {
  7236. "ID": 35010,
  7237. "PieceID": 11003,
  7238. "power": 100.0,
  7239. "name": 550,
  7240. "dec": 973,
  7241. "attribute": 16,
  7242. "icon": "icon_fb3501",
  7243. "scriptName": "S3501",
  7244. "IDGroup": 3501,
  7245. "timelineName": "",
  7246. "cd": 80.0,
  7247. "addcd": 1.0,
  7248. "SkillType": 3,
  7249. "level": 1,
  7250. "effectValue": [
  7251. 10.0,
  7252. 12.0
  7253. ],
  7254. "intensifierIndex": [
  7255. 1
  7256. ],
  7257. "PromoteLan": -1
  7258. },
  7259. {
  7260. "ID": 35011,
  7261. "PieceID": 11003,
  7262. "power": 150.0,
  7263. "name": 551,
  7264. "dec": 974,
  7265. "attribute": 16,
  7266. "icon": "icon_fb3501",
  7267. "scriptName": "S3501",
  7268. "IDGroup": 3501,
  7269. "timelineName": "",
  7270. "cd": 80.0,
  7271. "addcd": 1.0,
  7272. "SkillType": 3,
  7273. "level": 2,
  7274. "effectValue": [
  7275. 13.0,
  7276. 12.0
  7277. ],
  7278. "intensifierIndex": [
  7279. 1
  7280. ],
  7281. "PromoteLan": 1310
  7282. },
  7283. {
  7284. "ID": 35012,
  7285. "PieceID": 11003,
  7286. "power": 225.0,
  7287. "name": 552,
  7288. "dec": 975,
  7289. "attribute": 16,
  7290. "icon": "icon_fb3501",
  7291. "scriptName": "S3501",
  7292. "IDGroup": 3501,
  7293. "timelineName": "",
  7294. "cd": 80.0,
  7295. "addcd": 1.0,
  7296. "SkillType": 3,
  7297. "level": 3,
  7298. "effectValue": [
  7299. 13.0,
  7300. 12.0
  7301. ],
  7302. "intensifierIndex": [
  7303. 1
  7304. ],
  7305. "addPropertyType": [
  7306. 110
  7307. ],
  7308. "addPropertyValue": [
  7309. 5.0
  7310. ],
  7311. "PromoteLan": 1311,
  7312. "PromoteLanPara": [
  7313. 5.0
  7314. ]
  7315. },
  7316. {
  7317. "ID": 35013,
  7318. "PieceID": 11003,
  7319. "power": 337.5,
  7320. "name": 553,
  7321. "dec": 976,
  7322. "attribute": 16,
  7323. "icon": "icon_fb3501",
  7324. "scriptName": "S3501",
  7325. "IDGroup": 3501,
  7326. "timelineName": "",
  7327. "cd": 80.0,
  7328. "addcd": 1.0,
  7329. "SkillType": 3,
  7330. "level": 4,
  7331. "effectValue": [
  7332. 16.0,
  7333. 12.0
  7334. ],
  7335. "intensifierIndex": [
  7336. 1
  7337. ],
  7338. "addPropertyType": [
  7339. 110
  7340. ],
  7341. "addPropertyValue": [
  7342. 5.0
  7343. ],
  7344. "PromoteLan": 1312
  7345. },
  7346. {
  7347. "ID": 35014,
  7348. "PieceID": 11003,
  7349. "power": 506.25,
  7350. "name": 554,
  7351. "dec": 977,
  7352. "attribute": 16,
  7353. "icon": "icon_fb3501",
  7354. "scriptName": "S3501",
  7355. "IDGroup": 3501,
  7356. "timelineName": "",
  7357. "cd": 80.0,
  7358. "addcd": 1.0,
  7359. "SkillType": 3,
  7360. "level": 5,
  7361. "effectValue": [
  7362. 16.0,
  7363. 12.0
  7364. ],
  7365. "intensifierIndex": [
  7366. 1
  7367. ],
  7368. "addPropertyType": [
  7369. 110
  7370. ],
  7371. "addPropertyValue": [
  7372. 10.0
  7373. ],
  7374. "PromoteLan": 1313,
  7375. "PromoteLanPara": [
  7376. 5.0
  7377. ]
  7378. },
  7379. {
  7380. "ID": 35015,
  7381. "PieceID": 11003,
  7382. "power": 759.375,
  7383. "name": 555,
  7384. "dec": 978,
  7385. "attribute": 16,
  7386. "icon": "icon_fb3501",
  7387. "scriptName": "S3501",
  7388. "IDGroup": 3501,
  7389. "timelineName": "",
  7390. "cd": 80.0,
  7391. "addcd": 1.0,
  7392. "SkillType": 3,
  7393. "level": 6,
  7394. "effectValue": [
  7395. 20.0,
  7396. 12.0
  7397. ],
  7398. "intensifierIndex": [
  7399. 1
  7400. ],
  7401. "addPropertyType": [
  7402. 110
  7403. ],
  7404. "addPropertyValue": [
  7405. 10.0
  7406. ],
  7407. "PromoteLan": 1314
  7408. },
  7409. {
  7410. "ID": 601011,
  7411. "PieceID": null,
  7412. "power": 100.0,
  7413. "name": 696,
  7414. "dec": 699,
  7415. "attribute": 1,
  7416. "icon": "icon_s1001",
  7417. "scriptName": "DS60101",
  7418. "IDGroup": 1001,
  7419. "timelineName": "",
  7420. "cd": 1.0,
  7421. "addcd": 1.0,
  7422. "SkillType": 4,
  7423. "level": 1,
  7424. "effectValue": [
  7425. 10.0,
  7426. 100.0,
  7427. 50.0,
  7428. 50.0,
  7429. 9.0
  7430. ],
  7431. "intensifierIndex": [
  7432. 0
  7433. ],
  7434. "PromoteLan": null
  7435. },
  7436. {
  7437. "ID": 601021,
  7438. "PieceID": null,
  7439. "power": 100.0,
  7440. "name": 697,
  7441. "dec": 700,
  7442. "attribute": 1,
  7443. "icon": "icon_s1002",
  7444. "scriptName": "DS60102",
  7445. "IDGroup": 1002,
  7446. "timelineName": "",
  7447. "cd": 1.0,
  7448. "addcd": 1.0,
  7449. "SkillType": 4,
  7450. "level": 1,
  7451. "effectValue": [
  7452. 3.0,
  7453. 3.0,
  7454. 30.0,
  7455. 5.0,
  7456. 1.0,
  7457. 3.0,
  7458. 30.0,
  7459. 3.0,
  7460. 30.0
  7461. ],
  7462. "intensifierIndex": [
  7463. 0
  7464. ],
  7465. "PromoteLan": null
  7466. },
  7467. {
  7468. "ID": 601031,
  7469. "PieceID": null,
  7470. "power": 100.0,
  7471. "name": 698,
  7472. "dec": 701,
  7473. "attribute": 1,
  7474. "icon": "icon_s1003",
  7475. "scriptName": "DS60103",
  7476. "IDGroup": 1003,
  7477. "timelineName": "",
  7478. "cd": 1.0,
  7479. "addcd": 1.0,
  7480. "SkillType": 4,
  7481. "level": 1,
  7482. "effectValue": [
  7483. 30.0,
  7484. 1.0
  7485. ],
  7486. "intensifierIndex": [
  7487. 0
  7488. ],
  7489. "PromoteLan": null
  7490. },
  7491. {
  7492. "ID": 90010,
  7493. "PieceID": null,
  7494. "power": 300.0,
  7495. "name": 707,
  7496. "dec": 717,
  7497. "attribute": 1,
  7498. "icon": "icon_s9001",
  7499. "scriptName": "S9001",
  7500. "IDGroup": 9001,
  7501. "timelineName": "BossSk1_timeline_TD",
  7502. "cd": 3.0,
  7503. "addcd": 1.0,
  7504. "SkillType": 1,
  7505. "level": 1,
  7506. "effectValue": [
  7507. 63.0,
  7508. 5.0,
  7509. 1.0,
  7510. 10.0,
  7511. 1.0,
  7512. 1.0,
  7513. 20.0
  7514. ],
  7515. "intensifierIndex": [
  7516. 1
  7517. ],
  7518. "PromoteLan": null
  7519. },
  7520. {
  7521. "ID": 90011,
  7522. "PieceID": null,
  7523. "power": 450.0,
  7524. "name": 707,
  7525. "dec": 717,
  7526. "attribute": 1,
  7527. "icon": "icon_s9001",
  7528. "scriptName": "S9001",
  7529. "IDGroup": 9001,
  7530. "timelineName": "BossSk1_timeline_TD",
  7531. "cd": 3.0,
  7532. "addcd": 1.0,
  7533. "SkillType": 1,
  7534. "level": 2,
  7535. "effectValue": [
  7536. 76.0,
  7537. 5.0,
  7538. 1.0,
  7539. 10.0,
  7540. 1.0,
  7541. 1.0,
  7542. 20.0
  7543. ],
  7544. "intensifierIndex": [
  7545. 1
  7546. ],
  7547. "PromoteLan": null
  7548. },
  7549. {
  7550. "ID": 90012,
  7551. "PieceID": null,
  7552. "power": 675.0,
  7553. "name": 707,
  7554. "dec": 717,
  7555. "attribute": 1,
  7556. "icon": "icon_s9001",
  7557. "scriptName": "S9001",
  7558. "IDGroup": 9001,
  7559. "timelineName": "BossSk1_timeline_TD",
  7560. "cd": 3.0,
  7561. "addcd": 1.0,
  7562. "SkillType": 1,
  7563. "level": 3,
  7564. "effectValue": [
  7565. 89.0,
  7566. 5.0,
  7567. 1.0,
  7568. 10.0,
  7569. 1.0,
  7570. 1.0,
  7571. 20.0
  7572. ],
  7573. "intensifierIndex": [
  7574. 1
  7575. ],
  7576. "PromoteLan": null
  7577. },
  7578. {
  7579. "ID": 90013,
  7580. "PieceID": null,
  7581. "power": 1012.5,
  7582. "name": 707,
  7583. "dec": 717,
  7584. "attribute": 1,
  7585. "icon": "icon_s9001",
  7586. "scriptName": "S9001",
  7587. "IDGroup": 9001,
  7588. "timelineName": "BossSk1_timeline_TD",
  7589. "cd": 3.0,
  7590. "addcd": 1.0,
  7591. "SkillType": 1,
  7592. "level": 4,
  7593. "effectValue": [
  7594. 102.0,
  7595. 5.0,
  7596. 1.0,
  7597. 10.0,
  7598. 1.0,
  7599. 1.0,
  7600. 20.0
  7601. ],
  7602. "intensifierIndex": [
  7603. 1
  7604. ],
  7605. "PromoteLan": null
  7606. },
  7607. {
  7608. "ID": 90014,
  7609. "PieceID": null,
  7610. "power": 1518.75,
  7611. "name": 707,
  7612. "dec": 717,
  7613. "attribute": 1,
  7614. "icon": "icon_s9001",
  7615. "scriptName": "S9001",
  7616. "IDGroup": 9001,
  7617. "timelineName": "BossSk1_timeline_TD",
  7618. "cd": 3.0,
  7619. "addcd": 1.0,
  7620. "SkillType": 1,
  7621. "level": 5,
  7622. "effectValue": [
  7623. 115.0,
  7624. 5.0,
  7625. 1.0,
  7626. 10.0,
  7627. 1.0,
  7628. 1.0,
  7629. 20.0
  7630. ],
  7631. "intensifierIndex": [
  7632. 1
  7633. ],
  7634. "PromoteLan": null
  7635. },
  7636. {
  7637. "ID": 90015,
  7638. "PieceID": null,
  7639. "power": 2278.125,
  7640. "name": 707,
  7641. "dec": 717,
  7642. "attribute": 1,
  7643. "icon": "icon_s9001",
  7644. "scriptName": "S9001",
  7645. "IDGroup": 9001,
  7646. "timelineName": "BossSk1_timeline_TD",
  7647. "cd": 3.0,
  7648. "addcd": 1.0,
  7649. "SkillType": 1,
  7650. "level": 6,
  7651. "effectValue": [
  7652. 126.0,
  7653. 5.0,
  7654. 1.0,
  7655. 10.0,
  7656. 1.0,
  7657. 1.0,
  7658. 20.0
  7659. ],
  7660. "intensifierIndex": [
  7661. 1
  7662. ],
  7663. "PromoteLan": null
  7664. },
  7665. {
  7666. "ID": 90020,
  7667. "PieceID": null,
  7668. "power": 300.0,
  7669. "name": 708,
  7670. "dec": 718,
  7671. "attribute": 1,
  7672. "icon": "icon_s9002",
  7673. "scriptName": "S9002",
  7674. "IDGroup": 9002,
  7675. "timelineName": "BossSk2_timeline_TD",
  7676. "cd": 3.0,
  7677. "addcd": 1.0,
  7678. "SkillType": 1,
  7679. "level": 1,
  7680. "effectValue": [
  7681. 30.0,
  7682. 100.0
  7683. ],
  7684. "intensifierIndex": [
  7685. 1
  7686. ],
  7687. "PromoteLan": null
  7688. },
  7689. {
  7690. "ID": 90021,
  7691. "PieceID": null,
  7692. "power": 450.0,
  7693. "name": 708,
  7694. "dec": 718,
  7695. "attribute": 1,
  7696. "icon": "icon_s9002",
  7697. "scriptName": "S9002",
  7698. "IDGroup": 9002,
  7699. "timelineName": "BossSk2_timeline_TD",
  7700. "cd": 3.0,
  7701. "addcd": 1.0,
  7702. "SkillType": 1,
  7703. "level": 2,
  7704. "effectValue": [
  7705. 33.0,
  7706. 110.0
  7707. ],
  7708. "intensifierIndex": [
  7709. 1
  7710. ],
  7711. "PromoteLan": null
  7712. },
  7713. {
  7714. "ID": 90022,
  7715. "PieceID": null,
  7716. "power": 675.0,
  7717. "name": 708,
  7718. "dec": 718,
  7719. "attribute": 1,
  7720. "icon": "icon_s9002",
  7721. "scriptName": "S9002",
  7722. "IDGroup": 9002,
  7723. "timelineName": "BossSk2_timeline_TD",
  7724. "cd": 3.0,
  7725. "addcd": 1.0,
  7726. "SkillType": 1,
  7727. "level": 3,
  7728. "effectValue": [
  7729. 36.0,
  7730. 120.0
  7731. ],
  7732. "intensifierIndex": [
  7733. 1
  7734. ],
  7735. "PromoteLan": null
  7736. },
  7737. {
  7738. "ID": 90023,
  7739. "PieceID": null,
  7740. "power": 1012.5,
  7741. "name": 708,
  7742. "dec": 718,
  7743. "attribute": 1,
  7744. "icon": "icon_s9002",
  7745. "scriptName": "S9002",
  7746. "IDGroup": 9002,
  7747. "timelineName": "BossSk2_timeline_TD",
  7748. "cd": 3.0,
  7749. "addcd": 1.0,
  7750. "SkillType": 1,
  7751. "level": 4,
  7752. "effectValue": [
  7753. 39.0,
  7754. 130.0
  7755. ],
  7756. "intensifierIndex": [
  7757. 1
  7758. ],
  7759. "PromoteLan": null
  7760. },
  7761. {
  7762. "ID": 90024,
  7763. "PieceID": null,
  7764. "power": 1518.75,
  7765. "name": 708,
  7766. "dec": 718,
  7767. "attribute": 1,
  7768. "icon": "icon_s9002",
  7769. "scriptName": "S9002",
  7770. "IDGroup": 9002,
  7771. "timelineName": "BossSk2_timeline_TD",
  7772. "cd": 3.0,
  7773. "addcd": 1.0,
  7774. "SkillType": 1,
  7775. "level": 5,
  7776. "effectValue": [
  7777. 42.0,
  7778. 140.0
  7779. ],
  7780. "intensifierIndex": [
  7781. 1
  7782. ],
  7783. "PromoteLan": null
  7784. },
  7785. {
  7786. "ID": 90025,
  7787. "PieceID": null,
  7788. "power": 2278.125,
  7789. "name": 708,
  7790. "dec": 718,
  7791. "attribute": 1,
  7792. "icon": "icon_s9002",
  7793. "scriptName": "S9002",
  7794. "IDGroup": 9002,
  7795. "timelineName": "BossSk2_timeline_TD",
  7796. "cd": 3.0,
  7797. "addcd": 1.0,
  7798. "SkillType": 1,
  7799. "level": 6,
  7800. "effectValue": [
  7801. 45.0,
  7802. 150.0
  7803. ],
  7804. "intensifierIndex": [
  7805. 1
  7806. ],
  7807. "PromoteLan": null
  7808. },
  7809. {
  7810. "ID": 90030,
  7811. "PieceID": null,
  7812. "power": 100.0,
  7813. "name": 709,
  7814. "dec": 719,
  7815. "attribute": 1,
  7816. "icon": "icon_s9003",
  7817. "scriptName": "S9003",
  7818. "IDGroup": 9003,
  7819. "timelineName": "",
  7820. "cd": 1.0,
  7821. "addcd": 1.0,
  7822. "SkillType": 2,
  7823. "level": 1,
  7824. "effectValue": [
  7825. 1.0
  7826. ],
  7827. "intensifierIndex": [
  7828. 1
  7829. ],
  7830. "PromoteLan": null
  7831. },
  7832. {
  7833. "ID": 90040,
  7834. "PieceID": null,
  7835. "power": 100.0,
  7836. "name": 710,
  7837. "dec": 720,
  7838. "attribute": 1,
  7839. "icon": "icon_s9004",
  7840. "scriptName": "S9004",
  7841. "IDGroup": 9004,
  7842. "timelineName": "BossSk4_timeline_TD",
  7843. "cd": 1.0,
  7844. "addcd": 1.0,
  7845. "SkillType": 1,
  7846. "level": 1,
  7847. "effectValue": [
  7848. 100.0
  7849. ],
  7850. "intensifierIndex": [
  7851. 1
  7852. ],
  7853. "PromoteLan": null
  7854. },
  7855. {
  7856. "ID": 90041,
  7857. "PieceID": null,
  7858. "power": 150.0,
  7859. "name": 710,
  7860. "dec": 720,
  7861. "attribute": 1,
  7862. "icon": "icon_s9004",
  7863. "scriptName": "S9004",
  7864. "IDGroup": 9004,
  7865. "timelineName": "BossSk4_timeline_TD",
  7866. "cd": 1.0,
  7867. "addcd": 1.0,
  7868. "SkillType": 1,
  7869. "level": 2,
  7870. "effectValue": [
  7871. 120.0
  7872. ],
  7873. "intensifierIndex": [
  7874. 1
  7875. ],
  7876. "PromoteLan": null
  7877. },
  7878. {
  7879. "ID": 90042,
  7880. "PieceID": null,
  7881. "power": 225.0,
  7882. "name": 710,
  7883. "dec": 720,
  7884. "attribute": 1,
  7885. "icon": "icon_s9004",
  7886. "scriptName": "S9004",
  7887. "IDGroup": 9004,
  7888. "timelineName": "BossSk4_timeline_TD",
  7889. "cd": 1.0,
  7890. "addcd": 1.0,
  7891. "SkillType": 1,
  7892. "level": 3,
  7893. "effectValue": [
  7894. 140.0
  7895. ],
  7896. "intensifierIndex": [
  7897. 1
  7898. ],
  7899. "PromoteLan": null
  7900. },
  7901. {
  7902. "ID": 90043,
  7903. "PieceID": null,
  7904. "power": 337.5,
  7905. "name": 710,
  7906. "dec": 720,
  7907. "attribute": 1,
  7908. "icon": "icon_s9004",
  7909. "scriptName": "S9004",
  7910. "IDGroup": 9004,
  7911. "timelineName": "BossSk4_timeline_TD",
  7912. "cd": 1.0,
  7913. "addcd": 1.0,
  7914. "SkillType": 1,
  7915. "level": 4,
  7916. "effectValue": [
  7917. 160.0
  7918. ],
  7919. "intensifierIndex": [
  7920. 1
  7921. ],
  7922. "PromoteLan": null
  7923. },
  7924. {
  7925. "ID": 90044,
  7926. "PieceID": null,
  7927. "power": 506.25,
  7928. "name": 710,
  7929. "dec": 720,
  7930. "attribute": 1,
  7931. "icon": "icon_s9004",
  7932. "scriptName": "S9004",
  7933. "IDGroup": 9004,
  7934. "timelineName": "BossSk4_timeline_TD",
  7935. "cd": 1.0,
  7936. "addcd": 1.0,
  7937. "SkillType": 1,
  7938. "level": 5,
  7939. "effectValue": [
  7940. 180.0
  7941. ],
  7942. "intensifierIndex": [
  7943. 1
  7944. ],
  7945. "PromoteLan": null
  7946. },
  7947. {
  7948. "ID": 90045,
  7949. "PieceID": null,
  7950. "power": 759.375,
  7951. "name": 710,
  7952. "dec": 720,
  7953. "attribute": 1,
  7954. "icon": "icon_s9004",
  7955. "scriptName": "S9004",
  7956. "IDGroup": 9004,
  7957. "timelineName": "BossSk4_timeline_TD",
  7958. "cd": 1.0,
  7959. "addcd": 1.0,
  7960. "SkillType": 1,
  7961. "level": 6,
  7962. "effectValue": [
  7963. 200.0
  7964. ],
  7965. "intensifierIndex": [
  7966. 1
  7967. ],
  7968. "PromoteLan": null
  7969. },
  7970. {
  7971. "ID": 90050,
  7972. "PieceID": null,
  7973. "power": 100.0,
  7974. "name": 711,
  7975. "dec": 721,
  7976. "attribute": 1,
  7977. "icon": "icon_s9005",
  7978. "scriptName": "S9005",
  7979. "IDGroup": 9005,
  7980. "timelineName": "BossSk4_timeline_TD",
  7981. "cd": 1.0,
  7982. "addcd": 1.0,
  7983. "SkillType": 1,
  7984. "level": 1,
  7985. "effectValue": [
  7986. 100.0
  7987. ],
  7988. "intensifierIndex": [
  7989. 1
  7990. ],
  7991. "PromoteLan": null
  7992. },
  7993. {
  7994. "ID": 90051,
  7995. "PieceID": null,
  7996. "power": 150.0,
  7997. "name": 711,
  7998. "dec": 721,
  7999. "attribute": 1,
  8000. "icon": "icon_s9005",
  8001. "scriptName": "S9005",
  8002. "IDGroup": 9005,
  8003. "timelineName": "BossSk4_timeline_TD",
  8004. "cd": 1.0,
  8005. "addcd": 1.0,
  8006. "SkillType": 1,
  8007. "level": 2,
  8008. "effectValue": [
  8009. 120.0
  8010. ],
  8011. "intensifierIndex": [
  8012. 1
  8013. ],
  8014. "PromoteLan": null
  8015. },
  8016. {
  8017. "ID": 90052,
  8018. "PieceID": null,
  8019. "power": 225.0,
  8020. "name": 711,
  8021. "dec": 721,
  8022. "attribute": 1,
  8023. "icon": "icon_s9005",
  8024. "scriptName": "S9005",
  8025. "IDGroup": 9005,
  8026. "timelineName": "BossSk4_timeline_TD",
  8027. "cd": 1.0,
  8028. "addcd": 1.0,
  8029. "SkillType": 1,
  8030. "level": 3,
  8031. "effectValue": [
  8032. 140.0
  8033. ],
  8034. "intensifierIndex": [
  8035. 1
  8036. ],
  8037. "PromoteLan": null
  8038. },
  8039. {
  8040. "ID": 90053,
  8041. "PieceID": null,
  8042. "power": 337.5,
  8043. "name": 711,
  8044. "dec": 721,
  8045. "attribute": 1,
  8046. "icon": "icon_s9005",
  8047. "scriptName": "S9005",
  8048. "IDGroup": 9005,
  8049. "timelineName": "BossSk4_timeline_TD",
  8050. "cd": 1.0,
  8051. "addcd": 1.0,
  8052. "SkillType": 1,
  8053. "level": 4,
  8054. "effectValue": [
  8055. 160.0
  8056. ],
  8057. "intensifierIndex": [
  8058. 1
  8059. ],
  8060. "PromoteLan": null
  8061. },
  8062. {
  8063. "ID": 90054,
  8064. "PieceID": null,
  8065. "power": 506.25,
  8066. "name": 711,
  8067. "dec": 721,
  8068. "attribute": 1,
  8069. "icon": "icon_s9005",
  8070. "scriptName": "S9005",
  8071. "IDGroup": 9005,
  8072. "timelineName": "BossSk4_timeline_TD",
  8073. "cd": 1.0,
  8074. "addcd": 1.0,
  8075. "SkillType": 1,
  8076. "level": 5,
  8077. "effectValue": [
  8078. 180.0
  8079. ],
  8080. "intensifierIndex": [
  8081. 1
  8082. ],
  8083. "PromoteLan": null
  8084. },
  8085. {
  8086. "ID": 90055,
  8087. "PieceID": null,
  8088. "power": 759.375,
  8089. "name": 711,
  8090. "dec": 721,
  8091. "attribute": 1,
  8092. "icon": "icon_s9005",
  8093. "scriptName": "S9005",
  8094. "IDGroup": 9005,
  8095. "timelineName": "BossSk4_timeline_TD",
  8096. "cd": 1.0,
  8097. "addcd": 1.0,
  8098. "SkillType": 1,
  8099. "level": 6,
  8100. "effectValue": [
  8101. 200.0
  8102. ],
  8103. "intensifierIndex": [
  8104. 1
  8105. ],
  8106. "PromoteLan": null
  8107. },
  8108. {
  8109. "ID": 90110,
  8110. "PieceID": null,
  8111. "power": 100.0,
  8112. "name": 711,
  8113. "dec": 721,
  8114. "attribute": 2,
  8115. "icon": "icon_s9011",
  8116. "scriptName": "S9011",
  8117. "IDGroup": 9011,
  8118. "timelineName": "Boss_fenghuang_TD",
  8119. "cd": 1.0,
  8120. "addcd": 1.0,
  8121. "SkillType": 1,
  8122. "level": 1,
  8123. "effectValue": [
  8124. 3.0,
  8125. 80.0
  8126. ],
  8127. "intensifierIndex": [
  8128. 1
  8129. ],
  8130. "PromoteLan": null
  8131. },
  8132. {
  8133. "ID": 90111,
  8134. "PieceID": null,
  8135. "power": 150.0,
  8136. "name": 711,
  8137. "dec": 721,
  8138. "attribute": 2,
  8139. "icon": "icon_s9011",
  8140. "scriptName": "S9011",
  8141. "IDGroup": 9011,
  8142. "timelineName": "Boss_fenghuang_TD",
  8143. "cd": 1.0,
  8144. "addcd": 1.0,
  8145. "SkillType": 1,
  8146. "level": 2,
  8147. "effectValue": [
  8148. 3.0,
  8149. 90.0
  8150. ],
  8151. "intensifierIndex": [
  8152. 1
  8153. ],
  8154. "PromoteLan": null
  8155. },
  8156. {
  8157. "ID": 90112,
  8158. "PieceID": null,
  8159. "power": 225.0,
  8160. "name": 711,
  8161. "dec": 721,
  8162. "attribute": 2,
  8163. "icon": "icon_s9011",
  8164. "scriptName": "S9011",
  8165. "IDGroup": 9011,
  8166. "timelineName": "Boss_fenghuang_TD",
  8167. "cd": 1.0,
  8168. "addcd": 1.0,
  8169. "SkillType": 1,
  8170. "level": 3,
  8171. "effectValue": [
  8172. 4.0,
  8173. 100.0
  8174. ],
  8175. "intensifierIndex": [
  8176. 1
  8177. ],
  8178. "PromoteLan": null
  8179. },
  8180. {
  8181. "ID": 90113,
  8182. "PieceID": null,
  8183. "power": 337.5,
  8184. "name": 711,
  8185. "dec": 721,
  8186. "attribute": 2,
  8187. "icon": "icon_s9011",
  8188. "scriptName": "S9011",
  8189. "IDGroup": 9011,
  8190. "timelineName": "Boss_fenghuang_TD",
  8191. "cd": 1.0,
  8192. "addcd": 1.0,
  8193. "SkillType": 1,
  8194. "level": 4,
  8195. "effectValue": [
  8196. 4.0,
  8197. 110.0
  8198. ],
  8199. "intensifierIndex": [
  8200. 1
  8201. ],
  8202. "PromoteLan": null
  8203. },
  8204. {
  8205. "ID": 90114,
  8206. "PieceID": null,
  8207. "power": 506.25,
  8208. "name": 711,
  8209. "dec": 721,
  8210. "attribute": 2,
  8211. "icon": "icon_s9011",
  8212. "scriptName": "S9011",
  8213. "IDGroup": 9011,
  8214. "timelineName": "Boss_fenghuang_TD",
  8215. "cd": 1.0,
  8216. "addcd": 1.0,
  8217. "SkillType": 1,
  8218. "level": 5,
  8219. "effectValue": [
  8220. 5.0,
  8221. 120.0
  8222. ],
  8223. "intensifierIndex": [
  8224. 1
  8225. ],
  8226. "PromoteLan": null
  8227. },
  8228. {
  8229. "ID": 90115,
  8230. "PieceID": null,
  8231. "power": 759.375,
  8232. "name": 711,
  8233. "dec": 721,
  8234. "attribute": 2,
  8235. "icon": "icon_s9011",
  8236. "scriptName": "S9011",
  8237. "IDGroup": 9011,
  8238. "timelineName": "Boss_fenghuang_TD",
  8239. "cd": 1.0,
  8240. "addcd": 1.0,
  8241. "SkillType": 1,
  8242. "level": 6,
  8243. "effectValue": [
  8244. 5.0,
  8245. 130.0
  8246. ],
  8247. "intensifierIndex": [
  8248. 1
  8249. ],
  8250. "PromoteLan": null
  8251. },
  8252. {
  8253. "ID": 90120,
  8254. "PieceID": null,
  8255. "power": 100.0,
  8256. "name": 711,
  8257. "dec": 721,
  8258. "attribute": 2,
  8259. "icon": "icon_s9012",
  8260. "scriptName": "S9012",
  8261. "IDGroup": 9012,
  8262. "timelineName": "Boss_fenghuang_TD",
  8263. "cd": 1.0,
  8264. "addcd": 1.0,
  8265. "SkillType": 1,
  8266. "level": 1,
  8267. "effectValue": [
  8268. 230.0,
  8269. 20.0
  8270. ],
  8271. "intensifierIndex": [
  8272. 1
  8273. ],
  8274. "PromoteLan": null
  8275. },
  8276. {
  8277. "ID": 90121,
  8278. "PieceID": null,
  8279. "power": 150.0,
  8280. "name": 711,
  8281. "dec": 721,
  8282. "attribute": 2,
  8283. "icon": "icon_s9012",
  8284. "scriptName": "S9012",
  8285. "IDGroup": 9012,
  8286. "timelineName": "Boss_fenghuang_TD",
  8287. "cd": 1.0,
  8288. "addcd": 1.0,
  8289. "SkillType": 1,
  8290. "level": 2,
  8291. "effectValue": [
  8292. 250.0,
  8293. 20.0
  8294. ],
  8295. "intensifierIndex": [
  8296. 1
  8297. ],
  8298. "PromoteLan": null
  8299. },
  8300. {
  8301. "ID": 90122,
  8302. "PieceID": null,
  8303. "power": 225.0,
  8304. "name": 711,
  8305. "dec": 721,
  8306. "attribute": 2,
  8307. "icon": "icon_s9012",
  8308. "scriptName": "S9012",
  8309. "IDGroup": 9012,
  8310. "timelineName": "Boss_fenghuang_TD",
  8311. "cd": 1.0,
  8312. "addcd": 1.0,
  8313. "SkillType": 1,
  8314. "level": 3,
  8315. "effectValue": [
  8316. 270.0,
  8317. 20.0
  8318. ],
  8319. "intensifierIndex": [
  8320. 1
  8321. ],
  8322. "PromoteLan": null
  8323. },
  8324. {
  8325. "ID": 90123,
  8326. "PieceID": null,
  8327. "power": 337.5,
  8328. "name": 711,
  8329. "dec": 721,
  8330. "attribute": 2,
  8331. "icon": "icon_s9012",
  8332. "scriptName": "S9012",
  8333. "IDGroup": 9012,
  8334. "timelineName": "Boss_fenghuang_TD",
  8335. "cd": 1.0,
  8336. "addcd": 1.0,
  8337. "SkillType": 1,
  8338. "level": 4,
  8339. "effectValue": [
  8340. 290.0,
  8341. 20.0
  8342. ],
  8343. "intensifierIndex": [
  8344. 1
  8345. ],
  8346. "PromoteLan": null
  8347. },
  8348. {
  8349. "ID": 90124,
  8350. "PieceID": null,
  8351. "power": 506.25,
  8352. "name": 711,
  8353. "dec": 721,
  8354. "attribute": 2,
  8355. "icon": "icon_s9012",
  8356. "scriptName": "S9012",
  8357. "IDGroup": 9012,
  8358. "timelineName": "Boss_fenghuang_TD",
  8359. "cd": 1.0,
  8360. "addcd": 1.0,
  8361. "SkillType": 1,
  8362. "level": 5,
  8363. "effectValue": [
  8364. 310.0,
  8365. 20.0
  8366. ],
  8367. "intensifierIndex": [
  8368. 1
  8369. ],
  8370. "PromoteLan": null
  8371. },
  8372. {
  8373. "ID": 90125,
  8374. "PieceID": null,
  8375. "power": 759.375,
  8376. "name": 711,
  8377. "dec": 721,
  8378. "attribute": 2,
  8379. "icon": "icon_s9012",
  8380. "scriptName": "S9012",
  8381. "IDGroup": 9012,
  8382. "timelineName": "Boss_fenghuang_TD",
  8383. "cd": 1.0,
  8384. "addcd": 1.0,
  8385. "SkillType": 1,
  8386. "level": 6,
  8387. "effectValue": [
  8388. 330.0,
  8389. 20.0
  8390. ],
  8391. "intensifierIndex": [
  8392. 1
  8393. ],
  8394. "PromoteLan": null
  8395. },
  8396. {
  8397. "ID": 90130,
  8398. "PieceID": null,
  8399. "power": 100.0,
  8400. "name": 711,
  8401. "dec": 721,
  8402. "attribute": 2,
  8403. "icon": "icon_s9013",
  8404. "scriptName": "S9013",
  8405. "IDGroup": 9013,
  8406. "timelineName": "Boss_fenghuang_TD",
  8407. "cd": 1.0,
  8408. "addcd": 1.0,
  8409. "SkillType": 2,
  8410. "level": 1,
  8411. "effectValue": [
  8412. 10.0,
  8413. 10.0,
  8414. 5.0,
  8415. 30.0
  8416. ],
  8417. "intensifierIndex": [
  8418. 1
  8419. ],
  8420. "PromoteLan": null
  8421. },
  8422. {
  8423. "ID": 90131,
  8424. "PieceID": null,
  8425. "power": 150.0,
  8426. "name": 711,
  8427. "dec": 721,
  8428. "attribute": 2,
  8429. "icon": "icon_s9013",
  8430. "scriptName": "S9013",
  8431. "IDGroup": 9013,
  8432. "timelineName": "Boss_fenghuang_TD",
  8433. "cd": 1.0,
  8434. "addcd": 1.0,
  8435. "SkillType": 2,
  8436. "level": 2,
  8437. "effectValue": [
  8438. 10.0,
  8439. 10.0,
  8440. 5.0,
  8441. 50.0
  8442. ],
  8443. "intensifierIndex": [
  8444. 1
  8445. ],
  8446. "PromoteLan": null
  8447. },
  8448. {
  8449. "ID": 90132,
  8450. "PieceID": null,
  8451. "power": 225.0,
  8452. "name": 711,
  8453. "dec": 721,
  8454. "attribute": 2,
  8455. "icon": "icon_s9013",
  8456. "scriptName": "S9013",
  8457. "IDGroup": 9013,
  8458. "timelineName": "Boss_fenghuang_TD",
  8459. "cd": 1.0,
  8460. "addcd": 1.0,
  8461. "SkillType": 2,
  8462. "level": 3,
  8463. "effectValue": [
  8464. 10.0,
  8465. 10.0,
  8466. 5.0,
  8467. 70.0
  8468. ],
  8469. "intensifierIndex": [
  8470. 1
  8471. ],
  8472. "PromoteLan": null
  8473. },
  8474. {
  8475. "ID": 90133,
  8476. "PieceID": null,
  8477. "power": 337.5,
  8478. "name": 711,
  8479. "dec": 721,
  8480. "attribute": 2,
  8481. "icon": "icon_s9013",
  8482. "scriptName": "S9013",
  8483. "IDGroup": 9013,
  8484. "timelineName": "Boss_fenghuang_TD",
  8485. "cd": 1.0,
  8486. "addcd": 1.0,
  8487. "SkillType": 2,
  8488. "level": 4,
  8489. "effectValue": [
  8490. 10.0,
  8491. 10.0,
  8492. 5.0,
  8493. 90.0
  8494. ],
  8495. "intensifierIndex": [
  8496. 1
  8497. ],
  8498. "PromoteLan": null
  8499. },
  8500. {
  8501. "ID": 90134,
  8502. "PieceID": null,
  8503. "power": 506.25,
  8504. "name": 711,
  8505. "dec": 721,
  8506. "attribute": 2,
  8507. "icon": "icon_s9013",
  8508. "scriptName": "S9013",
  8509. "IDGroup": 9013,
  8510. "timelineName": "Boss_fenghuang_TD",
  8511. "cd": 1.0,
  8512. "addcd": 1.0,
  8513. "SkillType": 2,
  8514. "level": 5,
  8515. "effectValue": [
  8516. 10.0,
  8517. 10.0,
  8518. 5.0,
  8519. 110.0
  8520. ],
  8521. "intensifierIndex": [
  8522. 1
  8523. ],
  8524. "PromoteLan": null
  8525. },
  8526. {
  8527. "ID": 90135,
  8528. "PieceID": null,
  8529. "power": 759.375,
  8530. "name": 711,
  8531. "dec": 721,
  8532. "attribute": 2,
  8533. "icon": "icon_s9013",
  8534. "scriptName": "S9013",
  8535. "IDGroup": 9013,
  8536. "timelineName": "Boss_fenghuang_TD",
  8537. "cd": 1.0,
  8538. "addcd": 1.0,
  8539. "SkillType": 2,
  8540. "level": 6,
  8541. "effectValue": [
  8542. 10.0,
  8543. 10.0,
  8544. 5.0,
  8545. 130.0
  8546. ],
  8547. "intensifierIndex": [
  8548. 1
  8549. ],
  8550. "PromoteLan": null
  8551. },
  8552. {
  8553. "ID": 90140,
  8554. "PieceID": null,
  8555. "power": 100.0,
  8556. "name": 711,
  8557. "dec": 721,
  8558. "attribute": 2,
  8559. "icon": "icon_s9014",
  8560. "scriptName": "S9014",
  8561. "IDGroup": 9014,
  8562. "timelineName": "Boss_fenghuang_TD",
  8563. "cd": 1.0,
  8564. "addcd": 1.0,
  8565. "SkillType": 1,
  8566. "level": 1,
  8567. "effectValue": [
  8568. 3.0,
  8569. 100.0
  8570. ],
  8571. "intensifierIndex": [
  8572. 1
  8573. ],
  8574. "PromoteLan": null
  8575. },
  8576. {
  8577. "ID": 90141,
  8578. "PieceID": null,
  8579. "power": 150.0,
  8580. "name": 711,
  8581. "dec": 721,
  8582. "attribute": 2,
  8583. "icon": "icon_s9014",
  8584. "scriptName": "S9014",
  8585. "IDGroup": 9014,
  8586. "timelineName": "Boss_fenghuang_TD",
  8587. "cd": 1.0,
  8588. "addcd": 1.0,
  8589. "SkillType": 1,
  8590. "level": 2,
  8591. "effectValue": [
  8592. 3.0,
  8593. 120.0
  8594. ],
  8595. "intensifierIndex": [
  8596. 1
  8597. ],
  8598. "PromoteLan": null
  8599. },
  8600. {
  8601. "ID": 90142,
  8602. "PieceID": null,
  8603. "power": 225.0,
  8604. "name": 711,
  8605. "dec": 721,
  8606. "attribute": 2,
  8607. "icon": "icon_s9014",
  8608. "scriptName": "S9014",
  8609. "IDGroup": 9014,
  8610. "timelineName": "Boss_fenghuang_TD",
  8611. "cd": 1.0,
  8612. "addcd": 1.0,
  8613. "SkillType": 1,
  8614. "level": 3,
  8615. "effectValue": [
  8616. 3.0,
  8617. 140.0
  8618. ],
  8619. "intensifierIndex": [
  8620. 1
  8621. ],
  8622. "PromoteLan": null
  8623. },
  8624. {
  8625. "ID": 90143,
  8626. "PieceID": null,
  8627. "power": 337.5,
  8628. "name": 711,
  8629. "dec": 721,
  8630. "attribute": 2,
  8631. "icon": "icon_s9014",
  8632. "scriptName": "S9014",
  8633. "IDGroup": 9014,
  8634. "timelineName": "Boss_fenghuang_TD",
  8635. "cd": 1.0,
  8636. "addcd": 1.0,
  8637. "SkillType": 1,
  8638. "level": 4,
  8639. "effectValue": [
  8640. 3.0,
  8641. 160.0
  8642. ],
  8643. "intensifierIndex": [
  8644. 1
  8645. ],
  8646. "PromoteLan": null
  8647. },
  8648. {
  8649. "ID": 90144,
  8650. "PieceID": null,
  8651. "power": 506.25,
  8652. "name": 711,
  8653. "dec": 721,
  8654. "attribute": 2,
  8655. "icon": "icon_s9014",
  8656. "scriptName": "S9014",
  8657. "IDGroup": 9014,
  8658. "timelineName": "Boss_fenghuang_TD",
  8659. "cd": 1.0,
  8660. "addcd": 1.0,
  8661. "SkillType": 1,
  8662. "level": 5,
  8663. "effectValue": [
  8664. 3.0,
  8665. 180.0
  8666. ],
  8667. "intensifierIndex": [
  8668. 1
  8669. ],
  8670. "PromoteLan": null
  8671. },
  8672. {
  8673. "ID": 90145,
  8674. "PieceID": null,
  8675. "power": 759.375,
  8676. "name": 711,
  8677. "dec": 721,
  8678. "attribute": 2,
  8679. "icon": "icon_s9014",
  8680. "scriptName": "S9014",
  8681. "IDGroup": 9014,
  8682. "timelineName": "Boss_fenghuang_TD",
  8683. "cd": 1.0,
  8684. "addcd": 1.0,
  8685. "SkillType": 1,
  8686. "level": 6,
  8687. "effectValue": [
  8688. 3.0,
  8689. 200.0
  8690. ],
  8691. "intensifierIndex": [
  8692. 1
  8693. ],
  8694. "PromoteLan": null
  8695. },
  8696. {
  8697. "ID": 90150,
  8698. "PieceID": null,
  8699. "power": 100.0,
  8700. "name": 711,
  8701. "dec": 721,
  8702. "attribute": 2,
  8703. "icon": "icon_s9015",
  8704. "scriptName": "S9015",
  8705. "IDGroup": 9015,
  8706. "timelineName": "Boss_fenghuang_TD",
  8707. "cd": 1.0,
  8708. "addcd": 1.0,
  8709. "SkillType": 1,
  8710. "level": 1,
  8711. "effectValue": [
  8712. 3.0,
  8713. 70.0
  8714. ],
  8715. "intensifierIndex": [
  8716. 1
  8717. ],
  8718. "PromoteLan": null
  8719. },
  8720. {
  8721. "ID": 90151,
  8722. "PieceID": null,
  8723. "power": 150.0,
  8724. "name": 711,
  8725. "dec": 721,
  8726. "attribute": 2,
  8727. "icon": "icon_s9015",
  8728. "scriptName": "S9015",
  8729. "IDGroup": 9015,
  8730. "timelineName": "Boss_fenghuang_TD",
  8731. "cd": 1.0,
  8732. "addcd": 1.0,
  8733. "SkillType": 1,
  8734. "level": 2,
  8735. "effectValue": [
  8736. 3.0,
  8737. 90.0
  8738. ],
  8739. "intensifierIndex": [
  8740. 1
  8741. ],
  8742. "PromoteLan": null
  8743. },
  8744. {
  8745. "ID": 90152,
  8746. "PieceID": null,
  8747. "power": 225.0,
  8748. "name": 711,
  8749. "dec": 721,
  8750. "attribute": 2,
  8751. "icon": "icon_s9015",
  8752. "scriptName": "S9015",
  8753. "IDGroup": 9015,
  8754. "timelineName": "Boss_fenghuang_TD",
  8755. "cd": 1.0,
  8756. "addcd": 1.0,
  8757. "SkillType": 1,
  8758. "level": 3,
  8759. "effectValue": [
  8760. 3.0,
  8761. 110.0
  8762. ],
  8763. "intensifierIndex": [
  8764. 1
  8765. ],
  8766. "PromoteLan": null
  8767. },
  8768. {
  8769. "ID": 90153,
  8770. "PieceID": null,
  8771. "power": 337.5,
  8772. "name": 711,
  8773. "dec": 721,
  8774. "attribute": 2,
  8775. "icon": "icon_s9015",
  8776. "scriptName": "S9015",
  8777. "IDGroup": 9015,
  8778. "timelineName": "Boss_fenghuang_TD",
  8779. "cd": 1.0,
  8780. "addcd": 1.0,
  8781. "SkillType": 1,
  8782. "level": 4,
  8783. "effectValue": [
  8784. 3.0,
  8785. 130.0
  8786. ],
  8787. "intensifierIndex": [
  8788. 1
  8789. ],
  8790. "PromoteLan": null
  8791. },
  8792. {
  8793. "ID": 90154,
  8794. "PieceID": null,
  8795. "power": 506.25,
  8796. "name": 711,
  8797. "dec": 721,
  8798. "attribute": 2,
  8799. "icon": "icon_s9015",
  8800. "scriptName": "S9015",
  8801. "IDGroup": 9015,
  8802. "timelineName": "Boss_fenghuang_TD",
  8803. "cd": 1.0,
  8804. "addcd": 1.0,
  8805. "SkillType": 1,
  8806. "level": 5,
  8807. "effectValue": [
  8808. 3.0,
  8809. 150.0
  8810. ],
  8811. "intensifierIndex": [
  8812. 1
  8813. ],
  8814. "PromoteLan": null
  8815. },
  8816. {
  8817. "ID": 90155,
  8818. "PieceID": null,
  8819. "power": 759.375,
  8820. "name": 711,
  8821. "dec": 721,
  8822. "attribute": 2,
  8823. "icon": "icon_s9015",
  8824. "scriptName": "S9015",
  8825. "IDGroup": 9015,
  8826. "timelineName": "Boss_fenghuang_TD",
  8827. "cd": 1.0,
  8828. "addcd": 1.0,
  8829. "SkillType": 1,
  8830. "level": 6,
  8831. "effectValue": [
  8832. 3.0,
  8833. 170.0
  8834. ],
  8835. "intensifierIndex": [
  8836. 1
  8837. ],
  8838. "PromoteLan": null
  8839. },
  8840. {
  8841. "ID": 90210,
  8842. "PieceID": null,
  8843. "power": 100.0,
  8844. "name": 711,
  8845. "dec": 721,
  8846. "attribute": 2,
  8847. "icon": "icon_s9021",
  8848. "scriptName": "S9021",
  8849. "IDGroup": 9021,
  8850. "timelineName": "Boss_BeiHaiGui_TD",
  8851. "cd": 2.0,
  8852. "addcd": 0.0,
  8853. "SkillType": 1,
  8854. "level": 1,
  8855. "effectValue": [
  8856. 3.0,
  8857. 200.0,
  8858. 10.0
  8859. ],
  8860. "intensifierIndex": [
  8861. 1
  8862. ],
  8863. "PromoteLan": null
  8864. },
  8865. {
  8866. "ID": 90211,
  8867. "PieceID": null,
  8868. "power": 150.0,
  8869. "name": 711,
  8870. "dec": 721,
  8871. "attribute": 2,
  8872. "icon": "icon_s9021",
  8873. "scriptName": "S9021",
  8874. "IDGroup": 9021,
  8875. "timelineName": "Boss_BeiHaiGui_TD",
  8876. "cd": 2.0,
  8877. "addcd": 0.0,
  8878. "SkillType": 1,
  8879. "level": 2,
  8880. "effectValue": [
  8881. 3.0,
  8882. 220.0,
  8883. 12.0
  8884. ],
  8885. "intensifierIndex": [
  8886. 1
  8887. ],
  8888. "PromoteLan": null
  8889. },
  8890. {
  8891. "ID": 90212,
  8892. "PieceID": null,
  8893. "power": 225.0,
  8894. "name": 711,
  8895. "dec": 721,
  8896. "attribute": 2,
  8897. "icon": "icon_s9021",
  8898. "scriptName": "S9021",
  8899. "IDGroup": 9021,
  8900. "timelineName": "Boss_BeiHaiGui_TD",
  8901. "cd": 2.0,
  8902. "addcd": 0.0,
  8903. "SkillType": 1,
  8904. "level": 3,
  8905. "effectValue": [
  8906. 3.0,
  8907. 240.0,
  8908. 14.0
  8909. ],
  8910. "intensifierIndex": [
  8911. 1
  8912. ],
  8913. "PromoteLan": null
  8914. },
  8915. {
  8916. "ID": 90213,
  8917. "PieceID": null,
  8918. "power": 337.5,
  8919. "name": 711,
  8920. "dec": 721,
  8921. "attribute": 2,
  8922. "icon": "icon_s9021",
  8923. "scriptName": "S9021",
  8924. "IDGroup": 9021,
  8925. "timelineName": "Boss_BeiHaiGui_TD",
  8926. "cd": 2.0,
  8927. "addcd": 0.0,
  8928. "SkillType": 1,
  8929. "level": 4,
  8930. "effectValue": [
  8931. 3.0,
  8932. 260.0,
  8933. 16.0
  8934. ],
  8935. "intensifierIndex": [
  8936. 1
  8937. ],
  8938. "PromoteLan": null
  8939. },
  8940. {
  8941. "ID": 90214,
  8942. "PieceID": null,
  8943. "power": 506.25,
  8944. "name": 711,
  8945. "dec": 721,
  8946. "attribute": 2,
  8947. "icon": "icon_s9021",
  8948. "scriptName": "S9021",
  8949. "IDGroup": 9021,
  8950. "timelineName": "Boss_BeiHaiGui_TD",
  8951. "cd": 2.0,
  8952. "addcd": 0.0,
  8953. "SkillType": 1,
  8954. "level": 5,
  8955. "effectValue": [
  8956. 3.0,
  8957. 280.0,
  8958. 18.0
  8959. ],
  8960. "intensifierIndex": [
  8961. 1
  8962. ],
  8963. "PromoteLan": null
  8964. },
  8965. {
  8966. "ID": 90215,
  8967. "PieceID": null,
  8968. "power": 759.375,
  8969. "name": 711,
  8970. "dec": 721,
  8971. "attribute": 2,
  8972. "icon": "icon_s9021",
  8973. "scriptName": "S9021",
  8974. "IDGroup": 9021,
  8975. "timelineName": "Boss_BeiHaiGui_TD",
  8976. "cd": 2.0,
  8977. "addcd": 0.0,
  8978. "SkillType": 1,
  8979. "level": 6,
  8980. "effectValue": [
  8981. 3.0,
  8982. 300.0,
  8983. 20.0
  8984. ],
  8985. "intensifierIndex": [
  8986. 1
  8987. ],
  8988. "PromoteLan": null
  8989. },
  8990. {
  8991. "ID": 90220,
  8992. "PieceID": null,
  8993. "power": 100.0,
  8994. "name": 711,
  8995. "dec": 721,
  8996. "attribute": 2,
  8997. "icon": "icon_s9022",
  8998. "scriptName": "S9022",
  8999. "IDGroup": 9022,
  9000. "timelineName": "Boss_BeiHaiGui_TD",
  9001. "cd": 2.0,
  9002. "addcd": 0.0,
  9003. "SkillType": 1,
  9004. "level": 1,
  9005. "effectValue": [
  9006. 20.0,
  9007. 50.0,
  9008. 10.0
  9009. ],
  9010. "intensifierIndex": [
  9011. 1
  9012. ],
  9013. "PromoteLan": null
  9014. },
  9015. {
  9016. "ID": 90221,
  9017. "PieceID": null,
  9018. "power": 150.0,
  9019. "name": 711,
  9020. "dec": 721,
  9021. "attribute": 2,
  9022. "icon": "icon_s9022",
  9023. "scriptName": "S9022",
  9024. "IDGroup": 9022,
  9025. "timelineName": "Boss_BeiHaiGui_TD",
  9026. "cd": 2.0,
  9027. "addcd": 0.0,
  9028. "SkillType": 1,
  9029. "level": 2,
  9030. "effectValue": [
  9031. 20.0,
  9032. 60.0,
  9033. 10.0
  9034. ],
  9035. "intensifierIndex": [
  9036. 1
  9037. ],
  9038. "PromoteLan": null
  9039. },
  9040. {
  9041. "ID": 90222,
  9042. "PieceID": null,
  9043. "power": 225.0,
  9044. "name": 711,
  9045. "dec": 721,
  9046. "attribute": 2,
  9047. "icon": "icon_s9022",
  9048. "scriptName": "S9022",
  9049. "IDGroup": 9022,
  9050. "timelineName": "Boss_BeiHaiGui_TD",
  9051. "cd": 2.0,
  9052. "addcd": 0.0,
  9053. "SkillType": 1,
  9054. "level": 3,
  9055. "effectValue": [
  9056. 20.0,
  9057. 70.0,
  9058. 10.0
  9059. ],
  9060. "intensifierIndex": [
  9061. 1
  9062. ],
  9063. "PromoteLan": null
  9064. },
  9065. {
  9066. "ID": 90223,
  9067. "PieceID": null,
  9068. "power": 337.5,
  9069. "name": 711,
  9070. "dec": 721,
  9071. "attribute": 2,
  9072. "icon": "icon_s9022",
  9073. "scriptName": "S9022",
  9074. "IDGroup": 9022,
  9075. "timelineName": "Boss_BeiHaiGui_TD",
  9076. "cd": 2.0,
  9077. "addcd": 0.0,
  9078. "SkillType": 1,
  9079. "level": 4,
  9080. "effectValue": [
  9081. 20.0,
  9082. 80.0,
  9083. 10.0
  9084. ],
  9085. "intensifierIndex": [
  9086. 1
  9087. ],
  9088. "PromoteLan": null
  9089. },
  9090. {
  9091. "ID": 90224,
  9092. "PieceID": null,
  9093. "power": 506.25,
  9094. "name": 711,
  9095. "dec": 721,
  9096. "attribute": 2,
  9097. "icon": "icon_s9022",
  9098. "scriptName": "S9022",
  9099. "IDGroup": 9022,
  9100. "timelineName": "Boss_BeiHaiGui_TD",
  9101. "cd": 2.0,
  9102. "addcd": 0.0,
  9103. "SkillType": 1,
  9104. "level": 5,
  9105. "effectValue": [
  9106. 20.0,
  9107. 90.0,
  9108. 10.0
  9109. ],
  9110. "intensifierIndex": [
  9111. 1
  9112. ],
  9113. "PromoteLan": null
  9114. },
  9115. {
  9116. "ID": 90225,
  9117. "PieceID": null,
  9118. "power": 759.375,
  9119. "name": 711,
  9120. "dec": 721,
  9121. "attribute": 2,
  9122. "icon": "icon_s9022",
  9123. "scriptName": "S9022",
  9124. "IDGroup": 9022,
  9125. "timelineName": "Boss_BeiHaiGui_TD",
  9126. "cd": 2.0,
  9127. "addcd": 0.0,
  9128. "SkillType": 1,
  9129. "level": 6,
  9130. "effectValue": [
  9131. 20.0,
  9132. 100.0,
  9133. 10.0
  9134. ],
  9135. "intensifierIndex": [
  9136. 1
  9137. ],
  9138. "PromoteLan": null
  9139. },
  9140. {
  9141. "ID": 90230,
  9142. "PieceID": null,
  9143. "power": 100.0,
  9144. "name": 711,
  9145. "dec": 721,
  9146. "attribute": 2,
  9147. "icon": "icon_s9023",
  9148. "scriptName": "S9023",
  9149. "IDGroup": 9023,
  9150. "timelineName": "Boss_BeiHaiGui_TD",
  9151. "cd": 1.0,
  9152. "addcd": 0.0,
  9153. "SkillType": 1,
  9154. "level": 1,
  9155. "effectValue": [
  9156. 3.0,
  9157. 200.0
  9158. ],
  9159. "intensifierIndex": [
  9160. 1
  9161. ],
  9162. "PromoteLan": null
  9163. },
  9164. {
  9165. "ID": 90231,
  9166. "PieceID": null,
  9167. "power": 150.0,
  9168. "name": 711,
  9169. "dec": 721,
  9170. "attribute": 2,
  9171. "icon": "icon_s9023",
  9172. "scriptName": "S9023",
  9173. "IDGroup": 9023,
  9174. "timelineName": "Boss_BeiHaiGui_TD",
  9175. "cd": 1.0,
  9176. "addcd": 0.0,
  9177. "SkillType": 1,
  9178. "level": 2,
  9179. "effectValue": [
  9180. 3.0,
  9181. 220.0
  9182. ],
  9183. "intensifierIndex": [
  9184. 1
  9185. ],
  9186. "PromoteLan": null
  9187. },
  9188. {
  9189. "ID": 90232,
  9190. "PieceID": null,
  9191. "power": 225.0,
  9192. "name": 711,
  9193. "dec": 721,
  9194. "attribute": 2,
  9195. "icon": "icon_s9023",
  9196. "scriptName": "S9023",
  9197. "IDGroup": 9023,
  9198. "timelineName": "Boss_BeiHaiGui_TD",
  9199. "cd": 1.0,
  9200. "addcd": 0.0,
  9201. "SkillType": 1,
  9202. "level": 3,
  9203. "effectValue": [
  9204. 3.0,
  9205. 240.0
  9206. ],
  9207. "intensifierIndex": [
  9208. 1
  9209. ],
  9210. "PromoteLan": null
  9211. },
  9212. {
  9213. "ID": 90233,
  9214. "PieceID": null,
  9215. "power": 337.5,
  9216. "name": 711,
  9217. "dec": 721,
  9218. "attribute": 2,
  9219. "icon": "icon_s9023",
  9220. "scriptName": "S9023",
  9221. "IDGroup": 9023,
  9222. "timelineName": "Boss_BeiHaiGui_TD",
  9223. "cd": 1.0,
  9224. "addcd": 0.0,
  9225. "SkillType": 1,
  9226. "level": 4,
  9227. "effectValue": [
  9228. 3.0,
  9229. 260.0
  9230. ],
  9231. "intensifierIndex": [
  9232. 1
  9233. ],
  9234. "PromoteLan": null
  9235. },
  9236. {
  9237. "ID": 90234,
  9238. "PieceID": null,
  9239. "power": 506.25,
  9240. "name": 711,
  9241. "dec": 721,
  9242. "attribute": 2,
  9243. "icon": "icon_s9023",
  9244. "scriptName": "S9023",
  9245. "IDGroup": 9023,
  9246. "timelineName": "Boss_BeiHaiGui_TD",
  9247. "cd": 1.0,
  9248. "addcd": 0.0,
  9249. "SkillType": 1,
  9250. "level": 5,
  9251. "effectValue": [
  9252. 3.0,
  9253. 280.0
  9254. ],
  9255. "intensifierIndex": [
  9256. 1
  9257. ],
  9258. "PromoteLan": null
  9259. },
  9260. {
  9261. "ID": 90235,
  9262. "PieceID": null,
  9263. "power": 759.375,
  9264. "name": 711,
  9265. "dec": 721,
  9266. "attribute": 2,
  9267. "icon": "icon_s9023",
  9268. "scriptName": "S9023",
  9269. "IDGroup": 9023,
  9270. "timelineName": "Boss_BeiHaiGui_TD",
  9271. "cd": 1.0,
  9272. "addcd": 0.0,
  9273. "SkillType": 1,
  9274. "level": 6,
  9275. "effectValue": [
  9276. 3.0,
  9277. 300.0
  9278. ],
  9279. "intensifierIndex": [
  9280. 1
  9281. ],
  9282. "PromoteLan": null
  9283. },
  9284. {
  9285. "ID": 90240,
  9286. "PieceID": null,
  9287. "power": 100.0,
  9288. "name": 711,
  9289. "dec": 721,
  9290. "attribute": 2,
  9291. "icon": "icon_s9024",
  9292. "scriptName": "S9024",
  9293. "IDGroup": 9024,
  9294. "timelineName": "Boss_BeiHaiGui_TD",
  9295. "cd": 1.0,
  9296. "addcd": 0.0,
  9297. "SkillType": 2,
  9298. "level": 1,
  9299. "effectValue": [
  9300. 50.0,
  9301. 10.0,
  9302. 3.0
  9303. ],
  9304. "intensifierIndex": [
  9305. 1
  9306. ],
  9307. "PromoteLan": null
  9308. },
  9309. {
  9310. "ID": 90241,
  9311. "PieceID": null,
  9312. "power": 150.0,
  9313. "name": 711,
  9314. "dec": 721,
  9315. "attribute": 2,
  9316. "icon": "icon_s9024",
  9317. "scriptName": "S9024",
  9318. "IDGroup": 9024,
  9319. "timelineName": "Boss_BeiHaiGui_TD",
  9320. "cd": 1.0,
  9321. "addcd": 0.0,
  9322. "SkillType": 2,
  9323. "level": 2,
  9324. "effectValue": [
  9325. 50.0,
  9326. 10.0,
  9327. 3.0
  9328. ],
  9329. "intensifierIndex": [
  9330. 1
  9331. ],
  9332. "PromoteLan": null
  9333. },
  9334. {
  9335. "ID": 90242,
  9336. "PieceID": null,
  9337. "power": 225.0,
  9338. "name": 711,
  9339. "dec": 721,
  9340. "attribute": 2,
  9341. "icon": "icon_s9024",
  9342. "scriptName": "S9024",
  9343. "IDGroup": 9024,
  9344. "timelineName": "Boss_BeiHaiGui_TD",
  9345. "cd": 1.0,
  9346. "addcd": 0.0,
  9347. "SkillType": 2,
  9348. "level": 3,
  9349. "effectValue": [
  9350. 50.0,
  9351. 10.0,
  9352. 3.0
  9353. ],
  9354. "intensifierIndex": [
  9355. 1
  9356. ],
  9357. "PromoteLan": null
  9358. },
  9359. {
  9360. "ID": 90243,
  9361. "PieceID": null,
  9362. "power": 337.5,
  9363. "name": 711,
  9364. "dec": 721,
  9365. "attribute": 2,
  9366. "icon": "icon_s9024",
  9367. "scriptName": "S9024",
  9368. "IDGroup": 9024,
  9369. "timelineName": "Boss_BeiHaiGui_TD",
  9370. "cd": 1.0,
  9371. "addcd": 0.0,
  9372. "SkillType": 2,
  9373. "level": 4,
  9374. "effectValue": [
  9375. 50.0,
  9376. 10.0,
  9377. 3.0
  9378. ],
  9379. "intensifierIndex": [
  9380. 1
  9381. ],
  9382. "PromoteLan": null
  9383. },
  9384. {
  9385. "ID": 90244,
  9386. "PieceID": null,
  9387. "power": 506.25,
  9388. "name": 711,
  9389. "dec": 721,
  9390. "attribute": 2,
  9391. "icon": "icon_s9024",
  9392. "scriptName": "S9024",
  9393. "IDGroup": 9024,
  9394. "timelineName": "Boss_BeiHaiGui_TD",
  9395. "cd": 1.0,
  9396. "addcd": 0.0,
  9397. "SkillType": 2,
  9398. "level": 5,
  9399. "effectValue": [
  9400. 50.0,
  9401. 10.0,
  9402. 3.0
  9403. ],
  9404. "intensifierIndex": [
  9405. 1
  9406. ],
  9407. "PromoteLan": null
  9408. },
  9409. {
  9410. "ID": 90245,
  9411. "PieceID": null,
  9412. "power": 759.375,
  9413. "name": 711,
  9414. "dec": 721,
  9415. "attribute": 2,
  9416. "icon": "icon_s9024",
  9417. "scriptName": "S9024",
  9418. "IDGroup": 9024,
  9419. "timelineName": "Boss_BeiHaiGui_TD",
  9420. "cd": 1.0,
  9421. "addcd": 0.0,
  9422. "SkillType": 2,
  9423. "level": 6,
  9424. "effectValue": [
  9425. 50.0,
  9426. 10.0,
  9427. 3.0
  9428. ],
  9429. "intensifierIndex": [
  9430. 1
  9431. ],
  9432. "PromoteLan": null
  9433. },
  9434. {
  9435. "ID": 90610,
  9436. "PieceID": null,
  9437. "power": 100.0,
  9438. "name": 711,
  9439. "dec": 721,
  9440. "attribute": 2,
  9441. "icon": "icon_s9061",
  9442. "scriptName": "S9061",
  9443. "IDGroup": 9061,
  9444. "timelineName": "Boss_Tree_TD",
  9445. "cd": 1.0,
  9446. "addcd": 0.0,
  9447. "SkillType": 2,
  9448. "level": 1,
  9449. "effectValue": [
  9450. 100.0,
  9451. 2.0
  9452. ],
  9453. "intensifierIndex": [
  9454. 1
  9455. ],
  9456. "PromoteLan": null
  9457. },
  9458. {
  9459. "ID": 90611,
  9460. "PieceID": null,
  9461. "power": 150.0,
  9462. "name": 711,
  9463. "dec": 721,
  9464. "attribute": 2,
  9465. "icon": "icon_s9061",
  9466. "scriptName": "S9061",
  9467. "IDGroup": 9061,
  9468. "timelineName": "Boss_Tree_TD",
  9469. "cd": 1.0,
  9470. "addcd": 0.0,
  9471. "SkillType": 2,
  9472. "level": 2,
  9473. "effectValue": [
  9474. 110.0,
  9475. 2.0
  9476. ],
  9477. "intensifierIndex": [
  9478. 1
  9479. ],
  9480. "PromoteLan": null
  9481. },
  9482. {
  9483. "ID": 90612,
  9484. "PieceID": null,
  9485. "power": 225.0,
  9486. "name": 711,
  9487. "dec": 721,
  9488. "attribute": 2,
  9489. "icon": "icon_s9061",
  9490. "scriptName": "S9061",
  9491. "IDGroup": 9061,
  9492. "timelineName": "Boss_Tree_TD",
  9493. "cd": 1.0,
  9494. "addcd": 0.0,
  9495. "SkillType": 2,
  9496. "level": 3,
  9497. "effectValue": [
  9498. 120.0,
  9499. 2.0
  9500. ],
  9501. "intensifierIndex": [
  9502. 1
  9503. ],
  9504. "PromoteLan": null
  9505. },
  9506. {
  9507. "ID": 90613,
  9508. "PieceID": null,
  9509. "power": 337.5,
  9510. "name": 711,
  9511. "dec": 721,
  9512. "attribute": 2,
  9513. "icon": "icon_s9061",
  9514. "scriptName": "S9061",
  9515. "IDGroup": 9061,
  9516. "timelineName": "Boss_Tree_TD",
  9517. "cd": 1.0,
  9518. "addcd": 0.0,
  9519. "SkillType": 2,
  9520. "level": 4,
  9521. "effectValue": [
  9522. 130.0,
  9523. 2.0
  9524. ],
  9525. "intensifierIndex": [
  9526. 1
  9527. ],
  9528. "PromoteLan": null
  9529. },
  9530. {
  9531. "ID": 90614,
  9532. "PieceID": null,
  9533. "power": 506.25,
  9534. "name": 711,
  9535. "dec": 721,
  9536. "attribute": 2,
  9537. "icon": "icon_s9061",
  9538. "scriptName": "S9061",
  9539. "IDGroup": 9061,
  9540. "timelineName": "Boss_Tree_TD",
  9541. "cd": 1.0,
  9542. "addcd": 0.0,
  9543. "SkillType": 2,
  9544. "level": 5,
  9545. "effectValue": [
  9546. 140.0,
  9547. 2.0
  9548. ],
  9549. "intensifierIndex": [
  9550. 1
  9551. ],
  9552. "PromoteLan": null
  9553. },
  9554. {
  9555. "ID": 90615,
  9556. "PieceID": null,
  9557. "power": 759.375,
  9558. "name": 711,
  9559. "dec": 721,
  9560. "attribute": 2,
  9561. "icon": "icon_s9061",
  9562. "scriptName": "S9061",
  9563. "IDGroup": 9061,
  9564. "timelineName": "Boss_Tree_TD",
  9565. "cd": 1.0,
  9566. "addcd": 0.0,
  9567. "SkillType": 2,
  9568. "level": 6,
  9569. "effectValue": [
  9570. 150.0,
  9571. 2.0
  9572. ],
  9573. "intensifierIndex": [
  9574. 1
  9575. ],
  9576. "PromoteLan": null
  9577. },
  9578. {
  9579. "ID": 90620,
  9580. "PieceID": null,
  9581. "power": 100.0,
  9582. "name": 711,
  9583. "dec": 721,
  9584. "attribute": 2,
  9585. "icon": "icon_s9062",
  9586. "scriptName": "S9062",
  9587. "IDGroup": 9062,
  9588. "timelineName": "Boss_Tree_TD",
  9589. "cd": 1.0,
  9590. "addcd": 0.0,
  9591. "SkillType": 2,
  9592. "level": 1,
  9593. "effectValue": [
  9594. 80.0,
  9595. 10.0,
  9596. 20.0
  9597. ],
  9598. "intensifierIndex": [
  9599. 1
  9600. ],
  9601. "PromoteLan": null
  9602. },
  9603. {
  9604. "ID": 90621,
  9605. "PieceID": null,
  9606. "power": 150.0,
  9607. "name": 711,
  9608. "dec": 721,
  9609. "attribute": 2,
  9610. "icon": "icon_s9062",
  9611. "scriptName": "S9062",
  9612. "IDGroup": 9062,
  9613. "timelineName": "Boss_Tree_TD",
  9614. "cd": 1.0,
  9615. "addcd": 0.0,
  9616. "SkillType": 2,
  9617. "level": 2,
  9618. "effectValue": [
  9619. 80.0,
  9620. 10.0,
  9621. 20.0
  9622. ],
  9623. "intensifierIndex": [
  9624. 1
  9625. ],
  9626. "PromoteLan": null
  9627. },
  9628. {
  9629. "ID": 90622,
  9630. "PieceID": null,
  9631. "power": 225.0,
  9632. "name": 711,
  9633. "dec": 721,
  9634. "attribute": 2,
  9635. "icon": "icon_s9062",
  9636. "scriptName": "S9062",
  9637. "IDGroup": 9062,
  9638. "timelineName": "Boss_Tree_TD",
  9639. "cd": 1.0,
  9640. "addcd": 0.0,
  9641. "SkillType": 2,
  9642. "level": 3,
  9643. "effectValue": [
  9644. 80.0,
  9645. 10.0,
  9646. 20.0
  9647. ],
  9648. "intensifierIndex": [
  9649. 1
  9650. ],
  9651. "PromoteLan": null
  9652. },
  9653. {
  9654. "ID": 90623,
  9655. "PieceID": null,
  9656. "power": 337.5,
  9657. "name": 711,
  9658. "dec": 721,
  9659. "attribute": 2,
  9660. "icon": "icon_s9062",
  9661. "scriptName": "S9062",
  9662. "IDGroup": 9062,
  9663. "timelineName": "Boss_Tree_TD",
  9664. "cd": 1.0,
  9665. "addcd": 0.0,
  9666. "SkillType": 2,
  9667. "level": 4,
  9668. "effectValue": [
  9669. 80.0,
  9670. 10.0,
  9671. 20.0
  9672. ],
  9673. "intensifierIndex": [
  9674. 1
  9675. ],
  9676. "PromoteLan": null
  9677. },
  9678. {
  9679. "ID": 90624,
  9680. "PieceID": null,
  9681. "power": 506.25,
  9682. "name": 711,
  9683. "dec": 721,
  9684. "attribute": 2,
  9685. "icon": "icon_s9062",
  9686. "scriptName": "S9062",
  9687. "IDGroup": 9062,
  9688. "timelineName": "Boss_Tree_TD",
  9689. "cd": 1.0,
  9690. "addcd": 0.0,
  9691. "SkillType": 2,
  9692. "level": 5,
  9693. "effectValue": [
  9694. 80.0,
  9695. 10.0,
  9696. 20.0
  9697. ],
  9698. "intensifierIndex": [
  9699. 1
  9700. ],
  9701. "PromoteLan": null
  9702. },
  9703. {
  9704. "ID": 90625,
  9705. "PieceID": null,
  9706. "power": 759.375,
  9707. "name": 711,
  9708. "dec": 721,
  9709. "attribute": 2,
  9710. "icon": "icon_s9062",
  9711. "scriptName": "S9062",
  9712. "IDGroup": 9062,
  9713. "timelineName": "Boss_Tree_TD",
  9714. "cd": 1.0,
  9715. "addcd": 0.0,
  9716. "SkillType": 2,
  9717. "level": 6,
  9718. "effectValue": [
  9719. 80.0,
  9720. 10.0,
  9721. 20.0
  9722. ],
  9723. "intensifierIndex": [
  9724. 1
  9725. ],
  9726. "PromoteLan": null
  9727. },
  9728. {
  9729. "ID": 90630,
  9730. "PieceID": null,
  9731. "power": 100.0,
  9732. "name": 711,
  9733. "dec": 721,
  9734. "attribute": 2,
  9735. "icon": "icon_s9063",
  9736. "scriptName": "S9063",
  9737. "IDGroup": 9063,
  9738. "timelineName": "Boss_Tree_TD",
  9739. "cd": 1.0,
  9740. "addcd": 0.0,
  9741. "SkillType": 1,
  9742. "level": 1,
  9743. "effectValue": [
  9744. 1.0,
  9745. 200.0
  9746. ],
  9747. "intensifierIndex": [
  9748. 1
  9749. ],
  9750. "PromoteLan": null
  9751. },
  9752. {
  9753. "ID": 90631,
  9754. "PieceID": null,
  9755. "power": 150.0,
  9756. "name": 711,
  9757. "dec": 721,
  9758. "attribute": 2,
  9759. "icon": "icon_s9063",
  9760. "scriptName": "S9063",
  9761. "IDGroup": 9063,
  9762. "timelineName": "Boss_Tree_TD",
  9763. "cd": 1.0,
  9764. "addcd": 0.0,
  9765. "SkillType": 1,
  9766. "level": 2,
  9767. "effectValue": [
  9768. 1.0,
  9769. 230.0
  9770. ],
  9771. "intensifierIndex": [
  9772. 1
  9773. ],
  9774. "PromoteLan": null
  9775. },
  9776. {
  9777. "ID": 90632,
  9778. "PieceID": null,
  9779. "power": 225.0,
  9780. "name": 711,
  9781. "dec": 721,
  9782. "attribute": 2,
  9783. "icon": "icon_s9063",
  9784. "scriptName": "S9063",
  9785. "IDGroup": 9063,
  9786. "timelineName": "Boss_Tree_TD",
  9787. "cd": 1.0,
  9788. "addcd": 0.0,
  9789. "SkillType": 1,
  9790. "level": 3,
  9791. "effectValue": [
  9792. 1.0,
  9793. 260.0
  9794. ],
  9795. "intensifierIndex": [
  9796. 1
  9797. ],
  9798. "PromoteLan": null
  9799. },
  9800. {
  9801. "ID": 90633,
  9802. "PieceID": null,
  9803. "power": 337.5,
  9804. "name": 711,
  9805. "dec": 721,
  9806. "attribute": 2,
  9807. "icon": "icon_s9063",
  9808. "scriptName": "S9063",
  9809. "IDGroup": 9063,
  9810. "timelineName": "Boss_Tree_TD",
  9811. "cd": 1.0,
  9812. "addcd": 0.0,
  9813. "SkillType": 1,
  9814. "level": 4,
  9815. "effectValue": [
  9816. 1.0,
  9817. 290.0
  9818. ],
  9819. "intensifierIndex": [
  9820. 1
  9821. ],
  9822. "PromoteLan": null
  9823. },
  9824. {
  9825. "ID": 90634,
  9826. "PieceID": null,
  9827. "power": 506.25,
  9828. "name": 711,
  9829. "dec": 721,
  9830. "attribute": 2,
  9831. "icon": "icon_s9063",
  9832. "scriptName": "S9063",
  9833. "IDGroup": 9063,
  9834. "timelineName": "Boss_Tree_TD",
  9835. "cd": 1.0,
  9836. "addcd": 0.0,
  9837. "SkillType": 1,
  9838. "level": 5,
  9839. "effectValue": [
  9840. 1.0,
  9841. 320.0
  9842. ],
  9843. "intensifierIndex": [
  9844. 1
  9845. ],
  9846. "PromoteLan": null
  9847. },
  9848. {
  9849. "ID": 90635,
  9850. "PieceID": null,
  9851. "power": 759.375,
  9852. "name": 711,
  9853. "dec": 721,
  9854. "attribute": 2,
  9855. "icon": "icon_s9063",
  9856. "scriptName": "S9063",
  9857. "IDGroup": 9063,
  9858. "timelineName": "Boss_Tree_TD",
  9859. "cd": 1.0,
  9860. "addcd": 0.0,
  9861. "SkillType": 1,
  9862. "level": 6,
  9863. "effectValue": [
  9864. 1.0,
  9865. 350.0
  9866. ],
  9867. "intensifierIndex": [
  9868. 1
  9869. ],
  9870. "PromoteLan": null
  9871. },
  9872. {
  9873. "ID": 90640,
  9874. "PieceID": null,
  9875. "power": 100.0,
  9876. "name": 711,
  9877. "dec": 721,
  9878. "attribute": 2,
  9879. "icon": "icon_s9064",
  9880. "scriptName": "S9064",
  9881. "IDGroup": 9064,
  9882. "timelineName": "Boss_Tree_TD",
  9883. "cd": 3.0,
  9884. "addcd": 0.0,
  9885. "SkillType": 1,
  9886. "level": 1,
  9887. "effectValue": [
  9888. 4.0,
  9889. 30.0
  9890. ],
  9891. "intensifierIndex": [
  9892. 1
  9893. ],
  9894. "PromoteLan": null
  9895. },
  9896. {
  9897. "ID": 90641,
  9898. "PieceID": null,
  9899. "power": 150.0,
  9900. "name": 711,
  9901. "dec": 721,
  9902. "attribute": 2,
  9903. "icon": "icon_s9064",
  9904. "scriptName": "S9064",
  9905. "IDGroup": 9064,
  9906. "timelineName": "Boss_Tree_TD",
  9907. "cd": 3.0,
  9908. "addcd": 0.0,
  9909. "SkillType": 1,
  9910. "level": 2,
  9911. "effectValue": [
  9912. 4.0,
  9913. 30.0
  9914. ],
  9915. "intensifierIndex": [
  9916. 1
  9917. ],
  9918. "PromoteLan": null
  9919. },
  9920. {
  9921. "ID": 90642,
  9922. "PieceID": null,
  9923. "power": 225.0,
  9924. "name": 711,
  9925. "dec": 721,
  9926. "attribute": 2,
  9927. "icon": "icon_s9064",
  9928. "scriptName": "S9064",
  9929. "IDGroup": 9064,
  9930. "timelineName": "Boss_Tree_TD",
  9931. "cd": 3.0,
  9932. "addcd": 0.0,
  9933. "SkillType": 1,
  9934. "level": 3,
  9935. "effectValue": [
  9936. 4.0,
  9937. 30.0
  9938. ],
  9939. "intensifierIndex": [
  9940. 1
  9941. ],
  9942. "PromoteLan": null
  9943. },
  9944. {
  9945. "ID": 90643,
  9946. "PieceID": null,
  9947. "power": 337.5,
  9948. "name": 711,
  9949. "dec": 721,
  9950. "attribute": 2,
  9951. "icon": "icon_s9064",
  9952. "scriptName": "S9064",
  9953. "IDGroup": 9064,
  9954. "timelineName": "Boss_Tree_TD",
  9955. "cd": 3.0,
  9956. "addcd": 0.0,
  9957. "SkillType": 1,
  9958. "level": 4,
  9959. "effectValue": [
  9960. 4.0,
  9961. 30.0
  9962. ],
  9963. "intensifierIndex": [
  9964. 1
  9965. ],
  9966. "PromoteLan": null
  9967. },
  9968. {
  9969. "ID": 90644,
  9970. "PieceID": null,
  9971. "power": 506.25,
  9972. "name": 711,
  9973. "dec": 721,
  9974. "attribute": 2,
  9975. "icon": "icon_s9064",
  9976. "scriptName": "S9064",
  9977. "IDGroup": 9064,
  9978. "timelineName": "Boss_Tree_TD",
  9979. "cd": 3.0,
  9980. "addcd": 0.0,
  9981. "SkillType": 1,
  9982. "level": 5,
  9983. "effectValue": [
  9984. 4.0,
  9985. 30.0
  9986. ],
  9987. "intensifierIndex": [
  9988. 1
  9989. ],
  9990. "PromoteLan": null
  9991. },
  9992. {
  9993. "ID": 90645,
  9994. "PieceID": null,
  9995. "power": 759.375,
  9996. "name": 711,
  9997. "dec": 721,
  9998. "attribute": 2,
  9999. "icon": "icon_s9064",
  10000. "scriptName": "S9064",
  10001. "IDGroup": 9064,
  10002. "timelineName": "Boss_Tree_TD",
  10003. "cd": 3.0,
  10004. "addcd": 0.0,
  10005. "SkillType": 1,
  10006. "level": 6,
  10007. "effectValue": [
  10008. 4.0,
  10009. 30.0
  10010. ],
  10011. "intensifierIndex": [
  10012. 1
  10013. ],
  10014. "PromoteLan": null
  10015. },
  10016. {
  10017. "ID": 90710,
  10018. "PieceID": null,
  10019. "power": 100.0,
  10020. "name": 711,
  10021. "dec": 721,
  10022. "attribute": 2,
  10023. "icon": "icon_s9071",
  10024. "scriptName": "S9071",
  10025. "IDGroup": 9071,
  10026. "timelineName": "Boss_Tree_xiao_TD",
  10027. "cd": 1.0,
  10028. "addcd": 0.0,
  10029. "SkillType": 1,
  10030. "level": 1,
  10031. "effectValue": [
  10032. 3.0,
  10033. 150.0
  10034. ],
  10035. "intensifierIndex": [
  10036. 1
  10037. ],
  10038. "PromoteLan": null
  10039. },
  10040. {
  10041. "ID": 90711,
  10042. "PieceID": null,
  10043. "power": 150.0,
  10044. "name": 711,
  10045. "dec": 721,
  10046. "attribute": 2,
  10047. "icon": "icon_s9071",
  10048. "scriptName": "S9071",
  10049. "IDGroup": 9071,
  10050. "timelineName": "Boss_Tree_xiao_TD",
  10051. "cd": 1.0,
  10052. "addcd": 0.0,
  10053. "SkillType": 1,
  10054. "level": 2,
  10055. "effectValue": [
  10056. 3.0,
  10057. 170.0
  10058. ],
  10059. "intensifierIndex": [
  10060. 1
  10061. ],
  10062. "PromoteLan": null
  10063. },
  10064. {
  10065. "ID": 90712,
  10066. "PieceID": null,
  10067. "power": 225.0,
  10068. "name": 711,
  10069. "dec": 721,
  10070. "attribute": 2,
  10071. "icon": "icon_s9071",
  10072. "scriptName": "S9071",
  10073. "IDGroup": 9071,
  10074. "timelineName": "Boss_Tree_xiao_TD",
  10075. "cd": 1.0,
  10076. "addcd": 0.0,
  10077. "SkillType": 1,
  10078. "level": 3,
  10079. "effectValue": [
  10080. 3.0,
  10081. 190.0
  10082. ],
  10083. "intensifierIndex": [
  10084. 1
  10085. ],
  10086. "PromoteLan": null
  10087. },
  10088. {
  10089. "ID": 90713,
  10090. "PieceID": null,
  10091. "power": 337.5,
  10092. "name": 711,
  10093. "dec": 721,
  10094. "attribute": 2,
  10095. "icon": "icon_s9071",
  10096. "scriptName": "S9071",
  10097. "IDGroup": 9071,
  10098. "timelineName": "Boss_Tree_xiao_TD",
  10099. "cd": 1.0,
  10100. "addcd": 0.0,
  10101. "SkillType": 1,
  10102. "level": 4,
  10103. "effectValue": [
  10104. 3.0,
  10105. 210.0
  10106. ],
  10107. "intensifierIndex": [
  10108. 1
  10109. ],
  10110. "PromoteLan": null
  10111. },
  10112. {
  10113. "ID": 90714,
  10114. "PieceID": null,
  10115. "power": 506.25,
  10116. "name": 711,
  10117. "dec": 721,
  10118. "attribute": 2,
  10119. "icon": "icon_s9071",
  10120. "scriptName": "S9071",
  10121. "IDGroup": 9071,
  10122. "timelineName": "Boss_Tree_xiao_TD",
  10123. "cd": 1.0,
  10124. "addcd": 0.0,
  10125. "SkillType": 1,
  10126. "level": 5,
  10127. "effectValue": [
  10128. 3.0,
  10129. 230.0
  10130. ],
  10131. "intensifierIndex": [
  10132. 1
  10133. ],
  10134. "PromoteLan": null
  10135. },
  10136. {
  10137. "ID": 90715,
  10138. "PieceID": null,
  10139. "power": 759.375,
  10140. "name": 711,
  10141. "dec": 721,
  10142. "attribute": 2,
  10143. "icon": "icon_s9071",
  10144. "scriptName": "S9071",
  10145. "IDGroup": 9071,
  10146. "timelineName": "Boss_Tree_xiao_TD",
  10147. "cd": 1.0,
  10148. "addcd": 0.0,
  10149. "SkillType": 1,
  10150. "level": 6,
  10151. "effectValue": [
  10152. 3.0,
  10153. 250.0
  10154. ],
  10155. "intensifierIndex": [
  10156. 1
  10157. ],
  10158. "PromoteLan": null
  10159. },
  10160. {
  10161. "ID": 90510,
  10162. "PieceID": null,
  10163. "power": 100.0,
  10164. "name": 711,
  10165. "dec": 721,
  10166. "attribute": 2,
  10167. "icon": "icon_s9051",
  10168. "scriptName": "S9051",
  10169. "IDGroup": 9051,
  10170. "timelineName": "Boss_QiongQi_TD",
  10171. "cd": 1.0,
  10172. "addcd": 0.0,
  10173. "SkillType": 1,
  10174. "level": 1,
  10175. "effectValue": [
  10176. 3.0,
  10177. 150.0
  10178. ],
  10179. "intensifierIndex": [
  10180. 1
  10181. ],
  10182. "PromoteLan": null
  10183. },
  10184. {
  10185. "ID": 90511,
  10186. "PieceID": null,
  10187. "power": 150.0,
  10188. "name": 711,
  10189. "dec": 721,
  10190. "attribute": 2,
  10191. "icon": "icon_s9051",
  10192. "scriptName": "S9051",
  10193. "IDGroup": 9051,
  10194. "timelineName": "Boss_QiongQi_TD",
  10195. "cd": 1.0,
  10196. "addcd": 0.0,
  10197. "SkillType": 1,
  10198. "level": 2,
  10199. "effectValue": [
  10200. 3.0,
  10201. 170.0
  10202. ],
  10203. "intensifierIndex": [
  10204. 1
  10205. ],
  10206. "PromoteLan": null
  10207. },
  10208. {
  10209. "ID": 90512,
  10210. "PieceID": null,
  10211. "power": 225.0,
  10212. "name": 711,
  10213. "dec": 721,
  10214. "attribute": 2,
  10215. "icon": "icon_s9051",
  10216. "scriptName": "S9051",
  10217. "IDGroup": 9051,
  10218. "timelineName": "Boss_QiongQi_TD",
  10219. "cd": 1.0,
  10220. "addcd": 0.0,
  10221. "SkillType": 1,
  10222. "level": 3,
  10223. "effectValue": [
  10224. 3.0,
  10225. 190.0
  10226. ],
  10227. "intensifierIndex": [
  10228. 1
  10229. ],
  10230. "PromoteLan": null
  10231. },
  10232. {
  10233. "ID": 90513,
  10234. "PieceID": null,
  10235. "power": 337.5,
  10236. "name": 711,
  10237. "dec": 721,
  10238. "attribute": 2,
  10239. "icon": "icon_s9051",
  10240. "scriptName": "S9051",
  10241. "IDGroup": 9051,
  10242. "timelineName": "Boss_QiongQi_TD",
  10243. "cd": 1.0,
  10244. "addcd": 0.0,
  10245. "SkillType": 1,
  10246. "level": 4,
  10247. "effectValue": [
  10248. 3.0,
  10249. 210.0
  10250. ],
  10251. "intensifierIndex": [
  10252. 1
  10253. ],
  10254. "PromoteLan": null
  10255. },
  10256. {
  10257. "ID": 90514,
  10258. "PieceID": null,
  10259. "power": 506.25,
  10260. "name": 711,
  10261. "dec": 721,
  10262. "attribute": 2,
  10263. "icon": "icon_s9051",
  10264. "scriptName": "S9051",
  10265. "IDGroup": 9051,
  10266. "timelineName": "Boss_QiongQi_TD",
  10267. "cd": 1.0,
  10268. "addcd": 0.0,
  10269. "SkillType": 1,
  10270. "level": 5,
  10271. "effectValue": [
  10272. 3.0,
  10273. 230.0
  10274. ],
  10275. "intensifierIndex": [
  10276. 1
  10277. ],
  10278. "PromoteLan": null
  10279. },
  10280. {
  10281. "ID": 90515,
  10282. "PieceID": null,
  10283. "power": 759.375,
  10284. "name": 711,
  10285. "dec": 721,
  10286. "attribute": 2,
  10287. "icon": "icon_s9051",
  10288. "scriptName": "S9051",
  10289. "IDGroup": 9051,
  10290. "timelineName": "Boss_QiongQi_TD",
  10291. "cd": 1.0,
  10292. "addcd": 0.0,
  10293. "SkillType": 1,
  10294. "level": 6,
  10295. "effectValue": [
  10296. 3.0,
  10297. 250.0
  10298. ],
  10299. "intensifierIndex": [
  10300. 1
  10301. ],
  10302. "PromoteLan": null
  10303. },
  10304. {
  10305. "ID": 90520,
  10306. "PieceID": null,
  10307. "power": 100.0,
  10308. "name": 711,
  10309. "dec": 721,
  10310. "attribute": 2,
  10311. "icon": "icon_s9052",
  10312. "scriptName": "S9052",
  10313. "IDGroup": 9052,
  10314. "timelineName": "Boss_QiongQi_TD",
  10315. "cd": 1.0,
  10316. "addcd": 0.0,
  10317. "SkillType": 1,
  10318. "level": 1,
  10319. "effectValue": [
  10320. 3.0,
  10321. 150.0
  10322. ],
  10323. "intensifierIndex": [
  10324. 1
  10325. ],
  10326. "PromoteLan": null
  10327. },
  10328. {
  10329. "ID": 90521,
  10330. "PieceID": null,
  10331. "power": 150.0,
  10332. "name": 711,
  10333. "dec": 721,
  10334. "attribute": 2,
  10335. "icon": "icon_s9052",
  10336. "scriptName": "S9052",
  10337. "IDGroup": 9052,
  10338. "timelineName": "Boss_QiongQi_TD",
  10339. "cd": 1.0,
  10340. "addcd": 0.0,
  10341. "SkillType": 1,
  10342. "level": 2,
  10343. "effectValue": [
  10344. 3.0,
  10345. 170.0
  10346. ],
  10347. "intensifierIndex": [
  10348. 1
  10349. ],
  10350. "PromoteLan": null
  10351. },
  10352. {
  10353. "ID": 90522,
  10354. "PieceID": null,
  10355. "power": 225.0,
  10356. "name": 711,
  10357. "dec": 721,
  10358. "attribute": 2,
  10359. "icon": "icon_s9052",
  10360. "scriptName": "S9052",
  10361. "IDGroup": 9052,
  10362. "timelineName": "Boss_QiongQi_TD",
  10363. "cd": 1.0,
  10364. "addcd": 0.0,
  10365. "SkillType": 1,
  10366. "level": 3,
  10367. "effectValue": [
  10368. 3.0,
  10369. 190.0
  10370. ],
  10371. "intensifierIndex": [
  10372. 1
  10373. ],
  10374. "PromoteLan": null
  10375. },
  10376. {
  10377. "ID": 90523,
  10378. "PieceID": null,
  10379. "power": 337.5,
  10380. "name": 711,
  10381. "dec": 721,
  10382. "attribute": 2,
  10383. "icon": "icon_s9052",
  10384. "scriptName": "S9052",
  10385. "IDGroup": 9052,
  10386. "timelineName": "Boss_QiongQi_TD",
  10387. "cd": 1.0,
  10388. "addcd": 0.0,
  10389. "SkillType": 1,
  10390. "level": 4,
  10391. "effectValue": [
  10392. 3.0,
  10393. 210.0
  10394. ],
  10395. "intensifierIndex": [
  10396. 1
  10397. ],
  10398. "PromoteLan": null
  10399. },
  10400. {
  10401. "ID": 90524,
  10402. "PieceID": null,
  10403. "power": 506.25,
  10404. "name": 711,
  10405. "dec": 721,
  10406. "attribute": 2,
  10407. "icon": "icon_s9052",
  10408. "scriptName": "S9052",
  10409. "IDGroup": 9052,
  10410. "timelineName": "Boss_QiongQi_TD",
  10411. "cd": 1.0,
  10412. "addcd": 0.0,
  10413. "SkillType": 1,
  10414. "level": 5,
  10415. "effectValue": [
  10416. 3.0,
  10417. 230.0
  10418. ],
  10419. "intensifierIndex": [
  10420. 1
  10421. ],
  10422. "PromoteLan": null
  10423. },
  10424. {
  10425. "ID": 90525,
  10426. "PieceID": null,
  10427. "power": 759.375,
  10428. "name": 711,
  10429. "dec": 721,
  10430. "attribute": 2,
  10431. "icon": "icon_s9052",
  10432. "scriptName": "S9052",
  10433. "IDGroup": 9052,
  10434. "timelineName": "Boss_QiongQi_TD",
  10435. "cd": 1.0,
  10436. "addcd": 0.0,
  10437. "SkillType": 1,
  10438. "level": 6,
  10439. "effectValue": [
  10440. 3.0,
  10441. 250.0
  10442. ],
  10443. "intensifierIndex": [
  10444. 1
  10445. ],
  10446. "PromoteLan": null
  10447. },
  10448. {
  10449. "ID": 90530,
  10450. "PieceID": null,
  10451. "power": 100.0,
  10452. "name": 711,
  10453. "dec": 721,
  10454. "attribute": 2,
  10455. "icon": "icon_s9053",
  10456. "scriptName": "S9053",
  10457. "IDGroup": 9053,
  10458. "timelineName": "Boss_QiongQi_TD",
  10459. "cd": 1.0,
  10460. "addcd": 0.0,
  10461. "SkillType": 1,
  10462. "level": 1,
  10463. "effectValue": [
  10464. 30.0,
  10465. 3.0,
  10466. 5.0,
  10467. 20.0,
  10468. 10.0
  10469. ],
  10470. "intensifierIndex": [
  10471. 1
  10472. ],
  10473. "PromoteLan": null
  10474. },
  10475. {
  10476. "ID": 90531,
  10477. "PieceID": null,
  10478. "power": 150.0,
  10479. "name": 711,
  10480. "dec": 721,
  10481. "attribute": 2,
  10482. "icon": "icon_s9053",
  10483. "scriptName": "S9053",
  10484. "IDGroup": 9053,
  10485. "timelineName": "Boss_QiongQi_TD",
  10486. "cd": 1.0,
  10487. "addcd": 0.0,
  10488. "SkillType": 1,
  10489. "level": 2,
  10490. "effectValue": [
  10491. 30.0,
  10492. 3.0,
  10493. 5.0,
  10494. 20.0,
  10495. 10.0
  10496. ],
  10497. "intensifierIndex": [
  10498. 1
  10499. ],
  10500. "PromoteLan": null
  10501. },
  10502. {
  10503. "ID": 90532,
  10504. "PieceID": null,
  10505. "power": 225.0,
  10506. "name": 711,
  10507. "dec": 721,
  10508. "attribute": 2,
  10509. "icon": "icon_s9053",
  10510. "scriptName": "S9053",
  10511. "IDGroup": 9053,
  10512. "timelineName": "Boss_QiongQi_TD",
  10513. "cd": 1.0,
  10514. "addcd": 0.0,
  10515. "SkillType": 1,
  10516. "level": 3,
  10517. "effectValue": [
  10518. 30.0,
  10519. 3.0,
  10520. 5.0,
  10521. 20.0,
  10522. 10.0
  10523. ],
  10524. "intensifierIndex": [
  10525. 1
  10526. ],
  10527. "PromoteLan": null
  10528. },
  10529. {
  10530. "ID": 90533,
  10531. "PieceID": null,
  10532. "power": 337.5,
  10533. "name": 711,
  10534. "dec": 721,
  10535. "attribute": 2,
  10536. "icon": "icon_s9053",
  10537. "scriptName": "S9053",
  10538. "IDGroup": 9053,
  10539. "timelineName": "Boss_QiongQi_TD",
  10540. "cd": 1.0,
  10541. "addcd": 0.0,
  10542. "SkillType": 1,
  10543. "level": 4,
  10544. "effectValue": [
  10545. 30.0,
  10546. 3.0,
  10547. 5.0,
  10548. 20.0,
  10549. 10.0
  10550. ],
  10551. "intensifierIndex": [
  10552. 1
  10553. ],
  10554. "PromoteLan": null
  10555. },
  10556. {
  10557. "ID": 90534,
  10558. "PieceID": null,
  10559. "power": 506.25,
  10560. "name": 711,
  10561. "dec": 721,
  10562. "attribute": 2,
  10563. "icon": "icon_s9053",
  10564. "scriptName": "S9053",
  10565. "IDGroup": 9053,
  10566. "timelineName": "Boss_QiongQi_TD",
  10567. "cd": 1.0,
  10568. "addcd": 0.0,
  10569. "SkillType": 1,
  10570. "level": 5,
  10571. "effectValue": [
  10572. 30.0,
  10573. 3.0,
  10574. 5.0,
  10575. 20.0,
  10576. 10.0
  10577. ],
  10578. "intensifierIndex": [
  10579. 1
  10580. ],
  10581. "PromoteLan": null
  10582. },
  10583. {
  10584. "ID": 90535,
  10585. "PieceID": null,
  10586. "power": 759.375,
  10587. "name": 711,
  10588. "dec": 721,
  10589. "attribute": 2,
  10590. "icon": "icon_s9053",
  10591. "scriptName": "S9053",
  10592. "IDGroup": 9053,
  10593. "timelineName": "Boss_QiongQi_TD",
  10594. "cd": 1.0,
  10595. "addcd": 0.0,
  10596. "SkillType": 1,
  10597. "level": 6,
  10598. "effectValue": [
  10599. 30.0,
  10600. 3.0,
  10601. 5.0,
  10602. 20.0,
  10603. 10.0
  10604. ],
  10605. "intensifierIndex": [
  10606. 1
  10607. ],
  10608. "PromoteLan": null
  10609. },
  10610. {
  10611. "ID": 90540,
  10612. "PieceID": null,
  10613. "power": 100.0,
  10614. "name": 711,
  10615. "dec": 721,
  10616. "attribute": 2,
  10617. "icon": "icon_s9054",
  10618. "scriptName": "S9054",
  10619. "IDGroup": 9054,
  10620. "timelineName": "Boss_QiongQi_TD",
  10621. "cd": 1.0,
  10622. "addcd": 0.0,
  10623. "SkillType": 1,
  10624. "level": 1,
  10625. "effectValue": [
  10626. 3.0,
  10627. 150.0
  10628. ],
  10629. "intensifierIndex": [
  10630. 1
  10631. ],
  10632. "PromoteLan": null
  10633. },
  10634. {
  10635. "ID": 90541,
  10636. "PieceID": null,
  10637. "power": 150.0,
  10638. "name": 711,
  10639. "dec": 721,
  10640. "attribute": 2,
  10641. "icon": "icon_s9054",
  10642. "scriptName": "S9054",
  10643. "IDGroup": 9054,
  10644. "timelineName": "Boss_QiongQi_TD",
  10645. "cd": 1.0,
  10646. "addcd": 0.0,
  10647. "SkillType": 1,
  10648. "level": 2,
  10649. "effectValue": [
  10650. 3.0,
  10651. 170.0
  10652. ],
  10653. "intensifierIndex": [
  10654. 1
  10655. ],
  10656. "PromoteLan": null
  10657. },
  10658. {
  10659. "ID": 90542,
  10660. "PieceID": null,
  10661. "power": 225.0,
  10662. "name": 711,
  10663. "dec": 721,
  10664. "attribute": 2,
  10665. "icon": "icon_s9054",
  10666. "scriptName": "S9054",
  10667. "IDGroup": 9054,
  10668. "timelineName": "Boss_QiongQi_TD",
  10669. "cd": 1.0,
  10670. "addcd": 0.0,
  10671. "SkillType": 1,
  10672. "level": 3,
  10673. "effectValue": [
  10674. 3.0,
  10675. 190.0
  10676. ],
  10677. "intensifierIndex": [
  10678. 1
  10679. ],
  10680. "PromoteLan": null
  10681. },
  10682. {
  10683. "ID": 90543,
  10684. "PieceID": null,
  10685. "power": 337.5,
  10686. "name": 711,
  10687. "dec": 721,
  10688. "attribute": 2,
  10689. "icon": "icon_s9054",
  10690. "scriptName": "S9054",
  10691. "IDGroup": 9054,
  10692. "timelineName": "Boss_QiongQi_TD",
  10693. "cd": 1.0,
  10694. "addcd": 0.0,
  10695. "SkillType": 1,
  10696. "level": 4,
  10697. "effectValue": [
  10698. 3.0,
  10699. 210.0
  10700. ],
  10701. "intensifierIndex": [
  10702. 1
  10703. ],
  10704. "PromoteLan": null
  10705. },
  10706. {
  10707. "ID": 90544,
  10708. "PieceID": null,
  10709. "power": 506.25,
  10710. "name": 711,
  10711. "dec": 721,
  10712. "attribute": 2,
  10713. "icon": "icon_s9054",
  10714. "scriptName": "S9054",
  10715. "IDGroup": 9054,
  10716. "timelineName": "Boss_QiongQi_TD",
  10717. "cd": 1.0,
  10718. "addcd": 0.0,
  10719. "SkillType": 1,
  10720. "level": 5,
  10721. "effectValue": [
  10722. 3.0,
  10723. 230.0
  10724. ],
  10725. "intensifierIndex": [
  10726. 1
  10727. ],
  10728. "PromoteLan": null
  10729. },
  10730. {
  10731. "ID": 90545,
  10732. "PieceID": null,
  10733. "power": 759.375,
  10734. "name": 711,
  10735. "dec": 721,
  10736. "attribute": 2,
  10737. "icon": "icon_s9054",
  10738. "scriptName": "S9054",
  10739. "IDGroup": 9054,
  10740. "timelineName": "Boss_QiongQi_TD",
  10741. "cd": 1.0,
  10742. "addcd": 0.0,
  10743. "SkillType": 1,
  10744. "level": 6,
  10745. "effectValue": [
  10746. 3.0,
  10747. 250.0
  10748. ],
  10749. "intensifierIndex": [
  10750. 1
  10751. ],
  10752. "PromoteLan": null
  10753. }
  10754. ]
  10755. }