SkillConfig.json 141 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097509850995100510151025103510451055106510751085109511051115112511351145115511651175118511951205121512251235124512551265127512851295130513151325133513451355136513751385139514051415142514351445145514651475148514951505151515251535154515551565157515851595160516151625163516451655166516751685169517051715172517351745175517651775178517951805181518251835184518551865187518851895190519151925193519451955196519751985199520052015202520352045205520652075208520952105211521252135214521552165217521852195220522152225223522452255226522752285229523052315232523352345235523652375238523952405241524252435244524552465247524852495250525152525253525452555256525752585259526052615262526352645265526652675268526952705271527252735274527552765277527852795280528152825283528452855286528752885289529052915292529352945295529652975298529953005301530253035304530553065307530853095310531153125313531453155316531753185319532053215322532353245325532653275328532953305331533253335334533553365337533853395340534153425343534453455346534753485349535053515352535353545355535653575358535953605361536253635364536553665367536853695370537153725373537453755376537753785379538053815382538353845385538653875388538953905391539253935394539553965397539853995400540154025403540454055406540754085409541054115412541354145415541654175418541954205421542254235424542554265427542854295430543154325433543454355436543754385439544054415442544354445445544654475448544954505451545254535454545554565457545854595460546154625463546454655466546754685469547054715472547354745475547654775478547954805481548254835484548554865487548854895490549154925493549454955496549754985499550055015502550355045505550655075508550955105511551255135514551555165517551855195520552155225523552455255526552755285529553055315532553355345535553655375538553955405541554255435544554555465547554855495550555155525553555455555556555755585559556055615562556355645565556655675568556955705571557255735574557555765577557855795580558155825583558455855586558755885589559055915592559355945595559655975598559956005601560256035604560556065607560856095610561156125613561456155616561756185619562056215622562356245625562656275628562956305631563256335634563556365637563856395640564156425643564456455646564756485649565056515652565356545655565656575658565956605661566256635664566556665667566856695670567156725673567456755676567756785679568056815682568356845685568656875688568956905691569256935694569556965697569856995700570157025703570457055706570757085709571057115712571357145715571657175718571957205721572257235724572557265727572857295730573157325733573457355736573757385739574057415742574357445745574657475748574957505751575257535754575557565757575857595760576157625763576457655766576757685769577057715772577357745775577657775778577957805781578257835784578557865787578857895790579157925793579457955796579757985799580058015802580358045805580658075808580958105811581258135814581558165817581858195820582158225823582458255826582758285829583058315832583358345835583658375838583958405841584258435844584558465847584858495850585158525853585458555856585758585859586058615862586358645865586658675868586958705871587258735874587558765877587858795880588158825883588458855886588758885889589058915892589358945895589658975898589959005901590259035904590559065907590859095910591159125913591459155916591759185919592059215922592359245925592659275928592959305931593259335934593559365937593859395940594159425943594459455946594759485949595059515952595359545955595659575958595959605961596259635964596559665967596859695970597159725973597459755976597759785979598059815982598359845985598659875988598959905991599259935994599559965997599859996000600160026003600460056006600760086009601060116012601360146015601660176018601960206021602260236024602560266027602860296030603160326033603460356036603760386039604060416042604360446045604660476048604960506051605260536054605560566057605860596060606160626063606460656066606760686069607060716072607360746075607660776078607960806081608260836084608560866087608860896090609160926093609460956096609760986099610061016102610361046105610661076108610961106111611261136114611561166117611861196120612161226123612461256126612761286129613061316132613361346135613661376138613961406141614261436144614561466147614861496150615161526153615461556156615761586159616061616162616361646165616661676168616961706171617261736174617561766177617861796180618161826183618461856186618761886189619061916192619361946195619661976198619962006201620262036204620562066207620862096210621162126213621462156216621762186219622062216222622362246225622662276228622962306231623262336234623562366237623862396240624162426243624462456246624762486249625062516252625362546255625662576258625962606261626262636264626562666267626862696270627162726273627462756276627762786279628062816282628362846285628662876288628962906291629262936294629562966297629862996300630163026303630463056306630763086309631063116312631363146315631663176318631963206321632263236324632563266327632863296330633163326333633463356336633763386339634063416342634363446345634663476348634963506351635263536354635563566357635863596360636163626363636463656366636763686369637063716372637363746375637663776378637963806381638263836384638563866387638863896390639163926393639463956396639763986399640064016402640364046405640664076408640964106411641264136414641564166417641864196420642164226423642464256426642764286429643064316432643364346435643664376438643964406441644264436444644564466447644864496450645164526453645464556456645764586459646064616462646364646465646664676468646964706471647264736474647564766477647864796480648164826483648464856486648764886489649064916492649364946495649664976498649965006501650265036504650565066507650865096510651165126513651465156516651765186519652065216522652365246525652665276528652965306531653265336534653565366537653865396540654165426543654465456546654765486549655065516552655365546555655665576558655965606561656265636564656565666567656865696570657165726573657465756576657765786579658065816582658365846585658665876588658965906591659265936594659565966597659865996600660166026603660466056606660766086609661066116612661366146615661666176618661966206621662266236624662566266627662866296630663166326633663466356636663766386639664066416642664366446645664666476648664966506651665266536654665566566657665866596660666166626663666466656666666766686669667066716672667366746675667666776678667966806681668266836684668566866687668866896690669166926693669466956696669766986699670067016702670367046705670667076708670967106711671267136714671567166717671867196720672167226723672467256726672767286729673067316732673367346735673667376738673967406741674267436744674567466747674867496750675167526753675467556756675767586759676067616762676367646765676667676768676967706771677267736774677567766777677867796780678167826783678467856786678767886789679067916792679367946795679667976798679968006801680268036804680568066807680868096810681168126813681468156816681768186819682068216822682368246825682668276828682968306831683268336834683568366837683868396840684168426843684468456846684768486849685068516852685368546855685668576858685968606861686268636864686568666867686868696870687168726873687468756876687768786879688068816882688368846885688668876888688968906891689268936894689568966897689868996900690169026903690469056906690769086909691069116912691369146915691669176918691969206921692269236924692569266927692869296930693169326933693469356936693769386939694069416942694369446945694669476948694969506951695269536954695569566957695869596960696169626963696469656966696769686969697069716972697369746975697669776978697969806981698269836984698569866987698869896990699169926993699469956996699769986999700070017002700370047005700670077008700970107011701270137014701570167017701870197020702170227023702470257026702770287029703070317032703370347035703670377038703970407041704270437044704570467047704870497050705170527053705470557056705770587059706070617062706370647065706670677068706970707071707270737074707570767077707870797080708170827083708470857086708770887089709070917092709370947095709670977098709971007101710271037104710571067107710871097110711171127113711471157116711771187119712071217122712371247125712671277128712971307131713271337134713571367137713871397140714171427143714471457146714771487149715071517152715371547155715671577158715971607161716271637164716571667167716871697170717171727173717471757176717771787179718071817182718371847185718671877188718971907191719271937194719571967197719871997200720172027203720472057206720772087209721072117212721372147215721672177218721972207221722272237224722572267227722872297230723172327233723472357236723772387239724072417242724372447245724672477248724972507251725272537254725572567257725872597260726172627263726472657266726772687269727072717272727372747275727672777278727972807281728272837284728572867287728872897290729172927293729472957296729772987299730073017302730373047305730673077308730973107311731273137314731573167317731873197320732173227323732473257326732773287329733073317332733373347335733673377338733973407341734273437344734573467347734873497350735173527353735473557356735773587359736073617362736373647365736673677368736973707371737273737374737573767377737873797380738173827383738473857386738773887389739073917392739373947395739673977398739974007401740274037404740574067407740874097410741174127413741474157416741774187419742074217422742374247425742674277428742974307431743274337434743574367437743874397440744174427443744474457446744774487449745074517452745374547455745674577458745974607461746274637464746574667467746874697470747174727473747474757476747774787479748074817482748374847485748674877488748974907491749274937494749574967497749874997500750175027503750475057506750775087509751075117512751375147515751675177518751975207521752275237524752575267527752875297530753175327533753475357536753775387539754075417542754375447545754675477548754975507551755275537554755575567557755875597560756175627563756475657566756775687569757075717572757375747575757675777578757975807581758275837584758575867587758875897590759175927593759475957596759775987599760076017602760376047605760676077608760976107611761276137614761576167617761876197620762176227623762476257626762776287629763076317632763376347635763676377638763976407641764276437644764576467647764876497650765176527653765476557656765776587659766076617662766376647665766676677668766976707671767276737674767576767677767876797680768176827683768476857686768776887689769076917692769376947695769676977698769977007701770277037704770577067707770877097710771177127713771477157716771777187719772077217722772377247725772677277728772977307731773277337734773577367737773877397740774177427743774477457746774777487749775077517752775377547755775677577758775977607761776277637764776577667767776877697770777177727773777477757776777777787779778077817782778377847785778677877788778977907791
  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": "bingqiu_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": "bingqiu_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": "bingqiu_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": "bingqiu_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": "bingqiu_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": "bingqiu_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": "bingzhui_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": "bingzhui_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": "bingzhui_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": "bingzhui_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": "bingzhui_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": "bingzhui_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": "bingqiu_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": "bingqiu_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": "bingqiu_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": "bingqiu_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": "bingqiu_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": "bingqiu_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": "bingzhui_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": "bingzhui_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": "bingzhui_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": "bingzhui_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": "bingzhui_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": "bingzhui_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": 0.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": 0.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": 0.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": 0.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": 0.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": 0.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": 0.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": 0.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": 0.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": 0.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": 0.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": 0.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": 0.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": 0.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": 0.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": 0.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": 0.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": 0.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": 0.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": 0.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": 0.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": 0.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": 0.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": 0.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": 0.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": 0.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": 0.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": 0.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": 0.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": 0.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": 0.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": 0.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": 0.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": 0.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": 0.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": 0.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": 0.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": 0.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": 0.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": 0.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": 0.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": 0.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": 0.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": 0.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": 0.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": 0.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": 0.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": 0.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": 30.0,
  5691. "addcd": 0.0,
  5692. "SkillType": 3,
  5693. "level": 1,
  5694. "effectValue": [
  5695. 9.0
  5696. ],
  5697. "intensifierIndex": [
  5698. 1
  5699. ],
  5700. "PromoteLan": -1
  5701. },
  5702. {
  5703. "ID": 31011,
  5704. "PieceID": 11005,
  5705. "power": 120.0,
  5706. "name": 497,
  5707. "dec": 920,
  5708. "attribute": 1,
  5709. "icon": "icon_fb3101",
  5710. "scriptName": "S3101",
  5711. "IDGroup": 3101,
  5712. "timelineName": "",
  5713. "cd": 30.0,
  5714. "addcd": 0.0,
  5715. "SkillType": 3,
  5716. "level": 2,
  5717. "effectValue": [
  5718. 9.0
  5719. ],
  5720. "intensifierIndex": [
  5721. 1
  5722. ],
  5723. "addPropertyType": [
  5724. 106
  5725. ],
  5726. "addPropertyValue": [
  5727. 5.0
  5728. ],
  5729. "PromoteLan": 1265,
  5730. "PromoteLanPara": [
  5731. 5.0
  5732. ]
  5733. },
  5734. {
  5735. "ID": 31012,
  5736. "PieceID": 11005,
  5737. "power": 225.0,
  5738. "name": 498,
  5739. "dec": 921,
  5740. "attribute": 1,
  5741. "icon": "icon_fb3101",
  5742. "scriptName": "S3101",
  5743. "IDGroup": 3101,
  5744. "timelineName": "",
  5745. "cd": 30.0,
  5746. "addcd": 0.0,
  5747. "SkillType": 3,
  5748. "level": 3,
  5749. "effectValue": [
  5750. 9.0
  5751. ],
  5752. "intensifierIndex": [
  5753. 1
  5754. ],
  5755. "addPropertyType": [
  5756. 102,
  5757. 106
  5758. ],
  5759. "addPropertyValue": [
  5760. 5.0,
  5761. 5.0
  5762. ],
  5763. "PromoteLan": 1266,
  5764. "PromoteLanPara": [
  5765. 5.0
  5766. ]
  5767. },
  5768. {
  5769. "ID": 31013,
  5770. "PieceID": 11005,
  5771. "power": 337.5,
  5772. "name": 499,
  5773. "dec": 922,
  5774. "attribute": 1,
  5775. "icon": "icon_fb3101",
  5776. "scriptName": "S3101",
  5777. "IDGroup": 3101,
  5778. "timelineName": "",
  5779. "cd": 30.0,
  5780. "addcd": 0.0,
  5781. "SkillType": 3,
  5782. "level": 4,
  5783. "effectValue": [
  5784. 9.0
  5785. ],
  5786. "intensifierIndex": [
  5787. 1
  5788. ],
  5789. "addPropertyType": [
  5790. 102,
  5791. 106
  5792. ],
  5793. "addPropertyValue": [
  5794. 5.0,
  5795. 10.0
  5796. ],
  5797. "PromoteLan": 1267,
  5798. "PromoteLanPara": [
  5799. 5.0
  5800. ]
  5801. },
  5802. {
  5803. "ID": 31014,
  5804. "PieceID": 11005,
  5805. "power": 506.25,
  5806. "name": 500,
  5807. "dec": 923,
  5808. "attribute": 1,
  5809. "icon": "icon_fb3101",
  5810. "scriptName": "S3101",
  5811. "IDGroup": 3101,
  5812. "timelineName": "",
  5813. "cd": 30.0,
  5814. "addcd": 0.0,
  5815. "SkillType": 3,
  5816. "level": 5,
  5817. "effectValue": [
  5818. 9.0
  5819. ],
  5820. "intensifierIndex": [
  5821. 1
  5822. ],
  5823. "addPropertyType": [
  5824. 102,
  5825. 106
  5826. ],
  5827. "addPropertyValue": [
  5828. 10.0,
  5829. 10.0
  5830. ],
  5831. "PromoteLan": 1268,
  5832. "PromoteLanPara": [
  5833. 5.0
  5834. ]
  5835. },
  5836. {
  5837. "ID": 31015,
  5838. "PieceID": 11005,
  5839. "power": 759.375,
  5840. "name": 501,
  5841. "dec": 924,
  5842. "attribute": 1,
  5843. "icon": "icon_fb3101",
  5844. "scriptName": "S3101",
  5845. "IDGroup": 3101,
  5846. "timelineName": "",
  5847. "cd": 30.0,
  5848. "addcd": 0.0,
  5849. "SkillType": 3,
  5850. "level": 6,
  5851. "effectValue": [
  5852. 9.0,
  5853. 15.0
  5854. ],
  5855. "intensifierIndex": [
  5856. 1
  5857. ],
  5858. "addPropertyType": [
  5859. 102,
  5860. 106
  5861. ],
  5862. "addPropertyValue": [
  5863. 10.0,
  5864. 10.0
  5865. ],
  5866. "PromoteLan": 1269
  5867. },
  5868. {
  5869. "ID": 32010,
  5870. "PieceID": 11002,
  5871. "power": 100.0,
  5872. "name": 508,
  5873. "dec": 931,
  5874. "attribute": 2,
  5875. "icon": "icon_fb3201",
  5876. "scriptName": "S3201",
  5877. "IDGroup": 3201,
  5878. "timelineName": "",
  5879. "cd": 30.0,
  5880. "addcd": 0.0,
  5881. "SkillType": 3,
  5882. "level": 1,
  5883. "effectValue": [
  5884. 50.0,
  5885. 9.0
  5886. ],
  5887. "intensifierIndex": [
  5888. 1
  5889. ],
  5890. "PromoteLan": -1
  5891. },
  5892. {
  5893. "ID": 32011,
  5894. "PieceID": 11002,
  5895. "power": 150.0,
  5896. "name": 509,
  5897. "dec": 932,
  5898. "attribute": 2,
  5899. "icon": "icon_fb3201",
  5900. "scriptName": "S3201",
  5901. "IDGroup": 3201,
  5902. "timelineName": "",
  5903. "cd": 30.0,
  5904. "addcd": 0.0,
  5905. "SkillType": 3,
  5906. "level": 2,
  5907. "effectValue": [
  5908. 75.0,
  5909. 9.0
  5910. ],
  5911. "intensifierIndex": [
  5912. 1
  5913. ],
  5914. "PromoteLan": 1275
  5915. },
  5916. {
  5917. "ID": 32012,
  5918. "PieceID": 11002,
  5919. "power": 225.0,
  5920. "name": 510,
  5921. "dec": 933,
  5922. "attribute": 2,
  5923. "icon": "icon_fb3201",
  5924. "scriptName": "S3201",
  5925. "IDGroup": 3201,
  5926. "timelineName": "",
  5927. "cd": 30.0,
  5928. "addcd": 0.0,
  5929. "SkillType": 3,
  5930. "level": 3,
  5931. "effectValue": [
  5932. 75.0,
  5933. 9.0
  5934. ],
  5935. "intensifierIndex": [
  5936. 1
  5937. ],
  5938. "addPropertyType": [
  5939. 108
  5940. ],
  5941. "addPropertyValue": [
  5942. 5.0
  5943. ],
  5944. "PromoteLan": 1276,
  5945. "PromoteLanPara": [
  5946. 5.0
  5947. ]
  5948. },
  5949. {
  5950. "ID": 32013,
  5951. "PieceID": 11002,
  5952. "power": 337.5,
  5953. "name": 511,
  5954. "dec": 934,
  5955. "attribute": 2,
  5956. "icon": "icon_fb3201",
  5957. "scriptName": "S3201",
  5958. "IDGroup": 3201,
  5959. "timelineName": "",
  5960. "cd": 30.0,
  5961. "addcd": 0.0,
  5962. "SkillType": 3,
  5963. "level": 4,
  5964. "effectValue": [
  5965. 75.0,
  5966. 9.0
  5967. ],
  5968. "intensifierIndex": [
  5969. 1
  5970. ],
  5971. "addPropertyType": [
  5972. 101,
  5973. 108
  5974. ],
  5975. "addPropertyValue": [
  5976. 5.0,
  5977. 5.0
  5978. ],
  5979. "PromoteLan": 1277,
  5980. "PromoteLanPara": [
  5981. 5.0
  5982. ]
  5983. },
  5984. {
  5985. "ID": 32014,
  5986. "PieceID": 11002,
  5987. "power": 506.25,
  5988. "name": 512,
  5989. "dec": 935,
  5990. "attribute": 2,
  5991. "icon": "icon_fb3201",
  5992. "scriptName": "S3201",
  5993. "IDGroup": 3201,
  5994. "timelineName": "",
  5995. "cd": 30.0,
  5996. "addcd": 0.0,
  5997. "SkillType": 3,
  5998. "level": 5,
  5999. "effectValue": [
  6000. 75.0,
  6001. 9.0
  6002. ],
  6003. "intensifierIndex": [
  6004. 1
  6005. ],
  6006. "addPropertyType": [
  6007. 101,
  6008. 108
  6009. ],
  6010. "addPropertyValue": [
  6011. 5.0,
  6012. 10.0
  6013. ],
  6014. "PromoteLan": 1278,
  6015. "PromoteLanPara": [
  6016. 5.0
  6017. ]
  6018. },
  6019. {
  6020. "ID": 32015,
  6021. "PieceID": 11002,
  6022. "power": 759.375,
  6023. "name": 513,
  6024. "dec": 936,
  6025. "attribute": 2,
  6026. "icon": "icon_fb3201",
  6027. "scriptName": "S3201",
  6028. "IDGroup": 3201,
  6029. "timelineName": "",
  6030. "cd": 30.0,
  6031. "addcd": 0.0,
  6032. "SkillType": 3,
  6033. "level": 6,
  6034. "effectValue": [
  6035. 75.0,
  6036. 9.0,
  6037. 50.0
  6038. ],
  6039. "intensifierIndex": [
  6040. 1
  6041. ],
  6042. "addPropertyType": [
  6043. 101,
  6044. 108
  6045. ],
  6046. "addPropertyValue": [
  6047. 5.0,
  6048. 10.0
  6049. ],
  6050. "PromoteLan": 1279
  6051. },
  6052. {
  6053. "ID": 32020,
  6054. "PieceID": 11002,
  6055. "power": 100.0,
  6056. "name": 514,
  6057. "dec": 937,
  6058. "attribute": 2,
  6059. "icon": "icon_fb3202",
  6060. "scriptName": "S3202",
  6061. "IDGroup": 3202,
  6062. "timelineName": "",
  6063. "cd": 30.0,
  6064. "addcd": 0.0,
  6065. "SkillType": 3,
  6066. "level": 1,
  6067. "effectValue": [
  6068. 10.0,
  6069. 2.0,
  6070. 12.0
  6071. ],
  6072. "intensifierIndex": [
  6073. 1
  6074. ],
  6075. "PromoteLan": -1
  6076. },
  6077. {
  6078. "ID": 32021,
  6079. "PieceID": 11002,
  6080. "power": 150.0,
  6081. "name": 515,
  6082. "dec": 938,
  6083. "attribute": 2,
  6084. "icon": "icon_fb3202",
  6085. "scriptName": "S3202",
  6086. "IDGroup": 3202,
  6087. "timelineName": "",
  6088. "cd": 30.0,
  6089. "addcd": 0.0,
  6090. "SkillType": 3,
  6091. "level": 2,
  6092. "effectValue": [
  6093. 10.0,
  6094. 2.0,
  6095. 12.0
  6096. ],
  6097. "intensifierIndex": [
  6098. 1
  6099. ],
  6100. "addPropertyType": [
  6101. 108
  6102. ],
  6103. "addPropertyValue": [
  6104. 5.0
  6105. ],
  6106. "PromoteLan": 1280,
  6107. "PromoteLanPara": [
  6108. 5.0
  6109. ]
  6110. },
  6111. {
  6112. "ID": 32022,
  6113. "PieceID": 11002,
  6114. "power": 225.0,
  6115. "name": 516,
  6116. "dec": 939,
  6117. "attribute": 2,
  6118. "icon": "icon_fb3202",
  6119. "scriptName": "S3202",
  6120. "IDGroup": 3202,
  6121. "timelineName": "",
  6122. "cd": 30.0,
  6123. "addcd": 0.0,
  6124. "SkillType": 3,
  6125. "level": 3,
  6126. "effectValue": [
  6127. 10.0,
  6128. 2.0,
  6129. 12.0
  6130. ],
  6131. "intensifierIndex": [
  6132. 1
  6133. ],
  6134. "addPropertyType": [
  6135. 103,
  6136. 108
  6137. ],
  6138. "addPropertyValue": [
  6139. 5.0,
  6140. 5.0
  6141. ],
  6142. "PromoteLan": 1281,
  6143. "PromoteLanPara": [
  6144. 5.0
  6145. ]
  6146. },
  6147. {
  6148. "ID": 32023,
  6149. "PieceID": 11002,
  6150. "power": 337.5,
  6151. "name": 517,
  6152. "dec": 940,
  6153. "attribute": 2,
  6154. "icon": "icon_fb3202",
  6155. "scriptName": "S3202",
  6156. "IDGroup": 3202,
  6157. "timelineName": "",
  6158. "cd": 30.0,
  6159. "addcd": 0.0,
  6160. "SkillType": 3,
  6161. "level": 4,
  6162. "effectValue": [
  6163. 10.0,
  6164. 3.0,
  6165. 12.0
  6166. ],
  6167. "intensifierIndex": [
  6168. 1
  6169. ],
  6170. "addPropertyType": [
  6171. 103,
  6172. 108
  6173. ],
  6174. "addPropertyValue": [
  6175. 5.0,
  6176. 5.0
  6177. ],
  6178. "PromoteLan": 1282
  6179. },
  6180. {
  6181. "ID": 32024,
  6182. "PieceID": 11002,
  6183. "power": 506.25,
  6184. "name": 518,
  6185. "dec": 941,
  6186. "attribute": 2,
  6187. "icon": "icon_fb3202",
  6188. "scriptName": "S3202",
  6189. "IDGroup": 3202,
  6190. "timelineName": "",
  6191. "cd": 30.0,
  6192. "addcd": 0.0,
  6193. "SkillType": 3,
  6194. "level": 5,
  6195. "effectValue": [
  6196. 10.0,
  6197. 3.0,
  6198. 12.0
  6199. ],
  6200. "intensifierIndex": [
  6201. 1
  6202. ],
  6203. "addPropertyType": [
  6204. 103,
  6205. 108
  6206. ],
  6207. "addPropertyValue": [
  6208. 5.0,
  6209. 10.0
  6210. ],
  6211. "PromoteLan": 1283,
  6212. "PromoteLanPara": [
  6213. 5.0
  6214. ]
  6215. },
  6216. {
  6217. "ID": 32025,
  6218. "PieceID": 11002,
  6219. "power": 759.375,
  6220. "name": 519,
  6221. "dec": 942,
  6222. "attribute": 2,
  6223. "icon": "icon_fb3202",
  6224. "scriptName": "S3202",
  6225. "IDGroup": 3202,
  6226. "timelineName": "",
  6227. "cd": 30.0,
  6228. "addcd": 0.0,
  6229. "SkillType": 3,
  6230. "level": 6,
  6231. "effectValue": [
  6232. 10.0,
  6233. 3.0,
  6234. 12.0,
  6235. 20.0
  6236. ],
  6237. "intensifierIndex": [
  6238. 1
  6239. ],
  6240. "addPropertyType": [
  6241. 103,
  6242. 108
  6243. ],
  6244. "addPropertyValue": [
  6245. 5.0,
  6246. 10.0
  6247. ],
  6248. "PromoteLan": 1284
  6249. },
  6250. {
  6251. "ID": 33010,
  6252. "PieceID": 11004,
  6253. "power": 100.0,
  6254. "name": 526,
  6255. "dec": 949,
  6256. "attribute": 4,
  6257. "icon": "icon_fb3301",
  6258. "scriptName": "S3301",
  6259. "IDGroup": 3301,
  6260. "timelineName": "",
  6261. "cd": 30.0,
  6262. "addcd": 0.0,
  6263. "SkillType": 3,
  6264. "level": 1,
  6265. "effectValue": [
  6266. 1.0,
  6267. 6.0,
  6268. 480.0
  6269. ],
  6270. "intensifierIndex": [
  6271. 2
  6272. ],
  6273. "PromoteLan": -1
  6274. },
  6275. {
  6276. "ID": 33011,
  6277. "PieceID": 11004,
  6278. "power": 150.0,
  6279. "name": 527,
  6280. "dec": 950,
  6281. "attribute": 4,
  6282. "icon": "icon_fb3301",
  6283. "scriptName": "S3301",
  6284. "IDGroup": 3301,
  6285. "timelineName": "",
  6286. "cd": 30.0,
  6287. "addcd": 0.0,
  6288. "SkillType": 3,
  6289. "level": 2,
  6290. "effectValue": [
  6291. 2.0,
  6292. 6.0,
  6293. 480.0
  6294. ],
  6295. "intensifierIndex": [
  6296. 2
  6297. ],
  6298. "PromoteLan": 1290
  6299. },
  6300. {
  6301. "ID": 33012,
  6302. "PieceID": 11004,
  6303. "power": 225.0,
  6304. "name": 528,
  6305. "dec": 951,
  6306. "attribute": 4,
  6307. "icon": "icon_fb3301",
  6308. "scriptName": "S3301",
  6309. "IDGroup": 3301,
  6310. "timelineName": "",
  6311. "cd": 30.0,
  6312. "addcd": 0.0,
  6313. "SkillType": 3,
  6314. "level": 3,
  6315. "effectValue": [
  6316. 2.0,
  6317. 6.0,
  6318. 480.0
  6319. ],
  6320. "intensifierIndex": [
  6321. 2
  6322. ],
  6323. "addPropertyType": [
  6324. 107
  6325. ],
  6326. "addPropertyValue": [
  6327. 5.0
  6328. ],
  6329. "PromoteLan": 1291,
  6330. "PromoteLanPara": [
  6331. 5.0
  6332. ]
  6333. },
  6334. {
  6335. "ID": 33013,
  6336. "PieceID": 11004,
  6337. "power": 337.5,
  6338. "name": 529,
  6339. "dec": 952,
  6340. "attribute": 4,
  6341. "icon": "icon_fb3301",
  6342. "scriptName": "S3301",
  6343. "IDGroup": 3301,
  6344. "timelineName": "",
  6345. "cd": 30.0,
  6346. "addcd": 0.0,
  6347. "SkillType": 3,
  6348. "level": 4,
  6349. "effectValue": [
  6350. 2.0,
  6351. 6.0,
  6352. 480.0,
  6353. 30.0
  6354. ],
  6355. "intensifierIndex": [
  6356. 2
  6357. ],
  6358. "addPropertyType": [
  6359. 107
  6360. ],
  6361. "addPropertyValue": [
  6362. 5.0
  6363. ],
  6364. "PromoteLan": 1292
  6365. },
  6366. {
  6367. "ID": 33014,
  6368. "PieceID": 11004,
  6369. "power": 506.25,
  6370. "name": 530,
  6371. "dec": 953,
  6372. "attribute": 4,
  6373. "icon": "icon_fb3301",
  6374. "scriptName": "S3301",
  6375. "IDGroup": 3301,
  6376. "timelineName": "",
  6377. "cd": 30.0,
  6378. "addcd": 0.0,
  6379. "SkillType": 3,
  6380. "level": 5,
  6381. "effectValue": [
  6382. 2.0,
  6383. 6.0,
  6384. 480.0,
  6385. 30.0
  6386. ],
  6387. "intensifierIndex": [
  6388. 2
  6389. ],
  6390. "addPropertyType": [
  6391. 107
  6392. ],
  6393. "addPropertyValue": [
  6394. 10.0
  6395. ],
  6396. "PromoteLan": 1293,
  6397. "PromoteLanPara": [
  6398. 5.0
  6399. ]
  6400. },
  6401. {
  6402. "ID": 33015,
  6403. "PieceID": 11004,
  6404. "power": 759.375,
  6405. "name": 531,
  6406. "dec": 954,
  6407. "attribute": 4,
  6408. "icon": "icon_fb3301",
  6409. "scriptName": "S3301",
  6410. "IDGroup": 3301,
  6411. "timelineName": "",
  6412. "cd": 30.0,
  6413. "addcd": 0.0,
  6414. "SkillType": 3,
  6415. "level": 6,
  6416. "effectValue": [
  6417. 2.0,
  6418. 6.0,
  6419. 480.0,
  6420. 300.0
  6421. ],
  6422. "intensifierIndex": [
  6423. 2
  6424. ],
  6425. "addPropertyType": [
  6426. 107
  6427. ],
  6428. "addPropertyValue": [
  6429. 10.0
  6430. ],
  6431. "PromoteLan": 1294
  6432. },
  6433. {
  6434. "ID": 33020,
  6435. "PieceID": 11008,
  6436. "power": 100.0,
  6437. "name": 532,
  6438. "dec": 955,
  6439. "attribute": 4,
  6440. "icon": "icon_s3302",
  6441. "scriptName": "S3302",
  6442. "IDGroup": 3302,
  6443. "timelineName": "",
  6444. "cd": 30.0,
  6445. "addcd": 0.0,
  6446. "SkillType": 3,
  6447. "level": 1,
  6448. "intensifierIndex": [
  6449. 1
  6450. ],
  6451. "PromoteLan": -1
  6452. },
  6453. {
  6454. "ID": 33021,
  6455. "PieceID": 11008,
  6456. "power": 150.0,
  6457. "name": 533,
  6458. "dec": 956,
  6459. "attribute": 4,
  6460. "icon": "icon_s3302",
  6461. "scriptName": "S3302",
  6462. "IDGroup": 3302,
  6463. "timelineName": "",
  6464. "cd": 30.0,
  6465. "addcd": 0.0,
  6466. "SkillType": 3,
  6467. "level": 2,
  6468. "intensifierIndex": [
  6469. 1
  6470. ],
  6471. "PromoteLan": 1295
  6472. },
  6473. {
  6474. "ID": 33022,
  6475. "PieceID": 11008,
  6476. "power": 225.0,
  6477. "name": 534,
  6478. "dec": 957,
  6479. "attribute": 4,
  6480. "icon": "icon_s3302",
  6481. "scriptName": "S3302",
  6482. "IDGroup": 3302,
  6483. "timelineName": "",
  6484. "cd": 30.0,
  6485. "addcd": 0.0,
  6486. "SkillType": 3,
  6487. "level": 3,
  6488. "intensifierIndex": [
  6489. 1
  6490. ],
  6491. "PromoteLan": 1296
  6492. },
  6493. {
  6494. "ID": 33023,
  6495. "PieceID": 11008,
  6496. "power": 337.5,
  6497. "name": 535,
  6498. "dec": 958,
  6499. "attribute": 4,
  6500. "icon": "icon_s3302",
  6501. "scriptName": "S3302",
  6502. "IDGroup": 3302,
  6503. "timelineName": "",
  6504. "cd": 30.0,
  6505. "addcd": 0.0,
  6506. "SkillType": 3,
  6507. "level": 4,
  6508. "intensifierIndex": [
  6509. 1
  6510. ],
  6511. "PromoteLan": 1297
  6512. },
  6513. {
  6514. "ID": 33024,
  6515. "PieceID": 11008,
  6516. "power": 506.25,
  6517. "name": 536,
  6518. "dec": 959,
  6519. "attribute": 4,
  6520. "icon": "icon_s3302",
  6521. "scriptName": "S3302",
  6522. "IDGroup": 3302,
  6523. "timelineName": "",
  6524. "cd": 30.0,
  6525. "addcd": 0.0,
  6526. "SkillType": 3,
  6527. "level": 5,
  6528. "intensifierIndex": [
  6529. 1
  6530. ],
  6531. "PromoteLan": 1298
  6532. },
  6533. {
  6534. "ID": 33025,
  6535. "PieceID": 11008,
  6536. "power": 759.375,
  6537. "name": 537,
  6538. "dec": 960,
  6539. "attribute": 4,
  6540. "icon": "icon_s3302",
  6541. "scriptName": "S3302",
  6542. "IDGroup": 3302,
  6543. "timelineName": "",
  6544. "cd": 30.0,
  6545. "addcd": 0.0,
  6546. "SkillType": 3,
  6547. "level": 6,
  6548. "intensifierIndex": [
  6549. 1
  6550. ],
  6551. "PromoteLan": 1299
  6552. },
  6553. {
  6554. "ID": 34010,
  6555. "PieceID": 11004,
  6556. "power": 100.0,
  6557. "name": 538,
  6558. "dec": 961,
  6559. "attribute": 8,
  6560. "icon": "icon_fb3401",
  6561. "scriptName": "S3401",
  6562. "IDGroup": 3401,
  6563. "timelineName": "",
  6564. "cd": 30.0,
  6565. "addcd": 0.0,
  6566. "SkillType": 3,
  6567. "level": 1,
  6568. "effectValue": [
  6569. 40.0,
  6570. 9.0
  6571. ],
  6572. "intensifierIndex": [
  6573. 2
  6574. ],
  6575. "PromoteLan": -1
  6576. },
  6577. {
  6578. "ID": 34011,
  6579. "PieceID": 11004,
  6580. "power": 150.0,
  6581. "name": 539,
  6582. "dec": 962,
  6583. "attribute": 8,
  6584. "icon": "icon_fb3401",
  6585. "scriptName": "S3401",
  6586. "IDGroup": 3401,
  6587. "timelineName": "",
  6588. "cd": 30.0,
  6589. "addcd": 0.0,
  6590. "SkillType": 3,
  6591. "level": 2,
  6592. "effectValue": [
  6593. 40.0,
  6594. 9.0
  6595. ],
  6596. "intensifierIndex": [
  6597. 2
  6598. ],
  6599. "addPropertyType": [
  6600. 109
  6601. ],
  6602. "addPropertyValue": [
  6603. 5.0
  6604. ],
  6605. "PromoteLan": 1300,
  6606. "PromoteLanPara": [
  6607. 5.0
  6608. ]
  6609. },
  6610. {
  6611. "ID": 34012,
  6612. "PieceID": 11004,
  6613. "power": 225.0,
  6614. "name": 540,
  6615. "dec": 963,
  6616. "attribute": 8,
  6617. "icon": "icon_fb3401",
  6618. "scriptName": "S3401",
  6619. "IDGroup": 3401,
  6620. "timelineName": "",
  6621. "cd": 30.0,
  6622. "addcd": 0.0,
  6623. "SkillType": 3,
  6624. "level": 3,
  6625. "effectValue": [
  6626. 60.0,
  6627. 9.0
  6628. ],
  6629. "intensifierIndex": [
  6630. 2
  6631. ],
  6632. "addPropertyType": [
  6633. 109
  6634. ],
  6635. "addPropertyValue": [
  6636. 5.0
  6637. ],
  6638. "PromoteLan": 1301
  6639. },
  6640. {
  6641. "ID": 34013,
  6642. "PieceID": 11004,
  6643. "power": 337.5,
  6644. "name": 541,
  6645. "dec": 964,
  6646. "attribute": 8,
  6647. "icon": "icon_fb3401",
  6648. "scriptName": "S3401",
  6649. "IDGroup": 3401,
  6650. "timelineName": "",
  6651. "cd": 30.0,
  6652. "addcd": 0.0,
  6653. "SkillType": 3,
  6654. "level": 4,
  6655. "effectValue": [
  6656. 60.0,
  6657. 9.0
  6658. ],
  6659. "intensifierIndex": [
  6660. 2
  6661. ],
  6662. "addPropertyType": [
  6663. 102,
  6664. 109
  6665. ],
  6666. "addPropertyValue": [
  6667. 5.0,
  6668. 5.0
  6669. ],
  6670. "PromoteLan": 1302,
  6671. "PromoteLanPara": [
  6672. 5.0
  6673. ]
  6674. },
  6675. {
  6676. "ID": 34014,
  6677. "PieceID": 11004,
  6678. "power": 506.25,
  6679. "name": 542,
  6680. "dec": 965,
  6681. "attribute": 8,
  6682. "icon": "icon_fb3401",
  6683. "scriptName": "S3401",
  6684. "IDGroup": 3401,
  6685. "timelineName": "",
  6686. "cd": 30.0,
  6687. "addcd": 0.0,
  6688. "SkillType": 3,
  6689. "level": 5,
  6690. "effectValue": [
  6691. 60.0,
  6692. 9.0
  6693. ],
  6694. "intensifierIndex": [
  6695. 2
  6696. ],
  6697. "addPropertyType": [
  6698. 102,
  6699. 109
  6700. ],
  6701. "addPropertyValue": [
  6702. 5.0,
  6703. 10.0
  6704. ],
  6705. "PromoteLan": 1303,
  6706. "PromoteLanPara": [
  6707. 5.0
  6708. ]
  6709. },
  6710. {
  6711. "ID": 34015,
  6712. "PieceID": 11004,
  6713. "power": 759.375,
  6714. "name": 543,
  6715. "dec": 966,
  6716. "attribute": 8,
  6717. "icon": "icon_fb3401",
  6718. "scriptName": "S3401",
  6719. "IDGroup": 3401,
  6720. "timelineName": "",
  6721. "cd": 30.0,
  6722. "addcd": 0.0,
  6723. "SkillType": 3,
  6724. "level": 6,
  6725. "effectValue": [
  6726. 100.0,
  6727. 9.0,
  6728. 20.0,
  6729. 9.0
  6730. ],
  6731. "intensifierIndex": [
  6732. 2
  6733. ],
  6734. "addPropertyType": [
  6735. 102,
  6736. 109
  6737. ],
  6738. "addPropertyValue": [
  6739. 5.0,
  6740. 10.0
  6741. ],
  6742. "PromoteLan": 1304
  6743. },
  6744. {
  6745. "ID": 34020,
  6746. "PieceID": 11004,
  6747. "power": 100.0,
  6748. "name": 544,
  6749. "dec": 967,
  6750. "attribute": 8,
  6751. "icon": "icon_s3402",
  6752. "scriptName": "S3402",
  6753. "IDGroup": 3402,
  6754. "timelineName": "",
  6755. "cd": 24.0,
  6756. "addcd": 0.0,
  6757. "SkillType": 3,
  6758. "level": 1,
  6759. "intensifierIndex": [
  6760. 2
  6761. ],
  6762. "PromoteLan": -1
  6763. },
  6764. {
  6765. "ID": 34021,
  6766. "PieceID": 11004,
  6767. "power": 150.0,
  6768. "name": 545,
  6769. "dec": 968,
  6770. "attribute": 8,
  6771. "icon": "icon_s3402",
  6772. "scriptName": "S3402",
  6773. "IDGroup": 3402,
  6774. "timelineName": "",
  6775. "cd": 24.0,
  6776. "addcd": 0.0,
  6777. "SkillType": 3,
  6778. "level": 2,
  6779. "effectValue": [
  6780. 12.0
  6781. ],
  6782. "intensifierIndex": [
  6783. 2
  6784. ],
  6785. "PromoteLan": 1305
  6786. },
  6787. {
  6788. "ID": 34022,
  6789. "PieceID": 11004,
  6790. "power": 225.0,
  6791. "name": 546,
  6792. "dec": 969,
  6793. "attribute": 8,
  6794. "icon": "icon_s3402",
  6795. "scriptName": "S3402",
  6796. "IDGroup": 3402,
  6797. "timelineName": "",
  6798. "cd": 24.0,
  6799. "addcd": 0.0,
  6800. "SkillType": 3,
  6801. "level": 3,
  6802. "effectValue": [
  6803. 12.0
  6804. ],
  6805. "intensifierIndex": [
  6806. 2
  6807. ],
  6808. "addPropertyType": [
  6809. 109
  6810. ],
  6811. "addPropertyValue": [
  6812. 5.0
  6813. ],
  6814. "PromoteLan": 1306,
  6815. "PromoteLanPara": [
  6816. 5.0
  6817. ]
  6818. },
  6819. {
  6820. "ID": 34023,
  6821. "PieceID": 11004,
  6822. "power": 337.5,
  6823. "name": 547,
  6824. "dec": 970,
  6825. "attribute": 8,
  6826. "icon": "icon_s3402",
  6827. "scriptName": "S3402",
  6828. "IDGroup": 3402,
  6829. "timelineName": "",
  6830. "cd": 24.0,
  6831. "addcd": 0.0,
  6832. "SkillType": 3,
  6833. "level": 4,
  6834. "effectValue": [
  6835. 12.0
  6836. ],
  6837. "intensifierIndex": [
  6838. 2
  6839. ],
  6840. "addPropertyType": [
  6841. 102,
  6842. 109
  6843. ],
  6844. "addPropertyValue": [
  6845. 5.0,
  6846. 5.0
  6847. ],
  6848. "PromoteLan": 1307
  6849. },
  6850. {
  6851. "ID": 34024,
  6852. "PieceID": 11004,
  6853. "power": 506.25,
  6854. "name": 548,
  6855. "dec": 971,
  6856. "attribute": 8,
  6857. "icon": "icon_s3402",
  6858. "scriptName": "S3402",
  6859. "IDGroup": 3402,
  6860. "timelineName": "",
  6861. "cd": 24.0,
  6862. "addcd": 0.0,
  6863. "SkillType": 3,
  6864. "level": 5,
  6865. "effectValue": [
  6866. 12.0
  6867. ],
  6868. "intensifierIndex": [
  6869. 2
  6870. ],
  6871. "addPropertyType": [
  6872. 102,
  6873. 109
  6874. ],
  6875. "addPropertyValue": [
  6876. 5.0,
  6877. 10.0
  6878. ],
  6879. "PromoteLan": 1308,
  6880. "PromoteLanPara": [
  6881. 5.0
  6882. ]
  6883. },
  6884. {
  6885. "ID": 34025,
  6886. "PieceID": 11004,
  6887. "power": 759.375,
  6888. "name": 549,
  6889. "dec": 972,
  6890. "attribute": 8,
  6891. "icon": "icon_s3402",
  6892. "scriptName": "S3402",
  6893. "IDGroup": 3402,
  6894. "timelineName": "",
  6895. "cd": 24.0,
  6896. "addcd": 0.0,
  6897. "SkillType": 3,
  6898. "level": 6,
  6899. "effectValue": [
  6900. 12.0,
  6901. 10.0,
  6902. 3.0
  6903. ],
  6904. "intensifierIndex": [
  6905. 2
  6906. ],
  6907. "addPropertyType": [
  6908. 102,
  6909. 109
  6910. ],
  6911. "addPropertyValue": [
  6912. 5.0,
  6913. 10.0
  6914. ],
  6915. "PromoteLan": 1309
  6916. },
  6917. {
  6918. "ID": 35010,
  6919. "PieceID": 11003,
  6920. "power": 100.0,
  6921. "name": 550,
  6922. "dec": 973,
  6923. "attribute": 16,
  6924. "icon": "icon_fb3501",
  6925. "scriptName": "S3501",
  6926. "IDGroup": 3501,
  6927. "timelineName": "",
  6928. "cd": 30.0,
  6929. "addcd": 0.0,
  6930. "SkillType": 3,
  6931. "level": 1,
  6932. "effectValue": [
  6933. 10.0,
  6934. 9.0
  6935. ],
  6936. "intensifierIndex": [
  6937. 1
  6938. ],
  6939. "PromoteLan": -1
  6940. },
  6941. {
  6942. "ID": 35011,
  6943. "PieceID": 11003,
  6944. "power": 150.0,
  6945. "name": 551,
  6946. "dec": 974,
  6947. "attribute": 16,
  6948. "icon": "icon_fb3501",
  6949. "scriptName": "S3501",
  6950. "IDGroup": 3501,
  6951. "timelineName": "",
  6952. "cd": 30.0,
  6953. "addcd": 0.0,
  6954. "SkillType": 3,
  6955. "level": 2,
  6956. "effectValue": [
  6957. 13.0,
  6958. 9.0
  6959. ],
  6960. "intensifierIndex": [
  6961. 1
  6962. ],
  6963. "PromoteLan": 1310
  6964. },
  6965. {
  6966. "ID": 35012,
  6967. "PieceID": 11003,
  6968. "power": 225.0,
  6969. "name": 552,
  6970. "dec": 975,
  6971. "attribute": 16,
  6972. "icon": "icon_fb3501",
  6973. "scriptName": "S3501",
  6974. "IDGroup": 3501,
  6975. "timelineName": "",
  6976. "cd": 30.0,
  6977. "addcd": 0.0,
  6978. "SkillType": 3,
  6979. "level": 3,
  6980. "effectValue": [
  6981. 13.0,
  6982. 9.0
  6983. ],
  6984. "intensifierIndex": [
  6985. 1
  6986. ],
  6987. "addPropertyType": [
  6988. 110
  6989. ],
  6990. "addPropertyValue": [
  6991. 5.0
  6992. ],
  6993. "PromoteLan": 1311,
  6994. "PromoteLanPara": [
  6995. 5.0
  6996. ]
  6997. },
  6998. {
  6999. "ID": 35013,
  7000. "PieceID": 11003,
  7001. "power": 337.5,
  7002. "name": 553,
  7003. "dec": 976,
  7004. "attribute": 16,
  7005. "icon": "icon_fb3501",
  7006. "scriptName": "S3501",
  7007. "IDGroup": 3501,
  7008. "timelineName": "",
  7009. "cd": 30.0,
  7010. "addcd": 0.0,
  7011. "SkillType": 3,
  7012. "level": 4,
  7013. "effectValue": [
  7014. 16.0,
  7015. 9.0
  7016. ],
  7017. "intensifierIndex": [
  7018. 1
  7019. ],
  7020. "addPropertyType": [
  7021. 110
  7022. ],
  7023. "addPropertyValue": [
  7024. 5.0
  7025. ],
  7026. "PromoteLan": 1312
  7027. },
  7028. {
  7029. "ID": 35014,
  7030. "PieceID": 11003,
  7031. "power": 506.25,
  7032. "name": 554,
  7033. "dec": 977,
  7034. "attribute": 16,
  7035. "icon": "icon_fb3501",
  7036. "scriptName": "S3501",
  7037. "IDGroup": 3501,
  7038. "timelineName": "",
  7039. "cd": 30.0,
  7040. "addcd": 0.0,
  7041. "SkillType": 3,
  7042. "level": 5,
  7043. "effectValue": [
  7044. 16.0,
  7045. 9.0
  7046. ],
  7047. "intensifierIndex": [
  7048. 1
  7049. ],
  7050. "addPropertyType": [
  7051. 110
  7052. ],
  7053. "addPropertyValue": [
  7054. 10.0
  7055. ],
  7056. "PromoteLan": 1313,
  7057. "PromoteLanPara": [
  7058. 5.0
  7059. ]
  7060. },
  7061. {
  7062. "ID": 35015,
  7063. "PieceID": 11003,
  7064. "power": 759.375,
  7065. "name": 555,
  7066. "dec": 978,
  7067. "attribute": 16,
  7068. "icon": "icon_fb3501",
  7069. "scriptName": "S3501",
  7070. "IDGroup": 3501,
  7071. "timelineName": "",
  7072. "cd": 30.0,
  7073. "addcd": 0.0,
  7074. "SkillType": 3,
  7075. "level": 6,
  7076. "effectValue": [
  7077. 20.0,
  7078. 9.0
  7079. ],
  7080. "intensifierIndex": [
  7081. 1
  7082. ],
  7083. "addPropertyType": [
  7084. 110
  7085. ],
  7086. "addPropertyValue": [
  7087. 10.0
  7088. ],
  7089. "PromoteLan": 1314
  7090. },
  7091. {
  7092. "ID": 601011,
  7093. "PieceID": null,
  7094. "power": 100.0,
  7095. "name": 696,
  7096. "dec": 699,
  7097. "attribute": 1,
  7098. "icon": "icon_s1001",
  7099. "scriptName": "DS60101",
  7100. "IDGroup": 1001,
  7101. "timelineName": "",
  7102. "cd": 1.0,
  7103. "addcd": 2.0,
  7104. "SkillType": 4,
  7105. "level": 1,
  7106. "effectValue": [
  7107. 10.0,
  7108. 100.0,
  7109. 50.0,
  7110. 50.0,
  7111. 9.0
  7112. ],
  7113. "intensifierIndex": [
  7114. 0
  7115. ],
  7116. "PromoteLan": null
  7117. },
  7118. {
  7119. "ID": 601021,
  7120. "PieceID": null,
  7121. "power": 100.0,
  7122. "name": 697,
  7123. "dec": 700,
  7124. "attribute": 1,
  7125. "icon": "icon_s1002",
  7126. "scriptName": "DS60102",
  7127. "IDGroup": 1002,
  7128. "timelineName": "",
  7129. "cd": 1.0,
  7130. "addcd": 2.0,
  7131. "SkillType": 4,
  7132. "level": 1,
  7133. "effectValue": [
  7134. 3.0,
  7135. 3.0,
  7136. 30.0,
  7137. 5.0,
  7138. 1.0,
  7139. 3.0,
  7140. 30.0,
  7141. 3.0,
  7142. 30.0
  7143. ],
  7144. "intensifierIndex": [
  7145. 0
  7146. ],
  7147. "PromoteLan": null
  7148. },
  7149. {
  7150. "ID": 601031,
  7151. "PieceID": null,
  7152. "power": 100.0,
  7153. "name": 698,
  7154. "dec": 701,
  7155. "attribute": 1,
  7156. "icon": "icon_s1003",
  7157. "scriptName": "DS60103",
  7158. "IDGroup": 1003,
  7159. "timelineName": "",
  7160. "cd": 1.0,
  7161. "addcd": 2.0,
  7162. "SkillType": 4,
  7163. "level": 1,
  7164. "effectValue": [
  7165. 30.0,
  7166. 1.0
  7167. ],
  7168. "intensifierIndex": [
  7169. 0
  7170. ],
  7171. "PromoteLan": null
  7172. },
  7173. {
  7174. "ID": 90010,
  7175. "PieceID": null,
  7176. "power": 300.0,
  7177. "name": 707,
  7178. "dec": 717,
  7179. "attribute": 1,
  7180. "icon": "icon_s9001",
  7181. "scriptName": "S9001",
  7182. "IDGroup": 9001,
  7183. "timelineName": "BossSk1_timeline_TD",
  7184. "cd": 3.0,
  7185. "addcd": 0.0,
  7186. "SkillType": 1,
  7187. "level": 1,
  7188. "effectValue": [
  7189. 63.0,
  7190. 5.0,
  7191. 1.0,
  7192. 10.0,
  7193. 1.0,
  7194. 1.0,
  7195. 20.0
  7196. ],
  7197. "intensifierIndex": [
  7198. 1
  7199. ],
  7200. "PromoteLan": null
  7201. },
  7202. {
  7203. "ID": 90011,
  7204. "PieceID": null,
  7205. "power": 450.0,
  7206. "name": 707,
  7207. "dec": 717,
  7208. "attribute": 1,
  7209. "icon": "icon_s9001",
  7210. "scriptName": "S9001",
  7211. "IDGroup": 9001,
  7212. "timelineName": "BossSk1_timeline_TD",
  7213. "cd": 3.0,
  7214. "addcd": 0.0,
  7215. "SkillType": 1,
  7216. "level": 2,
  7217. "effectValue": [
  7218. 76.0,
  7219. 5.0,
  7220. 1.0,
  7221. 10.0,
  7222. 1.0,
  7223. 1.0,
  7224. 20.0
  7225. ],
  7226. "intensifierIndex": [
  7227. 1
  7228. ],
  7229. "PromoteLan": null
  7230. },
  7231. {
  7232. "ID": 90012,
  7233. "PieceID": null,
  7234. "power": 675.0,
  7235. "name": 707,
  7236. "dec": 717,
  7237. "attribute": 1,
  7238. "icon": "icon_s9001",
  7239. "scriptName": "S9001",
  7240. "IDGroup": 9001,
  7241. "timelineName": "BossSk1_timeline_TD",
  7242. "cd": 3.0,
  7243. "addcd": 0.0,
  7244. "SkillType": 1,
  7245. "level": 3,
  7246. "effectValue": [
  7247. 89.0,
  7248. 5.0,
  7249. 1.0,
  7250. 10.0,
  7251. 1.0,
  7252. 1.0,
  7253. 20.0
  7254. ],
  7255. "intensifierIndex": [
  7256. 1
  7257. ],
  7258. "PromoteLan": null
  7259. },
  7260. {
  7261. "ID": 90013,
  7262. "PieceID": null,
  7263. "power": 1012.5,
  7264. "name": 707,
  7265. "dec": 717,
  7266. "attribute": 1,
  7267. "icon": "icon_s9001",
  7268. "scriptName": "S9001",
  7269. "IDGroup": 9001,
  7270. "timelineName": "BossSk1_timeline_TD",
  7271. "cd": 3.0,
  7272. "addcd": 0.0,
  7273. "SkillType": 1,
  7274. "level": 4,
  7275. "effectValue": [
  7276. 102.0,
  7277. 5.0,
  7278. 1.0,
  7279. 10.0,
  7280. 1.0,
  7281. 1.0,
  7282. 20.0
  7283. ],
  7284. "intensifierIndex": [
  7285. 1
  7286. ],
  7287. "PromoteLan": null
  7288. },
  7289. {
  7290. "ID": 90014,
  7291. "PieceID": null,
  7292. "power": 1518.75,
  7293. "name": 707,
  7294. "dec": 717,
  7295. "attribute": 1,
  7296. "icon": "icon_s9001",
  7297. "scriptName": "S9001",
  7298. "IDGroup": 9001,
  7299. "timelineName": "BossSk1_timeline_TD",
  7300. "cd": 3.0,
  7301. "addcd": 0.0,
  7302. "SkillType": 1,
  7303. "level": 5,
  7304. "effectValue": [
  7305. 115.0,
  7306. 5.0,
  7307. 1.0,
  7308. 10.0,
  7309. 1.0,
  7310. 1.0,
  7311. 20.0
  7312. ],
  7313. "intensifierIndex": [
  7314. 1
  7315. ],
  7316. "PromoteLan": null
  7317. },
  7318. {
  7319. "ID": 90015,
  7320. "PieceID": null,
  7321. "power": 2278.125,
  7322. "name": 707,
  7323. "dec": 717,
  7324. "attribute": 1,
  7325. "icon": "icon_s9001",
  7326. "scriptName": "S9001",
  7327. "IDGroup": 9001,
  7328. "timelineName": "BossSk1_timeline_TD",
  7329. "cd": 3.0,
  7330. "addcd": 0.0,
  7331. "SkillType": 1,
  7332. "level": 6,
  7333. "effectValue": [
  7334. 126.0,
  7335. 5.0,
  7336. 1.0,
  7337. 10.0,
  7338. 1.0,
  7339. 1.0,
  7340. 20.0
  7341. ],
  7342. "intensifierIndex": [
  7343. 1
  7344. ],
  7345. "PromoteLan": null
  7346. },
  7347. {
  7348. "ID": 90020,
  7349. "PieceID": null,
  7350. "power": 300.0,
  7351. "name": 708,
  7352. "dec": 718,
  7353. "attribute": 1,
  7354. "icon": "icon_s9002",
  7355. "scriptName": "S9002",
  7356. "IDGroup": 9002,
  7357. "timelineName": "BossSk2_timeline_TD",
  7358. "cd": 3.0,
  7359. "addcd": 0.0,
  7360. "SkillType": 1,
  7361. "level": 1,
  7362. "effectValue": [
  7363. 30.0,
  7364. 100.0
  7365. ],
  7366. "intensifierIndex": [
  7367. 1
  7368. ],
  7369. "PromoteLan": null
  7370. },
  7371. {
  7372. "ID": 90021,
  7373. "PieceID": null,
  7374. "power": 450.0,
  7375. "name": 708,
  7376. "dec": 718,
  7377. "attribute": 1,
  7378. "icon": "icon_s9002",
  7379. "scriptName": "S9002",
  7380. "IDGroup": 9002,
  7381. "timelineName": "BossSk2_timeline_TD",
  7382. "cd": 3.0,
  7383. "addcd": 0.0,
  7384. "SkillType": 1,
  7385. "level": 2,
  7386. "effectValue": [
  7387. 33.0,
  7388. 110.0
  7389. ],
  7390. "intensifierIndex": [
  7391. 1
  7392. ],
  7393. "PromoteLan": null
  7394. },
  7395. {
  7396. "ID": 90022,
  7397. "PieceID": null,
  7398. "power": 675.0,
  7399. "name": 708,
  7400. "dec": 718,
  7401. "attribute": 1,
  7402. "icon": "icon_s9002",
  7403. "scriptName": "S9002",
  7404. "IDGroup": 9002,
  7405. "timelineName": "BossSk2_timeline_TD",
  7406. "cd": 3.0,
  7407. "addcd": 0.0,
  7408. "SkillType": 1,
  7409. "level": 3,
  7410. "effectValue": [
  7411. 36.0,
  7412. 120.0
  7413. ],
  7414. "intensifierIndex": [
  7415. 1
  7416. ],
  7417. "PromoteLan": null
  7418. },
  7419. {
  7420. "ID": 90023,
  7421. "PieceID": null,
  7422. "power": 1012.5,
  7423. "name": 708,
  7424. "dec": 718,
  7425. "attribute": 1,
  7426. "icon": "icon_s9002",
  7427. "scriptName": "S9002",
  7428. "IDGroup": 9002,
  7429. "timelineName": "BossSk2_timeline_TD",
  7430. "cd": 3.0,
  7431. "addcd": 0.0,
  7432. "SkillType": 1,
  7433. "level": 4,
  7434. "effectValue": [
  7435. 39.0,
  7436. 130.0
  7437. ],
  7438. "intensifierIndex": [
  7439. 1
  7440. ],
  7441. "PromoteLan": null
  7442. },
  7443. {
  7444. "ID": 90024,
  7445. "PieceID": null,
  7446. "power": 1518.75,
  7447. "name": 708,
  7448. "dec": 718,
  7449. "attribute": 1,
  7450. "icon": "icon_s9002",
  7451. "scriptName": "S9002",
  7452. "IDGroup": 9002,
  7453. "timelineName": "BossSk2_timeline_TD",
  7454. "cd": 3.0,
  7455. "addcd": 0.0,
  7456. "SkillType": 1,
  7457. "level": 5,
  7458. "effectValue": [
  7459. 42.0,
  7460. 140.0
  7461. ],
  7462. "intensifierIndex": [
  7463. 1
  7464. ],
  7465. "PromoteLan": null
  7466. },
  7467. {
  7468. "ID": 90025,
  7469. "PieceID": null,
  7470. "power": 2278.125,
  7471. "name": 708,
  7472. "dec": 718,
  7473. "attribute": 1,
  7474. "icon": "icon_s9002",
  7475. "scriptName": "S9002",
  7476. "IDGroup": 9002,
  7477. "timelineName": "BossSk2_timeline_TD",
  7478. "cd": 3.0,
  7479. "addcd": 0.0,
  7480. "SkillType": 1,
  7481. "level": 6,
  7482. "effectValue": [
  7483. 45.0,
  7484. 150.0
  7485. ],
  7486. "intensifierIndex": [
  7487. 1
  7488. ],
  7489. "PromoteLan": null
  7490. },
  7491. {
  7492. "ID": 90030,
  7493. "PieceID": null,
  7494. "power": 100.0,
  7495. "name": 709,
  7496. "dec": 719,
  7497. "attribute": 1,
  7498. "icon": "icon_s9003",
  7499. "scriptName": "S9003",
  7500. "IDGroup": 9003,
  7501. "timelineName": "",
  7502. "cd": 1.0,
  7503. "addcd": 0.0,
  7504. "SkillType": 2,
  7505. "level": 1,
  7506. "effectValue": [
  7507. 1.0
  7508. ],
  7509. "intensifierIndex": [
  7510. 1
  7511. ],
  7512. "PromoteLan": null
  7513. },
  7514. {
  7515. "ID": 90040,
  7516. "PieceID": null,
  7517. "power": 100.0,
  7518. "name": 710,
  7519. "dec": 720,
  7520. "attribute": 1,
  7521. "icon": "icon_s9004",
  7522. "scriptName": "S9004",
  7523. "IDGroup": 9004,
  7524. "timelineName": "BossSk4_timeline_TD",
  7525. "cd": 1.0,
  7526. "addcd": 0.0,
  7527. "SkillType": 1,
  7528. "level": 1,
  7529. "effectValue": [
  7530. 100.0
  7531. ],
  7532. "intensifierIndex": [
  7533. 1
  7534. ],
  7535. "PromoteLan": null
  7536. },
  7537. {
  7538. "ID": 90041,
  7539. "PieceID": null,
  7540. "power": 150.0,
  7541. "name": 710,
  7542. "dec": 720,
  7543. "attribute": 1,
  7544. "icon": "icon_s9004",
  7545. "scriptName": "S9004",
  7546. "IDGroup": 9004,
  7547. "timelineName": "BossSk4_timeline_TD",
  7548. "cd": 1.0,
  7549. "addcd": 0.0,
  7550. "SkillType": 1,
  7551. "level": 2,
  7552. "effectValue": [
  7553. 120.0
  7554. ],
  7555. "intensifierIndex": [
  7556. 1
  7557. ],
  7558. "PromoteLan": null
  7559. },
  7560. {
  7561. "ID": 90042,
  7562. "PieceID": null,
  7563. "power": 225.0,
  7564. "name": 710,
  7565. "dec": 720,
  7566. "attribute": 1,
  7567. "icon": "icon_s9004",
  7568. "scriptName": "S9004",
  7569. "IDGroup": 9004,
  7570. "timelineName": "BossSk4_timeline_TD",
  7571. "cd": 1.0,
  7572. "addcd": 0.0,
  7573. "SkillType": 1,
  7574. "level": 3,
  7575. "effectValue": [
  7576. 140.0
  7577. ],
  7578. "intensifierIndex": [
  7579. 1
  7580. ],
  7581. "PromoteLan": null
  7582. },
  7583. {
  7584. "ID": 90043,
  7585. "PieceID": null,
  7586. "power": 337.5,
  7587. "name": 710,
  7588. "dec": 720,
  7589. "attribute": 1,
  7590. "icon": "icon_s9004",
  7591. "scriptName": "S9004",
  7592. "IDGroup": 9004,
  7593. "timelineName": "BossSk4_timeline_TD",
  7594. "cd": 1.0,
  7595. "addcd": 0.0,
  7596. "SkillType": 1,
  7597. "level": 4,
  7598. "effectValue": [
  7599. 160.0
  7600. ],
  7601. "intensifierIndex": [
  7602. 1
  7603. ],
  7604. "PromoteLan": null
  7605. },
  7606. {
  7607. "ID": 90044,
  7608. "PieceID": null,
  7609. "power": 506.25,
  7610. "name": 710,
  7611. "dec": 720,
  7612. "attribute": 1,
  7613. "icon": "icon_s9004",
  7614. "scriptName": "S9004",
  7615. "IDGroup": 9004,
  7616. "timelineName": "BossSk4_timeline_TD",
  7617. "cd": 1.0,
  7618. "addcd": 0.0,
  7619. "SkillType": 1,
  7620. "level": 5,
  7621. "effectValue": [
  7622. 180.0
  7623. ],
  7624. "intensifierIndex": [
  7625. 1
  7626. ],
  7627. "PromoteLan": null
  7628. },
  7629. {
  7630. "ID": 90045,
  7631. "PieceID": null,
  7632. "power": 759.375,
  7633. "name": 710,
  7634. "dec": 720,
  7635. "attribute": 1,
  7636. "icon": "icon_s9004",
  7637. "scriptName": "S9004",
  7638. "IDGroup": 9004,
  7639. "timelineName": "BossSk4_timeline_TD",
  7640. "cd": 1.0,
  7641. "addcd": 0.0,
  7642. "SkillType": 1,
  7643. "level": 6,
  7644. "effectValue": [
  7645. 200.0
  7646. ],
  7647. "intensifierIndex": [
  7648. 1
  7649. ],
  7650. "PromoteLan": null
  7651. },
  7652. {
  7653. "ID": 90050,
  7654. "PieceID": null,
  7655. "power": 100.0,
  7656. "name": 711,
  7657. "dec": 721,
  7658. "attribute": 1,
  7659. "icon": "icon_s9005",
  7660. "scriptName": "S9005",
  7661. "IDGroup": 9005,
  7662. "timelineName": "BossSk4_timeline_TD",
  7663. "cd": 1.0,
  7664. "addcd": 0.0,
  7665. "SkillType": 1,
  7666. "level": 1,
  7667. "effectValue": [
  7668. 100.0
  7669. ],
  7670. "intensifierIndex": [
  7671. 1
  7672. ],
  7673. "PromoteLan": null
  7674. },
  7675. {
  7676. "ID": 90051,
  7677. "PieceID": null,
  7678. "power": 150.0,
  7679. "name": 711,
  7680. "dec": 721,
  7681. "attribute": 1,
  7682. "icon": "icon_s9005",
  7683. "scriptName": "S9005",
  7684. "IDGroup": 9005,
  7685. "timelineName": "BossSk4_timeline_TD",
  7686. "cd": 1.0,
  7687. "addcd": 0.0,
  7688. "SkillType": 1,
  7689. "level": 2,
  7690. "effectValue": [
  7691. 120.0
  7692. ],
  7693. "intensifierIndex": [
  7694. 1
  7695. ],
  7696. "PromoteLan": null
  7697. },
  7698. {
  7699. "ID": 90052,
  7700. "PieceID": null,
  7701. "power": 225.0,
  7702. "name": 711,
  7703. "dec": 721,
  7704. "attribute": 1,
  7705. "icon": "icon_s9005",
  7706. "scriptName": "S9005",
  7707. "IDGroup": 9005,
  7708. "timelineName": "BossSk4_timeline_TD",
  7709. "cd": 1.0,
  7710. "addcd": 0.0,
  7711. "SkillType": 1,
  7712. "level": 3,
  7713. "effectValue": [
  7714. 140.0
  7715. ],
  7716. "intensifierIndex": [
  7717. 1
  7718. ],
  7719. "PromoteLan": null
  7720. },
  7721. {
  7722. "ID": 90053,
  7723. "PieceID": null,
  7724. "power": 337.5,
  7725. "name": 711,
  7726. "dec": 721,
  7727. "attribute": 1,
  7728. "icon": "icon_s9005",
  7729. "scriptName": "S9005",
  7730. "IDGroup": 9005,
  7731. "timelineName": "BossSk4_timeline_TD",
  7732. "cd": 1.0,
  7733. "addcd": 0.0,
  7734. "SkillType": 1,
  7735. "level": 4,
  7736. "effectValue": [
  7737. 160.0
  7738. ],
  7739. "intensifierIndex": [
  7740. 1
  7741. ],
  7742. "PromoteLan": null
  7743. },
  7744. {
  7745. "ID": 90054,
  7746. "PieceID": null,
  7747. "power": 506.25,
  7748. "name": 711,
  7749. "dec": 721,
  7750. "attribute": 1,
  7751. "icon": "icon_s9005",
  7752. "scriptName": "S9005",
  7753. "IDGroup": 9005,
  7754. "timelineName": "BossSk4_timeline_TD",
  7755. "cd": 1.0,
  7756. "addcd": 0.0,
  7757. "SkillType": 1,
  7758. "level": 5,
  7759. "effectValue": [
  7760. 180.0
  7761. ],
  7762. "intensifierIndex": [
  7763. 1
  7764. ],
  7765. "PromoteLan": null
  7766. },
  7767. {
  7768. "ID": 90055,
  7769. "PieceID": null,
  7770. "power": 759.375,
  7771. "name": 711,
  7772. "dec": 721,
  7773. "attribute": 1,
  7774. "icon": "icon_s9005",
  7775. "scriptName": "S9005",
  7776. "IDGroup": 9005,
  7777. "timelineName": "BossSk4_timeline_TD",
  7778. "cd": 1.0,
  7779. "addcd": 0.0,
  7780. "SkillType": 1,
  7781. "level": 6,
  7782. "effectValue": [
  7783. 200.0
  7784. ],
  7785. "intensifierIndex": [
  7786. 1
  7787. ],
  7788. "PromoteLan": null
  7789. }
  7790. ]
  7791. }