SkillConfig.json 119 KB

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