SkillConfig.json 127 KB

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