SkillConfig.json 141 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097509850995100510151025103510451055106510751085109511051115112511351145115511651175118511951205121512251235124512551265127512851295130513151325133513451355136513751385139514051415142514351445145514651475148514951505151515251535154515551565157515851595160516151625163516451655166516751685169517051715172517351745175517651775178517951805181518251835184518551865187518851895190519151925193519451955196519751985199520052015202520352045205520652075208520952105211521252135214521552165217521852195220522152225223522452255226522752285229523052315232523352345235523652375238523952405241524252435244524552465247524852495250525152525253525452555256525752585259526052615262526352645265526652675268526952705271527252735274527552765277527852795280528152825283528452855286528752885289529052915292529352945295529652975298529953005301530253035304530553065307530853095310531153125313531453155316531753185319532053215322532353245325532653275328532953305331533253335334533553365337533853395340534153425343534453455346534753485349535053515352535353545355535653575358535953605361536253635364536553665367536853695370537153725373537453755376537753785379538053815382538353845385538653875388538953905391539253935394539553965397539853995400540154025403540454055406540754085409541054115412541354145415541654175418541954205421542254235424542554265427542854295430543154325433543454355436543754385439544054415442544354445445544654475448544954505451545254535454545554565457545854595460546154625463546454655466546754685469547054715472547354745475547654775478547954805481548254835484548554865487548854895490549154925493549454955496549754985499550055015502550355045505550655075508550955105511551255135514551555165517551855195520552155225523552455255526552755285529553055315532553355345535553655375538553955405541554255435544554555465547554855495550555155525553555455555556555755585559556055615562556355645565556655675568556955705571557255735574557555765577557855795580558155825583558455855586558755885589559055915592559355945595559655975598559956005601560256035604560556065607560856095610561156125613561456155616561756185619562056215622562356245625562656275628562956305631563256335634563556365637563856395640564156425643564456455646564756485649565056515652565356545655565656575658565956605661566256635664566556665667566856695670567156725673567456755676567756785679568056815682568356845685568656875688568956905691569256935694569556965697569856995700570157025703570457055706570757085709571057115712571357145715571657175718571957205721572257235724572557265727572857295730573157325733573457355736573757385739574057415742574357445745574657475748574957505751575257535754575557565757575857595760576157625763576457655766576757685769577057715772577357745775577657775778577957805781578257835784578557865787578857895790579157925793579457955796579757985799580058015802580358045805580658075808580958105811581258135814581558165817581858195820582158225823582458255826582758285829583058315832583358345835583658375838583958405841584258435844584558465847584858495850585158525853585458555856585758585859586058615862586358645865586658675868586958705871587258735874587558765877587858795880588158825883588458855886588758885889589058915892589358945895589658975898589959005901590259035904590559065907590859095910591159125913591459155916591759185919592059215922592359245925592659275928592959305931593259335934593559365937593859395940594159425943594459455946594759485949595059515952595359545955595659575958595959605961596259635964596559665967596859695970597159725973597459755976597759785979598059815982598359845985598659875988598959905991599259935994599559965997599859996000600160026003600460056006600760086009601060116012601360146015601660176018601960206021602260236024602560266027602860296030603160326033603460356036603760386039604060416042604360446045604660476048604960506051605260536054605560566057605860596060606160626063606460656066606760686069607060716072607360746075607660776078607960806081608260836084608560866087608860896090609160926093609460956096609760986099610061016102610361046105610661076108610961106111611261136114611561166117611861196120612161226123612461256126612761286129613061316132613361346135613661376138613961406141614261436144614561466147614861496150615161526153615461556156615761586159616061616162616361646165616661676168616961706171617261736174617561766177617861796180618161826183618461856186618761886189619061916192619361946195619661976198619962006201620262036204620562066207620862096210621162126213621462156216621762186219622062216222622362246225622662276228622962306231623262336234623562366237623862396240624162426243624462456246624762486249625062516252625362546255625662576258625962606261626262636264626562666267626862696270627162726273627462756276627762786279628062816282628362846285628662876288628962906291629262936294629562966297629862996300630163026303630463056306630763086309631063116312631363146315631663176318631963206321632263236324632563266327632863296330633163326333633463356336633763386339634063416342634363446345634663476348634963506351635263536354635563566357635863596360636163626363636463656366636763686369637063716372637363746375637663776378637963806381638263836384638563866387638863896390639163926393639463956396639763986399640064016402640364046405640664076408640964106411641264136414641564166417641864196420642164226423642464256426642764286429643064316432643364346435643664376438643964406441644264436444644564466447644864496450645164526453645464556456645764586459646064616462646364646465646664676468646964706471647264736474647564766477647864796480648164826483648464856486648764886489649064916492649364946495649664976498649965006501650265036504650565066507650865096510651165126513651465156516651765186519652065216522652365246525652665276528652965306531653265336534653565366537653865396540654165426543654465456546654765486549655065516552655365546555655665576558655965606561656265636564656565666567656865696570657165726573657465756576657765786579658065816582658365846585658665876588658965906591659265936594659565966597659865996600660166026603660466056606660766086609661066116612661366146615661666176618661966206621662266236624662566266627662866296630663166326633663466356636663766386639664066416642664366446645664666476648664966506651665266536654665566566657665866596660666166626663666466656666666766686669667066716672667366746675667666776678667966806681668266836684668566866687668866896690669166926693669466956696669766986699670067016702670367046705670667076708670967106711671267136714671567166717671867196720672167226723672467256726672767286729673067316732673367346735673667376738673967406741674267436744674567466747674867496750675167526753675467556756675767586759676067616762676367646765676667676768676967706771677267736774677567766777677867796780678167826783678467856786678767886789679067916792679367946795679667976798679968006801680268036804680568066807680868096810681168126813681468156816681768186819682068216822682368246825682668276828682968306831683268336834683568366837683868396840684168426843684468456846684768486849685068516852685368546855685668576858685968606861686268636864686568666867686868696870687168726873687468756876687768786879688068816882688368846885688668876888688968906891689268936894689568966897689868996900690169026903690469056906690769086909691069116912691369146915691669176918691969206921692269236924692569266927692869296930693169326933693469356936693769386939694069416942694369446945694669476948694969506951695269536954695569566957695869596960696169626963696469656966696769686969697069716972697369746975697669776978697969806981698269836984698569866987698869896990699169926993699469956996699769986999700070017002700370047005700670077008700970107011701270137014701570167017701870197020702170227023702470257026702770287029703070317032703370347035703670377038703970407041704270437044704570467047704870497050705170527053705470557056705770587059706070617062706370647065706670677068706970707071707270737074707570767077707870797080708170827083708470857086708770887089709070917092709370947095709670977098709971007101710271037104710571067107710871097110711171127113711471157116711771187119712071217122712371247125712671277128712971307131713271337134713571367137713871397140714171427143714471457146714771487149715071517152715371547155715671577158715971607161716271637164716571667167716871697170717171727173717471757176717771787179718071817182718371847185718671877188718971907191719271937194719571967197719871997200720172027203720472057206720772087209721072117212721372147215721672177218721972207221722272237224722572267227722872297230723172327233723472357236723772387239724072417242724372447245724672477248724972507251725272537254725572567257725872597260726172627263726472657266726772687269727072717272727372747275727672777278727972807281728272837284728572867287728872897290729172927293729472957296729772987299730073017302730373047305730673077308730973107311731273137314731573167317731873197320732173227323732473257326732773287329733073317332733373347335733673377338733973407341734273437344734573467347734873497350735173527353735473557356735773587359736073617362736373647365736673677368736973707371737273737374737573767377737873797380738173827383738473857386738773887389739073917392739373947395739673977398739974007401740274037404740574067407740874097410741174127413741474157416741774187419742074217422742374247425742674277428742974307431743274337434743574367437743874397440744174427443744474457446744774487449745074517452745374547455745674577458745974607461746274637464746574667467746874697470747174727473747474757476747774787479748074817482748374847485748674877488748974907491749274937494749574967497749874997500750175027503750475057506750775087509751075117512751375147515751675177518751975207521752275237524752575267527752875297530753175327533753475357536753775387539754075417542754375447545754675477548754975507551755275537554755575567557755875597560756175627563756475657566756775687569757075717572757375747575757675777578757975807581758275837584758575867587758875897590759175927593759475957596759775987599760076017602760376047605760676077608760976107611761276137614761576167617761876197620762176227623762476257626762776287629763076317632763376347635763676377638763976407641764276437644764576467647764876497650765176527653765476557656765776587659766076617662766376647665766676677668766976707671767276737674767576767677767876797680768176827683768476857686768776887689769076917692769376947695769676977698769977007701770277037704770577067707770877097710771177127713771477157716771777187719772077217722772377247725772677277728772977307731773277337734773577367737773877397740774177427743774477457746774777487749775077517752775377547755775677577758775977607761776277637764776577667767776877697770777177727773777477757776777777787779778077817782778377847785778677877788778977907791779277937794779577967797779877997800780178027803780478057806780778087809781078117812781378147815781678177818781978207821782278237824782578267827782878297830783178327833783478357836783778387839784078417842784378447845784678477848784978507851785278537854785578567857785878597860786178627863786478657866786778687869787078717872787378747875787678777878787978807881788278837884788578867887788878897890789178927893
  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. },
  87. {
  88. "ID": 11013,
  89. "PieceID": 13001,
  90. "power": 337.5,
  91. "name": 319,
  92. "dec": 742,
  93. "attribute": 1,
  94. "icon": "icon_s1101",
  95. "scriptName": "S1101",
  96. "IDGroup": 1101,
  97. "timelineName": "1101_timeline_TD",
  98. "cd": 1.0,
  99. "addcd": 1.0,
  100. "SkillType": 1,
  101. "level": 4,
  102. "effectValue": [
  103. 9.0,
  104. 40.0,
  105. 20.0,
  106. 20.0
  107. ],
  108. "intensifierIndex": [
  109. 2
  110. ],
  111. "addPropertyType": [
  112. 101
  113. ],
  114. "addPropertyValue": [
  115. 10.0
  116. ],
  117. "PromoteLan": 1102,
  118. "PromoteLanPara": [
  119. 1.0
  120. ]
  121. },
  122. {
  123. "ID": 11014,
  124. "PieceID": 13001,
  125. "power": 506.25,
  126. "name": 320,
  127. "dec": 743,
  128. "attribute": 1,
  129. "icon": "icon_s1101",
  130. "scriptName": "S1101",
  131. "IDGroup": 1101,
  132. "timelineName": "1101_timeline_TD",
  133. "cd": 1.0,
  134. "addcd": 1.0,
  135. "SkillType": 1,
  136. "level": 5,
  137. "effectValue": [
  138. 9.0,
  139. 40.0,
  140. 20.0,
  141. 20.0
  142. ],
  143. "intensifierIndex": [
  144. 2
  145. ],
  146. "addPropertyType": [
  147. 101
  148. ],
  149. "addPropertyValue": [
  150. 20.0
  151. ],
  152. "PromoteLan": 1103
  153. },
  154. {
  155. "ID": 11015,
  156. "PieceID": 13001,
  157. "power": 759.375,
  158. "name": 321,
  159. "dec": 744,
  160. "attribute": 1,
  161. "icon": "icon_s1101",
  162. "scriptName": "S1101",
  163. "IDGroup": 1101,
  164. "timelineName": "1101_timeline_TD",
  165. "cd": 1.0,
  166. "addcd": 1.0,
  167. "SkillType": 1,
  168. "level": 6,
  169. "effectValue": [
  170. 9.0,
  171. 48.0,
  172. 20.0,
  173. 20.0
  174. ],
  175. "intensifierIndex": [
  176. 2
  177. ],
  178. "addPropertyType": [
  179. 101
  180. ],
  181. "addPropertyValue": [
  182. 20.0
  183. ],
  184. "PromoteLan": 1104
  185. },
  186. {
  187. "ID": 11020,
  188. "PieceID": 13002,
  189. "power": 100.0,
  190. "name": 322,
  191. "dec": 745,
  192. "attribute": 1,
  193. "icon": "icon_s1102",
  194. "scriptName": "S1102",
  195. "IDGroup": 1102,
  196. "timelineName": "1102_timeline_TD",
  197. "cd": 1.0,
  198. "addcd": 1.0,
  199. "SkillType": 1,
  200. "level": 1,
  201. "effectValue": [
  202. 6.0,
  203. 50.0
  204. ],
  205. "intensifierIndex": [
  206. 2
  207. ],
  208. "PromoteLan": -1
  209. },
  210. {
  211. "ID": 11021,
  212. "PieceID": 13002,
  213. "power": 150.0,
  214. "name": 323,
  215. "dec": 746,
  216. "attribute": 1,
  217. "icon": "icon_s1102",
  218. "scriptName": "S1102",
  219. "IDGroup": 1102,
  220. "timelineName": "1102_timeline_TD",
  221. "cd": 1.0,
  222. "addcd": 1.0,
  223. "SkillType": 1,
  224. "level": 2,
  225. "effectValue": [
  226. 6.0,
  227. 50.0,
  228. 25.0
  229. ],
  230. "intensifierIndex": [
  231. 2
  232. ],
  233. "PromoteLan": 1105,
  234. "PromoteLanPara": [
  235. 2.0
  236. ]
  237. },
  238. {
  239. "ID": 11022,
  240. "PieceID": 13002,
  241. "power": 225.0,
  242. "name": 324,
  243. "dec": 747,
  244. "attribute": 1,
  245. "icon": "icon_s1102",
  246. "scriptName": "S1102",
  247. "IDGroup": 1102,
  248. "timelineName": "1102_timeline_TD",
  249. "cd": 1.0,
  250. "addcd": 1.0,
  251. "SkillType": 1,
  252. "level": 3,
  253. "effectValue": [
  254. 6.0,
  255. 50.0,
  256. 25.0
  257. ],
  258. "intensifierIndex": [
  259. 2
  260. ],
  261. "addPropertyType": [
  262. 102
  263. ],
  264. "addPropertyValue": [
  265. 10.0
  266. ],
  267. "PromoteLan": 1106
  268. },
  269. {
  270. "ID": 11023,
  271. "PieceID": 13002,
  272. "power": 337.5,
  273. "name": 325,
  274. "dec": 748,
  275. "attribute": 1,
  276. "icon": "icon_s1102",
  277. "scriptName": "S1102",
  278. "IDGroup": 1102,
  279. "timelineName": "1102_timeline_TD",
  280. "cd": 1.0,
  281. "addcd": 1.0,
  282. "SkillType": 1,
  283. "level": 4,
  284. "effectValue": [
  285. 6.0,
  286. 50.0,
  287. 25.0
  288. ],
  289. "intensifierIndex": [
  290. 2
  291. ],
  292. "addPropertyType": [
  293. 102
  294. ],
  295. "addPropertyValue": [
  296. 10.0
  297. ],
  298. "PromoteLan": 1107,
  299. "PromoteLanPara": [
  300. 1.0
  301. ]
  302. },
  303. {
  304. "ID": 11024,
  305. "PieceID": 13002,
  306. "power": 506.25,
  307. "name": 326,
  308. "dec": 749,
  309. "attribute": 1,
  310. "icon": "icon_s1102",
  311. "scriptName": "S1102",
  312. "IDGroup": 1102,
  313. "timelineName": "1102_timeline_TD",
  314. "cd": 1.0,
  315. "addcd": 1.0,
  316. "SkillType": 1,
  317. "level": 5,
  318. "effectValue": [
  319. 6.0,
  320. 50.0,
  321. 25.0
  322. ],
  323. "intensifierIndex": [
  324. 2
  325. ],
  326. "addPropertyType": [
  327. 102
  328. ],
  329. "addPropertyValue": [
  330. 20.0
  331. ],
  332. "PromoteLan": 1108
  333. },
  334. {
  335. "ID": 11025,
  336. "PieceID": 13002,
  337. "power": 759.375,
  338. "name": 327,
  339. "dec": 750,
  340. "attribute": 1,
  341. "icon": "icon_s1102",
  342. "scriptName": "S1102",
  343. "IDGroup": 1102,
  344. "timelineName": "1102_timeline_TD",
  345. "cd": 1.0,
  346. "addcd": 1.0,
  347. "SkillType": 1,
  348. "level": 6,
  349. "effectValue": [
  350. 6.0,
  351. 50.0,
  352. 25.0,
  353. 100.0,
  354. 30.0
  355. ],
  356. "intensifierIndex": [
  357. 2
  358. ],
  359. "addPropertyType": [
  360. 102
  361. ],
  362. "addPropertyValue": [
  363. 20.0
  364. ],
  365. "PromoteLan": 1109
  366. },
  367. {
  368. "ID": 11030,
  369. "PieceID": 13003,
  370. "power": 100.0,
  371. "name": 328,
  372. "dec": 751,
  373. "attribute": 1,
  374. "icon": "icon_s1103",
  375. "scriptName": "S1103",
  376. "IDGroup": 1103,
  377. "timelineName": "1103_timeline_TD",
  378. "cd": 1.0,
  379. "addcd": 1.0,
  380. "SkillType": 1,
  381. "level": 1,
  382. "effectValue": [
  383. 6.0,
  384. 40.0,
  385. 20.0
  386. ],
  387. "intensifierIndex": [
  388. 2
  389. ],
  390. "PromoteLan": -1
  391. },
  392. {
  393. "ID": 11031,
  394. "PieceID": 13003,
  395. "power": 150.0,
  396. "name": 329,
  397. "dec": 752,
  398. "attribute": 1,
  399. "icon": "icon_s1103",
  400. "scriptName": "S1103",
  401. "IDGroup": 1103,
  402. "timelineName": "1103_timeline_TD",
  403. "cd": 1.0,
  404. "addcd": 1.0,
  405. "SkillType": 1,
  406. "level": 2,
  407. "effectValue": [
  408. 6.0,
  409. 40.0,
  410. 20.0,
  411. 25.0
  412. ],
  413. "intensifierIndex": [
  414. 2
  415. ],
  416. "PromoteLan": 1110
  417. },
  418. {
  419. "ID": 11032,
  420. "PieceID": 13003,
  421. "power": 225.0,
  422. "name": 330,
  423. "dec": 753,
  424. "attribute": 1,
  425. "icon": "icon_s1103",
  426. "scriptName": "S1103",
  427. "IDGroup": 1103,
  428. "timelineName": "1103_timeline_TD",
  429. "cd": 1.0,
  430. "addcd": 1.0,
  431. "SkillType": 1,
  432. "level": 3,
  433. "effectValue": [
  434. 6.0,
  435. 40.0,
  436. 20.0,
  437. 25.0
  438. ],
  439. "intensifierIndex": [
  440. 2
  441. ],
  442. "addPropertyType": [
  443. 103
  444. ],
  445. "addPropertyValue": [
  446. 10.0
  447. ],
  448. "PromoteLan": 1111
  449. },
  450. {
  451. "ID": 11033,
  452. "PieceID": 13003,
  453. "power": 337.5,
  454. "name": 331,
  455. "dec": 754,
  456. "attribute": 1,
  457. "icon": "icon_s1103",
  458. "scriptName": "S1103",
  459. "IDGroup": 1103,
  460. "timelineName": "1103_timeline_TD",
  461. "cd": 1.0,
  462. "addcd": 1.0,
  463. "SkillType": 1,
  464. "level": 4,
  465. "effectValue": [
  466. 8.0,
  467. 40.0,
  468. 20.0,
  469. 25.0
  470. ],
  471. "intensifierIndex": [
  472. 2
  473. ],
  474. "addPropertyType": [
  475. 103
  476. ],
  477. "addPropertyValue": [
  478. 10.0
  479. ],
  480. "PromoteLan": 1112,
  481. "PromoteLanPara": [
  482. 2.0
  483. ]
  484. },
  485. {
  486. "ID": 11034,
  487. "PieceID": 13003,
  488. "power": 506.25,
  489. "name": 332,
  490. "dec": 755,
  491. "attribute": 1,
  492. "icon": "icon_s1103",
  493. "scriptName": "S1103",
  494. "IDGroup": 1103,
  495. "timelineName": "1103_timeline_TD",
  496. "cd": 1.0,
  497. "addcd": 1.0,
  498. "SkillType": 1,
  499. "level": 5,
  500. "effectValue": [
  501. 8.0,
  502. 40.0,
  503. 20.0,
  504. 25.0
  505. ],
  506. "intensifierIndex": [
  507. 2
  508. ],
  509. "addPropertyType": [
  510. 103
  511. ],
  512. "addPropertyValue": [
  513. 20.0
  514. ],
  515. "PromoteLan": 1113
  516. },
  517. {
  518. "ID": 11035,
  519. "PieceID": 13003,
  520. "power": 759.375,
  521. "name": 333,
  522. "dec": 756,
  523. "attribute": 1,
  524. "icon": "icon_s1103",
  525. "scriptName": "S1103",
  526. "IDGroup": 1103,
  527. "timelineName": "1103_timeline_TD",
  528. "cd": 1.0,
  529. "addcd": 1.0,
  530. "SkillType": 1,
  531. "level": 6,
  532. "effectValue": [
  533. 8.0,
  534. 40.0,
  535. 20.0,
  536. 25.0,
  537. 20.0
  538. ],
  539. "intensifierIndex": [
  540. 2
  541. ],
  542. "addPropertyType": [
  543. 103
  544. ],
  545. "addPropertyValue": [
  546. 20.0
  547. ],
  548. "PromoteLan": 1114
  549. },
  550. {
  551. "ID": 11040,
  552. "PieceID": 13004,
  553. "power": 100.0,
  554. "name": 334,
  555. "dec": 757,
  556. "attribute": 1,
  557. "icon": "icon_s1104",
  558. "scriptName": "S1104",
  559. "IDGroup": 1104,
  560. "timelineName": "1104_timeline_TD",
  561. "cd": 1.0,
  562. "addcd": 1.0,
  563. "SkillType": 1,
  564. "level": 1,
  565. "effectValue": [
  566. 6.0,
  567. 50.0
  568. ],
  569. "intensifierIndex": [
  570. 2
  571. ],
  572. "PromoteLan": -1
  573. },
  574. {
  575. "ID": 11041,
  576. "PieceID": 13004,
  577. "power": 150.0,
  578. "name": 335,
  579. "dec": 758,
  580. "attribute": 1,
  581. "icon": "icon_s1104",
  582. "scriptName": "S1104",
  583. "IDGroup": 1104,
  584. "timelineName": "1104_timeline_TD",
  585. "cd": 1.0,
  586. "addcd": 1.0,
  587. "SkillType": 1,
  588. "level": 2,
  589. "effectValue": [
  590. 6.0,
  591. 50.0
  592. ],
  593. "intensifierIndex": [
  594. 2
  595. ],
  596. "addPropertyType": [
  597. 101,
  598. 102,
  599. 103
  600. ],
  601. "addPropertyValue": [
  602. 2.0,
  603. 2.0,
  604. 2.0
  605. ],
  606. "PromoteLan": 1115
  607. },
  608. {
  609. "ID": 11042,
  610. "PieceID": 13004,
  611. "power": 225.0,
  612. "name": 336,
  613. "dec": 759,
  614. "attribute": 1,
  615. "icon": "icon_s1104",
  616. "scriptName": "S1104",
  617. "IDGroup": 1104,
  618. "timelineName": "1104_timeline_TD",
  619. "cd": 1.0,
  620. "addcd": 1.0,
  621. "SkillType": 1,
  622. "level": 3,
  623. "effectValue": [
  624. 8.0,
  625. 50.0
  626. ],
  627. "intensifierIndex": [
  628. 2
  629. ],
  630. "addPropertyType": [
  631. 101,
  632. 102,
  633. 103
  634. ],
  635. "addPropertyValue": [
  636. 2.0,
  637. 2.0,
  638. 2.0
  639. ],
  640. "PromoteLan": 1116,
  641. "PromoteLanPara": [
  642. 2.0
  643. ]
  644. },
  645. {
  646. "ID": 11043,
  647. "PieceID": 13004,
  648. "power": 337.5,
  649. "name": 337,
  650. "dec": 760,
  651. "attribute": 1,
  652. "icon": "icon_s1104",
  653. "scriptName": "S1104",
  654. "IDGroup": 1104,
  655. "timelineName": "1104_timeline_TD",
  656. "cd": 1.0,
  657. "addcd": 1.0,
  658. "SkillType": 1,
  659. "level": 4,
  660. "effectValue": [
  661. 8.0,
  662. 50.0
  663. ],
  664. "intensifierIndex": [
  665. 2
  666. ],
  667. "addPropertyType": [
  668. 101,
  669. 102,
  670. 103
  671. ],
  672. "addPropertyValue": [
  673. 4.0,
  674. 4.0,
  675. 4.0
  676. ],
  677. "PromoteLan": 1117
  678. },
  679. {
  680. "ID": 11044,
  681. "PieceID": 13004,
  682. "power": 506.25,
  683. "name": 338,
  684. "dec": 761,
  685. "attribute": 1,
  686. "icon": "icon_s1104",
  687. "scriptName": "S1104",
  688. "IDGroup": 1104,
  689. "timelineName": "1104_timeline_TD",
  690. "cd": 1.0,
  691. "addcd": 1.0,
  692. "SkillType": 1,
  693. "level": 5,
  694. "effectValue": [
  695. 10.0,
  696. 50.0
  697. ],
  698. "intensifierIndex": [
  699. 2
  700. ],
  701. "addPropertyType": [
  702. 101,
  703. 102,
  704. 103
  705. ],
  706. "addPropertyValue": [
  707. 4.0,
  708. 4.0,
  709. 4.0
  710. ],
  711. "PromoteLan": 1118,
  712. "PromoteLanPara": [
  713. 2.0
  714. ]
  715. },
  716. {
  717. "ID": 11045,
  718. "PieceID": 13004,
  719. "power": 759.375,
  720. "name": 339,
  721. "dec": 762,
  722. "attribute": 1,
  723. "icon": "icon_s1104",
  724. "scriptName": "S1104",
  725. "IDGroup": 1104,
  726. "timelineName": "1104_timeline_TD",
  727. "cd": 1.0,
  728. "addcd": 1.0,
  729. "SkillType": 1,
  730. "level": 6,
  731. "effectValue": [
  732. 10.0,
  733. 50.0
  734. ],
  735. "intensifierIndex": [
  736. 2
  737. ],
  738. "addPropertyType": [
  739. 101,
  740. 102,
  741. 103
  742. ],
  743. "addPropertyValue": [
  744. 6.0,
  745. 6.0,
  746. 6.0
  747. ],
  748. "PromoteLan": 1119
  749. },
  750. {
  751. "ID": 11050,
  752. "PieceID": 13005,
  753. "power": 100.0,
  754. "name": 340,
  755. "dec": 763,
  756. "attribute": 1,
  757. "icon": "icon_s1105",
  758. "scriptName": "S1105",
  759. "IDGroup": 1105,
  760. "timelineName": "1105_timeline_TD",
  761. "cd": 1.0,
  762. "addcd": 1.0,
  763. "SkillType": 1,
  764. "level": 1,
  765. "effectValue": [
  766. 3.0,
  767. 80.0,
  768. 40.0
  769. ],
  770. "intensifierIndex": [
  771. 2
  772. ],
  773. "PromoteLan": -1
  774. },
  775. {
  776. "ID": 11051,
  777. "PieceID": 13005,
  778. "power": 150.0,
  779. "name": 341,
  780. "dec": 764,
  781. "attribute": 1,
  782. "icon": "icon_s1105",
  783. "scriptName": "S1105",
  784. "IDGroup": 1105,
  785. "timelineName": "1105_timeline_TD",
  786. "cd": 1.0,
  787. "addcd": 1.0,
  788. "SkillType": 1,
  789. "level": 2,
  790. "effectValue": [
  791. 3.0,
  792. 80.0,
  793. 40.0
  794. ],
  795. "intensifierIndex": [
  796. 2
  797. ],
  798. "addPropertyType": [
  799. 101,
  800. 102,
  801. 103
  802. ],
  803. "addPropertyValue": [
  804. 2.0,
  805. 2.0,
  806. 2.0
  807. ],
  808. "PromoteLan": 1120
  809. },
  810. {
  811. "ID": 11052,
  812. "PieceID": 13005,
  813. "power": 225.0,
  814. "name": 342,
  815. "dec": 765,
  816. "attribute": 1,
  817. "icon": "icon_s1105",
  818. "scriptName": "S1105",
  819. "IDGroup": 1105,
  820. "timelineName": "1105_timeline_TD",
  821. "cd": 1.0,
  822. "addcd": 1.0,
  823. "SkillType": 1,
  824. "level": 3,
  825. "effectValue": [
  826. 4.0,
  827. 80.0,
  828. 40.0
  829. ],
  830. "intensifierIndex": [
  831. 2
  832. ],
  833. "addPropertyType": [
  834. 101,
  835. 102,
  836. 103
  837. ],
  838. "addPropertyValue": [
  839. 2.0,
  840. 2.0,
  841. 2.0
  842. ],
  843. "PromoteLan": 1121,
  844. "PromoteLanPara": [
  845. 1.0
  846. ]
  847. },
  848. {
  849. "ID": 11053,
  850. "PieceID": 13005,
  851. "power": 337.5,
  852. "name": 343,
  853. "dec": 766,
  854. "attribute": 1,
  855. "icon": "icon_s1105",
  856. "scriptName": "S1105",
  857. "IDGroup": 1105,
  858. "timelineName": "1105_timeline_TD",
  859. "cd": 1.0,
  860. "addcd": 1.0,
  861. "SkillType": 1,
  862. "level": 4,
  863. "effectValue": [
  864. 4.0,
  865. 80.0,
  866. 40.0
  867. ],
  868. "intensifierIndex": [
  869. 2
  870. ],
  871. "addPropertyType": [
  872. 101,
  873. 102,
  874. 103
  875. ],
  876. "addPropertyValue": [
  877. 4.0,
  878. 4.0,
  879. 4.0
  880. ],
  881. "PromoteLan": 1122
  882. },
  883. {
  884. "ID": 11054,
  885. "PieceID": 13005,
  886. "power": 506.25,
  887. "name": 344,
  888. "dec": 767,
  889. "attribute": 1,
  890. "icon": "icon_s1105",
  891. "scriptName": "S1105",
  892. "IDGroup": 1105,
  893. "timelineName": "1105_timeline_TD",
  894. "cd": 1.0,
  895. "addcd": 1.0,
  896. "SkillType": 1,
  897. "level": 5,
  898. "effectValue": [
  899. 5.0,
  900. 80.0,
  901. 40.0
  902. ],
  903. "intensifierIndex": [
  904. 2
  905. ],
  906. "addPropertyType": [
  907. 101,
  908. 102,
  909. 103
  910. ],
  911. "addPropertyValue": [
  912. 4.0,
  913. 4.0,
  914. 4.0
  915. ],
  916. "PromoteLan": 1123,
  917. "PromoteLanPara": [
  918. 1.0
  919. ]
  920. },
  921. {
  922. "ID": 11055,
  923. "PieceID": 13005,
  924. "power": 759.375,
  925. "name": 345,
  926. "dec": 768,
  927. "attribute": 1,
  928. "icon": "icon_s1105",
  929. "scriptName": "S1105",
  930. "IDGroup": 1105,
  931. "timelineName": "1105_timeline_TD",
  932. "cd": 1.0,
  933. "addcd": 1.0,
  934. "SkillType": 1,
  935. "level": 6,
  936. "effectValue": [
  937. 5.0,
  938. 80.0,
  939. 40.0
  940. ],
  941. "intensifierIndex": [
  942. 2
  943. ],
  944. "addPropertyType": [
  945. 101,
  946. 102,
  947. 103
  948. ],
  949. "addPropertyValue": [
  950. 6.0,
  951. 6.0,
  952. 6.0
  953. ],
  954. "PromoteLan": 1124
  955. },
  956. {
  957. "ID": 12010,
  958. "PieceID": 13006,
  959. "power": 100.0,
  960. "name": 346,
  961. "dec": 769,
  962. "attribute": 2,
  963. "icon": "icon_s1201",
  964. "scriptName": "S1201",
  965. "IDGroup": 1201,
  966. "timelineName": "1201_timeline_TD",
  967. "cd": 1.0,
  968. "addcd": 1.0,
  969. "SkillType": 1,
  970. "level": 1,
  971. "effectValue": [
  972. 6.0,
  973. 40.0,
  974. 20.0
  975. ],
  976. "intensifierIndex": [
  977. 2
  978. ],
  979. "PromoteLan": -1
  980. },
  981. {
  982. "ID": 12011,
  983. "PieceID": 13006,
  984. "power": 150.0,
  985. "name": 347,
  986. "dec": 770,
  987. "attribute": 2,
  988. "icon": "icon_s1201",
  989. "scriptName": "S1201",
  990. "IDGroup": 1201,
  991. "timelineName": "1201_timeline_TD",
  992. "cd": 1.0,
  993. "addcd": 1.0,
  994. "SkillType": 1,
  995. "level": 2,
  996. "effectValue": [
  997. 6.0,
  998. 40.0,
  999. 20.0
  1000. ],
  1001. "intensifierIndex": [
  1002. 2
  1003. ],
  1004. "PromoteLan": 1125,
  1005. "PromoteLanPara": [
  1006. 1.0
  1007. ]
  1008. },
  1009. {
  1010. "ID": 12012,
  1011. "PieceID": 13006,
  1012. "power": 225.0,
  1013. "name": 348,
  1014. "dec": 771,
  1015. "attribute": 2,
  1016. "icon": "icon_s1201",
  1017. "scriptName": "S1201",
  1018. "IDGroup": 1201,
  1019. "timelineName": "1201_timeline_TD",
  1020. "cd": 1.0,
  1021. "addcd": 1.0,
  1022. "SkillType": 1,
  1023. "level": 3,
  1024. "effectValue": [
  1025. 9.0,
  1026. 40.0,
  1027. 20.0
  1028. ],
  1029. "intensifierIndex": [
  1030. 2
  1031. ],
  1032. "addPropertyType": [
  1033. 101
  1034. ],
  1035. "addPropertyValue": [
  1036. 10.0
  1037. ],
  1038. "PromoteLan": 1126
  1039. },
  1040. {
  1041. "ID": 12013,
  1042. "PieceID": 13006,
  1043. "power": 337.5,
  1044. "name": 349,
  1045. "dec": 772,
  1046. "attribute": 2,
  1047. "icon": "icon_s1201",
  1048. "scriptName": "S1201",
  1049. "IDGroup": 1201,
  1050. "timelineName": "1201_timeline_TD",
  1051. "cd": 1.0,
  1052. "addcd": 1.0,
  1053. "SkillType": 1,
  1054. "level": 4,
  1055. "effectValue": [
  1056. 9.0,
  1057. 40.0,
  1058. 20.0
  1059. ],
  1060. "intensifierIndex": [
  1061. 2
  1062. ],
  1063. "addPropertyType": [
  1064. 101
  1065. ],
  1066. "addPropertyValue": [
  1067. 10.0
  1068. ],
  1069. "PromoteLan": 1127,
  1070. "PromoteLanPara": [
  1071. 1.0
  1072. ]
  1073. },
  1074. {
  1075. "ID": 12014,
  1076. "PieceID": 13006,
  1077. "power": 506.25,
  1078. "name": 350,
  1079. "dec": 773,
  1080. "attribute": 2,
  1081. "icon": "icon_s1201",
  1082. "scriptName": "S1201",
  1083. "IDGroup": 1201,
  1084. "timelineName": "1201_timeline_TD",
  1085. "cd": 1.0,
  1086. "addcd": 1.0,
  1087. "SkillType": 1,
  1088. "level": 5,
  1089. "effectValue": [
  1090. 12.0,
  1091. 40.0,
  1092. 20.0
  1093. ],
  1094. "intensifierIndex": [
  1095. 2
  1096. ],
  1097. "addPropertyType": [
  1098. 101
  1099. ],
  1100. "addPropertyValue": [
  1101. 20.0
  1102. ],
  1103. "PromoteLan": 1128
  1104. },
  1105. {
  1106. "ID": 12015,
  1107. "PieceID": 13006,
  1108. "power": 759.375,
  1109. "name": 351,
  1110. "dec": 774,
  1111. "attribute": 2,
  1112. "icon": "icon_s1201",
  1113. "scriptName": "S1201",
  1114. "IDGroup": 1201,
  1115. "timelineName": "1201_timeline_TD",
  1116. "cd": 1.0,
  1117. "addcd": 1.0,
  1118. "SkillType": 1,
  1119. "level": 6,
  1120. "effectValue": [
  1121. 12.0,
  1122. 40.0,
  1123. 20.0
  1124. ],
  1125. "intensifierIndex": [
  1126. 2
  1127. ],
  1128. "addPropertyType": [
  1129. 101
  1130. ],
  1131. "addPropertyValue": [
  1132. 20.0
  1133. ],
  1134. "PromoteLan": 1129,
  1135. "PromoteLanPara": [
  1136. 1.0
  1137. ]
  1138. },
  1139. {
  1140. "ID": 12020,
  1141. "PieceID": 13007,
  1142. "power": 100.0,
  1143. "name": 352,
  1144. "dec": 775,
  1145. "attribute": 2,
  1146. "icon": "icon_s1202",
  1147. "scriptName": "S1202",
  1148. "IDGroup": 1202,
  1149. "timelineName": "1202_timeline_TD",
  1150. "cd": 1.0,
  1151. "addcd": 1.0,
  1152. "SkillType": 1,
  1153. "level": 1,
  1154. "effectValue": [
  1155. 3.0,
  1156. 80.0,
  1157. 40.0
  1158. ],
  1159. "intensifierIndex": [
  1160. 2
  1161. ],
  1162. "PromoteLan": -1
  1163. },
  1164. {
  1165. "ID": 12021,
  1166. "PieceID": 13007,
  1167. "power": 150.0,
  1168. "name": 353,
  1169. "dec": 776,
  1170. "attribute": 2,
  1171. "icon": "icon_s1202",
  1172. "scriptName": "S1202",
  1173. "IDGroup": 1202,
  1174. "timelineName": "1202_timeline_TD",
  1175. "cd": 1.0,
  1176. "addcd": 1.0,
  1177. "SkillType": 1,
  1178. "level": 2,
  1179. "effectValue": [
  1180. 4.0,
  1181. 80.0,
  1182. 40.0
  1183. ],
  1184. "intensifierIndex": [
  1185. 2
  1186. ],
  1187. "PromoteLan": 1130,
  1188. "PromoteLanPara": [
  1189. 1.0
  1190. ]
  1191. },
  1192. {
  1193. "ID": 12022,
  1194. "PieceID": 13007,
  1195. "power": 225.0,
  1196. "name": 354,
  1197. "dec": 777,
  1198. "attribute": 2,
  1199. "icon": "icon_s1202",
  1200. "scriptName": "S1202",
  1201. "IDGroup": 1202,
  1202. "timelineName": "1202_timeline_TD",
  1203. "cd": 1.0,
  1204. "addcd": 1.0,
  1205. "SkillType": 1,
  1206. "level": 3,
  1207. "effectValue": [
  1208. 4.0,
  1209. 80.0,
  1210. 40.0
  1211. ],
  1212. "intensifierIndex": [
  1213. 2
  1214. ],
  1215. "addPropertyType": [
  1216. 103
  1217. ],
  1218. "addPropertyValue": [
  1219. 10.0
  1220. ],
  1221. "PromoteLan": 1131
  1222. },
  1223. {
  1224. "ID": 12023,
  1225. "PieceID": 13007,
  1226. "power": 337.5,
  1227. "name": 355,
  1228. "dec": 778,
  1229. "attribute": 2,
  1230. "icon": "icon_s1202",
  1231. "scriptName": "S1202",
  1232. "IDGroup": 1202,
  1233. "timelineName": "1202_timeline_TD",
  1234. "cd": 1.0,
  1235. "addcd": 1.0,
  1236. "SkillType": 1,
  1237. "level": 4,
  1238. "effectValue": [
  1239. 5.0,
  1240. 80.0,
  1241. 40.0
  1242. ],
  1243. "intensifierIndex": [
  1244. 2
  1245. ],
  1246. "addPropertyType": [
  1247. 103
  1248. ],
  1249. "addPropertyValue": [
  1250. 10.0
  1251. ],
  1252. "PromoteLan": 1132,
  1253. "PromoteLanPara": [
  1254. 1.0
  1255. ]
  1256. },
  1257. {
  1258. "ID": 12024,
  1259. "PieceID": 13007,
  1260. "power": 506.25,
  1261. "name": 356,
  1262. "dec": 779,
  1263. "attribute": 2,
  1264. "icon": "icon_s1202",
  1265. "scriptName": "S1202",
  1266. "IDGroup": 1202,
  1267. "timelineName": "1202_timeline_TD",
  1268. "cd": 1.0,
  1269. "addcd": 1.0,
  1270. "SkillType": 1,
  1271. "level": 5,
  1272. "effectValue": [
  1273. 5.0,
  1274. 80.0,
  1275. 40.0
  1276. ],
  1277. "intensifierIndex": [
  1278. 2
  1279. ],
  1280. "addPropertyType": [
  1281. 103
  1282. ],
  1283. "addPropertyValue": [
  1284. 20.0
  1285. ],
  1286. "PromoteLan": 1133
  1287. },
  1288. {
  1289. "ID": 12025,
  1290. "PieceID": 13007,
  1291. "power": 759.375,
  1292. "name": 357,
  1293. "dec": 780,
  1294. "attribute": 2,
  1295. "icon": "icon_s1202",
  1296. "scriptName": "S1202",
  1297. "IDGroup": 1202,
  1298. "timelineName": "1202_timeline_TD",
  1299. "cd": 1.0,
  1300. "addcd": 1.0,
  1301. "SkillType": 1,
  1302. "level": 6,
  1303. "effectValue": [
  1304. 6.0,
  1305. 80.0,
  1306. 40.0
  1307. ],
  1308. "intensifierIndex": [
  1309. 2
  1310. ],
  1311. "addPropertyType": [
  1312. 103
  1313. ],
  1314. "addPropertyValue": [
  1315. 20.0
  1316. ],
  1317. "PromoteLan": 1134,
  1318. "PromoteLanPara": [
  1319. 1.0
  1320. ]
  1321. },
  1322. {
  1323. "ID": 12040,
  1324. "PieceID": 13009,
  1325. "power": 100.0,
  1326. "name": 358,
  1327. "dec": 781,
  1328. "attribute": 2,
  1329. "icon": "icon_s1204",
  1330. "scriptName": "S1204",
  1331. "IDGroup": 1204,
  1332. "timelineName": "1204_timeline_TD",
  1333. "cd": 1.0,
  1334. "addcd": 1.0,
  1335. "SkillType": 1,
  1336. "level": 1,
  1337. "effectValue": [
  1338. 3.0,
  1339. 100.0
  1340. ],
  1341. "intensifierIndex": [
  1342. 2
  1343. ],
  1344. "PromoteLan": -1
  1345. },
  1346. {
  1347. "ID": 12041,
  1348. "PieceID": 13009,
  1349. "power": 150.0,
  1350. "name": 359,
  1351. "dec": 782,
  1352. "attribute": 2,
  1353. "icon": "icon_s1204",
  1354. "scriptName": "S1204",
  1355. "IDGroup": 1204,
  1356. "timelineName": "1204_timeline_TD",
  1357. "cd": 1.0,
  1358. "addcd": 1.0,
  1359. "SkillType": 1,
  1360. "level": 2,
  1361. "effectValue": [
  1362. 3.0,
  1363. 100.0
  1364. ],
  1365. "intensifierIndex": [
  1366. 2
  1367. ],
  1368. "addPropertyType": [
  1369. 101,
  1370. 102,
  1371. 103
  1372. ],
  1373. "addPropertyValue": [
  1374. 2.0,
  1375. 2.0,
  1376. 2.0
  1377. ],
  1378. "PromoteLan": 1140
  1379. },
  1380. {
  1381. "ID": 12042,
  1382. "PieceID": 13009,
  1383. "power": 225.0,
  1384. "name": 360,
  1385. "dec": 783,
  1386. "attribute": 2,
  1387. "icon": "icon_s1204",
  1388. "scriptName": "S1204",
  1389. "IDGroup": 1204,
  1390. "timelineName": "1204_timeline_TD",
  1391. "cd": 1.0,
  1392. "addcd": 1.0,
  1393. "SkillType": 1,
  1394. "level": 3,
  1395. "effectValue": [
  1396. 4.0,
  1397. 100.0
  1398. ],
  1399. "intensifierIndex": [
  1400. 2
  1401. ],
  1402. "addPropertyType": [
  1403. 101,
  1404. 102,
  1405. 103
  1406. ],
  1407. "addPropertyValue": [
  1408. 2.0,
  1409. 2.0,
  1410. 2.0
  1411. ],
  1412. "PromoteLan": 1141,
  1413. "PromoteLanPara": [
  1414. 1.0
  1415. ]
  1416. },
  1417. {
  1418. "ID": 12043,
  1419. "PieceID": 13009,
  1420. "power": 337.5,
  1421. "name": 361,
  1422. "dec": 784,
  1423. "attribute": 2,
  1424. "icon": "icon_s1204",
  1425. "scriptName": "S1204",
  1426. "IDGroup": 1204,
  1427. "timelineName": "1204_timeline_TD",
  1428. "cd": 1.0,
  1429. "addcd": 1.0,
  1430. "SkillType": 1,
  1431. "level": 4,
  1432. "effectValue": [
  1433. 4.0,
  1434. 100.0
  1435. ],
  1436. "intensifierIndex": [
  1437. 2
  1438. ],
  1439. "addPropertyType": [
  1440. 101,
  1441. 102,
  1442. 103
  1443. ],
  1444. "addPropertyValue": [
  1445. 4.0,
  1446. 4.0,
  1447. 4.0
  1448. ],
  1449. "PromoteLan": 1142
  1450. },
  1451. {
  1452. "ID": 12044,
  1453. "PieceID": 13009,
  1454. "power": 506.25,
  1455. "name": 362,
  1456. "dec": 785,
  1457. "attribute": 2,
  1458. "icon": "icon_s1204",
  1459. "scriptName": "S1204",
  1460. "IDGroup": 1204,
  1461. "timelineName": "1204_timeline_TD",
  1462. "cd": 1.0,
  1463. "addcd": 1.0,
  1464. "SkillType": 1,
  1465. "level": 5,
  1466. "effectValue": [
  1467. 5.0,
  1468. 100.0
  1469. ],
  1470. "intensifierIndex": [
  1471. 2
  1472. ],
  1473. "addPropertyType": [
  1474. 101,
  1475. 102,
  1476. 103
  1477. ],
  1478. "addPropertyValue": [
  1479. 4.0,
  1480. 4.0,
  1481. 4.0
  1482. ],
  1483. "PromoteLan": 1143,
  1484. "PromoteLanPara": [
  1485. 1.0
  1486. ]
  1487. },
  1488. {
  1489. "ID": 12045,
  1490. "PieceID": 13009,
  1491. "power": 759.375,
  1492. "name": 363,
  1493. "dec": 786,
  1494. "attribute": 2,
  1495. "icon": "icon_s1204",
  1496. "scriptName": "S1204",
  1497. "IDGroup": 1204,
  1498. "timelineName": "1204_timeline_TD",
  1499. "cd": 1.0,
  1500. "addcd": 1.0,
  1501. "SkillType": 1,
  1502. "level": 6,
  1503. "effectValue": [
  1504. 5.0,
  1505. 100.0
  1506. ],
  1507. "intensifierIndex": [
  1508. 2
  1509. ],
  1510. "addPropertyType": [
  1511. 101,
  1512. 102,
  1513. 103
  1514. ],
  1515. "addPropertyValue": [
  1516. 6.0,
  1517. 6.0,
  1518. 6.0
  1519. ],
  1520. "PromoteLan": 1144
  1521. },
  1522. {
  1523. "ID": 12050,
  1524. "PieceID": 13010,
  1525. "power": 100.0,
  1526. "name": 364,
  1527. "dec": 787,
  1528. "attribute": 2,
  1529. "icon": "icon_s1205",
  1530. "scriptName": "S1205",
  1531. "IDGroup": 1205,
  1532. "timelineName": "1205_timeline_TD",
  1533. "cd": 1.0,
  1534. "addcd": 1.0,
  1535. "SkillType": 1,
  1536. "level": 1,
  1537. "effectValue": [
  1538. 6.0,
  1539. 50.0
  1540. ],
  1541. "intensifierIndex": [
  1542. 2
  1543. ],
  1544. "PromoteLan": -1
  1545. },
  1546. {
  1547. "ID": 12051,
  1548. "PieceID": 13010,
  1549. "power": 150.0,
  1550. "name": 365,
  1551. "dec": 788,
  1552. "attribute": 2,
  1553. "icon": "icon_s1205",
  1554. "scriptName": "S1205",
  1555. "IDGroup": 1205,
  1556. "timelineName": "1205_timeline_TD",
  1557. "cd": 1.0,
  1558. "addcd": 1.0,
  1559. "SkillType": 1,
  1560. "level": 2,
  1561. "effectValue": [
  1562. 6.0,
  1563. 50.0
  1564. ],
  1565. "intensifierIndex": [
  1566. 2
  1567. ],
  1568. "addPropertyType": [
  1569. 101,
  1570. 102,
  1571. 103
  1572. ],
  1573. "addPropertyValue": [
  1574. 2.0,
  1575. 2.0,
  1576. 2.0
  1577. ],
  1578. "PromoteLan": 1145
  1579. },
  1580. {
  1581. "ID": 12052,
  1582. "PieceID": 13010,
  1583. "power": 225.0,
  1584. "name": 366,
  1585. "dec": 789,
  1586. "attribute": 2,
  1587. "icon": "icon_s1205",
  1588. "scriptName": "S1205",
  1589. "IDGroup": 1205,
  1590. "timelineName": "1205_timeline_TD",
  1591. "cd": 1.0,
  1592. "addcd": 1.0,
  1593. "SkillType": 1,
  1594. "level": 3,
  1595. "effectValue": [
  1596. 8.0,
  1597. 50.0
  1598. ],
  1599. "intensifierIndex": [
  1600. 2
  1601. ],
  1602. "addPropertyType": [
  1603. 101,
  1604. 102,
  1605. 103
  1606. ],
  1607. "addPropertyValue": [
  1608. 2.0,
  1609. 2.0,
  1610. 2.0
  1611. ],
  1612. "PromoteLan": 1146,
  1613. "PromoteLanPara": [
  1614. 2.0
  1615. ]
  1616. },
  1617. {
  1618. "ID": 12053,
  1619. "PieceID": 13010,
  1620. "power": 337.5,
  1621. "name": 367,
  1622. "dec": 790,
  1623. "attribute": 2,
  1624. "icon": "icon_s1205",
  1625. "scriptName": "S1205",
  1626. "IDGroup": 1205,
  1627. "timelineName": "1205_timeline_TD",
  1628. "cd": 1.0,
  1629. "addcd": 1.0,
  1630. "SkillType": 1,
  1631. "level": 4,
  1632. "effectValue": [
  1633. 8.0,
  1634. 50.0
  1635. ],
  1636. "intensifierIndex": [
  1637. 2
  1638. ],
  1639. "addPropertyType": [
  1640. 101,
  1641. 102,
  1642. 103
  1643. ],
  1644. "addPropertyValue": [
  1645. 4.0,
  1646. 4.0,
  1647. 4.0
  1648. ],
  1649. "PromoteLan": 1147
  1650. },
  1651. {
  1652. "ID": 12054,
  1653. "PieceID": 13010,
  1654. "power": 506.25,
  1655. "name": 368,
  1656. "dec": 791,
  1657. "attribute": 2,
  1658. "icon": "icon_s1205",
  1659. "scriptName": "S1205",
  1660. "IDGroup": 1205,
  1661. "timelineName": "1205_timeline_TD",
  1662. "cd": 1.0,
  1663. "addcd": 1.0,
  1664. "SkillType": 1,
  1665. "level": 5,
  1666. "effectValue": [
  1667. 10.0,
  1668. 50.0
  1669. ],
  1670. "intensifierIndex": [
  1671. 2
  1672. ],
  1673. "addPropertyType": [
  1674. 101,
  1675. 102,
  1676. 103
  1677. ],
  1678. "addPropertyValue": [
  1679. 4.0,
  1680. 4.0,
  1681. 4.0
  1682. ],
  1683. "PromoteLan": 1148,
  1684. "PromoteLanPara": [
  1685. 2.0
  1686. ]
  1687. },
  1688. {
  1689. "ID": 12055,
  1690. "PieceID": 13010,
  1691. "power": 759.375,
  1692. "name": 369,
  1693. "dec": 792,
  1694. "attribute": 2,
  1695. "icon": "icon_s1205",
  1696. "scriptName": "S1205",
  1697. "IDGroup": 1205,
  1698. "timelineName": "1205_timeline_TD",
  1699. "cd": 1.0,
  1700. "addcd": 1.0,
  1701. "SkillType": 1,
  1702. "level": 6,
  1703. "effectValue": [
  1704. 10.0,
  1705. 50.0
  1706. ],
  1707. "intensifierIndex": [
  1708. 2
  1709. ],
  1710. "addPropertyType": [
  1711. 101,
  1712. 102,
  1713. 103
  1714. ],
  1715. "addPropertyValue": [
  1716. 6.0,
  1717. 6.0,
  1718. 6.0
  1719. ],
  1720. "PromoteLan": 1149
  1721. },
  1722. {
  1723. "ID": 13010,
  1724. "PieceID": 13011,
  1725. "power": 100.0,
  1726. "name": 370,
  1727. "dec": 793,
  1728. "attribute": 4,
  1729. "icon": "icon_s1301",
  1730. "scriptName": "S1301",
  1731. "IDGroup": 1301,
  1732. "timelineName": "1301_timeline_TD",
  1733. "cd": 1.0,
  1734. "addcd": 1.0,
  1735. "SkillType": 1,
  1736. "level": 1,
  1737. "effectValue": [
  1738. 3.0,
  1739. 80.0,
  1740. 40.0
  1741. ],
  1742. "intensifierIndex": [
  1743. 2
  1744. ],
  1745. "PromoteLan": -1
  1746. },
  1747. {
  1748. "ID": 13011,
  1749. "PieceID": 13011,
  1750. "power": 150.0,
  1751. "name": 371,
  1752. "dec": 794,
  1753. "attribute": 4,
  1754. "icon": "icon_s1301",
  1755. "scriptName": "S1301",
  1756. "IDGroup": 1301,
  1757. "timelineName": "1301_timeline_TD",
  1758. "cd": 1.0,
  1759. "addcd": 1.0,
  1760. "SkillType": 1,
  1761. "level": 2,
  1762. "effectValue": [
  1763. 4.0,
  1764. 80.0,
  1765. 40.0
  1766. ],
  1767. "intensifierIndex": [
  1768. 2
  1769. ],
  1770. "PromoteLan": 1150,
  1771. "PromoteLanPara": [
  1772. 1.0
  1773. ]
  1774. },
  1775. {
  1776. "ID": 13012,
  1777. "PieceID": 13011,
  1778. "power": 225.0,
  1779. "name": 372,
  1780. "dec": 795,
  1781. "attribute": 4,
  1782. "icon": "icon_s1301",
  1783. "scriptName": "S1301",
  1784. "IDGroup": 1301,
  1785. "timelineName": "1301_timeline_TD",
  1786. "cd": 1.0,
  1787. "addcd": 1.0,
  1788. "SkillType": 1,
  1789. "level": 3,
  1790. "effectValue": [
  1791. 4.0,
  1792. 80.0,
  1793. 40.0
  1794. ],
  1795. "intensifierIndex": [
  1796. 2
  1797. ],
  1798. "addPropertyType": [
  1799. 101
  1800. ],
  1801. "addPropertyValue": [
  1802. 10.0
  1803. ],
  1804. "PromoteLan": 1151
  1805. },
  1806. {
  1807. "ID": 13013,
  1808. "PieceID": 13011,
  1809. "power": 337.5,
  1810. "name": 373,
  1811. "dec": 796,
  1812. "attribute": 4,
  1813. "icon": "icon_s1301",
  1814. "scriptName": "S1301",
  1815. "IDGroup": 1301,
  1816. "timelineName": "1301_timeline_TD",
  1817. "cd": 1.0,
  1818. "addcd": 1.0,
  1819. "SkillType": 1,
  1820. "level": 4,
  1821. "effectValue": [
  1822. 5.0,
  1823. 80.0,
  1824. 40.0
  1825. ],
  1826. "intensifierIndex": [
  1827. 2
  1828. ],
  1829. "addPropertyType": [
  1830. 101
  1831. ],
  1832. "addPropertyValue": [
  1833. 10.0
  1834. ],
  1835. "PromoteLan": 1152,
  1836. "PromoteLanPara": [
  1837. 1.0
  1838. ]
  1839. },
  1840. {
  1841. "ID": 13014,
  1842. "PieceID": 13011,
  1843. "power": 506.25,
  1844. "name": 374,
  1845. "dec": 797,
  1846. "attribute": 4,
  1847. "icon": "icon_s1301",
  1848. "scriptName": "S1301",
  1849. "IDGroup": 1301,
  1850. "timelineName": "1301_timeline_TD",
  1851. "cd": 1.0,
  1852. "addcd": 1.0,
  1853. "SkillType": 1,
  1854. "level": 5,
  1855. "effectValue": [
  1856. 5.0,
  1857. 80.0,
  1858. 40.0
  1859. ],
  1860. "intensifierIndex": [
  1861. 2
  1862. ],
  1863. "addPropertyType": [
  1864. 101
  1865. ],
  1866. "addPropertyValue": [
  1867. 20.0
  1868. ],
  1869. "PromoteLan": 1153
  1870. },
  1871. {
  1872. "ID": 13015,
  1873. "PieceID": 13011,
  1874. "power": 759.375,
  1875. "name": 375,
  1876. "dec": 798,
  1877. "attribute": 4,
  1878. "icon": "icon_s1301",
  1879. "scriptName": "S1301",
  1880. "IDGroup": 1301,
  1881. "timelineName": "1301_timeline_TD",
  1882. "cd": 1.0,
  1883. "addcd": 1.0,
  1884. "SkillType": 1,
  1885. "level": 6,
  1886. "effectValue": [
  1887. 6.0,
  1888. 80.0,
  1889. 40.0
  1890. ],
  1891. "intensifierIndex": [
  1892. 2
  1893. ],
  1894. "addPropertyType": [
  1895. 101
  1896. ],
  1897. "addPropertyValue": [
  1898. 20.0
  1899. ],
  1900. "PromoteLan": 1154,
  1901. "PromoteLanPara": [
  1902. 1.0
  1903. ]
  1904. },
  1905. {
  1906. "ID": 13020,
  1907. "PieceID": 13012,
  1908. "power": 100.0,
  1909. "name": 376,
  1910. "dec": 799,
  1911. "attribute": 4,
  1912. "icon": "icon_s1302",
  1913. "scriptName": "S1302",
  1914. "IDGroup": 1302,
  1915. "timelineName": "1302_timeline_TD",
  1916. "cd": 1.0,
  1917. "addcd": 1.0,
  1918. "SkillType": 1,
  1919. "level": 1,
  1920. "effectValue": [
  1921. 3.0,
  1922. 80.0,
  1923. 30.0,
  1924. 5.0,
  1925. 6.0,
  1926. 100.0
  1927. ],
  1928. "intensifierIndex": [
  1929. 2
  1930. ],
  1931. "PromoteLan": -1
  1932. },
  1933. {
  1934. "ID": 13021,
  1935. "PieceID": 13012,
  1936. "power": 150.0,
  1937. "name": 377,
  1938. "dec": 800,
  1939. "attribute": 4,
  1940. "icon": "icon_s1302",
  1941. "scriptName": "S1302",
  1942. "IDGroup": 1302,
  1943. "timelineName": "1302_timeline_TD",
  1944. "cd": 1.0,
  1945. "addcd": 1.0,
  1946. "SkillType": 1,
  1947. "level": 2,
  1948. "effectValue": [
  1949. 4.0,
  1950. 80.0,
  1951. 30.0,
  1952. 5.0,
  1953. 6.0,
  1954. 100.0
  1955. ],
  1956. "intensifierIndex": [
  1957. 2
  1958. ],
  1959. "PromoteLan": 1155,
  1960. "PromoteLanPara": [
  1961. 1.0
  1962. ]
  1963. },
  1964. {
  1965. "ID": 13022,
  1966. "PieceID": 13012,
  1967. "power": 225.0,
  1968. "name": 378,
  1969. "dec": 801,
  1970. "attribute": 4,
  1971. "icon": "icon_s1302",
  1972. "scriptName": "S1302",
  1973. "IDGroup": 1302,
  1974. "timelineName": "1302_timeline_TD",
  1975. "cd": 1.0,
  1976. "addcd": 1.0,
  1977. "SkillType": 1,
  1978. "level": 3,
  1979. "effectValue": [
  1980. 4.0,
  1981. 80.0,
  1982. 30.0,
  1983. 5.0,
  1984. 6.0,
  1985. 100.0
  1986. ],
  1987. "intensifierIndex": [
  1988. 2
  1989. ],
  1990. "addPropertyType": [
  1991. 103
  1992. ],
  1993. "addPropertyValue": [
  1994. 10.0
  1995. ],
  1996. "PromoteLan": 1156
  1997. },
  1998. {
  1999. "ID": 13023,
  2000. "PieceID": 13012,
  2001. "power": 337.5,
  2002. "name": 379,
  2003. "dec": 802,
  2004. "attribute": 4,
  2005. "icon": "icon_s1302",
  2006. "scriptName": "S1302",
  2007. "IDGroup": 1302,
  2008. "timelineName": "1302_timeline_TD",
  2009. "cd": 1.0,
  2010. "addcd": 1.0,
  2011. "SkillType": 1,
  2012. "level": 4,
  2013. "effectValue": [
  2014. 5.0,
  2015. 80.0,
  2016. 30.0,
  2017. 5.0,
  2018. 6.0,
  2019. 100.0
  2020. ],
  2021. "intensifierIndex": [
  2022. 2
  2023. ],
  2024. "addPropertyType": [
  2025. 103
  2026. ],
  2027. "addPropertyValue": [
  2028. 10.0
  2029. ],
  2030. "PromoteLan": 1157,
  2031. "PromoteLanPara": [
  2032. 1.0
  2033. ]
  2034. },
  2035. {
  2036. "ID": 13024,
  2037. "PieceID": 13012,
  2038. "power": 506.25,
  2039. "name": 380,
  2040. "dec": 803,
  2041. "attribute": 4,
  2042. "icon": "icon_s1302",
  2043. "scriptName": "S1302",
  2044. "IDGroup": 1302,
  2045. "timelineName": "1302_timeline_TD",
  2046. "cd": 1.0,
  2047. "addcd": 1.0,
  2048. "SkillType": 1,
  2049. "level": 5,
  2050. "effectValue": [
  2051. 5.0,
  2052. 80.0,
  2053. 30.0,
  2054. 5.0,
  2055. 6.0,
  2056. 100.0
  2057. ],
  2058. "intensifierIndex": [
  2059. 2
  2060. ],
  2061. "addPropertyType": [
  2062. 103
  2063. ],
  2064. "addPropertyValue": [
  2065. 20.0
  2066. ],
  2067. "PromoteLan": 1158
  2068. },
  2069. {
  2070. "ID": 13025,
  2071. "PieceID": 13012,
  2072. "power": 759.375,
  2073. "name": 381,
  2074. "dec": 804,
  2075. "attribute": 4,
  2076. "icon": "icon_s1302",
  2077. "scriptName": "S1302",
  2078. "IDGroup": 1302,
  2079. "timelineName": "1302_timeline_TD",
  2080. "cd": 1.0,
  2081. "addcd": 1.0,
  2082. "SkillType": 1,
  2083. "level": 6,
  2084. "effectValue": [
  2085. 6.0,
  2086. 80.0,
  2087. 30.0,
  2088. 5.0,
  2089. 6.0,
  2090. 100.0
  2091. ],
  2092. "intensifierIndex": [
  2093. 2
  2094. ],
  2095. "addPropertyType": [
  2096. 103
  2097. ],
  2098. "addPropertyValue": [
  2099. 20.0
  2100. ],
  2101. "PromoteLan": 1159,
  2102. "PromoteLanPara": [
  2103. 1.0
  2104. ]
  2105. },
  2106. {
  2107. "ID": 13040,
  2108. "PieceID": 13014,
  2109. "power": 100.0,
  2110. "name": 382,
  2111. "dec": 805,
  2112. "attribute": 4,
  2113. "icon": "icon_s1304",
  2114. "scriptName": "S1304",
  2115. "IDGroup": 1304,
  2116. "timelineName": "1304_timeline_TD",
  2117. "cd": 1.0,
  2118. "addcd": 1.0,
  2119. "SkillType": 1,
  2120. "level": 1,
  2121. "effectValue": [
  2122. 6.0,
  2123. 50.0
  2124. ],
  2125. "intensifierIndex": [
  2126. 2
  2127. ],
  2128. "PromoteLan": -1
  2129. },
  2130. {
  2131. "ID": 13041,
  2132. "PieceID": 13014,
  2133. "power": 150.0,
  2134. "name": 383,
  2135. "dec": 806,
  2136. "attribute": 4,
  2137. "icon": "icon_s1304",
  2138. "scriptName": "S1304",
  2139. "IDGroup": 1304,
  2140. "timelineName": "1304_timeline_TD",
  2141. "cd": 1.0,
  2142. "addcd": 1.0,
  2143. "SkillType": 1,
  2144. "level": 2,
  2145. "effectValue": [
  2146. 6.0,
  2147. 50.0
  2148. ],
  2149. "intensifierIndex": [
  2150. 2
  2151. ],
  2152. "addPropertyType": [
  2153. 101,
  2154. 102,
  2155. 103
  2156. ],
  2157. "addPropertyValue": [
  2158. 2.0,
  2159. 2.0,
  2160. 2.0
  2161. ],
  2162. "PromoteLan": 1165
  2163. },
  2164. {
  2165. "ID": 13042,
  2166. "PieceID": 13014,
  2167. "power": 225.0,
  2168. "name": 384,
  2169. "dec": 807,
  2170. "attribute": 4,
  2171. "icon": "icon_s1304",
  2172. "scriptName": "S1304",
  2173. "IDGroup": 1304,
  2174. "timelineName": "1304_timeline_TD",
  2175. "cd": 1.0,
  2176. "addcd": 1.0,
  2177. "SkillType": 1,
  2178. "level": 3,
  2179. "effectValue": [
  2180. 8.0,
  2181. 50.0
  2182. ],
  2183. "intensifierIndex": [
  2184. 2
  2185. ],
  2186. "addPropertyType": [
  2187. 101,
  2188. 102,
  2189. 103
  2190. ],
  2191. "addPropertyValue": [
  2192. 2.0,
  2193. 2.0,
  2194. 2.0
  2195. ],
  2196. "PromoteLan": 1166,
  2197. "PromoteLanPara": [
  2198. 2.0
  2199. ]
  2200. },
  2201. {
  2202. "ID": 13043,
  2203. "PieceID": 13014,
  2204. "power": 337.5,
  2205. "name": 385,
  2206. "dec": 808,
  2207. "attribute": 4,
  2208. "icon": "icon_s1304",
  2209. "scriptName": "S1304",
  2210. "IDGroup": 1304,
  2211. "timelineName": "1304_timeline_TD",
  2212. "cd": 1.0,
  2213. "addcd": 1.0,
  2214. "SkillType": 1,
  2215. "level": 4,
  2216. "effectValue": [
  2217. 8.0,
  2218. 50.0
  2219. ],
  2220. "intensifierIndex": [
  2221. 2
  2222. ],
  2223. "addPropertyType": [
  2224. 101,
  2225. 102,
  2226. 103
  2227. ],
  2228. "addPropertyValue": [
  2229. 4.0,
  2230. 4.0,
  2231. 4.0
  2232. ],
  2233. "PromoteLan": 1167
  2234. },
  2235. {
  2236. "ID": 13044,
  2237. "PieceID": 13014,
  2238. "power": 506.25,
  2239. "name": 386,
  2240. "dec": 809,
  2241. "attribute": 4,
  2242. "icon": "icon_s1304",
  2243. "scriptName": "S1304",
  2244. "IDGroup": 1304,
  2245. "timelineName": "1304_timeline_TD",
  2246. "cd": 1.0,
  2247. "addcd": 1.0,
  2248. "SkillType": 1,
  2249. "level": 5,
  2250. "effectValue": [
  2251. 10.0,
  2252. 50.0
  2253. ],
  2254. "intensifierIndex": [
  2255. 2
  2256. ],
  2257. "addPropertyType": [
  2258. 101,
  2259. 102,
  2260. 103
  2261. ],
  2262. "addPropertyValue": [
  2263. 4.0,
  2264. 4.0,
  2265. 4.0
  2266. ],
  2267. "PromoteLan": 1168,
  2268. "PromoteLanPara": [
  2269. 2.0
  2270. ]
  2271. },
  2272. {
  2273. "ID": 13045,
  2274. "PieceID": 13014,
  2275. "power": 759.375,
  2276. "name": 387,
  2277. "dec": 810,
  2278. "attribute": 4,
  2279. "icon": "icon_s1304",
  2280. "scriptName": "S1304",
  2281. "IDGroup": 1304,
  2282. "timelineName": "1304_timeline_TD",
  2283. "cd": 1.0,
  2284. "addcd": 1.0,
  2285. "SkillType": 1,
  2286. "level": 6,
  2287. "effectValue": [
  2288. 10.0,
  2289. 50.0
  2290. ],
  2291. "intensifierIndex": [
  2292. 2
  2293. ],
  2294. "addPropertyType": [
  2295. 101,
  2296. 102,
  2297. 103
  2298. ],
  2299. "addPropertyValue": [
  2300. 6.0,
  2301. 6.0,
  2302. 6.0
  2303. ],
  2304. "PromoteLan": 1169
  2305. },
  2306. {
  2307. "ID": 13050,
  2308. "PieceID": 13015,
  2309. "power": 100.0,
  2310. "name": 388,
  2311. "dec": 811,
  2312. "attribute": 4,
  2313. "icon": "icon_s1305",
  2314. "scriptName": "S1305",
  2315. "IDGroup": 1305,
  2316. "timelineName": "1305_timeline_TD",
  2317. "cd": 1.0,
  2318. "addcd": 1.0,
  2319. "SkillType": 1,
  2320. "level": 1,
  2321. "effectValue": [
  2322. 9.0,
  2323. 35.0
  2324. ],
  2325. "intensifierIndex": [
  2326. 2
  2327. ],
  2328. "PromoteLan": -1
  2329. },
  2330. {
  2331. "ID": 13051,
  2332. "PieceID": 13015,
  2333. "power": 150.0,
  2334. "name": 389,
  2335. "dec": 812,
  2336. "attribute": 4,
  2337. "icon": "icon_s1305",
  2338. "scriptName": "S1305",
  2339. "IDGroup": 1305,
  2340. "timelineName": "1305_timeline_TD",
  2341. "cd": 1.0,
  2342. "addcd": 1.0,
  2343. "SkillType": 1,
  2344. "level": 2,
  2345. "effectValue": [
  2346. 9.0,
  2347. 35.0
  2348. ],
  2349. "intensifierIndex": [
  2350. 2
  2351. ],
  2352. "addPropertyType": [
  2353. 101,
  2354. 102,
  2355. 103
  2356. ],
  2357. "addPropertyValue": [
  2358. 2.0,
  2359. 2.0,
  2360. 2.0
  2361. ],
  2362. "PromoteLan": 1170
  2363. },
  2364. {
  2365. "ID": 13052,
  2366. "PieceID": 13015,
  2367. "power": 225.0,
  2368. "name": 390,
  2369. "dec": 813,
  2370. "attribute": 4,
  2371. "icon": "icon_s1305",
  2372. "scriptName": "S1305",
  2373. "IDGroup": 1305,
  2374. "timelineName": "1305_timeline_TD",
  2375. "cd": 1.0,
  2376. "addcd": 1.0,
  2377. "SkillType": 1,
  2378. "level": 3,
  2379. "effectValue": [
  2380. 12.0,
  2381. 35.0
  2382. ],
  2383. "intensifierIndex": [
  2384. 2
  2385. ],
  2386. "addPropertyType": [
  2387. 101,
  2388. 102,
  2389. 103
  2390. ],
  2391. "addPropertyValue": [
  2392. 2.0,
  2393. 2.0,
  2394. 2.0
  2395. ],
  2396. "PromoteLan": 1171,
  2397. "PromoteLanPara": [
  2398. 3.0
  2399. ]
  2400. },
  2401. {
  2402. "ID": 13053,
  2403. "PieceID": 13015,
  2404. "power": 337.5,
  2405. "name": 391,
  2406. "dec": 814,
  2407. "attribute": 4,
  2408. "icon": "icon_s1305",
  2409. "scriptName": "S1305",
  2410. "IDGroup": 1305,
  2411. "timelineName": "1305_timeline_TD",
  2412. "cd": 1.0,
  2413. "addcd": 1.0,
  2414. "SkillType": 1,
  2415. "level": 4,
  2416. "effectValue": [
  2417. 12.0,
  2418. 35.0
  2419. ],
  2420. "intensifierIndex": [
  2421. 2
  2422. ],
  2423. "addPropertyType": [
  2424. 101,
  2425. 102,
  2426. 103
  2427. ],
  2428. "addPropertyValue": [
  2429. 4.0,
  2430. 4.0,
  2431. 4.0
  2432. ],
  2433. "PromoteLan": 1172
  2434. },
  2435. {
  2436. "ID": 13054,
  2437. "PieceID": 13015,
  2438. "power": 506.25,
  2439. "name": 392,
  2440. "dec": 815,
  2441. "attribute": 4,
  2442. "icon": "icon_s1305",
  2443. "scriptName": "S1305",
  2444. "IDGroup": 1305,
  2445. "timelineName": "1305_timeline_TD",
  2446. "cd": 1.0,
  2447. "addcd": 1.0,
  2448. "SkillType": 1,
  2449. "level": 5,
  2450. "effectValue": [
  2451. 15.0,
  2452. 35.0
  2453. ],
  2454. "intensifierIndex": [
  2455. 2
  2456. ],
  2457. "addPropertyType": [
  2458. 101,
  2459. 102,
  2460. 103
  2461. ],
  2462. "addPropertyValue": [
  2463. 4.0,
  2464. 4.0,
  2465. 4.0
  2466. ],
  2467. "PromoteLan": 1173,
  2468. "PromoteLanPara": [
  2469. 3.0
  2470. ]
  2471. },
  2472. {
  2473. "ID": 13055,
  2474. "PieceID": 13015,
  2475. "power": 759.375,
  2476. "name": 393,
  2477. "dec": 816,
  2478. "attribute": 4,
  2479. "icon": "icon_s1305",
  2480. "scriptName": "S1305",
  2481. "IDGroup": 1305,
  2482. "timelineName": "1305_timeline_TD",
  2483. "cd": 1.0,
  2484. "addcd": 1.0,
  2485. "SkillType": 1,
  2486. "level": 6,
  2487. "effectValue": [
  2488. 15.0,
  2489. 35.0
  2490. ],
  2491. "intensifierIndex": [
  2492. 2
  2493. ],
  2494. "addPropertyType": [
  2495. 101,
  2496. 102,
  2497. 103
  2498. ],
  2499. "addPropertyValue": [
  2500. 6.0,
  2501. 6.0,
  2502. 6.0
  2503. ],
  2504. "PromoteLan": 1174
  2505. },
  2506. {
  2507. "ID": 14010,
  2508. "PieceID": 13016,
  2509. "power": 100.0,
  2510. "name": 394,
  2511. "dec": 817,
  2512. "attribute": 8,
  2513. "icon": "icon_s1401",
  2514. "scriptName": "S1401",
  2515. "IDGroup": 1401,
  2516. "timelineName": "1401_timeline_TD",
  2517. "cd": 1.0,
  2518. "addcd": 1.0,
  2519. "SkillType": 1,
  2520. "level": 1,
  2521. "effectValue": [
  2522. 6.0,
  2523. 40.0,
  2524. 20.0
  2525. ],
  2526. "intensifierIndex": [
  2527. 2
  2528. ],
  2529. "PromoteLan": -1
  2530. },
  2531. {
  2532. "ID": 14011,
  2533. "PieceID": 13016,
  2534. "power": 150.0,
  2535. "name": 395,
  2536. "dec": 818,
  2537. "attribute": 8,
  2538. "icon": "icon_s1401",
  2539. "scriptName": "S1401",
  2540. "IDGroup": 1401,
  2541. "timelineName": "1401_timeline_TD",
  2542. "cd": 1.0,
  2543. "addcd": 1.0,
  2544. "SkillType": 1,
  2545. "level": 2,
  2546. "effectValue": [
  2547. 8.0,
  2548. 40.0,
  2549. 20.0
  2550. ],
  2551. "intensifierIndex": [
  2552. 2
  2553. ],
  2554. "PromoteLan": 1175,
  2555. "PromoteLanPara": [
  2556. 2.0
  2557. ]
  2558. },
  2559. {
  2560. "ID": 14012,
  2561. "PieceID": 13016,
  2562. "power": 225.0,
  2563. "name": 396,
  2564. "dec": 819,
  2565. "attribute": 8,
  2566. "icon": "icon_s1401",
  2567. "scriptName": "S1401",
  2568. "IDGroup": 1401,
  2569. "timelineName": "1401_timeline_TD",
  2570. "cd": 1.0,
  2571. "addcd": 1.0,
  2572. "SkillType": 1,
  2573. "level": 3,
  2574. "effectValue": [
  2575. 8.0,
  2576. 40.0,
  2577. 20.0
  2578. ],
  2579. "intensifierIndex": [
  2580. 2
  2581. ],
  2582. "addPropertyType": [
  2583. 101
  2584. ],
  2585. "addPropertyValue": [
  2586. 10.0
  2587. ],
  2588. "PromoteLan": 1176
  2589. },
  2590. {
  2591. "ID": 14013,
  2592. "PieceID": 13016,
  2593. "power": 337.5,
  2594. "name": 397,
  2595. "dec": 820,
  2596. "attribute": 8,
  2597. "icon": "icon_s1401",
  2598. "scriptName": "S1401",
  2599. "IDGroup": 1401,
  2600. "timelineName": "1401_timeline_TD",
  2601. "cd": 1.0,
  2602. "addcd": 1.0,
  2603. "SkillType": 1,
  2604. "level": 4,
  2605. "effectValue": [
  2606. 10.0,
  2607. 40.0,
  2608. 20.0
  2609. ],
  2610. "intensifierIndex": [
  2611. 2
  2612. ],
  2613. "addPropertyType": [
  2614. 101
  2615. ],
  2616. "addPropertyValue": [
  2617. 10.0
  2618. ],
  2619. "PromoteLan": 1177,
  2620. "PromoteLanPara": [
  2621. 4.0
  2622. ]
  2623. },
  2624. {
  2625. "ID": 14014,
  2626. "PieceID": 13016,
  2627. "power": 506.25,
  2628. "name": 398,
  2629. "dec": 821,
  2630. "attribute": 8,
  2631. "icon": "icon_s1401",
  2632. "scriptName": "S1401",
  2633. "IDGroup": 1401,
  2634. "timelineName": "1401_timeline_TD",
  2635. "cd": 1.0,
  2636. "addcd": 1.0,
  2637. "SkillType": 1,
  2638. "level": 5,
  2639. "effectValue": [
  2640. 10.0,
  2641. 40.0,
  2642. 20.0
  2643. ],
  2644. "intensifierIndex": [
  2645. 2
  2646. ],
  2647. "addPropertyType": [
  2648. 101
  2649. ],
  2650. "addPropertyValue": [
  2651. 20.0
  2652. ],
  2653. "PromoteLan": 1178
  2654. },
  2655. {
  2656. "ID": 14015,
  2657. "PieceID": 13016,
  2658. "power": 759.375,
  2659. "name": 399,
  2660. "dec": 822,
  2661. "attribute": 8,
  2662. "icon": "icon_s1401",
  2663. "scriptName": "S1401",
  2664. "IDGroup": 1401,
  2665. "timelineName": "1401_timeline_TD",
  2666. "cd": 1.0,
  2667. "addcd": 1.0,
  2668. "SkillType": 1,
  2669. "level": 6,
  2670. "effectValue": [
  2671. 10.0,
  2672. 40.0,
  2673. 20.0,
  2674. 20.0
  2675. ],
  2676. "intensifierIndex": [
  2677. 2
  2678. ],
  2679. "addPropertyType": [
  2680. 101
  2681. ],
  2682. "addPropertyValue": [
  2683. 20.0
  2684. ],
  2685. "PromoteLan": 1179
  2686. },
  2687. {
  2688. "ID": 14020,
  2689. "PieceID": 13017,
  2690. "power": 100.0,
  2691. "name": 400,
  2692. "dec": 823,
  2693. "attribute": 8,
  2694. "icon": "icon_s1402",
  2695. "scriptName": "S1402",
  2696. "IDGroup": 1402,
  2697. "timelineName": "1402_timeline_TD",
  2698. "cd": 1.0,
  2699. "addcd": 1.0,
  2700. "SkillType": 1,
  2701. "level": 1,
  2702. "effectValue": [
  2703. 3.0,
  2704. 100.0
  2705. ],
  2706. "intensifierIndex": [
  2707. 2
  2708. ],
  2709. "PromoteLan": -1
  2710. },
  2711. {
  2712. "ID": 14021,
  2713. "PieceID": 13017,
  2714. "power": 150.0,
  2715. "name": 401,
  2716. "dec": 824,
  2717. "attribute": 8,
  2718. "icon": "icon_s1402",
  2719. "scriptName": "S1402",
  2720. "IDGroup": 1402,
  2721. "timelineName": "1402_timeline_TD",
  2722. "cd": 1.0,
  2723. "addcd": 1.0,
  2724. "SkillType": 1,
  2725. "level": 2,
  2726. "effectValue": [
  2727. 3.0,
  2728. 100.0,
  2729. 3.0
  2730. ],
  2731. "intensifierIndex": [
  2732. 2
  2733. ],
  2734. "PromoteLan": 1180
  2735. },
  2736. {
  2737. "ID": 14022,
  2738. "PieceID": 13017,
  2739. "power": 225.0,
  2740. "name": 402,
  2741. "dec": 825,
  2742. "attribute": 8,
  2743. "icon": "icon_s1402",
  2744. "scriptName": "S1402",
  2745. "IDGroup": 1402,
  2746. "timelineName": "1402_timeline_TD",
  2747. "cd": 1.0,
  2748. "addcd": 1.0,
  2749. "SkillType": 1,
  2750. "level": 3,
  2751. "effectValue": [
  2752. 3.0,
  2753. 100.0,
  2754. 3.0
  2755. ],
  2756. "intensifierIndex": [
  2757. 2
  2758. ],
  2759. "addPropertyType": [
  2760. 102
  2761. ],
  2762. "addPropertyValue": [
  2763. 10.0
  2764. ],
  2765. "PromoteLan": 1181
  2766. },
  2767. {
  2768. "ID": 14023,
  2769. "PieceID": 13017,
  2770. "power": 337.5,
  2771. "name": 403,
  2772. "dec": 826,
  2773. "attribute": 8,
  2774. "icon": "icon_s1402",
  2775. "scriptName": "S1402",
  2776. "IDGroup": 1402,
  2777. "timelineName": "1402_timeline_TD",
  2778. "cd": 1.0,
  2779. "addcd": 1.0,
  2780. "SkillType": 1,
  2781. "level": 4,
  2782. "effectValue": [
  2783. 4.0,
  2784. 100.0,
  2785. 3.0,
  2786. 100.0
  2787. ],
  2788. "intensifierIndex": [
  2789. 2
  2790. ],
  2791. "addPropertyType": [
  2792. 102
  2793. ],
  2794. "addPropertyValue": [
  2795. 10.0
  2796. ],
  2797. "PromoteLan": 1182,
  2798. "PromoteLanPara": [
  2799. 1.0
  2800. ]
  2801. },
  2802. {
  2803. "ID": 14024,
  2804. "PieceID": 13017,
  2805. "power": 506.25,
  2806. "name": 404,
  2807. "dec": 827,
  2808. "attribute": 8,
  2809. "icon": "icon_s1402",
  2810. "scriptName": "S1402",
  2811. "IDGroup": 1402,
  2812. "timelineName": "1402_timeline_TD",
  2813. "cd": 1.0,
  2814. "addcd": 1.0,
  2815. "SkillType": 1,
  2816. "level": 5,
  2817. "effectValue": [
  2818. 4.0,
  2819. 100.0,
  2820. 3.0,
  2821. 100.0
  2822. ],
  2823. "intensifierIndex": [
  2824. 2
  2825. ],
  2826. "addPropertyType": [
  2827. 102
  2828. ],
  2829. "addPropertyValue": [
  2830. 20.0
  2831. ],
  2832. "PromoteLan": 1183
  2833. },
  2834. {
  2835. "ID": 14025,
  2836. "PieceID": 13017,
  2837. "power": 759.375,
  2838. "name": 405,
  2839. "dec": 828,
  2840. "attribute": 8,
  2841. "icon": "icon_s1402",
  2842. "scriptName": "S1402",
  2843. "IDGroup": 1402,
  2844. "timelineName": "1402_timeline_TD",
  2845. "cd": 1.0,
  2846. "addcd": 1.0,
  2847. "SkillType": 1,
  2848. "level": 6,
  2849. "effectValue": [
  2850. 4.0,
  2851. 100.0,
  2852. 3.0,
  2853. 100.0,
  2854. 25.0
  2855. ],
  2856. "intensifierIndex": [
  2857. 2
  2858. ],
  2859. "addPropertyType": [
  2860. 102
  2861. ],
  2862. "addPropertyValue": [
  2863. 20.0
  2864. ],
  2865. "PromoteLan": 1184
  2866. },
  2867. {
  2868. "ID": 14030,
  2869. "PieceID": 13018,
  2870. "power": 100.0,
  2871. "name": 406,
  2872. "dec": 829,
  2873. "attribute": 8,
  2874. "icon": "icon_s1403",
  2875. "scriptName": "S1403",
  2876. "IDGroup": 1403,
  2877. "timelineName": "1403_timeline_TD",
  2878. "cd": 1.0,
  2879. "addcd": 1.0,
  2880. "SkillType": 1,
  2881. "level": 1,
  2882. "effectValue": [
  2883. 1.0,
  2884. 48.0,
  2885. 25.0
  2886. ],
  2887. "intensifierIndex": [
  2888. 2
  2889. ],
  2890. "PromoteLan": -1
  2891. },
  2892. {
  2893. "ID": 14031,
  2894. "PieceID": 13018,
  2895. "power": 150.0,
  2896. "name": 407,
  2897. "dec": 830,
  2898. "attribute": 8,
  2899. "icon": "icon_s1403",
  2900. "scriptName": "S1403",
  2901. "IDGroup": 1403,
  2902. "timelineName": "1403_timeline_TD",
  2903. "cd": 1.0,
  2904. "addcd": 1.0,
  2905. "SkillType": 1,
  2906. "level": 2,
  2907. "effectValue": [
  2908. 1.0,
  2909. 48.0,
  2910. 25.0,
  2911. 30.0
  2912. ],
  2913. "intensifierIndex": [
  2914. 2
  2915. ],
  2916. "PromoteLan": 1185
  2917. },
  2918. {
  2919. "ID": 14032,
  2920. "PieceID": 13018,
  2921. "power": 225.0,
  2922. "name": 408,
  2923. "dec": 831,
  2924. "attribute": 8,
  2925. "icon": "icon_s1403",
  2926. "scriptName": "S1403",
  2927. "IDGroup": 1403,
  2928. "timelineName": "1403_timeline_TD",
  2929. "cd": 1.0,
  2930. "addcd": 1.0,
  2931. "SkillType": 1,
  2932. "level": 3,
  2933. "effectValue": [
  2934. 1.0,
  2935. 48.0,
  2936. 25.0,
  2937. 30.0
  2938. ],
  2939. "intensifierIndex": [
  2940. 2
  2941. ],
  2942. "addPropertyType": [
  2943. 103
  2944. ],
  2945. "addPropertyValue": [
  2946. 10.0
  2947. ],
  2948. "PromoteLan": 1186
  2949. },
  2950. {
  2951. "ID": 14033,
  2952. "PieceID": 13018,
  2953. "power": 337.5,
  2954. "name": 409,
  2955. "dec": 832,
  2956. "attribute": 8,
  2957. "icon": "icon_s1403",
  2958. "scriptName": "S1403",
  2959. "IDGroup": 1403,
  2960. "timelineName": "1403_timeline_TD",
  2961. "cd": 1.0,
  2962. "addcd": 1.0,
  2963. "SkillType": 1,
  2964. "level": 4,
  2965. "effectValue": [
  2966. 1.0,
  2967. 60.0,
  2968. 25.0,
  2969. 30.0
  2970. ],
  2971. "intensifierIndex": [
  2972. 2
  2973. ],
  2974. "addPropertyType": [
  2975. 103
  2976. ],
  2977. "addPropertyValue": [
  2978. 10.0
  2979. ],
  2980. "PromoteLan": 1187
  2981. },
  2982. {
  2983. "ID": 14034,
  2984. "PieceID": 13018,
  2985. "power": 506.25,
  2986. "name": 410,
  2987. "dec": 833,
  2988. "attribute": 8,
  2989. "icon": "icon_s1403",
  2990. "scriptName": "S1403",
  2991. "IDGroup": 1403,
  2992. "timelineName": "1403_timeline_TD",
  2993. "cd": 1.0,
  2994. "addcd": 1.0,
  2995. "SkillType": 1,
  2996. "level": 5,
  2997. "effectValue": [
  2998. 1.0,
  2999. 60.0,
  3000. 25.0,
  3001. 30.0
  3002. ],
  3003. "intensifierIndex": [
  3004. 2
  3005. ],
  3006. "addPropertyType": [
  3007. 103
  3008. ],
  3009. "addPropertyValue": [
  3010. 20.0
  3011. ],
  3012. "PromoteLan": 1188
  3013. },
  3014. {
  3015. "ID": 14035,
  3016. "PieceID": 13018,
  3017. "power": 759.375,
  3018. "name": 411,
  3019. "dec": 834,
  3020. "attribute": 8,
  3021. "icon": "icon_s1403",
  3022. "scriptName": "S1403",
  3023. "IDGroup": 1403,
  3024. "timelineName": "1403_timeline_TD",
  3025. "cd": 1.0,
  3026. "addcd": 1.0,
  3027. "SkillType": 1,
  3028. "level": 6,
  3029. "effectValue": [
  3030. 1.0,
  3031. 60.0,
  3032. 25.0,
  3033. 30.0,
  3034. 40.0
  3035. ],
  3036. "intensifierIndex": [
  3037. 2
  3038. ],
  3039. "addPropertyType": [
  3040. 103
  3041. ],
  3042. "addPropertyValue": [
  3043. 20.0
  3044. ],
  3045. "PromoteLan": 1189
  3046. },
  3047. {
  3048. "ID": 14040,
  3049. "PieceID": 13019,
  3050. "power": 100.0,
  3051. "name": 412,
  3052. "dec": 835,
  3053. "attribute": 8,
  3054. "icon": "icon_s1404",
  3055. "scriptName": "S1404",
  3056. "IDGroup": 1404,
  3057. "timelineName": "1404_timeline_TD",
  3058. "cd": 1.0,
  3059. "addcd": 1.0,
  3060. "SkillType": 1,
  3061. "level": 1,
  3062. "effectValue": [
  3063. 3.0,
  3064. 80.0,
  3065. 40.0
  3066. ],
  3067. "intensifierIndex": [
  3068. 2
  3069. ],
  3070. "PromoteLan": -1
  3071. },
  3072. {
  3073. "ID": 14041,
  3074. "PieceID": 13019,
  3075. "power": 150.0,
  3076. "name": 413,
  3077. "dec": 836,
  3078. "attribute": 8,
  3079. "icon": "icon_s1404",
  3080. "scriptName": "S1404",
  3081. "IDGroup": 1404,
  3082. "timelineName": "1404_timeline_TD",
  3083. "cd": 1.0,
  3084. "addcd": 1.0,
  3085. "SkillType": 1,
  3086. "level": 2,
  3087. "effectValue": [
  3088. 3.0,
  3089. 80.0,
  3090. 40.0
  3091. ],
  3092. "intensifierIndex": [
  3093. 2
  3094. ],
  3095. "addPropertyType": [
  3096. 101,
  3097. 102,
  3098. 103
  3099. ],
  3100. "addPropertyValue": [
  3101. 2.0,
  3102. 2.0,
  3103. 2.0
  3104. ],
  3105. "PromoteLan": 1190
  3106. },
  3107. {
  3108. "ID": 14042,
  3109. "PieceID": 13019,
  3110. "power": 225.0,
  3111. "name": 414,
  3112. "dec": 837,
  3113. "attribute": 8,
  3114. "icon": "icon_s1404",
  3115. "scriptName": "S1404",
  3116. "IDGroup": 1404,
  3117. "timelineName": "1404_timeline_TD",
  3118. "cd": 1.0,
  3119. "addcd": 1.0,
  3120. "SkillType": 1,
  3121. "level": 3,
  3122. "effectValue": [
  3123. 4.0,
  3124. 80.0,
  3125. 40.0
  3126. ],
  3127. "intensifierIndex": [
  3128. 2
  3129. ],
  3130. "addPropertyType": [
  3131. 101,
  3132. 102,
  3133. 103
  3134. ],
  3135. "addPropertyValue": [
  3136. 2.0,
  3137. 2.0,
  3138. 2.0
  3139. ],
  3140. "PromoteLan": 1191,
  3141. "PromoteLanPara": [
  3142. 1.0
  3143. ]
  3144. },
  3145. {
  3146. "ID": 14043,
  3147. "PieceID": 13019,
  3148. "power": 337.5,
  3149. "name": 415,
  3150. "dec": 838,
  3151. "attribute": 8,
  3152. "icon": "icon_s1404",
  3153. "scriptName": "S1404",
  3154. "IDGroup": 1404,
  3155. "timelineName": "1404_timeline_TD",
  3156. "cd": 1.0,
  3157. "addcd": 1.0,
  3158. "SkillType": 1,
  3159. "level": 4,
  3160. "effectValue": [
  3161. 4.0,
  3162. 80.0,
  3163. 40.0
  3164. ],
  3165. "intensifierIndex": [
  3166. 2
  3167. ],
  3168. "addPropertyType": [
  3169. 101,
  3170. 102,
  3171. 103
  3172. ],
  3173. "addPropertyValue": [
  3174. 4.0,
  3175. 4.0,
  3176. 4.0
  3177. ],
  3178. "PromoteLan": 1192
  3179. },
  3180. {
  3181. "ID": 14044,
  3182. "PieceID": 13019,
  3183. "power": 506.25,
  3184. "name": 416,
  3185. "dec": 839,
  3186. "attribute": 8,
  3187. "icon": "icon_s1404",
  3188. "scriptName": "S1404",
  3189. "IDGroup": 1404,
  3190. "timelineName": "1404_timeline_TD",
  3191. "cd": 1.0,
  3192. "addcd": 1.0,
  3193. "SkillType": 1,
  3194. "level": 5,
  3195. "effectValue": [
  3196. 5.0,
  3197. 80.0,
  3198. 40.0
  3199. ],
  3200. "intensifierIndex": [
  3201. 2
  3202. ],
  3203. "addPropertyType": [
  3204. 101,
  3205. 102,
  3206. 103
  3207. ],
  3208. "addPropertyValue": [
  3209. 4.0,
  3210. 4.0,
  3211. 4.0
  3212. ],
  3213. "PromoteLan": 1193,
  3214. "PromoteLanPara": [
  3215. 2.0
  3216. ]
  3217. },
  3218. {
  3219. "ID": 14045,
  3220. "PieceID": 13019,
  3221. "power": 759.375,
  3222. "name": 417,
  3223. "dec": 840,
  3224. "attribute": 8,
  3225. "icon": "icon_s1404",
  3226. "scriptName": "S1404",
  3227. "IDGroup": 1404,
  3228. "timelineName": "1404_timeline_TD",
  3229. "cd": 1.0,
  3230. "addcd": 1.0,
  3231. "SkillType": 1,
  3232. "level": 6,
  3233. "effectValue": [
  3234. 5.0,
  3235. 80.0,
  3236. 40.0
  3237. ],
  3238. "intensifierIndex": [
  3239. 2
  3240. ],
  3241. "addPropertyType": [
  3242. 101,
  3243. 102,
  3244. 103
  3245. ],
  3246. "addPropertyValue": [
  3247. 6.0,
  3248. 6.0,
  3249. 6.0
  3250. ],
  3251. "PromoteLan": 1194
  3252. },
  3253. {
  3254. "ID": 14050,
  3255. "PieceID": 13020,
  3256. "power": 100.0,
  3257. "name": 418,
  3258. "dec": 841,
  3259. "attribute": 8,
  3260. "icon": "icon_s1405",
  3261. "scriptName": "S1405",
  3262. "IDGroup": 1405,
  3263. "timelineName": "1405_timeline_TD",
  3264. "cd": 1.0,
  3265. "addcd": 1.0,
  3266. "SkillType": 1,
  3267. "level": 1,
  3268. "effectValue": [
  3269. 6.0,
  3270. 50.0
  3271. ],
  3272. "intensifierIndex": [
  3273. 2
  3274. ],
  3275. "PromoteLan": -1
  3276. },
  3277. {
  3278. "ID": 14051,
  3279. "PieceID": 13020,
  3280. "power": 150.0,
  3281. "name": 419,
  3282. "dec": 842,
  3283. "attribute": 8,
  3284. "icon": "icon_s1405",
  3285. "scriptName": "S1405",
  3286. "IDGroup": 1405,
  3287. "timelineName": "1405_timeline_TD",
  3288. "cd": 1.0,
  3289. "addcd": 1.0,
  3290. "SkillType": 1,
  3291. "level": 2,
  3292. "effectValue": [
  3293. 6.0,
  3294. 50.0
  3295. ],
  3296. "intensifierIndex": [
  3297. 2
  3298. ],
  3299. "addPropertyType": [
  3300. 101,
  3301. 102,
  3302. 103
  3303. ],
  3304. "addPropertyValue": [
  3305. 2.0,
  3306. 2.0,
  3307. 2.0
  3308. ],
  3309. "PromoteLan": 1195
  3310. },
  3311. {
  3312. "ID": 14052,
  3313. "PieceID": 13020,
  3314. "power": 225.0,
  3315. "name": 420,
  3316. "dec": 843,
  3317. "attribute": 8,
  3318. "icon": "icon_s1405",
  3319. "scriptName": "S1405",
  3320. "IDGroup": 1405,
  3321. "timelineName": "1405_timeline_TD",
  3322. "cd": 1.0,
  3323. "addcd": 1.0,
  3324. "SkillType": 1,
  3325. "level": 3,
  3326. "effectValue": [
  3327. 8.0,
  3328. 50.0
  3329. ],
  3330. "intensifierIndex": [
  3331. 2
  3332. ],
  3333. "addPropertyType": [
  3334. 101,
  3335. 102,
  3336. 103
  3337. ],
  3338. "addPropertyValue": [
  3339. 2.0,
  3340. 2.0,
  3341. 2.0
  3342. ],
  3343. "PromoteLan": 1196,
  3344. "PromoteLanPara": [
  3345. 2.0
  3346. ]
  3347. },
  3348. {
  3349. "ID": 14053,
  3350. "PieceID": 13020,
  3351. "power": 337.5,
  3352. "name": 421,
  3353. "dec": 844,
  3354. "attribute": 8,
  3355. "icon": "icon_s1405",
  3356. "scriptName": "S1405",
  3357. "IDGroup": 1405,
  3358. "timelineName": "1405_timeline_TD",
  3359. "cd": 1.0,
  3360. "addcd": 1.0,
  3361. "SkillType": 1,
  3362. "level": 4,
  3363. "effectValue": [
  3364. 8.0,
  3365. 50.0
  3366. ],
  3367. "intensifierIndex": [
  3368. 2
  3369. ],
  3370. "addPropertyType": [
  3371. 101,
  3372. 102,
  3373. 103
  3374. ],
  3375. "addPropertyValue": [
  3376. 4.0,
  3377. 4.0,
  3378. 4.0
  3379. ],
  3380. "PromoteLan": 1197
  3381. },
  3382. {
  3383. "ID": 14054,
  3384. "PieceID": 13020,
  3385. "power": 506.25,
  3386. "name": 422,
  3387. "dec": 845,
  3388. "attribute": 8,
  3389. "icon": "icon_s1405",
  3390. "scriptName": "S1405",
  3391. "IDGroup": 1405,
  3392. "timelineName": "1405_timeline_TD",
  3393. "cd": 1.0,
  3394. "addcd": 1.0,
  3395. "SkillType": 1,
  3396. "level": 5,
  3397. "effectValue": [
  3398. 10.0,
  3399. 50.0
  3400. ],
  3401. "intensifierIndex": [
  3402. 2
  3403. ],
  3404. "addPropertyType": [
  3405. 101,
  3406. 102,
  3407. 103
  3408. ],
  3409. "addPropertyValue": [
  3410. 4.0,
  3411. 4.0,
  3412. 4.0
  3413. ],
  3414. "PromoteLan": 1198,
  3415. "PromoteLanPara": [
  3416. 2.0
  3417. ]
  3418. },
  3419. {
  3420. "ID": 14055,
  3421. "PieceID": 13020,
  3422. "power": 759.375,
  3423. "name": 423,
  3424. "dec": 846,
  3425. "attribute": 8,
  3426. "icon": "icon_s1405",
  3427. "scriptName": "S1405",
  3428. "IDGroup": 1405,
  3429. "timelineName": "1405_timeline_TD",
  3430. "cd": 1.0,
  3431. "addcd": 1.0,
  3432. "SkillType": 1,
  3433. "level": 6,
  3434. "effectValue": [
  3435. 10.0,
  3436. 50.0
  3437. ],
  3438. "intensifierIndex": [
  3439. 2
  3440. ],
  3441. "addPropertyType": [
  3442. 101,
  3443. 102,
  3444. 103
  3445. ],
  3446. "addPropertyValue": [
  3447. 6.0,
  3448. 6.0,
  3449. 6.0
  3450. ],
  3451. "PromoteLan": 1199
  3452. },
  3453. {
  3454. "ID": 15010,
  3455. "PieceID": 13021,
  3456. "power": 100.0,
  3457. "name": 424,
  3458. "dec": 847,
  3459. "attribute": 16,
  3460. "icon": "icon_s1501",
  3461. "scriptName": "S1501",
  3462. "IDGroup": 1501,
  3463. "timelineName": "bingqiu_timeline_TD",
  3464. "cd": 1.0,
  3465. "addcd": 1.0,
  3466. "SkillType": 1,
  3467. "level": 1,
  3468. "effectValue": [
  3469. 6.0,
  3470. 40.0,
  3471. 20.0
  3472. ],
  3473. "intensifierIndex": [
  3474. 2
  3475. ],
  3476. "PromoteLan": -1
  3477. },
  3478. {
  3479. "ID": 15011,
  3480. "PieceID": 13021,
  3481. "power": 150.0,
  3482. "name": 425,
  3483. "dec": 848,
  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": 2,
  3493. "effectValue": [
  3494. 6.0,
  3495. 40.0,
  3496. 20.0
  3497. ],
  3498. "intensifierIndex": [
  3499. 2
  3500. ],
  3501. "PromoteLan": 1200,
  3502. "PromoteLanPara": [
  3503. 2.0
  3504. ]
  3505. },
  3506. {
  3507. "ID": 15012,
  3508. "PieceID": 13021,
  3509. "power": 225.0,
  3510. "name": 426,
  3511. "dec": 849,
  3512. "attribute": 16,
  3513. "icon": "icon_s1501",
  3514. "scriptName": "S1501",
  3515. "IDGroup": 1501,
  3516. "timelineName": "bingqiu_timeline_TD",
  3517. "cd": 1.0,
  3518. "addcd": 1.0,
  3519. "SkillType": 1,
  3520. "level": 3,
  3521. "effectValue": [
  3522. 8.0,
  3523. 40.0,
  3524. 20.0
  3525. ],
  3526. "intensifierIndex": [
  3527. 2
  3528. ],
  3529. "addPropertyType": [
  3530. 101
  3531. ],
  3532. "addPropertyValue": [
  3533. 10.0
  3534. ],
  3535. "PromoteLan": 1201
  3536. },
  3537. {
  3538. "ID": 15013,
  3539. "PieceID": 13021,
  3540. "power": 337.5,
  3541. "name": 427,
  3542. "dec": 850,
  3543. "attribute": 16,
  3544. "icon": "icon_s1501",
  3545. "scriptName": "S1501",
  3546. "IDGroup": 1501,
  3547. "timelineName": "bingqiu_timeline_TD",
  3548. "cd": 1.0,
  3549. "addcd": 1.0,
  3550. "SkillType": 1,
  3551. "level": 4,
  3552. "effectValue": [
  3553. 8.0,
  3554. 40.0,
  3555. 20.0
  3556. ],
  3557. "intensifierIndex": [
  3558. 2
  3559. ],
  3560. "addPropertyType": [
  3561. 101
  3562. ],
  3563. "addPropertyValue": [
  3564. 10.0
  3565. ],
  3566. "PromoteLan": 1202,
  3567. "PromoteLanPara": [
  3568. 2.0
  3569. ]
  3570. },
  3571. {
  3572. "ID": 15014,
  3573. "PieceID": 13021,
  3574. "power": 506.25,
  3575. "name": 428,
  3576. "dec": 851,
  3577. "attribute": 16,
  3578. "icon": "icon_s1501",
  3579. "scriptName": "S1501",
  3580. "IDGroup": 1501,
  3581. "timelineName": "bingqiu_timeline_TD",
  3582. "cd": 1.0,
  3583. "addcd": 1.0,
  3584. "SkillType": 1,
  3585. "level": 5,
  3586. "effectValue": [
  3587. 10.0,
  3588. 40.0,
  3589. 20.0
  3590. ],
  3591. "intensifierIndex": [
  3592. 2
  3593. ],
  3594. "addPropertyType": [
  3595. 101
  3596. ],
  3597. "addPropertyValue": [
  3598. 20.0
  3599. ],
  3600. "PromoteLan": 1203
  3601. },
  3602. {
  3603. "ID": 15015,
  3604. "PieceID": 13021,
  3605. "power": 759.375,
  3606. "name": 429,
  3607. "dec": 852,
  3608. "attribute": 16,
  3609. "icon": "icon_s1501",
  3610. "scriptName": "S1501",
  3611. "IDGroup": 1501,
  3612. "timelineName": "bingqiu_timeline_TD",
  3613. "cd": 1.0,
  3614. "addcd": 1.0,
  3615. "SkillType": 1,
  3616. "level": 6,
  3617. "effectValue": [
  3618. 10.0,
  3619. 40.0,
  3620. 20.0
  3621. ],
  3622. "intensifierIndex": [
  3623. 2
  3624. ],
  3625. "addPropertyType": [
  3626. 101
  3627. ],
  3628. "addPropertyValue": [
  3629. 20.0
  3630. ],
  3631. "PromoteLan": 1204,
  3632. "PromoteLanPara": [
  3633. 2.0
  3634. ]
  3635. },
  3636. {
  3637. "ID": 15020,
  3638. "PieceID": 13022,
  3639. "power": 100.0,
  3640. "name": 430,
  3641. "dec": 853,
  3642. "attribute": 16,
  3643. "icon": "icon_s1502",
  3644. "scriptName": "S1502",
  3645. "IDGroup": 1502,
  3646. "timelineName": "bingzhui_timeline_TD",
  3647. "cd": 1.0,
  3648. "addcd": 1.0,
  3649. "SkillType": 1,
  3650. "level": 1,
  3651. "effectValue": [
  3652. 3.0,
  3653. 80.0,
  3654. 30.0
  3655. ],
  3656. "intensifierIndex": [
  3657. 2
  3658. ],
  3659. "PromoteLan": -1
  3660. },
  3661. {
  3662. "ID": 15021,
  3663. "PieceID": 13022,
  3664. "power": 150.0,
  3665. "name": 431,
  3666. "dec": 854,
  3667. "attribute": 16,
  3668. "icon": "icon_s1502",
  3669. "scriptName": "S1502",
  3670. "IDGroup": 1502,
  3671. "timelineName": "bingzhui_timeline_TD",
  3672. "cd": 1.0,
  3673. "addcd": 1.0,
  3674. "SkillType": 1,
  3675. "level": 2,
  3676. "effectValue": [
  3677. 4.0,
  3678. 80.0,
  3679. 30.0
  3680. ],
  3681. "intensifierIndex": [
  3682. 2
  3683. ],
  3684. "PromoteLan": 1205,
  3685. "PromoteLanPara": [
  3686. 1.0
  3687. ]
  3688. },
  3689. {
  3690. "ID": 15022,
  3691. "PieceID": 13022,
  3692. "power": 225.0,
  3693. "name": 432,
  3694. "dec": 855,
  3695. "attribute": 16,
  3696. "icon": "icon_s1502",
  3697. "scriptName": "S1502",
  3698. "IDGroup": 1502,
  3699. "timelineName": "bingzhui_timeline_TD",
  3700. "cd": 1.0,
  3701. "addcd": 1.0,
  3702. "SkillType": 1,
  3703. "level": 3,
  3704. "effectValue": [
  3705. 4.0,
  3706. 80.0,
  3707. 30.0
  3708. ],
  3709. "intensifierIndex": [
  3710. 2
  3711. ],
  3712. "addPropertyType": [
  3713. 102
  3714. ],
  3715. "addPropertyValue": [
  3716. 10.0
  3717. ],
  3718. "PromoteLan": 1206
  3719. },
  3720. {
  3721. "ID": 15023,
  3722. "PieceID": 13022,
  3723. "power": 337.5,
  3724. "name": 433,
  3725. "dec": 856,
  3726. "attribute": 16,
  3727. "icon": "icon_s1502",
  3728. "scriptName": "S1502",
  3729. "IDGroup": 1502,
  3730. "timelineName": "bingzhui_timeline_TD",
  3731. "cd": 1.0,
  3732. "addcd": 1.0,
  3733. "SkillType": 1,
  3734. "level": 4,
  3735. "effectValue": [
  3736. 5.0,
  3737. 80.0,
  3738. 30.0
  3739. ],
  3740. "intensifierIndex": [
  3741. 2
  3742. ],
  3743. "addPropertyType": [
  3744. 102
  3745. ],
  3746. "addPropertyValue": [
  3747. 10.0
  3748. ],
  3749. "PromoteLan": 1207,
  3750. "PromoteLanPara": [
  3751. 1.0
  3752. ]
  3753. },
  3754. {
  3755. "ID": 15024,
  3756. "PieceID": 13022,
  3757. "power": 506.25,
  3758. "name": 434,
  3759. "dec": 857,
  3760. "attribute": 16,
  3761. "icon": "icon_s1502",
  3762. "scriptName": "S1502",
  3763. "IDGroup": 1502,
  3764. "timelineName": "bingzhui_timeline_TD",
  3765. "cd": 1.0,
  3766. "addcd": 1.0,
  3767. "SkillType": 1,
  3768. "level": 5,
  3769. "effectValue": [
  3770. 5.0,
  3771. 80.0,
  3772. 30.0
  3773. ],
  3774. "intensifierIndex": [
  3775. 2
  3776. ],
  3777. "addPropertyType": [
  3778. 102
  3779. ],
  3780. "addPropertyValue": [
  3781. 20.0
  3782. ],
  3783. "PromoteLan": 1208
  3784. },
  3785. {
  3786. "ID": 15025,
  3787. "PieceID": 13022,
  3788. "power": 759.375,
  3789. "name": 435,
  3790. "dec": 858,
  3791. "attribute": 16,
  3792. "icon": "icon_s1502",
  3793. "scriptName": "S1502",
  3794. "IDGroup": 1502,
  3795. "timelineName": "bingzhui_timeline_TD",
  3796. "cd": 1.0,
  3797. "addcd": 1.0,
  3798. "SkillType": 1,
  3799. "level": 6,
  3800. "effectValue": [
  3801. 6.0,
  3802. 80.0,
  3803. 30.0
  3804. ],
  3805. "intensifierIndex": [
  3806. 2
  3807. ],
  3808. "addPropertyType": [
  3809. 102
  3810. ],
  3811. "addPropertyValue": [
  3812. 20.0
  3813. ],
  3814. "PromoteLan": 1209,
  3815. "PromoteLanPara": [
  3816. 1.0
  3817. ]
  3818. },
  3819. {
  3820. "ID": 15040,
  3821. "PieceID": 13024,
  3822. "power": 100.0,
  3823. "name": 436,
  3824. "dec": 859,
  3825. "attribute": 16,
  3826. "icon": "icon_s1504",
  3827. "scriptName": "S1504",
  3828. "IDGroup": 1504,
  3829. "timelineName": "bingqiu_timeline_TD",
  3830. "cd": 1.0,
  3831. "addcd": 1.0,
  3832. "SkillType": 1,
  3833. "level": 1,
  3834. "effectValue": [
  3835. 3.0,
  3836. 100.0
  3837. ],
  3838. "intensifierIndex": [
  3839. 2
  3840. ],
  3841. "PromoteLan": -1
  3842. },
  3843. {
  3844. "ID": 15041,
  3845. "PieceID": 13024,
  3846. "power": 150.0,
  3847. "name": 437,
  3848. "dec": 860,
  3849. "attribute": 16,
  3850. "icon": "icon_s1504",
  3851. "scriptName": "S1504",
  3852. "IDGroup": 1504,
  3853. "timelineName": "bingqiu_timeline_TD",
  3854. "cd": 1.0,
  3855. "addcd": 1.0,
  3856. "SkillType": 1,
  3857. "level": 2,
  3858. "effectValue": [
  3859. 3.0,
  3860. 100.0
  3861. ],
  3862. "intensifierIndex": [
  3863. 2
  3864. ],
  3865. "addPropertyType": [
  3866. 101,
  3867. 102,
  3868. 103
  3869. ],
  3870. "addPropertyValue": [
  3871. 2.0,
  3872. 2.0,
  3873. 2.0
  3874. ],
  3875. "PromoteLan": 1215
  3876. },
  3877. {
  3878. "ID": 15042,
  3879. "PieceID": 13024,
  3880. "power": 225.0,
  3881. "name": 438,
  3882. "dec": 861,
  3883. "attribute": 16,
  3884. "icon": "icon_s1504",
  3885. "scriptName": "S1504",
  3886. "IDGroup": 1504,
  3887. "timelineName": "bingqiu_timeline_TD",
  3888. "cd": 1.0,
  3889. "addcd": 1.0,
  3890. "SkillType": 1,
  3891. "level": 3,
  3892. "effectValue": [
  3893. 4.0,
  3894. 100.0
  3895. ],
  3896. "intensifierIndex": [
  3897. 2
  3898. ],
  3899. "addPropertyType": [
  3900. 101,
  3901. 102,
  3902. 103
  3903. ],
  3904. "addPropertyValue": [
  3905. 2.0,
  3906. 2.0,
  3907. 2.0
  3908. ],
  3909. "PromoteLan": 1216,
  3910. "PromoteLanPara": [
  3911. 1.0
  3912. ]
  3913. },
  3914. {
  3915. "ID": 15043,
  3916. "PieceID": 13024,
  3917. "power": 337.5,
  3918. "name": 439,
  3919. "dec": 862,
  3920. "attribute": 16,
  3921. "icon": "icon_s1504",
  3922. "scriptName": "S1504",
  3923. "IDGroup": 1504,
  3924. "timelineName": "bingqiu_timeline_TD",
  3925. "cd": 1.0,
  3926. "addcd": 1.0,
  3927. "SkillType": 1,
  3928. "level": 4,
  3929. "effectValue": [
  3930. 4.0,
  3931. 100.0
  3932. ],
  3933. "intensifierIndex": [
  3934. 2
  3935. ],
  3936. "addPropertyType": [
  3937. 101,
  3938. 102,
  3939. 103
  3940. ],
  3941. "addPropertyValue": [
  3942. 4.0,
  3943. 4.0,
  3944. 4.0
  3945. ],
  3946. "PromoteLan": 1217
  3947. },
  3948. {
  3949. "ID": 15044,
  3950. "PieceID": 13024,
  3951. "power": 506.25,
  3952. "name": 440,
  3953. "dec": 863,
  3954. "attribute": 16,
  3955. "icon": "icon_s1504",
  3956. "scriptName": "S1504",
  3957. "IDGroup": 1504,
  3958. "timelineName": "bingqiu_timeline_TD",
  3959. "cd": 1.0,
  3960. "addcd": 1.0,
  3961. "SkillType": 1,
  3962. "level": 5,
  3963. "effectValue": [
  3964. 5.0,
  3965. 100.0
  3966. ],
  3967. "intensifierIndex": [
  3968. 2
  3969. ],
  3970. "addPropertyType": [
  3971. 101,
  3972. 102,
  3973. 103
  3974. ],
  3975. "addPropertyValue": [
  3976. 4.0,
  3977. 4.0,
  3978. 4.0
  3979. ],
  3980. "PromoteLan": 1218,
  3981. "PromoteLanPara": [
  3982. 1.0
  3983. ]
  3984. },
  3985. {
  3986. "ID": 15045,
  3987. "PieceID": 13024,
  3988. "power": 759.375,
  3989. "name": 441,
  3990. "dec": 864,
  3991. "attribute": 16,
  3992. "icon": "icon_s1504",
  3993. "scriptName": "S1504",
  3994. "IDGroup": 1504,
  3995. "timelineName": "bingqiu_timeline_TD",
  3996. "cd": 1.0,
  3997. "addcd": 1.0,
  3998. "SkillType": 1,
  3999. "level": 6,
  4000. "effectValue": [
  4001. 5.0,
  4002. 100.0
  4003. ],
  4004. "intensifierIndex": [
  4005. 2
  4006. ],
  4007. "addPropertyType": [
  4008. 101,
  4009. 102,
  4010. 103
  4011. ],
  4012. "addPropertyValue": [
  4013. 6.0,
  4014. 6.0,
  4015. 6.0
  4016. ],
  4017. "PromoteLan": 1219
  4018. },
  4019. {
  4020. "ID": 15050,
  4021. "PieceID": 13025,
  4022. "power": 100.0,
  4023. "name": 442,
  4024. "dec": 865,
  4025. "attribute": 16,
  4026. "icon": "icon_s1505",
  4027. "scriptName": "S1505",
  4028. "IDGroup": 1505,
  4029. "timelineName": "bingzhui_timeline_TD",
  4030. "cd": 1.0,
  4031. "addcd": 1.0,
  4032. "SkillType": 1,
  4033. "level": 1,
  4034. "effectValue": [
  4035. 9.0,
  4036. 35.0
  4037. ],
  4038. "intensifierIndex": [
  4039. 2
  4040. ],
  4041. "PromoteLan": -1
  4042. },
  4043. {
  4044. "ID": 15051,
  4045. "PieceID": 13025,
  4046. "power": 150.0,
  4047. "name": 443,
  4048. "dec": 866,
  4049. "attribute": 16,
  4050. "icon": "icon_s1505",
  4051. "scriptName": "S1505",
  4052. "IDGroup": 1505,
  4053. "timelineName": "bingzhui_timeline_TD",
  4054. "cd": 1.0,
  4055. "addcd": 1.0,
  4056. "SkillType": 1,
  4057. "level": 2,
  4058. "effectValue": [
  4059. 9.0,
  4060. 35.0
  4061. ],
  4062. "intensifierIndex": [
  4063. 2
  4064. ],
  4065. "addPropertyType": [
  4066. 101,
  4067. 102,
  4068. 103
  4069. ],
  4070. "addPropertyValue": [
  4071. 2.0,
  4072. 2.0,
  4073. 2.0
  4074. ],
  4075. "PromoteLan": 1220
  4076. },
  4077. {
  4078. "ID": 15052,
  4079. "PieceID": 13025,
  4080. "power": 225.0,
  4081. "name": 444,
  4082. "dec": 867,
  4083. "attribute": 16,
  4084. "icon": "icon_s1505",
  4085. "scriptName": "S1505",
  4086. "IDGroup": 1505,
  4087. "timelineName": "bingzhui_timeline_TD",
  4088. "cd": 1.0,
  4089. "addcd": 1.0,
  4090. "SkillType": 1,
  4091. "level": 3,
  4092. "effectValue": [
  4093. 12.0,
  4094. 35.0
  4095. ],
  4096. "intensifierIndex": [
  4097. 2
  4098. ],
  4099. "addPropertyType": [
  4100. 101,
  4101. 102,
  4102. 103
  4103. ],
  4104. "addPropertyValue": [
  4105. 2.0,
  4106. 2.0,
  4107. 2.0
  4108. ],
  4109. "PromoteLan": 1221,
  4110. "PromoteLanPara": [
  4111. 3.0
  4112. ]
  4113. },
  4114. {
  4115. "ID": 15053,
  4116. "PieceID": 13025,
  4117. "power": 337.5,
  4118. "name": 445,
  4119. "dec": 868,
  4120. "attribute": 16,
  4121. "icon": "icon_s1505",
  4122. "scriptName": "S1505",
  4123. "IDGroup": 1505,
  4124. "timelineName": "bingzhui_timeline_TD",
  4125. "cd": 1.0,
  4126. "addcd": 1.0,
  4127. "SkillType": 1,
  4128. "level": 4,
  4129. "effectValue": [
  4130. 12.0,
  4131. 35.0
  4132. ],
  4133. "intensifierIndex": [
  4134. 2
  4135. ],
  4136. "addPropertyType": [
  4137. 101,
  4138. 102,
  4139. 103
  4140. ],
  4141. "addPropertyValue": [
  4142. 4.0,
  4143. 4.0,
  4144. 4.0
  4145. ],
  4146. "PromoteLan": 1222
  4147. },
  4148. {
  4149. "ID": 15054,
  4150. "PieceID": 13025,
  4151. "power": 506.25,
  4152. "name": 446,
  4153. "dec": 869,
  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": 5,
  4163. "effectValue": [
  4164. 15.0,
  4165. 35.0
  4166. ],
  4167. "intensifierIndex": [
  4168. 2
  4169. ],
  4170. "addPropertyType": [
  4171. 101,
  4172. 102,
  4173. 103
  4174. ],
  4175. "addPropertyValue": [
  4176. 4.0,
  4177. 4.0,
  4178. 4.0
  4179. ],
  4180. "PromoteLan": 1223,
  4181. "PromoteLanPara": [
  4182. 3.0
  4183. ]
  4184. },
  4185. {
  4186. "ID": 15055,
  4187. "PieceID": 13025,
  4188. "power": 759.375,
  4189. "name": 447,
  4190. "dec": 870,
  4191. "attribute": 16,
  4192. "icon": "icon_s1505",
  4193. "scriptName": "S1505",
  4194. "IDGroup": 1505,
  4195. "timelineName": "bingzhui_timeline_TD",
  4196. "cd": 1.0,
  4197. "addcd": 1.0,
  4198. "SkillType": 1,
  4199. "level": 6,
  4200. "effectValue": [
  4201. 15.0,
  4202. 35.0
  4203. ],
  4204. "intensifierIndex": [
  4205. 2
  4206. ],
  4207. "addPropertyType": [
  4208. 101,
  4209. 102,
  4210. 103
  4211. ],
  4212. "addPropertyValue": [
  4213. 6.0,
  4214. 6.0,
  4215. 6.0
  4216. ],
  4217. "PromoteLan": 1224
  4218. },
  4219. {
  4220. "ID": 20010,
  4221. "PieceID": 13006,
  4222. "power": 100.0,
  4223. "name": 448,
  4224. "dec": 871,
  4225. "attribute": 0,
  4226. "icon": "icon_s2001",
  4227. "scriptName": "S2001",
  4228. "IDGroup": 2001,
  4229. "timelineName": "",
  4230. "cd": 1.0,
  4231. "addcd": 0.0,
  4232. "SkillType": 2,
  4233. "level": 1,
  4234. "intensifierIndex": [
  4235. 0
  4236. ],
  4237. "PromoteLan": -1
  4238. },
  4239. {
  4240. "ID": 20011,
  4241. "PieceID": 13006,
  4242. "power": 150.0,
  4243. "name": 449,
  4244. "dec": 872,
  4245. "attribute": 0,
  4246. "icon": "icon_s2001",
  4247. "scriptName": "S2001",
  4248. "IDGroup": 2001,
  4249. "timelineName": "",
  4250. "cd": 1.0,
  4251. "addcd": 0.0,
  4252. "SkillType": 2,
  4253. "level": 2,
  4254. "intensifierIndex": [
  4255. 0
  4256. ],
  4257. "addPropertyType": [
  4258. 101,
  4259. 102,
  4260. 103
  4261. ],
  4262. "addPropertyValue": [
  4263. 2.0,
  4264. 2.0,
  4265. 2.0
  4266. ],
  4267. "PromoteLan": 1225
  4268. },
  4269. {
  4270. "ID": 20012,
  4271. "PieceID": 13006,
  4272. "power": 225.0,
  4273. "name": 450,
  4274. "dec": 873,
  4275. "attribute": 0,
  4276. "icon": "icon_s2001",
  4277. "scriptName": "S2001",
  4278. "IDGroup": 2001,
  4279. "timelineName": "",
  4280. "cd": 1.0,
  4281. "addcd": 0.0,
  4282. "SkillType": 2,
  4283. "level": 3,
  4284. "intensifierIndex": [
  4285. 0
  4286. ],
  4287. "addPropertyType": [
  4288. 101,
  4289. 102,
  4290. 103
  4291. ],
  4292. "addPropertyValue": [
  4293. 4.0,
  4294. 4.0,
  4295. 4.0
  4296. ],
  4297. "PromoteLan": 1226
  4298. },
  4299. {
  4300. "ID": 20013,
  4301. "PieceID": 13006,
  4302. "power": 337.5,
  4303. "name": 451,
  4304. "dec": 874,
  4305. "attribute": 0,
  4306. "icon": "icon_s2001",
  4307. "scriptName": "S2001",
  4308. "IDGroup": 2001,
  4309. "timelineName": "",
  4310. "cd": 1.0,
  4311. "addcd": 0.0,
  4312. "SkillType": 2,
  4313. "level": 4,
  4314. "intensifierIndex": [
  4315. 0
  4316. ],
  4317. "addPropertyType": [
  4318. 101,
  4319. 102,
  4320. 103
  4321. ],
  4322. "addPropertyValue": [
  4323. 6.0,
  4324. 6.0,
  4325. 6.0
  4326. ],
  4327. "PromoteLan": 1227
  4328. },
  4329. {
  4330. "ID": 20014,
  4331. "PieceID": 13006,
  4332. "power": 506.25,
  4333. "name": 452,
  4334. "dec": 875,
  4335. "attribute": 0,
  4336. "icon": "icon_s2001",
  4337. "scriptName": "S2001",
  4338. "IDGroup": 2001,
  4339. "timelineName": "",
  4340. "cd": 1.0,
  4341. "addcd": 0.0,
  4342. "SkillType": 2,
  4343. "level": 5,
  4344. "intensifierIndex": [
  4345. 0
  4346. ],
  4347. "addPropertyType": [
  4348. 101,
  4349. 102,
  4350. 103
  4351. ],
  4352. "addPropertyValue": [
  4353. 8.0,
  4354. 8.0,
  4355. 8.0
  4356. ],
  4357. "PromoteLan": 1228
  4358. },
  4359. {
  4360. "ID": 20015,
  4361. "PieceID": 13006,
  4362. "power": 759.375,
  4363. "name": 453,
  4364. "dec": 876,
  4365. "attribute": 0,
  4366. "icon": "icon_s2001",
  4367. "scriptName": "S2001",
  4368. "IDGroup": 2001,
  4369. "timelineName": "",
  4370. "cd": 1.0,
  4371. "addcd": 0.0,
  4372. "SkillType": 2,
  4373. "level": 6,
  4374. "intensifierIndex": [
  4375. 0
  4376. ],
  4377. "addPropertyType": [
  4378. 101,
  4379. 102,
  4380. 103
  4381. ],
  4382. "addPropertyValue": [
  4383. 8.0,
  4384. 8.0,
  4385. 8.0
  4386. ],
  4387. "PromoteLan": 1229
  4388. },
  4389. {
  4390. "ID": 20020,
  4391. "PieceID": 13006,
  4392. "power": 100.0,
  4393. "name": 454,
  4394. "dec": 877,
  4395. "attribute": 0,
  4396. "icon": "icon_s2002",
  4397. "scriptName": "S2002",
  4398. "IDGroup": 2002,
  4399. "timelineName": "",
  4400. "cd": 1.0,
  4401. "addcd": 0.0,
  4402. "SkillType": 2,
  4403. "level": 1,
  4404. "effectValue": [
  4405. 1.0
  4406. ],
  4407. "intensifierIndex": [
  4408. 0
  4409. ],
  4410. "PromoteLan": -1
  4411. },
  4412. {
  4413. "ID": 20021,
  4414. "PieceID": 13006,
  4415. "power": 150.0,
  4416. "name": 455,
  4417. "dec": 878,
  4418. "attribute": 0,
  4419. "icon": "icon_s2002",
  4420. "scriptName": "S2002",
  4421. "IDGroup": 2002,
  4422. "timelineName": "",
  4423. "cd": 1.0,
  4424. "addcd": 0.0,
  4425. "SkillType": 2,
  4426. "level": 2,
  4427. "effectValue": [
  4428. 1.0
  4429. ],
  4430. "intensifierIndex": [
  4431. 0
  4432. ],
  4433. "addPropertyType": [
  4434. 101,
  4435. 102,
  4436. 103
  4437. ],
  4438. "addPropertyValue": [
  4439. 2.0,
  4440. 2.0,
  4441. 2.0
  4442. ],
  4443. "PromoteLan": 1230
  4444. },
  4445. {
  4446. "ID": 20022,
  4447. "PieceID": 13006,
  4448. "power": 225.0,
  4449. "name": 456,
  4450. "dec": 879,
  4451. "attribute": 0,
  4452. "icon": "icon_s2002",
  4453. "scriptName": "S2002",
  4454. "IDGroup": 2002,
  4455. "timelineName": "",
  4456. "cd": 1.0,
  4457. "addcd": 0.0,
  4458. "SkillType": 2,
  4459. "level": 3,
  4460. "effectValue": [
  4461. 1.0
  4462. ],
  4463. "intensifierIndex": [
  4464. 0
  4465. ],
  4466. "addPropertyType": [
  4467. 101,
  4468. 102,
  4469. 103
  4470. ],
  4471. "addPropertyValue": [
  4472. 4.0,
  4473. 4.0,
  4474. 4.0
  4475. ],
  4476. "PromoteLan": 1231
  4477. },
  4478. {
  4479. "ID": 20023,
  4480. "PieceID": 13006,
  4481. "power": 337.5,
  4482. "name": 457,
  4483. "dec": 880,
  4484. "attribute": 0,
  4485. "icon": "icon_s2002",
  4486. "scriptName": "S2002",
  4487. "IDGroup": 2002,
  4488. "timelineName": "",
  4489. "cd": 1.0,
  4490. "addcd": 0.0,
  4491. "SkillType": 2,
  4492. "level": 4,
  4493. "effectValue": [
  4494. 1.0
  4495. ],
  4496. "intensifierIndex": [
  4497. 0
  4498. ],
  4499. "addPropertyType": [
  4500. 101,
  4501. 102,
  4502. 103
  4503. ],
  4504. "addPropertyValue": [
  4505. 6.0,
  4506. 6.0,
  4507. 6.0
  4508. ],
  4509. "PromoteLan": 1232
  4510. },
  4511. {
  4512. "ID": 20024,
  4513. "PieceID": 13006,
  4514. "power": 506.25,
  4515. "name": 458,
  4516. "dec": 881,
  4517. "attribute": 0,
  4518. "icon": "icon_s2002",
  4519. "scriptName": "S2002",
  4520. "IDGroup": 2002,
  4521. "timelineName": "",
  4522. "cd": 1.0,
  4523. "addcd": 0.0,
  4524. "SkillType": 2,
  4525. "level": 5,
  4526. "effectValue": [
  4527. 1.0
  4528. ],
  4529. "intensifierIndex": [
  4530. 0
  4531. ],
  4532. "addPropertyType": [
  4533. 101,
  4534. 102,
  4535. 103
  4536. ],
  4537. "addPropertyValue": [
  4538. 8.0,
  4539. 8.0,
  4540. 8.0
  4541. ],
  4542. "PromoteLan": 1233
  4543. },
  4544. {
  4545. "ID": 20025,
  4546. "PieceID": 13006,
  4547. "power": 759.375,
  4548. "name": 459,
  4549. "dec": 882,
  4550. "attribute": 0,
  4551. "icon": "icon_s2002",
  4552. "scriptName": "S2002",
  4553. "IDGroup": 2002,
  4554. "timelineName": "",
  4555. "cd": 1.0,
  4556. "addcd": 0.0,
  4557. "SkillType": 2,
  4558. "level": 6,
  4559. "effectValue": [
  4560. 3.0
  4561. ],
  4562. "intensifierIndex": [
  4563. 0
  4564. ],
  4565. "addPropertyType": [
  4566. 101,
  4567. 102,
  4568. 103
  4569. ],
  4570. "addPropertyValue": [
  4571. 8.0,
  4572. 8.0,
  4573. 8.0
  4574. ],
  4575. "PromoteLan": 1234
  4576. },
  4577. {
  4578. "ID": 20030,
  4579. "PieceID": 13011,
  4580. "power": 100.0,
  4581. "name": 460,
  4582. "dec": 883,
  4583. "attribute": 0,
  4584. "icon": "icon_s2003",
  4585. "scriptName": "S2003",
  4586. "IDGroup": 2003,
  4587. "timelineName": "",
  4588. "cd": 1.0,
  4589. "addcd": 0.0,
  4590. "SkillType": 2,
  4591. "level": 1,
  4592. "effectValue": [
  4593. 50.0
  4594. ],
  4595. "intensifierIndex": [
  4596. 0
  4597. ],
  4598. "PromoteLan": -1,
  4599. "PromoteLanPara_1": [
  4600. 1.0
  4601. ]
  4602. },
  4603. {
  4604. "ID": 20031,
  4605. "PieceID": 13011,
  4606. "power": 150.0,
  4607. "name": 461,
  4608. "dec": 884,
  4609. "attribute": 0,
  4610. "icon": "icon_s2003",
  4611. "scriptName": "S2003",
  4612. "IDGroup": 2003,
  4613. "timelineName": "",
  4614. "cd": 1.0,
  4615. "addcd": 0.0,
  4616. "SkillType": 2,
  4617. "level": 2,
  4618. "effectValue": [
  4619. 50.0
  4620. ],
  4621. "intensifierIndex": [
  4622. 0
  4623. ],
  4624. "addPropertyType": [
  4625. 101,
  4626. 102,
  4627. 103
  4628. ],
  4629. "addPropertyValue": [
  4630. 2.0,
  4631. 2.0,
  4632. 2.0
  4633. ],
  4634. "PromoteLan": 1235,
  4635. "PromoteLanPara_1": [
  4636. 1.0
  4637. ]
  4638. },
  4639. {
  4640. "ID": 20032,
  4641. "PieceID": 13011,
  4642. "power": 225.0,
  4643. "name": 462,
  4644. "dec": 885,
  4645. "attribute": 0,
  4646. "icon": "icon_s2003",
  4647. "scriptName": "S2003",
  4648. "IDGroup": 2003,
  4649. "timelineName": "",
  4650. "cd": 1.0,
  4651. "addcd": 0.0,
  4652. "SkillType": 2,
  4653. "level": 3,
  4654. "effectValue": [
  4655. 50.0
  4656. ],
  4657. "intensifierIndex": [
  4658. 0
  4659. ],
  4660. "addPropertyType": [
  4661. 101,
  4662. 102,
  4663. 103
  4664. ],
  4665. "addPropertyValue": [
  4666. 4.0,
  4667. 4.0,
  4668. 4.0
  4669. ],
  4670. "PromoteLan": 1236,
  4671. "PromoteLanPara_1": [
  4672. 1.0
  4673. ]
  4674. },
  4675. {
  4676. "ID": 20033,
  4677. "PieceID": 13011,
  4678. "power": 337.5,
  4679. "name": 463,
  4680. "dec": 886,
  4681. "attribute": 0,
  4682. "icon": "icon_s2003",
  4683. "scriptName": "S2003",
  4684. "IDGroup": 2003,
  4685. "timelineName": "",
  4686. "cd": 1.0,
  4687. "addcd": 0.0,
  4688. "SkillType": 2,
  4689. "level": 4,
  4690. "effectValue": [
  4691. 50.0
  4692. ],
  4693. "intensifierIndex": [
  4694. 0
  4695. ],
  4696. "addPropertyType": [
  4697. 101,
  4698. 102,
  4699. 103
  4700. ],
  4701. "addPropertyValue": [
  4702. 6.0,
  4703. 6.0,
  4704. 6.0
  4705. ],
  4706. "PromoteLan": 1237,
  4707. "PromoteLanPara_1": [
  4708. 1.0
  4709. ]
  4710. },
  4711. {
  4712. "ID": 20034,
  4713. "PieceID": 13011,
  4714. "power": 506.25,
  4715. "name": 464,
  4716. "dec": 887,
  4717. "attribute": 0,
  4718. "icon": "icon_s2003",
  4719. "scriptName": "S2003",
  4720. "IDGroup": 2003,
  4721. "timelineName": "",
  4722. "cd": 1.0,
  4723. "addcd": 0.0,
  4724. "SkillType": 2,
  4725. "level": 5,
  4726. "effectValue": [
  4727. 50.0
  4728. ],
  4729. "intensifierIndex": [
  4730. 0
  4731. ],
  4732. "addPropertyType": [
  4733. 101,
  4734. 102,
  4735. 103
  4736. ],
  4737. "addPropertyValue": [
  4738. 8.0,
  4739. 8.0,
  4740. 8.0
  4741. ],
  4742. "PromoteLan": 1238,
  4743. "PromoteLanPara_1": [
  4744. 1.0
  4745. ]
  4746. },
  4747. {
  4748. "ID": 20035,
  4749. "PieceID": 13011,
  4750. "power": 759.375,
  4751. "name": 465,
  4752. "dec": 888,
  4753. "attribute": 0,
  4754. "icon": "icon_s2003",
  4755. "scriptName": "S2003",
  4756. "IDGroup": 2003,
  4757. "timelineName": "",
  4758. "cd": 1.0,
  4759. "addcd": 0.0,
  4760. "SkillType": 2,
  4761. "level": 6,
  4762. "effectValue": [
  4763. 100.0
  4764. ],
  4765. "intensifierIndex": [
  4766. 0
  4767. ],
  4768. "addPropertyType": [
  4769. 101,
  4770. 102,
  4771. 103
  4772. ],
  4773. "addPropertyValue": [
  4774. 8.0,
  4775. 8.0,
  4776. 8.0
  4777. ],
  4778. "PromoteLan": 1239,
  4779. "PromoteLanPara_1": [
  4780. 1.0
  4781. ]
  4782. },
  4783. {
  4784. "ID": 20040,
  4785. "PieceID": 13007,
  4786. "power": 100.0,
  4787. "name": 466,
  4788. "dec": 889,
  4789. "attribute": 0,
  4790. "icon": "icon_s2004",
  4791. "scriptName": "S2004",
  4792. "IDGroup": 2004,
  4793. "timelineName": "",
  4794. "cd": 1.0,
  4795. "addcd": 0.0,
  4796. "SkillType": 2,
  4797. "level": 1,
  4798. "effectValue": [
  4799. 30.0
  4800. ],
  4801. "intensifierIndex": [
  4802. 0
  4803. ],
  4804. "PromoteLan": -1,
  4805. "PromoteLanPara_1": [
  4806. 1.0,
  4807. -1.0
  4808. ]
  4809. },
  4810. {
  4811. "ID": 20041,
  4812. "PieceID": 13007,
  4813. "power": 150.0,
  4814. "name": 467,
  4815. "dec": 890,
  4816. "attribute": 0,
  4817. "icon": "icon_s2004",
  4818. "scriptName": "S2004",
  4819. "IDGroup": 2004,
  4820. "timelineName": "",
  4821. "cd": 1.0,
  4822. "addcd": 0.0,
  4823. "SkillType": 2,
  4824. "level": 2,
  4825. "effectValue": [
  4826. 30.0
  4827. ],
  4828. "intensifierIndex": [
  4829. 0
  4830. ],
  4831. "addPropertyType": [
  4832. 101,
  4833. 102,
  4834. 103
  4835. ],
  4836. "addPropertyValue": [
  4837. 2.0,
  4838. 2.0,
  4839. 2.0
  4840. ],
  4841. "PromoteLan": 1240,
  4842. "PromoteLanPara_1": [
  4843. 1.0,
  4844. -1.0
  4845. ]
  4846. },
  4847. {
  4848. "ID": 20042,
  4849. "PieceID": 13007,
  4850. "power": 225.0,
  4851. "name": 468,
  4852. "dec": 891,
  4853. "attribute": 0,
  4854. "icon": "icon_s2004",
  4855. "scriptName": "S2004",
  4856. "IDGroup": 2004,
  4857. "timelineName": "",
  4858. "cd": 1.0,
  4859. "addcd": 0.0,
  4860. "SkillType": 2,
  4861. "level": 3,
  4862. "effectValue": [
  4863. 30.0
  4864. ],
  4865. "intensifierIndex": [
  4866. 0
  4867. ],
  4868. "addPropertyType": [
  4869. 101,
  4870. 102,
  4871. 103
  4872. ],
  4873. "addPropertyValue": [
  4874. 4.0,
  4875. 4.0,
  4876. 4.0
  4877. ],
  4878. "PromoteLan": 1241,
  4879. "PromoteLanPara_1": [
  4880. 1.0,
  4881. -1.0
  4882. ]
  4883. },
  4884. {
  4885. "ID": 20043,
  4886. "PieceID": 13007,
  4887. "power": 337.5,
  4888. "name": 469,
  4889. "dec": 892,
  4890. "attribute": 0,
  4891. "icon": "icon_s2004",
  4892. "scriptName": "S2004",
  4893. "IDGroup": 2004,
  4894. "timelineName": "",
  4895. "cd": 1.0,
  4896. "addcd": 0.0,
  4897. "SkillType": 2,
  4898. "level": 4,
  4899. "effectValue": [
  4900. 30.0
  4901. ],
  4902. "intensifierIndex": [
  4903. 0
  4904. ],
  4905. "addPropertyType": [
  4906. 101,
  4907. 102,
  4908. 103
  4909. ],
  4910. "addPropertyValue": [
  4911. 6.0,
  4912. 6.0,
  4913. 6.0
  4914. ],
  4915. "PromoteLan": 1242,
  4916. "PromoteLanPara_1": [
  4917. 1.0,
  4918. -1.0
  4919. ]
  4920. },
  4921. {
  4922. "ID": 20044,
  4923. "PieceID": 13007,
  4924. "power": 506.25,
  4925. "name": 470,
  4926. "dec": 893,
  4927. "attribute": 0,
  4928. "icon": "icon_s2004",
  4929. "scriptName": "S2004",
  4930. "IDGroup": 2004,
  4931. "timelineName": "",
  4932. "cd": 1.0,
  4933. "addcd": 0.0,
  4934. "SkillType": 2,
  4935. "level": 5,
  4936. "effectValue": [
  4937. 30.0
  4938. ],
  4939. "intensifierIndex": [
  4940. 0
  4941. ],
  4942. "addPropertyType": [
  4943. 101,
  4944. 102,
  4945. 103
  4946. ],
  4947. "addPropertyValue": [
  4948. 8.0,
  4949. 8.0,
  4950. 8.0
  4951. ],
  4952. "PromoteLan": 1243,
  4953. "PromoteLanPara_1": [
  4954. 1.0,
  4955. -1.0
  4956. ]
  4957. },
  4958. {
  4959. "ID": 20045,
  4960. "PieceID": 13007,
  4961. "power": 759.375,
  4962. "name": 471,
  4963. "dec": 894,
  4964. "attribute": 0,
  4965. "icon": "icon_s2004",
  4966. "scriptName": "S2004",
  4967. "IDGroup": 2004,
  4968. "timelineName": "",
  4969. "cd": 1.0,
  4970. "addcd": 0.0,
  4971. "SkillType": 2,
  4972. "level": 6,
  4973. "effectValue": [
  4974. 30.0,
  4975. 15.0,
  4976. 10.0
  4977. ],
  4978. "intensifierIndex": [
  4979. 0
  4980. ],
  4981. "addPropertyType": [
  4982. 101,
  4983. 102,
  4984. 103
  4985. ],
  4986. "addPropertyValue": [
  4987. 8.0,
  4988. 8.0,
  4989. 8.0
  4990. ],
  4991. "PromoteLan": 1244,
  4992. "PromoteLanPara_1": [
  4993. 1.0,
  4994. -1.0
  4995. ]
  4996. },
  4997. {
  4998. "ID": 20050,
  4999. "PieceID": 13008,
  5000. "power": 100.0,
  5001. "name": 472,
  5002. "dec": 895,
  5003. "attribute": 0,
  5004. "icon": "icon_s2005",
  5005. "scriptName": "S2005",
  5006. "IDGroup": 2005,
  5007. "timelineName": "",
  5008. "cd": 1.0,
  5009. "addcd": 0.0,
  5010. "SkillType": 2,
  5011. "level": 1,
  5012. "effectValue": [
  5013. 1.0,
  5014. 20.0
  5015. ],
  5016. "intensifierIndex": [
  5017. 0
  5018. ],
  5019. "PromoteLan": -1
  5020. },
  5021. {
  5022. "ID": 20051,
  5023. "PieceID": 13008,
  5024. "power": 150.0,
  5025. "name": 473,
  5026. "dec": 896,
  5027. "attribute": 0,
  5028. "icon": "icon_s2005",
  5029. "scriptName": "S2005",
  5030. "IDGroup": 2005,
  5031. "timelineName": "",
  5032. "cd": 1.0,
  5033. "addcd": 0.0,
  5034. "SkillType": 2,
  5035. "level": 2,
  5036. "effectValue": [
  5037. 1.0,
  5038. 20.0
  5039. ],
  5040. "intensifierIndex": [
  5041. 0
  5042. ],
  5043. "addPropertyType": [
  5044. 101,
  5045. 102,
  5046. 103
  5047. ],
  5048. "addPropertyValue": [
  5049. 2.0,
  5050. 2.0,
  5051. 2.0
  5052. ],
  5053. "PromoteLan": 1245
  5054. },
  5055. {
  5056. "ID": 20052,
  5057. "PieceID": 13008,
  5058. "power": 225.0,
  5059. "name": 474,
  5060. "dec": 897,
  5061. "attribute": 0,
  5062. "icon": "icon_s2005",
  5063. "scriptName": "S2005",
  5064. "IDGroup": 2005,
  5065. "timelineName": "",
  5066. "cd": 1.0,
  5067. "addcd": 0.0,
  5068. "SkillType": 2,
  5069. "level": 3,
  5070. "effectValue": [
  5071. 1.0,
  5072. 20.0
  5073. ],
  5074. "intensifierIndex": [
  5075. 0
  5076. ],
  5077. "addPropertyType": [
  5078. 101,
  5079. 102,
  5080. 103
  5081. ],
  5082. "addPropertyValue": [
  5083. 4.0,
  5084. 4.0,
  5085. 4.0
  5086. ],
  5087. "PromoteLan": 1246
  5088. },
  5089. {
  5090. "ID": 20053,
  5091. "PieceID": 13008,
  5092. "power": 337.5,
  5093. "name": 475,
  5094. "dec": 898,
  5095. "attribute": 0,
  5096. "icon": "icon_s2005",
  5097. "scriptName": "S2005",
  5098. "IDGroup": 2005,
  5099. "timelineName": "",
  5100. "cd": 1.0,
  5101. "addcd": 0.0,
  5102. "SkillType": 2,
  5103. "level": 4,
  5104. "effectValue": [
  5105. 1.0,
  5106. 20.0
  5107. ],
  5108. "intensifierIndex": [
  5109. 0
  5110. ],
  5111. "addPropertyType": [
  5112. 101,
  5113. 102,
  5114. 103
  5115. ],
  5116. "addPropertyValue": [
  5117. 6.0,
  5118. 6.0,
  5119. 6.0
  5120. ],
  5121. "PromoteLan": 1247
  5122. },
  5123. {
  5124. "ID": 20054,
  5125. "PieceID": 13008,
  5126. "power": 506.25,
  5127. "name": 476,
  5128. "dec": 899,
  5129. "attribute": 0,
  5130. "icon": "icon_s2005",
  5131. "scriptName": "S2005",
  5132. "IDGroup": 2005,
  5133. "timelineName": "",
  5134. "cd": 1.0,
  5135. "addcd": 0.0,
  5136. "SkillType": 2,
  5137. "level": 5,
  5138. "effectValue": [
  5139. 1.0,
  5140. 20.0
  5141. ],
  5142. "intensifierIndex": [
  5143. 0
  5144. ],
  5145. "addPropertyType": [
  5146. 101,
  5147. 102,
  5148. 103
  5149. ],
  5150. "addPropertyValue": [
  5151. 8.0,
  5152. 8.0,
  5153. 8.0
  5154. ],
  5155. "PromoteLan": 1248
  5156. },
  5157. {
  5158. "ID": 20055,
  5159. "PieceID": 13008,
  5160. "power": 759.375,
  5161. "name": 477,
  5162. "dec": 900,
  5163. "attribute": 0,
  5164. "icon": "icon_s2005",
  5165. "scriptName": "S2005",
  5166. "IDGroup": 2005,
  5167. "timelineName": "",
  5168. "cd": 1.0,
  5169. "addcd": 0.0,
  5170. "SkillType": 2,
  5171. "level": 6,
  5172. "effectValue": [
  5173. 2.0,
  5174. 20.0,
  5175. 1.0
  5176. ],
  5177. "intensifierIndex": [
  5178. 0
  5179. ],
  5180. "addPropertyType": [
  5181. 101,
  5182. 102,
  5183. 103
  5184. ],
  5185. "addPropertyValue": [
  5186. 8.0,
  5187. 8.0,
  5188. 8.0
  5189. ],
  5190. "PromoteLan": 1249
  5191. },
  5192. {
  5193. "ID": 20060,
  5194. "PieceID": 13009,
  5195. "power": 100.0,
  5196. "name": 478,
  5197. "dec": 901,
  5198. "attribute": 0,
  5199. "icon": "icon_s2006",
  5200. "scriptName": "S2006",
  5201. "IDGroup": 2006,
  5202. "timelineName": "",
  5203. "cd": 1.0,
  5204. "addcd": 0.0,
  5205. "SkillType": 2,
  5206. "level": 1,
  5207. "effectValue": [
  5208. 30.0,
  5209. 30.0
  5210. ],
  5211. "intensifierIndex": [
  5212. 0
  5213. ],
  5214. "PromoteLan": -1
  5215. },
  5216. {
  5217. "ID": 20061,
  5218. "PieceID": 13009,
  5219. "power": 150.0,
  5220. "name": 479,
  5221. "dec": 902,
  5222. "attribute": 0,
  5223. "icon": "icon_s2006",
  5224. "scriptName": "S2006",
  5225. "IDGroup": 2006,
  5226. "timelineName": "",
  5227. "cd": 1.0,
  5228. "addcd": 0.0,
  5229. "SkillType": 2,
  5230. "level": 2,
  5231. "effectValue": [
  5232. 30.0,
  5233. 30.0
  5234. ],
  5235. "intensifierIndex": [
  5236. 0
  5237. ],
  5238. "addPropertyType": [
  5239. 101,
  5240. 102,
  5241. 103
  5242. ],
  5243. "addPropertyValue": [
  5244. 2.0,
  5245. 2.0,
  5246. 2.0
  5247. ],
  5248. "PromoteLan": 1250
  5249. },
  5250. {
  5251. "ID": 20062,
  5252. "PieceID": 13009,
  5253. "power": 225.0,
  5254. "name": 480,
  5255. "dec": 903,
  5256. "attribute": 0,
  5257. "icon": "icon_s2006",
  5258. "scriptName": "S2006",
  5259. "IDGroup": 2006,
  5260. "timelineName": "",
  5261. "cd": 1.0,
  5262. "addcd": 0.0,
  5263. "SkillType": 2,
  5264. "level": 3,
  5265. "effectValue": [
  5266. 30.0,
  5267. 30.0
  5268. ],
  5269. "intensifierIndex": [
  5270. 0
  5271. ],
  5272. "addPropertyType": [
  5273. 101,
  5274. 102,
  5275. 103
  5276. ],
  5277. "addPropertyValue": [
  5278. 4.0,
  5279. 4.0,
  5280. 4.0
  5281. ],
  5282. "PromoteLan": 1251
  5283. },
  5284. {
  5285. "ID": 20063,
  5286. "PieceID": 13009,
  5287. "power": 337.5,
  5288. "name": 481,
  5289. "dec": 904,
  5290. "attribute": 0,
  5291. "icon": "icon_s2006",
  5292. "scriptName": "S2006",
  5293. "IDGroup": 2006,
  5294. "timelineName": "",
  5295. "cd": 1.0,
  5296. "addcd": 0.0,
  5297. "SkillType": 2,
  5298. "level": 4,
  5299. "effectValue": [
  5300. 30.0,
  5301. 30.0
  5302. ],
  5303. "intensifierIndex": [
  5304. 0
  5305. ],
  5306. "addPropertyType": [
  5307. 101,
  5308. 102,
  5309. 103
  5310. ],
  5311. "addPropertyValue": [
  5312. 6.0,
  5313. 6.0,
  5314. 6.0
  5315. ],
  5316. "PromoteLan": 1252
  5317. },
  5318. {
  5319. "ID": 20064,
  5320. "PieceID": 13009,
  5321. "power": 506.25,
  5322. "name": 482,
  5323. "dec": 905,
  5324. "attribute": 0,
  5325. "icon": "icon_s2006",
  5326. "scriptName": "S2006",
  5327. "IDGroup": 2006,
  5328. "timelineName": "",
  5329. "cd": 1.0,
  5330. "addcd": 0.0,
  5331. "SkillType": 2,
  5332. "level": 5,
  5333. "effectValue": [
  5334. 30.0,
  5335. 30.0
  5336. ],
  5337. "intensifierIndex": [
  5338. 0
  5339. ],
  5340. "addPropertyType": [
  5341. 101,
  5342. 102,
  5343. 103
  5344. ],
  5345. "addPropertyValue": [
  5346. 8.0,
  5347. 8.0,
  5348. 8.0
  5349. ],
  5350. "PromoteLan": 1253
  5351. },
  5352. {
  5353. "ID": 20065,
  5354. "PieceID": 13009,
  5355. "power": 759.375,
  5356. "name": 483,
  5357. "dec": 906,
  5358. "attribute": 0,
  5359. "icon": "icon_s2006",
  5360. "scriptName": "S2006",
  5361. "IDGroup": 2006,
  5362. "timelineName": "",
  5363. "cd": 1.0,
  5364. "addcd": 0.0,
  5365. "SkillType": 2,
  5366. "level": 6,
  5367. "effectValue": [
  5368. 30.0,
  5369. 30.0,
  5370. 30.0
  5371. ],
  5372. "intensifierIndex": [
  5373. 0
  5374. ],
  5375. "addPropertyType": [
  5376. 101,
  5377. 102,
  5378. 103
  5379. ],
  5380. "addPropertyValue": [
  5381. 8.0,
  5382. 8.0,
  5383. 8.0
  5384. ],
  5385. "PromoteLan": 1254
  5386. },
  5387. {
  5388. "ID": 20070,
  5389. "PieceID": 13010,
  5390. "power": 100.0,
  5391. "name": 484,
  5392. "dec": 907,
  5393. "attribute": 0,
  5394. "icon": "icon_s2007",
  5395. "scriptName": "S2007",
  5396. "IDGroup": 2007,
  5397. "timelineName": "",
  5398. "cd": 1.0,
  5399. "addcd": 0.0,
  5400. "SkillType": 2,
  5401. "level": 1,
  5402. "effectValue": [
  5403. 20.0,
  5404. 9.0
  5405. ],
  5406. "intensifierIndex": [
  5407. 0
  5408. ],
  5409. "PromoteLan": -1
  5410. },
  5411. {
  5412. "ID": 20071,
  5413. "PieceID": 13010,
  5414. "power": 150.0,
  5415. "name": 485,
  5416. "dec": 908,
  5417. "attribute": 0,
  5418. "icon": "icon_s2007",
  5419. "scriptName": "S2007",
  5420. "IDGroup": 2007,
  5421. "timelineName": "",
  5422. "cd": 1.0,
  5423. "addcd": 0.0,
  5424. "SkillType": 2,
  5425. "level": 2,
  5426. "effectValue": [
  5427. 20.0,
  5428. 9.0
  5429. ],
  5430. "intensifierIndex": [
  5431. 0
  5432. ],
  5433. "addPropertyType": [
  5434. 101,
  5435. 102,
  5436. 103
  5437. ],
  5438. "addPropertyValue": [
  5439. 2.0,
  5440. 2.0,
  5441. 2.0
  5442. ],
  5443. "PromoteLan": 1255
  5444. },
  5445. {
  5446. "ID": 20072,
  5447. "PieceID": 13010,
  5448. "power": 225.0,
  5449. "name": 486,
  5450. "dec": 909,
  5451. "attribute": 0,
  5452. "icon": "icon_s2007",
  5453. "scriptName": "S2007",
  5454. "IDGroup": 2007,
  5455. "timelineName": "",
  5456. "cd": 1.0,
  5457. "addcd": 0.0,
  5458. "SkillType": 2,
  5459. "level": 3,
  5460. "effectValue": [
  5461. 20.0,
  5462. 9.0
  5463. ],
  5464. "intensifierIndex": [
  5465. 0
  5466. ],
  5467. "addPropertyType": [
  5468. 101,
  5469. 102,
  5470. 103
  5471. ],
  5472. "addPropertyValue": [
  5473. 4.0,
  5474. 4.0,
  5475. 4.0
  5476. ],
  5477. "PromoteLan": 1256
  5478. },
  5479. {
  5480. "ID": 20073,
  5481. "PieceID": 13010,
  5482. "power": 337.5,
  5483. "name": 487,
  5484. "dec": 910,
  5485. "attribute": 0,
  5486. "icon": "icon_s2007",
  5487. "scriptName": "S2007",
  5488. "IDGroup": 2007,
  5489. "timelineName": "",
  5490. "cd": 1.0,
  5491. "addcd": 0.0,
  5492. "SkillType": 2,
  5493. "level": 4,
  5494. "effectValue": [
  5495. 20.0,
  5496. 9.0
  5497. ],
  5498. "intensifierIndex": [
  5499. 0
  5500. ],
  5501. "addPropertyType": [
  5502. 101,
  5503. 102,
  5504. 103
  5505. ],
  5506. "addPropertyValue": [
  5507. 6.0,
  5508. 6.0,
  5509. 6.0
  5510. ],
  5511. "PromoteLan": 1257
  5512. },
  5513. {
  5514. "ID": 20074,
  5515. "PieceID": 13010,
  5516. "power": 506.25,
  5517. "name": 488,
  5518. "dec": 911,
  5519. "attribute": 0,
  5520. "icon": "icon_s2007",
  5521. "scriptName": "S2007",
  5522. "IDGroup": 2007,
  5523. "timelineName": "",
  5524. "cd": 1.0,
  5525. "addcd": 0.0,
  5526. "SkillType": 2,
  5527. "level": 5,
  5528. "effectValue": [
  5529. 20.0,
  5530. 9.0
  5531. ],
  5532. "intensifierIndex": [
  5533. 0
  5534. ],
  5535. "addPropertyType": [
  5536. 101,
  5537. 102,
  5538. 103
  5539. ],
  5540. "addPropertyValue": [
  5541. 8.0,
  5542. 8.0,
  5543. 8.0
  5544. ],
  5545. "PromoteLan": 1258
  5546. },
  5547. {
  5548. "ID": 20075,
  5549. "PieceID": 13010,
  5550. "power": 759.375,
  5551. "name": 489,
  5552. "dec": 912,
  5553. "attribute": 0,
  5554. "icon": "icon_s2007",
  5555. "scriptName": "S2007",
  5556. "IDGroup": 2007,
  5557. "timelineName": "",
  5558. "cd": 1.0,
  5559. "addcd": 0.0,
  5560. "SkillType": 2,
  5561. "level": 6,
  5562. "effectValue": [
  5563. 20.0,
  5564. 9.0,
  5565. 15.0
  5566. ],
  5567. "intensifierIndex": [
  5568. 0
  5569. ],
  5570. "addPropertyType": [
  5571. 101,
  5572. 102,
  5573. 103
  5574. ],
  5575. "addPropertyValue": [
  5576. 8.0,
  5577. 8.0,
  5578. 8.0
  5579. ],
  5580. "PromoteLan": 1259
  5581. },
  5582. {
  5583. "ID": 20080,
  5584. "PieceID": 13010,
  5585. "power": 100.0,
  5586. "name": 490,
  5587. "dec": 913,
  5588. "attribute": 0,
  5589. "icon": "icon_s2008",
  5590. "scriptName": "S2008",
  5591. "IDGroup": 2008,
  5592. "timelineName": "",
  5593. "cd": 1.0,
  5594. "addcd": 0.0,
  5595. "SkillType": 2,
  5596. "level": 1,
  5597. "effectValue": [
  5598. 1.0,
  5599. 100.0
  5600. ],
  5601. "intensifierIndex": [
  5602. 0
  5603. ],
  5604. "PromoteLan": -1
  5605. },
  5606. {
  5607. "ID": 20081,
  5608. "PieceID": 13010,
  5609. "power": 150.0,
  5610. "name": 491,
  5611. "dec": 914,
  5612. "attribute": 0,
  5613. "icon": "icon_s2008",
  5614. "scriptName": "S2008",
  5615. "IDGroup": 2008,
  5616. "timelineName": "",
  5617. "cd": 1.0,
  5618. "addcd": 0.0,
  5619. "SkillType": 2,
  5620. "level": 2,
  5621. "effectValue": [
  5622. 1.0,
  5623. 100.0
  5624. ],
  5625. "intensifierIndex": [
  5626. 0
  5627. ],
  5628. "addPropertyType": [
  5629. 101,
  5630. 102,
  5631. 103
  5632. ],
  5633. "addPropertyValue": [
  5634. 2.0,
  5635. 2.0,
  5636. 2.0
  5637. ],
  5638. "PromoteLan": 1260
  5639. },
  5640. {
  5641. "ID": 20082,
  5642. "PieceID": 13010,
  5643. "power": 225.0,
  5644. "name": 492,
  5645. "dec": 915,
  5646. "attribute": 0,
  5647. "icon": "icon_s2008",
  5648. "scriptName": "S2008",
  5649. "IDGroup": 2008,
  5650. "timelineName": "",
  5651. "cd": 1.0,
  5652. "addcd": 0.0,
  5653. "SkillType": 2,
  5654. "level": 3,
  5655. "effectValue": [
  5656. 1.0,
  5657. 100.0
  5658. ],
  5659. "intensifierIndex": [
  5660. 0
  5661. ],
  5662. "addPropertyType": [
  5663. 101,
  5664. 102,
  5665. 103
  5666. ],
  5667. "addPropertyValue": [
  5668. 4.0,
  5669. 4.0,
  5670. 4.0
  5671. ],
  5672. "PromoteLan": 1261
  5673. },
  5674. {
  5675. "ID": 20083,
  5676. "PieceID": 13010,
  5677. "power": 337.5,
  5678. "name": 493,
  5679. "dec": 916,
  5680. "attribute": 0,
  5681. "icon": "icon_s2008",
  5682. "scriptName": "S2008",
  5683. "IDGroup": 2008,
  5684. "timelineName": "",
  5685. "cd": 1.0,
  5686. "addcd": 0.0,
  5687. "SkillType": 2,
  5688. "level": 4,
  5689. "effectValue": [
  5690. 1.0,
  5691. 100.0
  5692. ],
  5693. "intensifierIndex": [
  5694. 0
  5695. ],
  5696. "addPropertyType": [
  5697. 101,
  5698. 102,
  5699. 103
  5700. ],
  5701. "addPropertyValue": [
  5702. 6.0,
  5703. 6.0,
  5704. 6.0
  5705. ],
  5706. "PromoteLan": 1262
  5707. },
  5708. {
  5709. "ID": 20084,
  5710. "PieceID": 13010,
  5711. "power": 506.25,
  5712. "name": 494,
  5713. "dec": 917,
  5714. "attribute": 0,
  5715. "icon": "icon_s2008",
  5716. "scriptName": "S2008",
  5717. "IDGroup": 2008,
  5718. "timelineName": "",
  5719. "cd": 1.0,
  5720. "addcd": 0.0,
  5721. "SkillType": 2,
  5722. "level": 5,
  5723. "effectValue": [
  5724. 1.0,
  5725. 100.0
  5726. ],
  5727. "intensifierIndex": [
  5728. 0
  5729. ],
  5730. "addPropertyType": [
  5731. 101,
  5732. 102,
  5733. 103
  5734. ],
  5735. "addPropertyValue": [
  5736. 8.0,
  5737. 8.0,
  5738. 8.0
  5739. ],
  5740. "PromoteLan": 1263
  5741. },
  5742. {
  5743. "ID": 20085,
  5744. "PieceID": 13010,
  5745. "power": 759.375,
  5746. "name": 495,
  5747. "dec": 918,
  5748. "attribute": 0,
  5749. "icon": "icon_s2008",
  5750. "scriptName": "S2008",
  5751. "IDGroup": 2008,
  5752. "timelineName": "",
  5753. "cd": 1.0,
  5754. "addcd": 0.0,
  5755. "SkillType": 2,
  5756. "level": 6,
  5757. "effectValue": [
  5758. 2.0,
  5759. 100.0,
  5760. 1.0
  5761. ],
  5762. "intensifierIndex": [
  5763. 0
  5764. ],
  5765. "addPropertyType": [
  5766. 101,
  5767. 102,
  5768. 103
  5769. ],
  5770. "addPropertyValue": [
  5771. 8.0,
  5772. 8.0,
  5773. 8.0
  5774. ],
  5775. "PromoteLan": 1264,
  5776. "PromoteLanPara_1": [
  5777. 1.0,
  5778. -1.0
  5779. ]
  5780. },
  5781. {
  5782. "ID": 31010,
  5783. "PieceID": 11005,
  5784. "power": 100.0,
  5785. "name": 496,
  5786. "dec": 919,
  5787. "attribute": 1,
  5788. "icon": "icon_fb3101",
  5789. "scriptName": "S3101",
  5790. "IDGroup": 3101,
  5791. "timelineName": "",
  5792. "cd": 30.0,
  5793. "addcd": 0.0,
  5794. "SkillType": 3,
  5795. "level": 1,
  5796. "effectValue": [
  5797. 9.0
  5798. ],
  5799. "intensifierIndex": [
  5800. 1
  5801. ],
  5802. "PromoteLan": -1
  5803. },
  5804. {
  5805. "ID": 31011,
  5806. "PieceID": 11005,
  5807. "power": 120.0,
  5808. "name": 497,
  5809. "dec": 920,
  5810. "attribute": 1,
  5811. "icon": "icon_fb3101",
  5812. "scriptName": "S3101",
  5813. "IDGroup": 3101,
  5814. "timelineName": "",
  5815. "cd": 30.0,
  5816. "addcd": 0.0,
  5817. "SkillType": 3,
  5818. "level": 2,
  5819. "effectValue": [
  5820. 9.0
  5821. ],
  5822. "intensifierIndex": [
  5823. 1
  5824. ],
  5825. "addPropertyType": [
  5826. 106
  5827. ],
  5828. "addPropertyValue": [
  5829. 5.0
  5830. ],
  5831. "PromoteLan": 1265,
  5832. "PromoteLanPara": [
  5833. 5.0
  5834. ]
  5835. },
  5836. {
  5837. "ID": 31012,
  5838. "PieceID": 11005,
  5839. "power": 225.0,
  5840. "name": 498,
  5841. "dec": 921,
  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": 3,
  5851. "effectValue": [
  5852. 9.0
  5853. ],
  5854. "intensifierIndex": [
  5855. 1
  5856. ],
  5857. "addPropertyType": [
  5858. 102,
  5859. 106
  5860. ],
  5861. "addPropertyValue": [
  5862. 5.0,
  5863. 5.0
  5864. ],
  5865. "PromoteLan": 1266,
  5866. "PromoteLanPara": [
  5867. 5.0
  5868. ]
  5869. },
  5870. {
  5871. "ID": 31013,
  5872. "PieceID": 11005,
  5873. "power": 337.5,
  5874. "name": 499,
  5875. "dec": 922,
  5876. "attribute": 1,
  5877. "icon": "icon_fb3101",
  5878. "scriptName": "S3101",
  5879. "IDGroup": 3101,
  5880. "timelineName": "",
  5881. "cd": 30.0,
  5882. "addcd": 0.0,
  5883. "SkillType": 3,
  5884. "level": 4,
  5885. "effectValue": [
  5886. 9.0
  5887. ],
  5888. "intensifierIndex": [
  5889. 1
  5890. ],
  5891. "addPropertyType": [
  5892. 102,
  5893. 106
  5894. ],
  5895. "addPropertyValue": [
  5896. 5.0,
  5897. 10.0
  5898. ],
  5899. "PromoteLan": 1267,
  5900. "PromoteLanPara": [
  5901. 5.0
  5902. ]
  5903. },
  5904. {
  5905. "ID": 31014,
  5906. "PieceID": 11005,
  5907. "power": 506.25,
  5908. "name": 500,
  5909. "dec": 923,
  5910. "attribute": 1,
  5911. "icon": "icon_fb3101",
  5912. "scriptName": "S3101",
  5913. "IDGroup": 3101,
  5914. "timelineName": "",
  5915. "cd": 30.0,
  5916. "addcd": 0.0,
  5917. "SkillType": 3,
  5918. "level": 5,
  5919. "effectValue": [
  5920. 9.0
  5921. ],
  5922. "intensifierIndex": [
  5923. 1
  5924. ],
  5925. "addPropertyType": [
  5926. 102,
  5927. 106
  5928. ],
  5929. "addPropertyValue": [
  5930. 10.0,
  5931. 10.0
  5932. ],
  5933. "PromoteLan": 1268,
  5934. "PromoteLanPara": [
  5935. 5.0
  5936. ]
  5937. },
  5938. {
  5939. "ID": 31015,
  5940. "PieceID": 11005,
  5941. "power": 759.375,
  5942. "name": 501,
  5943. "dec": 924,
  5944. "attribute": 1,
  5945. "icon": "icon_fb3101",
  5946. "scriptName": "S3101",
  5947. "IDGroup": 3101,
  5948. "timelineName": "",
  5949. "cd": 30.0,
  5950. "addcd": 0.0,
  5951. "SkillType": 3,
  5952. "level": 6,
  5953. "effectValue": [
  5954. 9.0,
  5955. 15.0
  5956. ],
  5957. "intensifierIndex": [
  5958. 1
  5959. ],
  5960. "addPropertyType": [
  5961. 102,
  5962. 106
  5963. ],
  5964. "addPropertyValue": [
  5965. 10.0,
  5966. 10.0
  5967. ],
  5968. "PromoteLan": 1269
  5969. },
  5970. {
  5971. "ID": 32010,
  5972. "PieceID": 11002,
  5973. "power": 100.0,
  5974. "name": 508,
  5975. "dec": 931,
  5976. "attribute": 2,
  5977. "icon": "icon_fb3201",
  5978. "scriptName": "S3201",
  5979. "IDGroup": 3201,
  5980. "timelineName": "",
  5981. "cd": 30.0,
  5982. "addcd": 0.0,
  5983. "SkillType": 3,
  5984. "level": 1,
  5985. "effectValue": [
  5986. 50.0,
  5987. 9.0
  5988. ],
  5989. "intensifierIndex": [
  5990. 1
  5991. ],
  5992. "PromoteLan": -1
  5993. },
  5994. {
  5995. "ID": 32011,
  5996. "PieceID": 11002,
  5997. "power": 150.0,
  5998. "name": 509,
  5999. "dec": 932,
  6000. "attribute": 2,
  6001. "icon": "icon_fb3201",
  6002. "scriptName": "S3201",
  6003. "IDGroup": 3201,
  6004. "timelineName": "",
  6005. "cd": 30.0,
  6006. "addcd": 0.0,
  6007. "SkillType": 3,
  6008. "level": 2,
  6009. "effectValue": [
  6010. 75.0,
  6011. 9.0
  6012. ],
  6013. "intensifierIndex": [
  6014. 1
  6015. ],
  6016. "PromoteLan": 1275
  6017. },
  6018. {
  6019. "ID": 32012,
  6020. "PieceID": 11002,
  6021. "power": 225.0,
  6022. "name": 510,
  6023. "dec": 933,
  6024. "attribute": 2,
  6025. "icon": "icon_fb3201",
  6026. "scriptName": "S3201",
  6027. "IDGroup": 3201,
  6028. "timelineName": "",
  6029. "cd": 30.0,
  6030. "addcd": 0.0,
  6031. "SkillType": 3,
  6032. "level": 3,
  6033. "effectValue": [
  6034. 75.0,
  6035. 9.0
  6036. ],
  6037. "intensifierIndex": [
  6038. 1
  6039. ],
  6040. "addPropertyType": [
  6041. 108
  6042. ],
  6043. "addPropertyValue": [
  6044. 5.0
  6045. ],
  6046. "PromoteLan": 1276,
  6047. "PromoteLanPara": [
  6048. 5.0
  6049. ]
  6050. },
  6051. {
  6052. "ID": 32013,
  6053. "PieceID": 11002,
  6054. "power": 337.5,
  6055. "name": 511,
  6056. "dec": 934,
  6057. "attribute": 2,
  6058. "icon": "icon_fb3201",
  6059. "scriptName": "S3201",
  6060. "IDGroup": 3201,
  6061. "timelineName": "",
  6062. "cd": 30.0,
  6063. "addcd": 0.0,
  6064. "SkillType": 3,
  6065. "level": 4,
  6066. "effectValue": [
  6067. 75.0,
  6068. 9.0
  6069. ],
  6070. "intensifierIndex": [
  6071. 1
  6072. ],
  6073. "addPropertyType": [
  6074. 101,
  6075. 108
  6076. ],
  6077. "addPropertyValue": [
  6078. 5.0,
  6079. 5.0
  6080. ],
  6081. "PromoteLan": 1277,
  6082. "PromoteLanPara": [
  6083. 5.0
  6084. ]
  6085. },
  6086. {
  6087. "ID": 32014,
  6088. "PieceID": 11002,
  6089. "power": 506.25,
  6090. "name": 512,
  6091. "dec": 935,
  6092. "attribute": 2,
  6093. "icon": "icon_fb3201",
  6094. "scriptName": "S3201",
  6095. "IDGroup": 3201,
  6096. "timelineName": "",
  6097. "cd": 30.0,
  6098. "addcd": 0.0,
  6099. "SkillType": 3,
  6100. "level": 5,
  6101. "effectValue": [
  6102. 75.0,
  6103. 9.0
  6104. ],
  6105. "intensifierIndex": [
  6106. 1
  6107. ],
  6108. "addPropertyType": [
  6109. 101,
  6110. 108
  6111. ],
  6112. "addPropertyValue": [
  6113. 5.0,
  6114. 10.0
  6115. ],
  6116. "PromoteLan": 1278,
  6117. "PromoteLanPara": [
  6118. 5.0
  6119. ]
  6120. },
  6121. {
  6122. "ID": 32015,
  6123. "PieceID": 11002,
  6124. "power": 759.375,
  6125. "name": 513,
  6126. "dec": 936,
  6127. "attribute": 2,
  6128. "icon": "icon_fb3201",
  6129. "scriptName": "S3201",
  6130. "IDGroup": 3201,
  6131. "timelineName": "",
  6132. "cd": 30.0,
  6133. "addcd": 0.0,
  6134. "SkillType": 3,
  6135. "level": 6,
  6136. "effectValue": [
  6137. 75.0,
  6138. 9.0,
  6139. 50.0
  6140. ],
  6141. "intensifierIndex": [
  6142. 1
  6143. ],
  6144. "addPropertyType": [
  6145. 101,
  6146. 108
  6147. ],
  6148. "addPropertyValue": [
  6149. 5.0,
  6150. 10.0
  6151. ],
  6152. "PromoteLan": 1279
  6153. },
  6154. {
  6155. "ID": 32020,
  6156. "PieceID": 11002,
  6157. "power": 100.0,
  6158. "name": 514,
  6159. "dec": 937,
  6160. "attribute": 2,
  6161. "icon": "icon_fb3202",
  6162. "scriptName": "S3202",
  6163. "IDGroup": 3202,
  6164. "timelineName": "",
  6165. "cd": 30.0,
  6166. "addcd": 0.0,
  6167. "SkillType": 3,
  6168. "level": 1,
  6169. "effectValue": [
  6170. 10.0,
  6171. 2.0,
  6172. 12.0
  6173. ],
  6174. "intensifierIndex": [
  6175. 1
  6176. ],
  6177. "PromoteLan": -1
  6178. },
  6179. {
  6180. "ID": 32021,
  6181. "PieceID": 11002,
  6182. "power": 150.0,
  6183. "name": 515,
  6184. "dec": 938,
  6185. "attribute": 2,
  6186. "icon": "icon_fb3202",
  6187. "scriptName": "S3202",
  6188. "IDGroup": 3202,
  6189. "timelineName": "",
  6190. "cd": 30.0,
  6191. "addcd": 0.0,
  6192. "SkillType": 3,
  6193. "level": 2,
  6194. "effectValue": [
  6195. 10.0,
  6196. 2.0,
  6197. 12.0
  6198. ],
  6199. "intensifierIndex": [
  6200. 1
  6201. ],
  6202. "addPropertyType": [
  6203. 108
  6204. ],
  6205. "addPropertyValue": [
  6206. 5.0
  6207. ],
  6208. "PromoteLan": 1280,
  6209. "PromoteLanPara": [
  6210. 5.0
  6211. ]
  6212. },
  6213. {
  6214. "ID": 32022,
  6215. "PieceID": 11002,
  6216. "power": 225.0,
  6217. "name": 516,
  6218. "dec": 939,
  6219. "attribute": 2,
  6220. "icon": "icon_fb3202",
  6221. "scriptName": "S3202",
  6222. "IDGroup": 3202,
  6223. "timelineName": "",
  6224. "cd": 30.0,
  6225. "addcd": 0.0,
  6226. "SkillType": 3,
  6227. "level": 3,
  6228. "effectValue": [
  6229. 10.0,
  6230. 2.0,
  6231. 12.0
  6232. ],
  6233. "intensifierIndex": [
  6234. 1
  6235. ],
  6236. "addPropertyType": [
  6237. 103,
  6238. 108
  6239. ],
  6240. "addPropertyValue": [
  6241. 5.0,
  6242. 5.0
  6243. ],
  6244. "PromoteLan": 1281,
  6245. "PromoteLanPara": [
  6246. 5.0
  6247. ]
  6248. },
  6249. {
  6250. "ID": 32023,
  6251. "PieceID": 11002,
  6252. "power": 337.5,
  6253. "name": 517,
  6254. "dec": 940,
  6255. "attribute": 2,
  6256. "icon": "icon_fb3202",
  6257. "scriptName": "S3202",
  6258. "IDGroup": 3202,
  6259. "timelineName": "",
  6260. "cd": 30.0,
  6261. "addcd": 0.0,
  6262. "SkillType": 3,
  6263. "level": 4,
  6264. "effectValue": [
  6265. 10.0,
  6266. 3.0,
  6267. 12.0
  6268. ],
  6269. "intensifierIndex": [
  6270. 1
  6271. ],
  6272. "addPropertyType": [
  6273. 103,
  6274. 108
  6275. ],
  6276. "addPropertyValue": [
  6277. 5.0,
  6278. 5.0
  6279. ],
  6280. "PromoteLan": 1282
  6281. },
  6282. {
  6283. "ID": 32024,
  6284. "PieceID": 11002,
  6285. "power": 506.25,
  6286. "name": 518,
  6287. "dec": 941,
  6288. "attribute": 2,
  6289. "icon": "icon_fb3202",
  6290. "scriptName": "S3202",
  6291. "IDGroup": 3202,
  6292. "timelineName": "",
  6293. "cd": 30.0,
  6294. "addcd": 0.0,
  6295. "SkillType": 3,
  6296. "level": 5,
  6297. "effectValue": [
  6298. 10.0,
  6299. 3.0,
  6300. 12.0
  6301. ],
  6302. "intensifierIndex": [
  6303. 1
  6304. ],
  6305. "addPropertyType": [
  6306. 103,
  6307. 108
  6308. ],
  6309. "addPropertyValue": [
  6310. 5.0,
  6311. 10.0
  6312. ],
  6313. "PromoteLan": 1283,
  6314. "PromoteLanPara": [
  6315. 5.0
  6316. ]
  6317. },
  6318. {
  6319. "ID": 32025,
  6320. "PieceID": 11002,
  6321. "power": 759.375,
  6322. "name": 519,
  6323. "dec": 942,
  6324. "attribute": 2,
  6325. "icon": "icon_fb3202",
  6326. "scriptName": "S3202",
  6327. "IDGroup": 3202,
  6328. "timelineName": "",
  6329. "cd": 30.0,
  6330. "addcd": 0.0,
  6331. "SkillType": 3,
  6332. "level": 6,
  6333. "effectValue": [
  6334. 10.0,
  6335. 3.0,
  6336. 12.0,
  6337. 20.0
  6338. ],
  6339. "intensifierIndex": [
  6340. 1
  6341. ],
  6342. "addPropertyType": [
  6343. 103,
  6344. 108
  6345. ],
  6346. "addPropertyValue": [
  6347. 5.0,
  6348. 10.0
  6349. ],
  6350. "PromoteLan": 1284
  6351. },
  6352. {
  6353. "ID": 33010,
  6354. "PieceID": 11004,
  6355. "power": 100.0,
  6356. "name": 526,
  6357. "dec": 949,
  6358. "attribute": 4,
  6359. "icon": "icon_fb3301",
  6360. "scriptName": "S3301",
  6361. "IDGroup": 3301,
  6362. "timelineName": "",
  6363. "cd": 30.0,
  6364. "addcd": 0.0,
  6365. "SkillType": 3,
  6366. "level": 1,
  6367. "effectValue": [
  6368. 1.0,
  6369. 6.0,
  6370. 480.0
  6371. ],
  6372. "intensifierIndex": [
  6373. 2
  6374. ],
  6375. "PromoteLan": -1
  6376. },
  6377. {
  6378. "ID": 33011,
  6379. "PieceID": 11004,
  6380. "power": 150.0,
  6381. "name": 527,
  6382. "dec": 950,
  6383. "attribute": 4,
  6384. "icon": "icon_fb3301",
  6385. "scriptName": "S3301",
  6386. "IDGroup": 3301,
  6387. "timelineName": "",
  6388. "cd": 30.0,
  6389. "addcd": 0.0,
  6390. "SkillType": 3,
  6391. "level": 2,
  6392. "effectValue": [
  6393. 2.0,
  6394. 6.0,
  6395. 480.0
  6396. ],
  6397. "intensifierIndex": [
  6398. 2
  6399. ],
  6400. "PromoteLan": 1290
  6401. },
  6402. {
  6403. "ID": 33012,
  6404. "PieceID": 11004,
  6405. "power": 225.0,
  6406. "name": 528,
  6407. "dec": 951,
  6408. "attribute": 4,
  6409. "icon": "icon_fb3301",
  6410. "scriptName": "S3301",
  6411. "IDGroup": 3301,
  6412. "timelineName": "",
  6413. "cd": 30.0,
  6414. "addcd": 0.0,
  6415. "SkillType": 3,
  6416. "level": 3,
  6417. "effectValue": [
  6418. 2.0,
  6419. 6.0,
  6420. 480.0
  6421. ],
  6422. "intensifierIndex": [
  6423. 2
  6424. ],
  6425. "addPropertyType": [
  6426. 107
  6427. ],
  6428. "addPropertyValue": [
  6429. 5.0
  6430. ],
  6431. "PromoteLan": 1291,
  6432. "PromoteLanPara": [
  6433. 5.0
  6434. ]
  6435. },
  6436. {
  6437. "ID": 33013,
  6438. "PieceID": 11004,
  6439. "power": 337.5,
  6440. "name": 529,
  6441. "dec": 952,
  6442. "attribute": 4,
  6443. "icon": "icon_fb3301",
  6444. "scriptName": "S3301",
  6445. "IDGroup": 3301,
  6446. "timelineName": "",
  6447. "cd": 30.0,
  6448. "addcd": 0.0,
  6449. "SkillType": 3,
  6450. "level": 4,
  6451. "effectValue": [
  6452. 2.0,
  6453. 6.0,
  6454. 480.0,
  6455. 30.0
  6456. ],
  6457. "intensifierIndex": [
  6458. 2
  6459. ],
  6460. "addPropertyType": [
  6461. 107
  6462. ],
  6463. "addPropertyValue": [
  6464. 5.0
  6465. ],
  6466. "PromoteLan": 1292
  6467. },
  6468. {
  6469. "ID": 33014,
  6470. "PieceID": 11004,
  6471. "power": 506.25,
  6472. "name": 530,
  6473. "dec": 953,
  6474. "attribute": 4,
  6475. "icon": "icon_fb3301",
  6476. "scriptName": "S3301",
  6477. "IDGroup": 3301,
  6478. "timelineName": "",
  6479. "cd": 30.0,
  6480. "addcd": 0.0,
  6481. "SkillType": 3,
  6482. "level": 5,
  6483. "effectValue": [
  6484. 2.0,
  6485. 6.0,
  6486. 480.0,
  6487. 30.0
  6488. ],
  6489. "intensifierIndex": [
  6490. 2
  6491. ],
  6492. "addPropertyType": [
  6493. 107
  6494. ],
  6495. "addPropertyValue": [
  6496. 10.0
  6497. ],
  6498. "PromoteLan": 1293,
  6499. "PromoteLanPara": [
  6500. 5.0
  6501. ]
  6502. },
  6503. {
  6504. "ID": 33015,
  6505. "PieceID": 11004,
  6506. "power": 759.375,
  6507. "name": 531,
  6508. "dec": 954,
  6509. "attribute": 4,
  6510. "icon": "icon_fb3301",
  6511. "scriptName": "S3301",
  6512. "IDGroup": 3301,
  6513. "timelineName": "",
  6514. "cd": 30.0,
  6515. "addcd": 0.0,
  6516. "SkillType": 3,
  6517. "level": 6,
  6518. "effectValue": [
  6519. 2.0,
  6520. 6.0,
  6521. 480.0,
  6522. 300.0
  6523. ],
  6524. "intensifierIndex": [
  6525. 2
  6526. ],
  6527. "addPropertyType": [
  6528. 107
  6529. ],
  6530. "addPropertyValue": [
  6531. 10.0
  6532. ],
  6533. "PromoteLan": 1294
  6534. },
  6535. {
  6536. "ID": 33020,
  6537. "PieceID": 11008,
  6538. "power": 100.0,
  6539. "name": 532,
  6540. "dec": 955,
  6541. "attribute": 4,
  6542. "icon": "icon_s3302",
  6543. "scriptName": "S3302",
  6544. "IDGroup": 3302,
  6545. "timelineName": "",
  6546. "cd": 30.0,
  6547. "addcd": 0.0,
  6548. "SkillType": 3,
  6549. "level": 1,
  6550. "intensifierIndex": [
  6551. 1
  6552. ],
  6553. "PromoteLan": -1
  6554. },
  6555. {
  6556. "ID": 33021,
  6557. "PieceID": 11008,
  6558. "power": 150.0,
  6559. "name": 533,
  6560. "dec": 956,
  6561. "attribute": 4,
  6562. "icon": "icon_s3302",
  6563. "scriptName": "S3302",
  6564. "IDGroup": 3302,
  6565. "timelineName": "",
  6566. "cd": 30.0,
  6567. "addcd": 0.0,
  6568. "SkillType": 3,
  6569. "level": 2,
  6570. "intensifierIndex": [
  6571. 1
  6572. ],
  6573. "PromoteLan": 1295
  6574. },
  6575. {
  6576. "ID": 33022,
  6577. "PieceID": 11008,
  6578. "power": 225.0,
  6579. "name": 534,
  6580. "dec": 957,
  6581. "attribute": 4,
  6582. "icon": "icon_s3302",
  6583. "scriptName": "S3302",
  6584. "IDGroup": 3302,
  6585. "timelineName": "",
  6586. "cd": 30.0,
  6587. "addcd": 0.0,
  6588. "SkillType": 3,
  6589. "level": 3,
  6590. "intensifierIndex": [
  6591. 1
  6592. ],
  6593. "PromoteLan": 1296
  6594. },
  6595. {
  6596. "ID": 33023,
  6597. "PieceID": 11008,
  6598. "power": 337.5,
  6599. "name": 535,
  6600. "dec": 958,
  6601. "attribute": 4,
  6602. "icon": "icon_s3302",
  6603. "scriptName": "S3302",
  6604. "IDGroup": 3302,
  6605. "timelineName": "",
  6606. "cd": 30.0,
  6607. "addcd": 0.0,
  6608. "SkillType": 3,
  6609. "level": 4,
  6610. "intensifierIndex": [
  6611. 1
  6612. ],
  6613. "PromoteLan": 1297
  6614. },
  6615. {
  6616. "ID": 33024,
  6617. "PieceID": 11008,
  6618. "power": 506.25,
  6619. "name": 536,
  6620. "dec": 959,
  6621. "attribute": 4,
  6622. "icon": "icon_s3302",
  6623. "scriptName": "S3302",
  6624. "IDGroup": 3302,
  6625. "timelineName": "",
  6626. "cd": 30.0,
  6627. "addcd": 0.0,
  6628. "SkillType": 3,
  6629. "level": 5,
  6630. "intensifierIndex": [
  6631. 1
  6632. ],
  6633. "PromoteLan": 1298
  6634. },
  6635. {
  6636. "ID": 33025,
  6637. "PieceID": 11008,
  6638. "power": 759.375,
  6639. "name": 537,
  6640. "dec": 960,
  6641. "attribute": 4,
  6642. "icon": "icon_s3302",
  6643. "scriptName": "S3302",
  6644. "IDGroup": 3302,
  6645. "timelineName": "",
  6646. "cd": 30.0,
  6647. "addcd": 0.0,
  6648. "SkillType": 3,
  6649. "level": 6,
  6650. "intensifierIndex": [
  6651. 1
  6652. ],
  6653. "PromoteLan": 1299
  6654. },
  6655. {
  6656. "ID": 34010,
  6657. "PieceID": 11004,
  6658. "power": 100.0,
  6659. "name": 538,
  6660. "dec": 961,
  6661. "attribute": 8,
  6662. "icon": "icon_fb3401",
  6663. "scriptName": "S3401",
  6664. "IDGroup": 3401,
  6665. "timelineName": "",
  6666. "cd": 30.0,
  6667. "addcd": 0.0,
  6668. "SkillType": 3,
  6669. "level": 1,
  6670. "effectValue": [
  6671. 40.0,
  6672. 9.0
  6673. ],
  6674. "intensifierIndex": [
  6675. 2
  6676. ],
  6677. "PromoteLan": -1
  6678. },
  6679. {
  6680. "ID": 34011,
  6681. "PieceID": 11004,
  6682. "power": 150.0,
  6683. "name": 539,
  6684. "dec": 962,
  6685. "attribute": 8,
  6686. "icon": "icon_fb3401",
  6687. "scriptName": "S3401",
  6688. "IDGroup": 3401,
  6689. "timelineName": "",
  6690. "cd": 30.0,
  6691. "addcd": 0.0,
  6692. "SkillType": 3,
  6693. "level": 2,
  6694. "effectValue": [
  6695. 40.0,
  6696. 9.0
  6697. ],
  6698. "intensifierIndex": [
  6699. 2
  6700. ],
  6701. "addPropertyType": [
  6702. 109
  6703. ],
  6704. "addPropertyValue": [
  6705. 5.0
  6706. ],
  6707. "PromoteLan": 1300,
  6708. "PromoteLanPara": [
  6709. 5.0
  6710. ]
  6711. },
  6712. {
  6713. "ID": 34012,
  6714. "PieceID": 11004,
  6715. "power": 225.0,
  6716. "name": 540,
  6717. "dec": 963,
  6718. "attribute": 8,
  6719. "icon": "icon_fb3401",
  6720. "scriptName": "S3401",
  6721. "IDGroup": 3401,
  6722. "timelineName": "",
  6723. "cd": 30.0,
  6724. "addcd": 0.0,
  6725. "SkillType": 3,
  6726. "level": 3,
  6727. "effectValue": [
  6728. 60.0,
  6729. 9.0
  6730. ],
  6731. "intensifierIndex": [
  6732. 2
  6733. ],
  6734. "addPropertyType": [
  6735. 109
  6736. ],
  6737. "addPropertyValue": [
  6738. 5.0
  6739. ],
  6740. "PromoteLan": 1301
  6741. },
  6742. {
  6743. "ID": 34013,
  6744. "PieceID": 11004,
  6745. "power": 337.5,
  6746. "name": 541,
  6747. "dec": 964,
  6748. "attribute": 8,
  6749. "icon": "icon_fb3401",
  6750. "scriptName": "S3401",
  6751. "IDGroup": 3401,
  6752. "timelineName": "",
  6753. "cd": 30.0,
  6754. "addcd": 0.0,
  6755. "SkillType": 3,
  6756. "level": 4,
  6757. "effectValue": [
  6758. 60.0,
  6759. 9.0
  6760. ],
  6761. "intensifierIndex": [
  6762. 2
  6763. ],
  6764. "addPropertyType": [
  6765. 102,
  6766. 109
  6767. ],
  6768. "addPropertyValue": [
  6769. 5.0,
  6770. 5.0
  6771. ],
  6772. "PromoteLan": 1302,
  6773. "PromoteLanPara": [
  6774. 5.0
  6775. ]
  6776. },
  6777. {
  6778. "ID": 34014,
  6779. "PieceID": 11004,
  6780. "power": 506.25,
  6781. "name": 542,
  6782. "dec": 965,
  6783. "attribute": 8,
  6784. "icon": "icon_fb3401",
  6785. "scriptName": "S3401",
  6786. "IDGroup": 3401,
  6787. "timelineName": "",
  6788. "cd": 30.0,
  6789. "addcd": 0.0,
  6790. "SkillType": 3,
  6791. "level": 5,
  6792. "effectValue": [
  6793. 60.0,
  6794. 9.0
  6795. ],
  6796. "intensifierIndex": [
  6797. 2
  6798. ],
  6799. "addPropertyType": [
  6800. 102,
  6801. 109
  6802. ],
  6803. "addPropertyValue": [
  6804. 5.0,
  6805. 10.0
  6806. ],
  6807. "PromoteLan": 1303,
  6808. "PromoteLanPara": [
  6809. 5.0
  6810. ]
  6811. },
  6812. {
  6813. "ID": 34015,
  6814. "PieceID": 11004,
  6815. "power": 759.375,
  6816. "name": 543,
  6817. "dec": 966,
  6818. "attribute": 8,
  6819. "icon": "icon_fb3401",
  6820. "scriptName": "S3401",
  6821. "IDGroup": 3401,
  6822. "timelineName": "",
  6823. "cd": 30.0,
  6824. "addcd": 0.0,
  6825. "SkillType": 3,
  6826. "level": 6,
  6827. "effectValue": [
  6828. 100.0,
  6829. 9.0,
  6830. 20.0,
  6831. 9.0
  6832. ],
  6833. "intensifierIndex": [
  6834. 2
  6835. ],
  6836. "addPropertyType": [
  6837. 102,
  6838. 109
  6839. ],
  6840. "addPropertyValue": [
  6841. 5.0,
  6842. 10.0
  6843. ],
  6844. "PromoteLan": 1304
  6845. },
  6846. {
  6847. "ID": 34020,
  6848. "PieceID": 11004,
  6849. "power": 100.0,
  6850. "name": 544,
  6851. "dec": 967,
  6852. "attribute": 8,
  6853. "icon": "icon_s3402",
  6854. "scriptName": "S3402",
  6855. "IDGroup": 3402,
  6856. "timelineName": "",
  6857. "cd": 24.0,
  6858. "addcd": 0.0,
  6859. "SkillType": 3,
  6860. "level": 1,
  6861. "intensifierIndex": [
  6862. 2
  6863. ],
  6864. "PromoteLan": -1
  6865. },
  6866. {
  6867. "ID": 34021,
  6868. "PieceID": 11004,
  6869. "power": 150.0,
  6870. "name": 545,
  6871. "dec": 968,
  6872. "attribute": 8,
  6873. "icon": "icon_s3402",
  6874. "scriptName": "S3402",
  6875. "IDGroup": 3402,
  6876. "timelineName": "",
  6877. "cd": 24.0,
  6878. "addcd": 0.0,
  6879. "SkillType": 3,
  6880. "level": 2,
  6881. "effectValue": [
  6882. 12.0
  6883. ],
  6884. "intensifierIndex": [
  6885. 2
  6886. ],
  6887. "PromoteLan": 1305
  6888. },
  6889. {
  6890. "ID": 34022,
  6891. "PieceID": 11004,
  6892. "power": 225.0,
  6893. "name": 546,
  6894. "dec": 969,
  6895. "attribute": 8,
  6896. "icon": "icon_s3402",
  6897. "scriptName": "S3402",
  6898. "IDGroup": 3402,
  6899. "timelineName": "",
  6900. "cd": 24.0,
  6901. "addcd": 0.0,
  6902. "SkillType": 3,
  6903. "level": 3,
  6904. "effectValue": [
  6905. 12.0
  6906. ],
  6907. "intensifierIndex": [
  6908. 2
  6909. ],
  6910. "addPropertyType": [
  6911. 109
  6912. ],
  6913. "addPropertyValue": [
  6914. 5.0
  6915. ],
  6916. "PromoteLan": 1306,
  6917. "PromoteLanPara": [
  6918. 5.0
  6919. ]
  6920. },
  6921. {
  6922. "ID": 34023,
  6923. "PieceID": 11004,
  6924. "power": 337.5,
  6925. "name": 547,
  6926. "dec": 970,
  6927. "attribute": 8,
  6928. "icon": "icon_s3402",
  6929. "scriptName": "S3402",
  6930. "IDGroup": 3402,
  6931. "timelineName": "",
  6932. "cd": 24.0,
  6933. "addcd": 0.0,
  6934. "SkillType": 3,
  6935. "level": 4,
  6936. "effectValue": [
  6937. 12.0
  6938. ],
  6939. "intensifierIndex": [
  6940. 2
  6941. ],
  6942. "addPropertyType": [
  6943. 102,
  6944. 109
  6945. ],
  6946. "addPropertyValue": [
  6947. 5.0,
  6948. 5.0
  6949. ],
  6950. "PromoteLan": 1307
  6951. },
  6952. {
  6953. "ID": 34024,
  6954. "PieceID": 11004,
  6955. "power": 506.25,
  6956. "name": 548,
  6957. "dec": 971,
  6958. "attribute": 8,
  6959. "icon": "icon_s3402",
  6960. "scriptName": "S3402",
  6961. "IDGroup": 3402,
  6962. "timelineName": "",
  6963. "cd": 24.0,
  6964. "addcd": 0.0,
  6965. "SkillType": 3,
  6966. "level": 5,
  6967. "effectValue": [
  6968. 12.0
  6969. ],
  6970. "intensifierIndex": [
  6971. 2
  6972. ],
  6973. "addPropertyType": [
  6974. 102,
  6975. 109
  6976. ],
  6977. "addPropertyValue": [
  6978. 5.0,
  6979. 10.0
  6980. ],
  6981. "PromoteLan": 1308,
  6982. "PromoteLanPara": [
  6983. 5.0
  6984. ]
  6985. },
  6986. {
  6987. "ID": 34025,
  6988. "PieceID": 11004,
  6989. "power": 759.375,
  6990. "name": 549,
  6991. "dec": 972,
  6992. "attribute": 8,
  6993. "icon": "icon_s3402",
  6994. "scriptName": "S3402",
  6995. "IDGroup": 3402,
  6996. "timelineName": "",
  6997. "cd": 24.0,
  6998. "addcd": 0.0,
  6999. "SkillType": 3,
  7000. "level": 6,
  7001. "effectValue": [
  7002. 12.0,
  7003. 10.0,
  7004. 3.0
  7005. ],
  7006. "intensifierIndex": [
  7007. 2
  7008. ],
  7009. "addPropertyType": [
  7010. 102,
  7011. 109
  7012. ],
  7013. "addPropertyValue": [
  7014. 5.0,
  7015. 10.0
  7016. ],
  7017. "PromoteLan": 1309
  7018. },
  7019. {
  7020. "ID": 35010,
  7021. "PieceID": 11003,
  7022. "power": 100.0,
  7023. "name": 550,
  7024. "dec": 973,
  7025. "attribute": 16,
  7026. "icon": "icon_fb3501",
  7027. "scriptName": "S3501",
  7028. "IDGroup": 3501,
  7029. "timelineName": "",
  7030. "cd": 30.0,
  7031. "addcd": 0.0,
  7032. "SkillType": 3,
  7033. "level": 1,
  7034. "effectValue": [
  7035. 30.0,
  7036. 9.0
  7037. ],
  7038. "intensifierIndex": [
  7039. 1
  7040. ],
  7041. "PromoteLan": -1
  7042. },
  7043. {
  7044. "ID": 35011,
  7045. "PieceID": 11003,
  7046. "power": 150.0,
  7047. "name": 551,
  7048. "dec": 974,
  7049. "attribute": 16,
  7050. "icon": "icon_fb3501",
  7051. "scriptName": "S3501",
  7052. "IDGroup": 3501,
  7053. "timelineName": "",
  7054. "cd": 30.0,
  7055. "addcd": 0.0,
  7056. "SkillType": 3,
  7057. "level": 2,
  7058. "effectValue": [
  7059. 40.0,
  7060. 9.0
  7061. ],
  7062. "intensifierIndex": [
  7063. 1
  7064. ],
  7065. "PromoteLan": 1310
  7066. },
  7067. {
  7068. "ID": 35012,
  7069. "PieceID": 11003,
  7070. "power": 225.0,
  7071. "name": 552,
  7072. "dec": 975,
  7073. "attribute": 16,
  7074. "icon": "icon_fb3501",
  7075. "scriptName": "S3501",
  7076. "IDGroup": 3501,
  7077. "timelineName": "",
  7078. "cd": 30.0,
  7079. "addcd": 0.0,
  7080. "SkillType": 3,
  7081. "level": 3,
  7082. "effectValue": [
  7083. 40.0,
  7084. 9.0
  7085. ],
  7086. "intensifierIndex": [
  7087. 1
  7088. ],
  7089. "addPropertyType": [
  7090. 110
  7091. ],
  7092. "addPropertyValue": [
  7093. 5.0
  7094. ],
  7095. "PromoteLan": 1311,
  7096. "PromoteLanPara": [
  7097. 5.0
  7098. ]
  7099. },
  7100. {
  7101. "ID": 35013,
  7102. "PieceID": 11003,
  7103. "power": 337.5,
  7104. "name": 553,
  7105. "dec": 976,
  7106. "attribute": 16,
  7107. "icon": "icon_fb3501",
  7108. "scriptName": "S3501",
  7109. "IDGroup": 3501,
  7110. "timelineName": "",
  7111. "cd": 30.0,
  7112. "addcd": 0.0,
  7113. "SkillType": 3,
  7114. "level": 4,
  7115. "effectValue": [
  7116. 50.0,
  7117. 9.0
  7118. ],
  7119. "intensifierIndex": [
  7120. 1
  7121. ],
  7122. "addPropertyType": [
  7123. 110
  7124. ],
  7125. "addPropertyValue": [
  7126. 5.0
  7127. ],
  7128. "PromoteLan": 1312
  7129. },
  7130. {
  7131. "ID": 35014,
  7132. "PieceID": 11003,
  7133. "power": 506.25,
  7134. "name": 554,
  7135. "dec": 977,
  7136. "attribute": 16,
  7137. "icon": "icon_fb3501",
  7138. "scriptName": "S3501",
  7139. "IDGroup": 3501,
  7140. "timelineName": "",
  7141. "cd": 30.0,
  7142. "addcd": 0.0,
  7143. "SkillType": 3,
  7144. "level": 5,
  7145. "effectValue": [
  7146. 50.0,
  7147. 9.0
  7148. ],
  7149. "intensifierIndex": [
  7150. 1
  7151. ],
  7152. "addPropertyType": [
  7153. 110
  7154. ],
  7155. "addPropertyValue": [
  7156. 10.0
  7157. ],
  7158. "PromoteLan": 1313,
  7159. "PromoteLanPara": [
  7160. 5.0
  7161. ]
  7162. },
  7163. {
  7164. "ID": 35015,
  7165. "PieceID": 11003,
  7166. "power": 759.375,
  7167. "name": 555,
  7168. "dec": 978,
  7169. "attribute": 16,
  7170. "icon": "icon_fb3501",
  7171. "scriptName": "S3501",
  7172. "IDGroup": 3501,
  7173. "timelineName": "",
  7174. "cd": 30.0,
  7175. "addcd": 0.0,
  7176. "SkillType": 3,
  7177. "level": 6,
  7178. "effectValue": [
  7179. 60.0,
  7180. 9.0
  7181. ],
  7182. "intensifierIndex": [
  7183. 1
  7184. ],
  7185. "addPropertyType": [
  7186. 110
  7187. ],
  7188. "addPropertyValue": [
  7189. 10.0
  7190. ],
  7191. "PromoteLan": 1314
  7192. },
  7193. {
  7194. "ID": 601011,
  7195. "PieceID": null,
  7196. "power": 100.0,
  7197. "name": 696,
  7198. "dec": 699,
  7199. "attribute": 1,
  7200. "icon": "icon_s1001",
  7201. "scriptName": "DS60101",
  7202. "IDGroup": 1001,
  7203. "timelineName": "",
  7204. "cd": 1.0,
  7205. "addcd": 2.0,
  7206. "SkillType": 4,
  7207. "level": 1,
  7208. "effectValue": [
  7209. 10.0,
  7210. 100.0,
  7211. 50.0,
  7212. 50.0,
  7213. 9.0
  7214. ],
  7215. "intensifierIndex": [
  7216. 0
  7217. ],
  7218. "PromoteLan": null
  7219. },
  7220. {
  7221. "ID": 601021,
  7222. "PieceID": null,
  7223. "power": 100.0,
  7224. "name": 697,
  7225. "dec": 700,
  7226. "attribute": 1,
  7227. "icon": "icon_s1002",
  7228. "scriptName": "DS60102",
  7229. "IDGroup": 1002,
  7230. "timelineName": "",
  7231. "cd": 1.0,
  7232. "addcd": 2.0,
  7233. "SkillType": 4,
  7234. "level": 1,
  7235. "effectValue": [
  7236. 3.0,
  7237. 3.0,
  7238. 30.0,
  7239. 5.0,
  7240. 1.0,
  7241. 3.0,
  7242. 30.0,
  7243. 3.0,
  7244. 30.0
  7245. ],
  7246. "intensifierIndex": [
  7247. 0
  7248. ],
  7249. "PromoteLan": null
  7250. },
  7251. {
  7252. "ID": 601031,
  7253. "PieceID": null,
  7254. "power": 100.0,
  7255. "name": 698,
  7256. "dec": 701,
  7257. "attribute": 1,
  7258. "icon": "icon_s1003",
  7259. "scriptName": "DS60103",
  7260. "IDGroup": 1003,
  7261. "timelineName": "",
  7262. "cd": 1.0,
  7263. "addcd": 2.0,
  7264. "SkillType": 4,
  7265. "level": 1,
  7266. "effectValue": [
  7267. 30.0,
  7268. 1.0
  7269. ],
  7270. "intensifierIndex": [
  7271. 0
  7272. ],
  7273. "PromoteLan": null
  7274. },
  7275. {
  7276. "ID": 90010,
  7277. "PieceID": null,
  7278. "power": 300.0,
  7279. "name": 707,
  7280. "dec": 717,
  7281. "attribute": 1,
  7282. "icon": "icon_s9001",
  7283. "scriptName": "S9001",
  7284. "IDGroup": 9001,
  7285. "timelineName": "BossSk1_timeline_TD",
  7286. "cd": 3.0,
  7287. "addcd": 0.0,
  7288. "SkillType": 1,
  7289. "level": 1,
  7290. "effectValue": [
  7291. 63.0,
  7292. 5.0,
  7293. 1.0,
  7294. 10.0,
  7295. 1.0,
  7296. 1.0,
  7297. 20.0
  7298. ],
  7299. "intensifierIndex": [
  7300. 1
  7301. ],
  7302. "PromoteLan": null
  7303. },
  7304. {
  7305. "ID": 90011,
  7306. "PieceID": null,
  7307. "power": 450.0,
  7308. "name": 707,
  7309. "dec": 717,
  7310. "attribute": 1,
  7311. "icon": "icon_s9001",
  7312. "scriptName": "S9001",
  7313. "IDGroup": 9001,
  7314. "timelineName": "BossSk1_timeline_TD",
  7315. "cd": 3.0,
  7316. "addcd": 0.0,
  7317. "SkillType": 1,
  7318. "level": 2,
  7319. "effectValue": [
  7320. 76.0,
  7321. 5.0,
  7322. 1.0,
  7323. 10.0,
  7324. 1.0,
  7325. 1.0,
  7326. 20.0
  7327. ],
  7328. "intensifierIndex": [
  7329. 1
  7330. ],
  7331. "PromoteLan": null
  7332. },
  7333. {
  7334. "ID": 90012,
  7335. "PieceID": null,
  7336. "power": 675.0,
  7337. "name": 707,
  7338. "dec": 717,
  7339. "attribute": 1,
  7340. "icon": "icon_s9001",
  7341. "scriptName": "S9001",
  7342. "IDGroup": 9001,
  7343. "timelineName": "BossSk1_timeline_TD",
  7344. "cd": 3.0,
  7345. "addcd": 0.0,
  7346. "SkillType": 1,
  7347. "level": 3,
  7348. "effectValue": [
  7349. 89.0,
  7350. 5.0,
  7351. 1.0,
  7352. 10.0,
  7353. 1.0,
  7354. 1.0,
  7355. 20.0
  7356. ],
  7357. "intensifierIndex": [
  7358. 1
  7359. ],
  7360. "PromoteLan": null
  7361. },
  7362. {
  7363. "ID": 90013,
  7364. "PieceID": null,
  7365. "power": 1012.5,
  7366. "name": 707,
  7367. "dec": 717,
  7368. "attribute": 1,
  7369. "icon": "icon_s9001",
  7370. "scriptName": "S9001",
  7371. "IDGroup": 9001,
  7372. "timelineName": "BossSk1_timeline_TD",
  7373. "cd": 3.0,
  7374. "addcd": 0.0,
  7375. "SkillType": 1,
  7376. "level": 4,
  7377. "effectValue": [
  7378. 102.0,
  7379. 5.0,
  7380. 1.0,
  7381. 10.0,
  7382. 1.0,
  7383. 1.0,
  7384. 20.0
  7385. ],
  7386. "intensifierIndex": [
  7387. 1
  7388. ],
  7389. "PromoteLan": null
  7390. },
  7391. {
  7392. "ID": 90014,
  7393. "PieceID": null,
  7394. "power": 1518.75,
  7395. "name": 707,
  7396. "dec": 717,
  7397. "attribute": 1,
  7398. "icon": "icon_s9001",
  7399. "scriptName": "S9001",
  7400. "IDGroup": 9001,
  7401. "timelineName": "BossSk1_timeline_TD",
  7402. "cd": 3.0,
  7403. "addcd": 0.0,
  7404. "SkillType": 1,
  7405. "level": 5,
  7406. "effectValue": [
  7407. 115.0,
  7408. 5.0,
  7409. 1.0,
  7410. 10.0,
  7411. 1.0,
  7412. 1.0,
  7413. 20.0
  7414. ],
  7415. "intensifierIndex": [
  7416. 1
  7417. ],
  7418. "PromoteLan": null
  7419. },
  7420. {
  7421. "ID": 90015,
  7422. "PieceID": null,
  7423. "power": 2278.125,
  7424. "name": 707,
  7425. "dec": 717,
  7426. "attribute": 1,
  7427. "icon": "icon_s9001",
  7428. "scriptName": "S9001",
  7429. "IDGroup": 9001,
  7430. "timelineName": "BossSk1_timeline_TD",
  7431. "cd": 3.0,
  7432. "addcd": 0.0,
  7433. "SkillType": 1,
  7434. "level": 6,
  7435. "effectValue": [
  7436. 126.0,
  7437. 5.0,
  7438. 1.0,
  7439. 10.0,
  7440. 1.0,
  7441. 1.0,
  7442. 20.0
  7443. ],
  7444. "intensifierIndex": [
  7445. 1
  7446. ],
  7447. "PromoteLan": null
  7448. },
  7449. {
  7450. "ID": 90020,
  7451. "PieceID": null,
  7452. "power": 300.0,
  7453. "name": 708,
  7454. "dec": 718,
  7455. "attribute": 1,
  7456. "icon": "icon_s9002",
  7457. "scriptName": "S9002",
  7458. "IDGroup": 9002,
  7459. "timelineName": "BossSk2_timeline_TD",
  7460. "cd": 3.0,
  7461. "addcd": 0.0,
  7462. "SkillType": 1,
  7463. "level": 1,
  7464. "effectValue": [
  7465. 10.0,
  7466. 60.0
  7467. ],
  7468. "intensifierIndex": [
  7469. 1
  7470. ],
  7471. "PromoteLan": null
  7472. },
  7473. {
  7474. "ID": 90021,
  7475. "PieceID": null,
  7476. "power": 450.0,
  7477. "name": 708,
  7478. "dec": 718,
  7479. "attribute": 1,
  7480. "icon": "icon_s9002",
  7481. "scriptName": "S9002",
  7482. "IDGroup": 9002,
  7483. "timelineName": "BossSk2_timeline_TD",
  7484. "cd": 3.0,
  7485. "addcd": 0.0,
  7486. "SkillType": 1,
  7487. "level": 2,
  7488. "effectValue": [
  7489. 11.0,
  7490. 55.0
  7491. ],
  7492. "intensifierIndex": [
  7493. 1
  7494. ],
  7495. "PromoteLan": null
  7496. },
  7497. {
  7498. "ID": 90022,
  7499. "PieceID": null,
  7500. "power": 675.0,
  7501. "name": 708,
  7502. "dec": 718,
  7503. "attribute": 1,
  7504. "icon": "icon_s9002",
  7505. "scriptName": "S9002",
  7506. "IDGroup": 9002,
  7507. "timelineName": "BossSk2_timeline_TD",
  7508. "cd": 3.0,
  7509. "addcd": 0.0,
  7510. "SkillType": 1,
  7511. "level": 3,
  7512. "effectValue": [
  7513. 12.0,
  7514. 50.0
  7515. ],
  7516. "intensifierIndex": [
  7517. 1
  7518. ],
  7519. "PromoteLan": null
  7520. },
  7521. {
  7522. "ID": 90023,
  7523. "PieceID": null,
  7524. "power": 1012.5,
  7525. "name": 708,
  7526. "dec": 718,
  7527. "attribute": 1,
  7528. "icon": "icon_s9002",
  7529. "scriptName": "S9002",
  7530. "IDGroup": 9002,
  7531. "timelineName": "BossSk2_timeline_TD",
  7532. "cd": 3.0,
  7533. "addcd": 0.0,
  7534. "SkillType": 1,
  7535. "level": 4,
  7536. "effectValue": [
  7537. 13.0,
  7538. 45.0
  7539. ],
  7540. "intensifierIndex": [
  7541. 1
  7542. ],
  7543. "PromoteLan": null
  7544. },
  7545. {
  7546. "ID": 90024,
  7547. "PieceID": null,
  7548. "power": 1518.75,
  7549. "name": 708,
  7550. "dec": 718,
  7551. "attribute": 1,
  7552. "icon": "icon_s9002",
  7553. "scriptName": "S9002",
  7554. "IDGroup": 9002,
  7555. "timelineName": "BossSk2_timeline_TD",
  7556. "cd": 3.0,
  7557. "addcd": 0.0,
  7558. "SkillType": 1,
  7559. "level": 5,
  7560. "effectValue": [
  7561. 14.0,
  7562. 40.0
  7563. ],
  7564. "intensifierIndex": [
  7565. 1
  7566. ],
  7567. "PromoteLan": null
  7568. },
  7569. {
  7570. "ID": 90025,
  7571. "PieceID": null,
  7572. "power": 2278.125,
  7573. "name": 708,
  7574. "dec": 718,
  7575. "attribute": 1,
  7576. "icon": "icon_s9002",
  7577. "scriptName": "S9002",
  7578. "IDGroup": 9002,
  7579. "timelineName": "BossSk2_timeline_TD",
  7580. "cd": 3.0,
  7581. "addcd": 0.0,
  7582. "SkillType": 1,
  7583. "level": 6,
  7584. "effectValue": [
  7585. 15.0,
  7586. 35.0
  7587. ],
  7588. "intensifierIndex": [
  7589. 1
  7590. ],
  7591. "PromoteLan": null
  7592. },
  7593. {
  7594. "ID": 90030,
  7595. "PieceID": null,
  7596. "power": 100.0,
  7597. "name": 709,
  7598. "dec": 719,
  7599. "attribute": 1,
  7600. "icon": "icon_s9003",
  7601. "scriptName": "S9003",
  7602. "IDGroup": 9003,
  7603. "timelineName": "",
  7604. "cd": 1.0,
  7605. "addcd": 0.0,
  7606. "SkillType": 2,
  7607. "level": 1,
  7608. "effectValue": [
  7609. 1.0
  7610. ],
  7611. "intensifierIndex": [
  7612. 1
  7613. ],
  7614. "PromoteLan": null
  7615. },
  7616. {
  7617. "ID": 90040,
  7618. "PieceID": null,
  7619. "power": 100.0,
  7620. "name": 710,
  7621. "dec": 720,
  7622. "attribute": 1,
  7623. "icon": "icon_s9004",
  7624. "scriptName": "S9004",
  7625. "IDGroup": 9004,
  7626. "timelineName": "BossSk4_timeline_TD",
  7627. "cd": 1.0,
  7628. "addcd": 0.0,
  7629. "SkillType": 1,
  7630. "level": 1,
  7631. "effectValue": [
  7632. 100.0
  7633. ],
  7634. "intensifierIndex": [
  7635. 1
  7636. ],
  7637. "PromoteLan": null
  7638. },
  7639. {
  7640. "ID": 90041,
  7641. "PieceID": null,
  7642. "power": 150.0,
  7643. "name": 710,
  7644. "dec": 720,
  7645. "attribute": 1,
  7646. "icon": "icon_s9004",
  7647. "scriptName": "S9004",
  7648. "IDGroup": 9004,
  7649. "timelineName": "BossSk4_timeline_TD",
  7650. "cd": 1.0,
  7651. "addcd": 0.0,
  7652. "SkillType": 1,
  7653. "level": 2,
  7654. "effectValue": [
  7655. 120.0
  7656. ],
  7657. "intensifierIndex": [
  7658. 1
  7659. ],
  7660. "PromoteLan": null
  7661. },
  7662. {
  7663. "ID": 90042,
  7664. "PieceID": null,
  7665. "power": 225.0,
  7666. "name": 710,
  7667. "dec": 720,
  7668. "attribute": 1,
  7669. "icon": "icon_s9004",
  7670. "scriptName": "S9004",
  7671. "IDGroup": 9004,
  7672. "timelineName": "BossSk4_timeline_TD",
  7673. "cd": 1.0,
  7674. "addcd": 0.0,
  7675. "SkillType": 1,
  7676. "level": 3,
  7677. "effectValue": [
  7678. 140.0
  7679. ],
  7680. "intensifierIndex": [
  7681. 1
  7682. ],
  7683. "PromoteLan": null
  7684. },
  7685. {
  7686. "ID": 90043,
  7687. "PieceID": null,
  7688. "power": 337.5,
  7689. "name": 710,
  7690. "dec": 720,
  7691. "attribute": 1,
  7692. "icon": "icon_s9004",
  7693. "scriptName": "S9004",
  7694. "IDGroup": 9004,
  7695. "timelineName": "BossSk4_timeline_TD",
  7696. "cd": 1.0,
  7697. "addcd": 0.0,
  7698. "SkillType": 1,
  7699. "level": 4,
  7700. "effectValue": [
  7701. 160.0
  7702. ],
  7703. "intensifierIndex": [
  7704. 1
  7705. ],
  7706. "PromoteLan": null
  7707. },
  7708. {
  7709. "ID": 90044,
  7710. "PieceID": null,
  7711. "power": 506.25,
  7712. "name": 710,
  7713. "dec": 720,
  7714. "attribute": 1,
  7715. "icon": "icon_s9004",
  7716. "scriptName": "S9004",
  7717. "IDGroup": 9004,
  7718. "timelineName": "BossSk4_timeline_TD",
  7719. "cd": 1.0,
  7720. "addcd": 0.0,
  7721. "SkillType": 1,
  7722. "level": 5,
  7723. "effectValue": [
  7724. 180.0
  7725. ],
  7726. "intensifierIndex": [
  7727. 1
  7728. ],
  7729. "PromoteLan": null
  7730. },
  7731. {
  7732. "ID": 90045,
  7733. "PieceID": null,
  7734. "power": 759.375,
  7735. "name": 710,
  7736. "dec": 720,
  7737. "attribute": 1,
  7738. "icon": "icon_s9004",
  7739. "scriptName": "S9004",
  7740. "IDGroup": 9004,
  7741. "timelineName": "BossSk4_timeline_TD",
  7742. "cd": 1.0,
  7743. "addcd": 0.0,
  7744. "SkillType": 1,
  7745. "level": 6,
  7746. "effectValue": [
  7747. 200.0
  7748. ],
  7749. "intensifierIndex": [
  7750. 1
  7751. ],
  7752. "PromoteLan": null
  7753. },
  7754. {
  7755. "ID": 90050,
  7756. "PieceID": null,
  7757. "power": 100.0,
  7758. "name": 711,
  7759. "dec": 721,
  7760. "attribute": 1,
  7761. "icon": "icon_s9005",
  7762. "scriptName": "S9005",
  7763. "IDGroup": 9005,
  7764. "timelineName": "BossSk4_timeline_TD",
  7765. "cd": 1.0,
  7766. "addcd": 0.0,
  7767. "SkillType": 1,
  7768. "level": 1,
  7769. "effectValue": [
  7770. 100.0
  7771. ],
  7772. "intensifierIndex": [
  7773. 1
  7774. ],
  7775. "PromoteLan": null
  7776. },
  7777. {
  7778. "ID": 90051,
  7779. "PieceID": null,
  7780. "power": 150.0,
  7781. "name": 711,
  7782. "dec": 721,
  7783. "attribute": 1,
  7784. "icon": "icon_s9005",
  7785. "scriptName": "S9005",
  7786. "IDGroup": 9005,
  7787. "timelineName": "BossSk4_timeline_TD",
  7788. "cd": 1.0,
  7789. "addcd": 0.0,
  7790. "SkillType": 1,
  7791. "level": 2,
  7792. "effectValue": [
  7793. 120.0
  7794. ],
  7795. "intensifierIndex": [
  7796. 1
  7797. ],
  7798. "PromoteLan": null
  7799. },
  7800. {
  7801. "ID": 90052,
  7802. "PieceID": null,
  7803. "power": 225.0,
  7804. "name": 711,
  7805. "dec": 721,
  7806. "attribute": 1,
  7807. "icon": "icon_s9005",
  7808. "scriptName": "S9005",
  7809. "IDGroup": 9005,
  7810. "timelineName": "BossSk4_timeline_TD",
  7811. "cd": 1.0,
  7812. "addcd": 0.0,
  7813. "SkillType": 1,
  7814. "level": 3,
  7815. "effectValue": [
  7816. 140.0
  7817. ],
  7818. "intensifierIndex": [
  7819. 1
  7820. ],
  7821. "PromoteLan": null
  7822. },
  7823. {
  7824. "ID": 90053,
  7825. "PieceID": null,
  7826. "power": 337.5,
  7827. "name": 711,
  7828. "dec": 721,
  7829. "attribute": 1,
  7830. "icon": "icon_s9005",
  7831. "scriptName": "S9005",
  7832. "IDGroup": 9005,
  7833. "timelineName": "BossSk4_timeline_TD",
  7834. "cd": 1.0,
  7835. "addcd": 0.0,
  7836. "SkillType": 1,
  7837. "level": 4,
  7838. "effectValue": [
  7839. 160.0
  7840. ],
  7841. "intensifierIndex": [
  7842. 1
  7843. ],
  7844. "PromoteLan": null
  7845. },
  7846. {
  7847. "ID": 90054,
  7848. "PieceID": null,
  7849. "power": 506.25,
  7850. "name": 711,
  7851. "dec": 721,
  7852. "attribute": 1,
  7853. "icon": "icon_s9005",
  7854. "scriptName": "S9005",
  7855. "IDGroup": 9005,
  7856. "timelineName": "BossSk4_timeline_TD",
  7857. "cd": 1.0,
  7858. "addcd": 0.0,
  7859. "SkillType": 1,
  7860. "level": 5,
  7861. "effectValue": [
  7862. 180.0
  7863. ],
  7864. "intensifierIndex": [
  7865. 1
  7866. ],
  7867. "PromoteLan": null
  7868. },
  7869. {
  7870. "ID": 90055,
  7871. "PieceID": null,
  7872. "power": 759.375,
  7873. "name": 711,
  7874. "dec": 721,
  7875. "attribute": 1,
  7876. "icon": "icon_s9005",
  7877. "scriptName": "S9005",
  7878. "IDGroup": 9005,
  7879. "timelineName": "BossSk4_timeline_TD",
  7880. "cd": 1.0,
  7881. "addcd": 0.0,
  7882. "SkillType": 1,
  7883. "level": 6,
  7884. "effectValue": [
  7885. 200.0
  7886. ],
  7887. "intensifierIndex": [
  7888. 1
  7889. ],
  7890. "PromoteLan": null
  7891. }
  7892. ]
  7893. }