EquipBreakUI.prefab 265 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436143714381439144014411442144314441445144614471448144914501451145214531454145514561457145814591460146114621463146414651466146714681469147014711472147314741475147614771478147914801481148214831484148514861487148814891490149114921493149414951496149714981499150015011502150315041505150615071508150915101511151215131514151515161517151815191520152115221523152415251526152715281529153015311532153315341535153615371538153915401541154215431544154515461547154815491550155115521553155415551556155715581559156015611562156315641565156615671568156915701571157215731574157515761577157815791580158115821583158415851586158715881589159015911592159315941595159615971598159916001601160216031604160516061607160816091610161116121613161416151616161716181619162016211622162316241625162616271628162916301631163216331634163516361637163816391640164116421643164416451646164716481649165016511652165316541655165616571658165916601661166216631664166516661667166816691670167116721673167416751676167716781679168016811682168316841685168616871688168916901691169216931694169516961697169816991700170117021703170417051706170717081709171017111712171317141715171617171718171917201721172217231724172517261727172817291730173117321733173417351736173717381739174017411742174317441745174617471748174917501751175217531754175517561757175817591760176117621763176417651766176717681769177017711772177317741775177617771778177917801781178217831784178517861787178817891790179117921793179417951796179717981799180018011802180318041805180618071808180918101811181218131814181518161817181818191820182118221823182418251826182718281829183018311832183318341835183618371838183918401841184218431844184518461847184818491850185118521853185418551856185718581859186018611862186318641865186618671868186918701871187218731874187518761877187818791880188118821883188418851886188718881889189018911892189318941895189618971898189919001901190219031904190519061907190819091910191119121913191419151916191719181919192019211922192319241925192619271928192919301931193219331934193519361937193819391940194119421943194419451946194719481949195019511952195319541955195619571958195919601961196219631964196519661967196819691970197119721973197419751976197719781979198019811982198319841985198619871988198919901991199219931994199519961997199819992000200120022003200420052006200720082009201020112012201320142015201620172018201920202021202220232024202520262027202820292030203120322033203420352036203720382039204020412042204320442045204620472048204920502051205220532054205520562057205820592060206120622063206420652066206720682069207020712072207320742075207620772078207920802081208220832084208520862087208820892090209120922093209420952096209720982099210021012102210321042105210621072108210921102111211221132114211521162117211821192120212121222123212421252126212721282129213021312132213321342135213621372138213921402141214221432144214521462147214821492150215121522153215421552156215721582159216021612162216321642165216621672168216921702171217221732174217521762177217821792180218121822183218421852186218721882189219021912192219321942195219621972198219922002201220222032204220522062207220822092210221122122213221422152216221722182219222022212222222322242225222622272228222922302231223222332234223522362237223822392240224122422243224422452246224722482249225022512252225322542255225622572258225922602261226222632264226522662267226822692270227122722273227422752276227722782279228022812282228322842285228622872288228922902291229222932294229522962297229822992300230123022303230423052306230723082309231023112312231323142315231623172318231923202321232223232324232523262327232823292330233123322333233423352336233723382339234023412342234323442345234623472348234923502351235223532354235523562357235823592360236123622363236423652366236723682369237023712372237323742375237623772378237923802381238223832384238523862387238823892390239123922393239423952396239723982399240024012402240324042405240624072408240924102411241224132414241524162417241824192420242124222423242424252426242724282429243024312432243324342435243624372438243924402441244224432444244524462447244824492450245124522453245424552456245724582459246024612462246324642465246624672468246924702471247224732474247524762477247824792480248124822483248424852486248724882489249024912492249324942495249624972498249925002501250225032504250525062507250825092510251125122513251425152516251725182519252025212522252325242525252625272528252925302531253225332534253525362537253825392540254125422543254425452546254725482549255025512552255325542555255625572558255925602561256225632564256525662567256825692570257125722573257425752576257725782579258025812582258325842585258625872588258925902591259225932594259525962597259825992600260126022603260426052606260726082609261026112612261326142615261626172618261926202621262226232624262526262627262826292630263126322633263426352636263726382639264026412642264326442645264626472648264926502651265226532654265526562657265826592660266126622663266426652666266726682669267026712672267326742675267626772678267926802681268226832684268526862687268826892690269126922693269426952696269726982699270027012702270327042705270627072708270927102711271227132714271527162717271827192720272127222723272427252726272727282729273027312732273327342735273627372738273927402741274227432744274527462747274827492750275127522753275427552756275727582759276027612762276327642765276627672768276927702771277227732774277527762777277827792780278127822783278427852786278727882789279027912792279327942795279627972798279928002801280228032804280528062807280828092810281128122813281428152816281728182819282028212822282328242825282628272828282928302831283228332834283528362837283828392840284128422843284428452846284728482849285028512852285328542855285628572858285928602861286228632864286528662867286828692870287128722873287428752876287728782879288028812882288328842885288628872888288928902891289228932894289528962897289828992900290129022903290429052906290729082909291029112912291329142915291629172918291929202921292229232924292529262927292829292930293129322933293429352936293729382939294029412942294329442945294629472948294929502951295229532954295529562957295829592960296129622963296429652966296729682969297029712972297329742975297629772978297929802981298229832984298529862987298829892990299129922993299429952996299729982999300030013002300330043005300630073008300930103011301230133014301530163017301830193020302130223023302430253026302730283029303030313032303330343035303630373038303930403041304230433044304530463047304830493050305130523053305430553056305730583059306030613062306330643065306630673068306930703071307230733074307530763077307830793080308130823083308430853086308730883089309030913092309330943095309630973098309931003101310231033104310531063107310831093110311131123113311431153116311731183119312031213122312331243125312631273128312931303131313231333134313531363137313831393140314131423143314431453146314731483149315031513152315331543155315631573158315931603161316231633164316531663167316831693170317131723173317431753176317731783179318031813182318331843185318631873188318931903191319231933194319531963197319831993200320132023203320432053206320732083209321032113212321332143215321632173218321932203221322232233224322532263227322832293230323132323233323432353236323732383239324032413242324332443245324632473248324932503251325232533254325532563257325832593260326132623263326432653266326732683269327032713272327332743275327632773278327932803281328232833284328532863287328832893290329132923293329432953296329732983299330033013302330333043305330633073308330933103311331233133314331533163317331833193320332133223323332433253326332733283329333033313332333333343335333633373338333933403341334233433344334533463347334833493350335133523353335433553356335733583359336033613362336333643365336633673368336933703371337233733374337533763377337833793380338133823383338433853386338733883389339033913392339333943395339633973398339934003401340234033404340534063407340834093410341134123413341434153416341734183419342034213422342334243425342634273428342934303431343234333434343534363437343834393440344134423443344434453446344734483449345034513452345334543455345634573458345934603461346234633464346534663467346834693470347134723473347434753476347734783479348034813482348334843485348634873488348934903491349234933494349534963497349834993500350135023503350435053506350735083509351035113512351335143515351635173518351935203521352235233524352535263527352835293530353135323533353435353536353735383539354035413542354335443545354635473548354935503551355235533554355535563557355835593560356135623563356435653566356735683569357035713572357335743575357635773578357935803581358235833584358535863587358835893590359135923593359435953596359735983599360036013602360336043605360636073608360936103611361236133614361536163617361836193620362136223623362436253626362736283629363036313632363336343635363636373638363936403641364236433644364536463647364836493650365136523653365436553656365736583659366036613662366336643665366636673668366936703671367236733674367536763677367836793680368136823683368436853686368736883689369036913692369336943695369636973698369937003701370237033704370537063707370837093710371137123713371437153716371737183719372037213722372337243725372637273728372937303731373237333734373537363737373837393740374137423743374437453746374737483749375037513752375337543755375637573758375937603761376237633764376537663767376837693770377137723773377437753776377737783779378037813782378337843785378637873788378937903791379237933794379537963797379837993800380138023803380438053806380738083809381038113812381338143815381638173818381938203821382238233824382538263827382838293830383138323833383438353836383738383839384038413842384338443845384638473848384938503851385238533854385538563857385838593860386138623863386438653866386738683869387038713872387338743875387638773878387938803881388238833884388538863887388838893890389138923893389438953896389738983899390039013902390339043905390639073908390939103911391239133914391539163917391839193920392139223923392439253926392739283929393039313932393339343935393639373938393939403941394239433944394539463947394839493950395139523953395439553956395739583959396039613962396339643965396639673968396939703971397239733974397539763977397839793980398139823983398439853986398739883989399039913992399339943995399639973998399940004001400240034004400540064007400840094010401140124013401440154016401740184019402040214022402340244025402640274028402940304031403240334034403540364037403840394040404140424043404440454046404740484049405040514052405340544055405640574058405940604061406240634064406540664067406840694070407140724073407440754076407740784079408040814082408340844085408640874088408940904091409240934094409540964097409840994100410141024103410441054106410741084109411041114112411341144115411641174118411941204121412241234124412541264127412841294130413141324133413441354136413741384139414041414142414341444145414641474148414941504151415241534154415541564157415841594160416141624163416441654166416741684169417041714172417341744175417641774178417941804181418241834184418541864187418841894190419141924193419441954196419741984199420042014202420342044205420642074208420942104211421242134214421542164217421842194220422142224223422442254226422742284229423042314232423342344235423642374238423942404241424242434244424542464247424842494250425142524253425442554256425742584259426042614262426342644265426642674268426942704271427242734274427542764277427842794280428142824283428442854286428742884289429042914292429342944295429642974298429943004301430243034304430543064307430843094310431143124313431443154316431743184319432043214322432343244325432643274328432943304331433243334334433543364337433843394340434143424343434443454346434743484349435043514352435343544355435643574358435943604361436243634364436543664367436843694370437143724373437443754376437743784379438043814382438343844385438643874388438943904391439243934394439543964397439843994400440144024403440444054406440744084409441044114412441344144415441644174418441944204421442244234424442544264427442844294430443144324433443444354436443744384439444044414442444344444445444644474448444944504451445244534454445544564457445844594460446144624463446444654466446744684469447044714472447344744475447644774478447944804481448244834484448544864487448844894490449144924493449444954496449744984499450045014502450345044505450645074508450945104511451245134514451545164517451845194520452145224523452445254526452745284529453045314532453345344535453645374538453945404541454245434544454545464547454845494550455145524553455445554556455745584559456045614562456345644565456645674568456945704571457245734574457545764577457845794580458145824583458445854586458745884589459045914592459345944595459645974598459946004601460246034604460546064607460846094610461146124613461446154616461746184619462046214622462346244625462646274628462946304631463246334634463546364637463846394640464146424643464446454646464746484649465046514652465346544655465646574658465946604661466246634664466546664667466846694670467146724673467446754676467746784679468046814682468346844685468646874688468946904691469246934694469546964697469846994700470147024703470447054706470747084709471047114712471347144715471647174718471947204721472247234724472547264727472847294730473147324733473447354736473747384739474047414742474347444745474647474748474947504751475247534754475547564757475847594760476147624763476447654766476747684769477047714772477347744775477647774778477947804781478247834784478547864787478847894790479147924793479447954796479747984799480048014802480348044805480648074808480948104811481248134814481548164817481848194820482148224823482448254826482748284829483048314832483348344835483648374838483948404841484248434844484548464847484848494850485148524853485448554856485748584859486048614862486348644865486648674868486948704871487248734874487548764877487848794880488148824883488448854886488748884889489048914892489348944895489648974898489949004901490249034904490549064907490849094910491149124913491449154916491749184919492049214922492349244925492649274928492949304931493249334934493549364937493849394940494149424943494449454946494749484949495049514952495349544955495649574958495949604961496249634964496549664967496849694970497149724973497449754976497749784979498049814982498349844985498649874988498949904991499249934994499549964997499849995000500150025003500450055006500750085009501050115012501350145015501650175018501950205021502250235024502550265027502850295030503150325033503450355036503750385039504050415042504350445045504650475048504950505051505250535054505550565057505850595060506150625063506450655066506750685069507050715072507350745075507650775078507950805081508250835084508550865087508850895090509150925093509450955096509750985099510051015102510351045105510651075108510951105111511251135114511551165117511851195120512151225123512451255126512751285129513051315132513351345135513651375138513951405141514251435144514551465147514851495150515151525153515451555156515751585159516051615162516351645165516651675168516951705171517251735174517551765177517851795180518151825183518451855186518751885189519051915192519351945195519651975198519952005201520252035204520552065207520852095210521152125213521452155216521752185219522052215222522352245225522652275228522952305231523252335234523552365237523852395240524152425243524452455246524752485249525052515252525352545255525652575258525952605261526252635264526552665267526852695270527152725273527452755276527752785279528052815282528352845285528652875288528952905291529252935294529552965297529852995300530153025303530453055306530753085309531053115312531353145315531653175318531953205321532253235324532553265327532853295330533153325333533453355336533753385339534053415342534353445345534653475348534953505351535253535354535553565357535853595360536153625363536453655366536753685369537053715372537353745375537653775378537953805381538253835384538553865387538853895390539153925393539453955396539753985399540054015402540354045405540654075408540954105411541254135414541554165417541854195420542154225423542454255426542754285429543054315432543354345435543654375438543954405441544254435444544554465447544854495450545154525453545454555456545754585459546054615462546354645465546654675468546954705471547254735474547554765477547854795480548154825483548454855486548754885489549054915492549354945495549654975498549955005501550255035504550555065507550855095510551155125513551455155516551755185519552055215522552355245525552655275528552955305531553255335534553555365537553855395540554155425543554455455546554755485549555055515552555355545555555655575558555955605561556255635564556555665567556855695570557155725573557455755576557755785579558055815582558355845585558655875588558955905591559255935594559555965597559855995600560156025603560456055606560756085609561056115612561356145615561656175618561956205621562256235624562556265627562856295630563156325633563456355636563756385639564056415642564356445645564656475648564956505651565256535654565556565657565856595660566156625663566456655666566756685669567056715672567356745675567656775678567956805681568256835684568556865687568856895690569156925693569456955696569756985699570057015702570357045705570657075708570957105711571257135714571557165717571857195720572157225723572457255726572757285729573057315732573357345735573657375738573957405741574257435744574557465747574857495750575157525753575457555756575757585759576057615762576357645765576657675768576957705771577257735774577557765777577857795780578157825783578457855786578757885789579057915792579357945795579657975798579958005801580258035804580558065807580858095810581158125813581458155816581758185819582058215822582358245825582658275828582958305831583258335834583558365837583858395840584158425843584458455846584758485849585058515852585358545855585658575858585958605861586258635864586558665867586858695870587158725873587458755876587758785879588058815882588358845885588658875888588958905891589258935894589558965897589858995900590159025903590459055906590759085909591059115912591359145915591659175918591959205921592259235924592559265927592859295930593159325933593459355936593759385939594059415942594359445945594659475948594959505951595259535954595559565957595859595960596159625963596459655966596759685969597059715972597359745975597659775978597959805981598259835984598559865987598859895990599159925993599459955996599759985999600060016002600360046005600660076008600960106011601260136014601560166017601860196020602160226023602460256026602760286029603060316032603360346035603660376038603960406041604260436044604560466047604860496050605160526053605460556056605760586059606060616062606360646065606660676068606960706071607260736074607560766077607860796080608160826083608460856086608760886089609060916092609360946095609660976098609961006101610261036104610561066107610861096110611161126113611461156116611761186119612061216122612361246125612661276128612961306131613261336134613561366137613861396140614161426143614461456146614761486149615061516152615361546155615661576158615961606161616261636164616561666167616861696170617161726173617461756176617761786179618061816182618361846185618661876188618961906191619261936194619561966197619861996200620162026203620462056206620762086209621062116212621362146215621662176218621962206221622262236224622562266227622862296230623162326233623462356236623762386239624062416242624362446245624662476248624962506251625262536254625562566257625862596260626162626263626462656266626762686269627062716272627362746275627662776278627962806281628262836284628562866287628862896290629162926293629462956296629762986299630063016302630363046305630663076308630963106311631263136314631563166317631863196320632163226323632463256326632763286329633063316332633363346335633663376338633963406341634263436344634563466347634863496350635163526353635463556356635763586359636063616362636363646365636663676368636963706371637263736374637563766377637863796380638163826383638463856386638763886389639063916392639363946395639663976398639964006401640264036404640564066407640864096410641164126413641464156416641764186419642064216422642364246425642664276428642964306431643264336434643564366437643864396440644164426443644464456446644764486449645064516452645364546455645664576458645964606461646264636464646564666467646864696470647164726473647464756476647764786479648064816482648364846485648664876488648964906491649264936494649564966497649864996500650165026503650465056506650765086509651065116512651365146515651665176518651965206521652265236524652565266527652865296530653165326533653465356536653765386539654065416542654365446545654665476548654965506551655265536554655565566557655865596560656165626563656465656566656765686569657065716572657365746575657665776578657965806581658265836584658565866587658865896590659165926593659465956596659765986599660066016602660366046605660666076608660966106611661266136614661566166617661866196620662166226623662466256626662766286629663066316632663366346635663666376638663966406641664266436644664566466647664866496650665166526653665466556656665766586659666066616662666366646665666666676668666966706671667266736674667566766677667866796680668166826683668466856686668766886689669066916692669366946695669666976698669967006701670267036704670567066707670867096710671167126713671467156716671767186719672067216722672367246725672667276728672967306731673267336734673567366737673867396740674167426743674467456746674767486749675067516752675367546755675667576758675967606761676267636764676567666767676867696770677167726773677467756776677767786779678067816782678367846785678667876788678967906791679267936794679567966797679867996800680168026803680468056806680768086809681068116812681368146815681668176818681968206821682268236824682568266827682868296830683168326833683468356836683768386839684068416842684368446845684668476848684968506851685268536854685568566857685868596860686168626863686468656866686768686869687068716872687368746875687668776878687968806881688268836884688568866887688868896890689168926893689468956896689768986899690069016902690369046905690669076908690969106911691269136914691569166917691869196920692169226923692469256926692769286929693069316932693369346935693669376938693969406941694269436944694569466947694869496950695169526953695469556956695769586959696069616962696369646965696669676968696969706971697269736974697569766977697869796980698169826983698469856986698769886989699069916992699369946995699669976998699970007001700270037004700570067007700870097010701170127013701470157016701770187019702070217022702370247025702670277028702970307031703270337034703570367037703870397040704170427043704470457046704770487049705070517052705370547055705670577058705970607061706270637064706570667067706870697070707170727073707470757076707770787079708070817082708370847085708670877088708970907091709270937094709570967097709870997100710171027103710471057106710771087109711071117112711371147115711671177118711971207121712271237124712571267127712871297130713171327133713471357136713771387139714071417142714371447145714671477148714971507151715271537154715571567157715871597160716171627163716471657166716771687169717071717172717371747175717671777178717971807181718271837184718571867187718871897190719171927193719471957196719771987199720072017202720372047205720672077208720972107211721272137214721572167217721872197220722172227223722472257226722772287229723072317232723372347235723672377238723972407241724272437244724572467247724872497250725172527253725472557256725772587259726072617262726372647265726672677268726972707271727272737274727572767277727872797280728172827283728472857286728772887289729072917292729372947295729672977298729973007301730273037304730573067307730873097310731173127313731473157316731773187319732073217322732373247325732673277328732973307331733273337334733573367337733873397340734173427343734473457346734773487349735073517352735373547355735673577358735973607361736273637364736573667367736873697370737173727373737473757376737773787379738073817382738373847385738673877388738973907391739273937394739573967397739873997400740174027403740474057406740774087409741074117412741374147415741674177418741974207421742274237424742574267427742874297430743174327433743474357436743774387439744074417442744374447445744674477448744974507451745274537454745574567457745874597460746174627463746474657466746774687469747074717472747374747475747674777478747974807481748274837484748574867487748874897490749174927493749474957496749774987499750075017502750375047505750675077508750975107511751275137514751575167517751875197520752175227523752475257526752775287529753075317532753375347535753675377538753975407541754275437544754575467547754875497550755175527553755475557556755775587559756075617562756375647565756675677568756975707571757275737574757575767577757875797580758175827583758475857586758775887589759075917592759375947595759675977598759976007601760276037604760576067607760876097610761176127613761476157616761776187619762076217622762376247625762676277628762976307631763276337634763576367637763876397640764176427643764476457646764776487649765076517652765376547655765676577658765976607661766276637664766576667667766876697670767176727673767476757676767776787679768076817682768376847685768676877688768976907691769276937694769576967697769876997700770177027703770477057706770777087709771077117712771377147715771677177718771977207721772277237724772577267727772877297730773177327733773477357736773777387739774077417742774377447745774677477748774977507751775277537754775577567757775877597760776177627763776477657766776777687769777077717772777377747775777677777778777977807781778277837784778577867787778877897790779177927793779477957796779777987799780078017802780378047805780678077808780978107811781278137814781578167817781878197820782178227823782478257826782778287829783078317832783378347835783678377838783978407841784278437844784578467847784878497850785178527853785478557856785778587859786078617862786378647865786678677868786978707871787278737874787578767877787878797880788178827883788478857886788778887889789078917892789378947895789678977898789979007901790279037904790579067907790879097910791179127913791479157916791779187919792079217922792379247925792679277928792979307931793279337934793579367937793879397940794179427943794479457946794779487949795079517952795379547955795679577958795979607961796279637964796579667967796879697970797179727973797479757976797779787979798079817982798379847985798679877988798979907991799279937994799579967997799879998000800180028003800480058006800780088009801080118012801380148015801680178018801980208021802280238024802580268027802880298030803180328033803480358036803780388039804080418042804380448045804680478048804980508051805280538054805580568057805880598060806180628063806480658066806780688069807080718072807380748075807680778078807980808081808280838084808580868087808880898090809180928093809480958096809780988099810081018102810381048105810681078108810981108111811281138114811581168117811881198120812181228123812481258126812781288129813081318132813381348135813681378138813981408141814281438144814581468147814881498150815181528153815481558156815781588159816081618162816381648165816681678168816981708171817281738174817581768177817881798180818181828183818481858186818781888189819081918192819381948195819681978198819982008201820282038204820582068207820882098210821182128213821482158216821782188219822082218222822382248225822682278228822982308231823282338234823582368237823882398240824182428243824482458246824782488249825082518252825382548255825682578258825982608261826282638264826582668267826882698270827182728273827482758276827782788279828082818282828382848285828682878288828982908291829282938294829582968297829882998300830183028303830483058306830783088309831083118312831383148315831683178318831983208321832283238324832583268327832883298330833183328333833483358336833783388339834083418342834383448345834683478348834983508351835283538354835583568357835883598360836183628363836483658366836783688369837083718372837383748375837683778378837983808381838283838384838583868387838883898390839183928393839483958396839783988399840084018402840384048405840684078408840984108411841284138414841584168417841884198420842184228423842484258426842784288429843084318432843384348435843684378438843984408441844284438444844584468447844884498450845184528453845484558456845784588459846084618462846384648465846684678468846984708471847284738474847584768477847884798480848184828483848484858486848784888489849084918492849384948495849684978498849985008501850285038504850585068507850885098510851185128513851485158516851785188519852085218522852385248525852685278528852985308531853285338534853585368537853885398540854185428543854485458546854785488549855085518552855385548555855685578558855985608561856285638564856585668567856885698570857185728573857485758576857785788579858085818582858385848585858685878588858985908591859285938594859585968597859885998600860186028603860486058606860786088609861086118612861386148615861686178618861986208621862286238624862586268627862886298630863186328633863486358636863786388639864086418642864386448645864686478648864986508651865286538654865586568657865886598660866186628663866486658666866786688669867086718672867386748675867686778678867986808681868286838684868586868687868886898690869186928693869486958696869786988699870087018702870387048705870687078708870987108711871287138714871587168717871887198720872187228723872487258726872787288729873087318732873387348735873687378738873987408741874287438744874587468747874887498750875187528753875487558756875787588759876087618762876387648765876687678768876987708771877287738774877587768777877887798780878187828783878487858786878787888789879087918792879387948795879687978798879988008801880288038804880588068807880888098810881188128813881488158816881788188819882088218822882388248825882688278828882988308831883288338834883588368837883888398840884188428843884488458846884788488849885088518852885388548855885688578858885988608861886288638864886588668867886888698870887188728873887488758876887788788879888088818882888388848885888688878888888988908891889288938894889588968897889888998900890189028903890489058906890789088909891089118912891389148915891689178918891989208921892289238924892589268927892889298930893189328933893489358936893789388939894089418942894389448945894689478948894989508951895289538954895589568957895889598960896189628963896489658966896789688969897089718972897389748975897689778978897989808981898289838984898589868987898889898990899189928993899489958996899789988999900090019002900390049005900690079008900990109011901290139014901590169017901890199020902190229023902490259026902790289029903090319032903390349035903690379038903990409041904290439044904590469047904890499050905190529053905490559056905790589059906090619062906390649065906690679068906990709071907290739074907590769077907890799080908190829083908490859086908790889089909090919092909390949095909690979098909991009101910291039104910591069107910891099110911191129113911491159116911791189119912091219122912391249125912691279128912991309131913291339134913591369137913891399140914191429143914491459146914791489149915091519152915391549155915691579158915991609161916291639164916591669167916891699170917191729173917491759176917791789179918091819182918391849185918691879188918991909191919291939194919591969197919891999200920192029203920492059206920792089209921092119212921392149215921692179218921992209221922292239224922592269227922892299230923192329233923492359236923792389239924092419242924392449245924692479248924992509251925292539254925592569257925892599260926192629263926492659266926792689269927092719272927392749275927692779278927992809281928292839284928592869287928892899290929192929293929492959296929792989299930093019302930393049305930693079308930993109311931293139314931593169317931893199320932193229323932493259326932793289329933093319332933393349335933693379338933993409341934293439344934593469347934893499350935193529353935493559356935793589359936093619362936393649365936693679368936993709371937293739374937593769377937893799380938193829383938493859386938793889389939093919392939393949395939693979398939994009401940294039404940594069407940894099410941194129413941494159416941794189419942094219422942394249425942694279428942994309431943294339434943594369437943894399440944194429443944494459446944794489449945094519452945394549455945694579458945994609461946294639464946594669467946894699470947194729473947494759476947794789479948094819482948394849485948694879488948994909491949294939494949594969497949894999500950195029503950495059506950795089509951095119512951395149515951695179518951995209521952295239524952595269527952895299530953195329533953495359536953795389539954095419542954395449545954695479548954995509551955295539554955595569557955895599560956195629563956495659566956795689569957095719572957395749575957695779578957995809581958295839584958595869587958895899590959195929593959495959596959795989599960096019602960396049605960696079608960996109611961296139614961596169617961896199620962196229623962496259626962796289629963096319632963396349635963696379638963996409641964296439644964596469647964896499650965196529653965496559656965796589659966096619662966396649665966696679668966996709671967296739674967596769677967896799680968196829683968496859686968796889689969096919692969396949695969696979698969997009701970297039704970597069707970897099710971197129713971497159716971797189719972097219722972397249725972697279728972997309731973297339734973597369737973897399740974197429743974497459746974797489749975097519752975397549755975697579758975997609761976297639764976597669767976897699770977197729773977497759776977797789779978097819782978397849785978697879788978997909791979297939794979597969797979897999800980198029803980498059806980798089809981098119812981398149815981698179818981998209821982298239824982598269827982898299830983198329833983498359836983798389839984098419842984398449845984698479848984998509851985298539854985598569857985898599860986198629863986498659866986798689869987098719872987398749875987698779878987998809881988298839884988598869887988898899890989198929893989498959896989798989899990099019902990399049905990699079908990999109911991299139914991599169917991899199920992199229923992499259926992799289929993099319932993399349935993699379938993999409941994299439944994599469947994899499950995199529953995499559956995799589959996099619962996399649965996699679968996999709971997299739974997599769977997899799980998199829983998499859986998799889989999099919992999399949995999699979998999910000100011000210003100041000510006100071000810009100101001110012100131001410015100161001710018100191002010021100221002310024100251002610027100281002910030100311003210033100341003510036100371003810039100401004110042100431004410045100461004710048100491005010051100521005310054100551005610057100581005910060100611006210063100641006510066100671006810069100701007110072100731007410075100761007710078100791008010081100821008310084100851008610087100881008910090100911009210093100941009510096100971009810099101001010110102101031010410105101061010710108101091011010111101121011310114101151011610117101181011910120101211012210123101241012510126101271012810129101301013110132101331013410135101361013710138101391014010141101421014310144101451014610147101481014910150101511015210153101541015510156101571015810159101601016110162101631016410165101661016710168101691017010171101721017310174101751017610177101781017910180101811018210183101841018510186101871018810189101901019110192101931019410195101961019710198101991020010201102021020310204102051020610207102081020910210102111021210213102141021510216102171021810219102201022110222102231022410225102261022710228102291023010231102321023310234102351023610237102381023910240102411024210243102441024510246102471024810249102501025110252102531025410255102561025710258102591026010261102621026310264102651026610267102681026910270102711027210273102741027510276102771027810279102801028110282102831028410285102861028710288102891029010291102921029310294102951029610297102981029910300103011030210303103041030510306103071030810309103101031110312103131031410315103161031710318103191032010321103221032310324103251032610327103281032910330103311033210333103341033510336103371033810339103401034110342103431034410345103461034710348103491035010351103521035310354103551035610357103581035910360103611036210363103641036510366103671036810369103701037110372103731037410375103761037710378103791038010381103821038310384103851038610387103881038910390103911039210393103941039510396103971039810399104001040110402104031040410405104061040710408104091041010411104121041310414104151041610417104181041910420104211042210423104241042510426104271042810429104301043110432104331043410435104361043710438104391044010441104421044310444104451044610447104481044910450104511045210453104541045510456104571045810459104601046110462104631046410465104661046710468104691047010471104721047310474104751047610477104781047910480104811048210483104841048510486104871048810489104901049110492104931049410495104961049710498104991050010501105021050310504105051050610507105081050910510105111051210513105141051510516105171051810519105201052110522105231052410525105261052710528105291053010531105321053310534105351053610537105381053910540105411054210543105441054510546105471054810549105501055110552105531055410555105561055710558105591056010561105621056310564105651056610567105681056910570105711057210573105741057510576105771057810579105801058110582105831058410585105861058710588105891059010591105921059310594105951059610597105981059910600106011060210603106041060510606106071060810609106101061110612106131061410615106161061710618106191062010621106221062310624106251062610627106281062910630106311063210633106341063510636106371063810639106401064110642106431064410645106461064710648106491065010651106521065310654106551065610657106581065910660106611066210663106641066510666106671066810669106701067110672106731067410675106761067710678106791068010681106821068310684106851068610687106881068910690106911069210693106941069510696106971069810699107001070110702107031070410705107061070710708107091071010711107121071310714107151071610717107181071910720107211072210723107241072510726107271072810729107301073110732107331073410735107361073710738107391074010741107421074310744107451074610747107481074910750107511075210753107541075510756107571075810759107601076110762107631076410765107661076710768107691077010771107721077310774107751077610777107781077910780107811078210783107841078510786107871078810789107901079110792107931079410795107961079710798107991080010801108021080310804108051080610807108081080910810108111081210813108141081510816108171081810819108201082110822108231082410825108261082710828108291083010831108321083310834108351083610837108381083910840108411084210843108441084510846108471084810849108501085110852108531085410855108561085710858108591086010861108621086310864108651086610867108681086910870108711087210873108741087510876108771087810879108801088110882108831088410885108861088710888108891089010891108921089310894108951089610897108981089910900109011090210903109041090510906109071090810909109101091110912109131091410915109161091710918109191092010921109221092310924109251092610927109281092910930109311093210933109341093510936109371093810939109401094110942109431094410945109461094710948109491095010951109521095310954109551095610957109581095910960109611096210963109641096510966109671096810969109701097110972109731097410975109761097710978109791098010981109821098310984109851098610987109881098910990109911099210993109941099510996109971099810999110001100111002110031100411005110061100711008110091101011011110121101311014110151101611017110181101911020110211102211023110241102511026110271102811029110301103111032110331103411035110361103711038110391104011041110421104311044110451104611047110481104911050110511105211053110541105511056110571105811059110601106111062110631106411065110661106711068110691107011071110721107311074110751107611077110781107911080110811108211083110841108511086110871108811089110901109111092110931109411095110961109711098110991110011101111021110311104111051110611107111081110911110111111111211113111141111511116111171111811119111201112111122111231112411125111261112711128111291113011131111321113311134111351113611137111381113911140111411114211143111441114511146111471114811149111501115111152111531115411155111561115711158111591116011161111621116311164111651116611167111681116911170111711117211173111741117511176111771117811179111801118111182111831118411185111861118711188111891119011191111921119311194111951119611197111981119911200112011120211203112041120511206112071120811209112101121111212112131121411215112161121711218112191122011221112221122311224112251122611227112281122911230112311123211233112341123511236112371123811239112401124111242112431124411245112461124711248112491125011251112521125311254112551125611257112581125911260112611126211263112641126511266112671126811269112701127111272112731127411275112761127711278112791128011281112821128311284112851128611287112881128911290112911129211293112941129511296112971129811299113001130111302113031130411305113061130711308113091131011311113121131311314113151131611317113181131911320113211132211323113241132511326113271132811329113301133111332113331133411335113361133711338113391134011341113421134311344113451134611347113481134911350113511135211353113541135511356113571135811359113601136111362113631136411365113661136711368113691137011371113721137311374113751137611377113781137911380113811138211383113841138511386113871138811389113901139111392113931139411395113961139711398113991140011401114021140311404114051140611407114081140911410114111141211413114141141511416114171141811419114201142111422114231142411425114261142711428114291143011431114321143311434114351143611437114381143911440114411144211443114441144511446114471144811449114501145111452114531145411455114561145711458114591146011461114621146311464114651146611467114681146911470114711147211473114741147511476114771147811479114801148111482114831148411485114861148711488114891149011491114921149311494114951149611497114981149911500115011150211503115041150511506115071150811509115101151111512115131151411515115161151711518115191152011521115221152311524115251152611527115281152911530115311153211533115341153511536115371153811539115401154111542115431154411545115461154711548115491155011551115521155311554115551155611557115581155911560115611156211563115641156511566115671156811569115701157111572115731157411575115761157711578115791158011581115821158311584115851158611587115881158911590115911159211593115941159511596115971159811599116001160111602116031160411605116061160711608116091161011611116121161311614116151161611617116181161911620116211162211623116241162511626116271162811629116301163111632116331163411635116361163711638116391164011641116421164311644116451164611647116481164911650116511165211653116541165511656116571165811659116601166111662116631166411665116661166711668116691167011671116721167311674116751167611677116781167911680116811168211683116841168511686116871168811689116901169111692116931169411695116961169711698116991170011701117021170311704117051170611707117081170911710117111171211713117141171511716117171171811719117201172111722117231172411725117261172711728117291173011731117321173311734117351173611737117381173911740117411174211743117441174511746117471174811749117501175111752117531175411755117561175711758117591176011761117621176311764117651176611767117681176911770117711177211773117741177511776117771177811779117801178111782117831178411785117861178711788117891179011791117921179311794117951179611797117981179911800118011180211803118041180511806118071180811809118101181111812118131181411815118161181711818118191182011821118221182311824118251182611827118281182911830118311183211833118341183511836118371183811839118401184111842118431184411845118461184711848118491185011851118521185311854118551185611857118581185911860118611186211863118641186511866118671186811869118701187111872118731187411875118761187711878118791188011881118821188311884118851188611887118881188911890118911189211893118941189511896118971189811899119001190111902119031190411905119061190711908119091191011911119121191311914119151191611917119181191911920119211192211923119241192511926119271192811929119301193111932119331193411935119361193711938119391194011941119421194311944119451194611947119481194911950119511195211953119541195511956119571195811959119601196111962119631196411965119661196711968119691197011971119721197311974119751197611977119781197911980119811198211983119841198511986119871198811989119901199111992119931199411995119961199711998119991200012001120021200312004120051200612007120081200912010120111201212013120141201512016120171201812019120201202112022120231202412025120261202712028120291203012031120321203312034120351203612037120381203912040120411204212043120441204512046120471204812049120501205112052120531205412055120561205712058120591206012061120621206312064120651206612067120681206912070120711207212073120741207512076120771207812079120801208112082120831208412085120861208712088120891209012091120921209312094120951209612097120981209912100121011210212103121041210512106121071210812109121101211112112121131211412115121161211712118121191212012121121221212312124121251212612127121281212912130121311213212133121341213512136121371213812139121401214112142121431214412145121461214712148121491215012151121521215312154121551215612157121581215912160121611216212163121641216512166121671216812169121701217112172121731217412175121761217712178121791218012181121821218312184121851218612187121881218912190121911219212193121941219512196121971219812199122001220112202122031220412205122061220712208122091221012211122121221312214122151221612217122181221912220122211222212223122241222512226122271222812229122301223112232122331223412235122361223712238122391224012241122421224312244122451224612247122481224912250122511225212253122541225512256122571225812259122601226112262122631226412265122661226712268122691227012271122721227312274122751227612277122781227912280122811228212283122841228512286122871228812289122901229112292122931229412295122961229712298122991230012301123021230312304123051230612307123081230912310123111231212313123141231512316123171231812319123201232112322123231232412325123261232712328123291233012331123321233312334123351233612337123381233912340123411234212343123441234512346123471234812349123501235112352123531235412355123561235712358123591236012361123621236312364123651236612367123681236912370123711237212373123741237512376123771237812379123801238112382123831238412385123861238712388123891239012391123921239312394123951239612397123981239912400124011240212403124041240512406124071240812409124101241112412124131241412415124161241712418124191242012421124221242312424124251242612427124281242912430124311243212433124341243512436124371243812439124401244112442124431244412445124461244712448124491245012451124521245312454124551245612457124581245912460124611246212463124641246512466124671246812469124701247112472124731247412475124761247712478124791248012481124821248312484124851248612487124881248912490124911249212493124941249512496124971249812499125001250112502125031250412505125061250712508125091251012511125121251312514125151251612517125181251912520125211252212523125241252512526125271252812529125301253112532125331253412535125361253712538125391254012541125421254312544125451254612547125481254912550125511255212553125541255512556125571255812559125601256112562125631256412565125661256712568125691257012571125721257312574125751257612577125781257912580125811258212583125841258512586125871258812589125901259112592125931259412595125961259712598125991260012601126021260312604126051260612607126081260912610126111261212613126141261512616126171261812619126201262112622126231262412625126261262712628126291263012631126321263312634126351263612637126381263912640126411264212643126441264512646126471264812649126501265112652126531265412655126561265712658126591266012661126621266312664126651266612667126681266912670126711267212673126741267512676126771267812679126801268112682126831268412685126861268712688126891269012691126921269312694126951269612697126981269912700127011270212703127041270512706127071270812709127101271112712127131271412715127161271712718127191272012721127221272312724127251272612727127281272912730127311273212733127341273512736127371273812739127401274112742127431274412745127461274712748127491275012751127521275312754127551275612757127581275912760127611276212763127641276512766127671276812769127701277112772127731277412775127761277712778127791278012781127821278312784127851278612787127881278912790127911279212793127941279512796127971279812799128001280112802128031280412805128061280712808128091281012811128121281312814128151281612817128181281912820128211282212823128241282512826128271282812829128301283112832128331283412835128361283712838128391284012841128421284312844128451284612847128481284912850128511285212853128541285512856128571285812859128601286112862128631286412865128661286712868128691287012871128721287312874128751287612877128781287912880128811288212883128841288512886128871288812889128901289112892128931289412895128961289712898128991290012901129021290312904129051290612907129081290912910129111291212913129141291512916129171291812919129201292112922129231292412925129261292712928129291293012931129321293312934129351293612937129381293912940129411294212943129441294512946129471294812949129501295112952129531295412955129561295712958129591296012961129621296312964129651296612967129681296912970129711297212973129741297512976129771297812979129801298112982129831298412985129861298712988129891299012991129921299312994129951299612997129981299913000130011300213003130041300513006130071300813009130101301113012130131301413015130161301713018130191302013021130221302313024130251302613027130281302913030130311303213033130341303513036130371303813039130401304113042130431304413045130461304713048130491305013051130521305313054130551305613057130581305913060130611306213063130641306513066130671306813069130701307113072130731307413075130761307713078130791308013081130821308313084130851308613087130881308913090130911309213093130941309513096130971309813099131001310113102131031310413105131061310713108131091311013111131121311313114131151311613117131181311913120131211312213123131241312513126131271312813129131301313113132131331313413135131361313713138131391314013141131421314313144131451314613147131481314913150131511315213153131541315513156131571315813159131601316113162131631316413165131661316713168131691317013171131721317313174131751317613177131781317913180131811318213183131841318513186131871318813189131901319113192131931319413195131961319713198131991320013201132021320313204132051320613207132081320913210132111321213213132141321513216132171321813219132201322113222132231322413225132261322713228132291323013231132321323313234132351323613237132381323913240132411324213243132441324513246132471324813249132501325113252132531325413255132561325713258132591326013261132621326313264132651326613267132681326913270132711327213273132741327513276132771327813279132801328113282132831328413285132861328713288132891329013291132921329313294132951329613297132981329913300133011330213303133041330513306133071330813309133101331113312133131331413315133161331713318133191332013321133221332313324133251332613327133281332913330133311333213333133341333513336133371333813339133401334113342133431334413345133461334713348133491335013351133521335313354133551335613357133581335913360133611336213363133641336513366133671336813369133701337113372133731337413375133761337713378133791338013381133821338313384133851338613387133881338913390133911339213393133941339513396133971339813399134001340113402134031340413405134061340713408134091341013411134121341313414134151341613417134181341913420134211342213423134241342513426134271342813429134301343113432134331343413435134361343713438134391344013441134421344313444134451344613447134481344913450134511345213453134541345513456134571345813459134601346113462134631346413465134661346713468134691347013471134721347313474134751347613477134781347913480134811348213483134841348513486134871348813489134901349113492134931349413495134961349713498134991350013501135021350313504135051350613507135081350913510135111351213513135141351513516135171351813519135201352113522135231352413525135261352713528135291353013531135321353313534135351353613537135381353913540135411354213543135441354513546135471354813549135501355113552135531355413555135561355713558135591356013561135621356313564135651356613567135681356913570135711357213573135741357513576135771357813579135801358113582135831358413585135861358713588135891359013591135921359313594135951359613597135981359913600136011360213603136041360513606136071360813609136101361113612136131361413615136161361713618136191362013621136221362313624136251362613627136281362913630136311363213633136341363513636136371363813639136401364113642136431364413645136461364713648136491365013651136521365313654136551365613657136581365913660136611366213663136641366513666136671366813669136701367113672136731367413675136761367713678136791368013681136821368313684136851368613687136881368913690136911369213693136941369513696136971369813699137001370113702137031370413705137061370713708137091371013711137121371313714137151371613717137181371913720137211372213723137241372513726137271372813729137301373113732137331373413735137361373713738137391374013741137421374313744137451374613747137481374913750137511375213753137541375513756137571375813759137601376113762137631376413765137661376713768137691377013771137721377313774137751377613777137781377913780137811378213783137841378513786137871378813789137901379113792137931379413795137961379713798137991380013801138021380313804138051380613807138081380913810138111381213813138141381513816138171381813819138201382113822138231382413825138261382713828138291383013831138321383313834138351383613837138381383913840138411384213843138441384513846138471384813849138501385113852138531385413855138561385713858138591386013861138621386313864138651386613867138681386913870138711387213873138741387513876138771387813879138801388113882138831388413885138861388713888138891389013891138921389313894138951389613897138981389913900139011390213903139041390513906139071390813909139101391113912139131391413915139161391713918139191392013921139221392313924139251392613927139281392913930139311393213933139341393513936139371393813939139401394113942139431394413945139461394713948139491395013951139521395313954139551395613957139581395913960139611396213963139641396513966139671396813969139701397113972139731397413975139761397713978139791398013981139821398313984139851398613987139881398913990139911399213993139941399513996139971399813999140001400114002140031400414005140061400714008140091401014011140121401314014140151401614017140181401914020140211402214023140241402514026140271402814029140301403114032140331403414035140361403714038140391404014041140421404314044140451404614047140481404914050140511405214053140541405514056140571405814059140601406114062140631406414065140661406714068140691407014071140721407314074140751407614077140781407914080140811408214083140841408514086140871408814089140901409114092140931409414095140961409714098140991410014101141021410314104141051410614107141081410914110141111411214113141141411514116141171411814119141201412114122141231412414125141261412714128141291413014131141321413314134141351413614137141381413914140141411414214143141441414514146141471414814149141501415114152141531415414155141561415714158141591416014161141621416314164141651416614167141681416914170141711417214173141741417514176141771417814179141801418114182141831418414185141861418714188141891419014191141921419314194141951419614197141981419914200142011420214203142041420514206142071420814209142101421114212142131421414215142161421714218142191422014221142221422314224142251422614227142281422914230142311423214233142341423514236142371423814239142401424114242142431424414245142461424714248142491425014251142521425314254142551425614257142581425914260142611426214263142641426514266142671426814269142701427114272142731427414275142761427714278142791428014281142821428314284142851428614287142881428914290142911429214293142941429514296142971429814299143001430114302143031430414305143061430714308143091431014311143121431314314143151431614317143181431914320143211432214323143241432514326143271432814329143301433114332143331433414335143361433714338143391434014341143421434314344143451434614347143481434914350143511435214353143541435514356143571435814359143601436114362143631436414365143661436714368143691437014371143721437314374143751437614377143781437914380143811438214383143841438514386143871438814389143901439114392143931439414395143961439714398143991440014401144021440314404144051440614407144081440914410144111441214413144141441514416144171441814419144201442114422144231442414425144261442714428144291443014431144321443314434144351443614437144381443914440144411444214443144441444514446144471444814449144501445114452144531445414455144561445714458144591446014461144621446314464144651446614467144681446914470144711447214473144741447514476144771447814479144801448114482144831448414485144861448714488144891449014491144921449314494144951449614497144981449914500145011450214503145041450514506145071450814509145101451114512145131451414515145161451714518145191452014521145221452314524145251452614527145281452914530145311453214533145341453514536145371453814539145401454114542145431454414545145461454714548145491455014551145521455314554145551455614557145581455914560145611456214563145641456514566145671456814569145701457114572145731457414575145761457714578145791458014581145821458314584145851458614587145881458914590145911459214593145941459514596145971459814599146001460114602146031460414605146061460714608146091461014611146121461314614146151461614617146181461914620146211462214623146241462514626146271462814629146301463114632146331463414635146361463714638146391464014641146421464314644146451464614647146481464914650146511465214653146541465514656146571465814659146601466114662146631466414665146661466714668146691467014671146721467314674146751467614677146781467914680146811468214683146841468514686146871468814689146901469114692146931469414695146961469714698146991470014701147021470314704147051470614707147081470914710147111471214713147141471514716147171471814719147201472114722147231472414725147261472714728147291473014731147321473314734147351473614737147381473914740147411474214743147441474514746147471474814749147501475114752147531475414755147561475714758147591476014761147621476314764147651476614767147681476914770147711477214773147741477514776147771477814779147801478114782147831478414785147861478714788147891479014791147921479314794147951479614797147981479914800148011480214803148041480514806148071480814809148101481114812148131481414815148161481714818148191482014821148221482314824148251482614827148281482914830148311483214833148341483514836148371483814839148401484114842148431484414845148461484714848148491485014851148521485314854148551485614857148581485914860148611486214863148641486514866148671486814869148701487114872148731487414875148761487714878148791488014881148821488314884148851488614887148881488914890148911489214893148941489514896148971489814899149001490114902149031490414905149061490714908149091491014911149121491314914149151491614917149181491914920149211492214923149241492514926149271492814929149301493114932149331493414935149361493714938149391494014941149421494314944149451494614947149481494914950149511495214953149541495514956149571495814959149601496114962149631496414965149661496714968149691497014971149721497314974149751497614977149781497914980149811498214983149841498514986149871498814989149901499114992149931499414995149961499714998149991500015001150021500315004150051500615007150081500915010150111501215013150141501515016150171501815019150201502115022150231502415025150261502715028150291503015031150321503315034150351503615037150381503915040150411504215043150441504515046150471504815049150501505115052150531505415055150561505715058150591506015061150621506315064150651506615067150681506915070150711507215073150741507515076150771507815079150801508115082150831508415085150861508715088150891509015091150921509315094150951509615097150981509915100151011510215103151041510515106151071510815109151101511115112151131511415115151161511715118151191512015121151221512315124151251512615127151281512915130151311513215133151341513515136151371513815139151401514115142151431514415145151461514715148151491515015151151521515315154151551515615157151581515915160151611516215163151641516515166151671516815169151701517115172151731517415175151761517715178151791518015181151821518315184151851518615187151881518915190151911519215193151941519515196151971519815199152001520115202152031520415205152061520715208152091521015211152121521315214152151521615217152181521915220152211522215223152241522515226152271522815229152301523115232152331523415235152361523715238152391524015241152421524315244152451524615247152481524915250152511525215253152541525515256152571525815259152601526115262152631526415265152661526715268152691527015271152721527315274152751527615277152781527915280152811528215283152841528515286152871528815289152901529115292152931529415295152961529715298152991530015301153021530315304153051530615307153081530915310153111531215313153141531515316153171531815319153201532115322153231532415325153261532715328153291533015331153321533315334153351533615337153381533915340153411534215343153441534515346153471534815349153501535115352153531535415355153561535715358153591536015361153621536315364153651536615367153681536915370153711537215373153741537515376153771537815379153801538115382153831538415385153861538715388153891539015391153921539315394153951539615397153981539915400154011540215403154041540515406154071540815409154101541115412154131541415415154161541715418154191542015421154221542315424154251542615427154281542915430154311543215433154341543515436154371543815439154401544115442154431544415445154461544715448154491545015451154521545315454154551545615457154581545915460154611546215463154641546515466154671546815469154701547115472154731547415475154761547715478154791548015481154821548315484154851548615487154881548915490154911549215493154941549515496154971549815499155001550115502155031550415505155061550715508155091551015511155121551315514155151551615517155181551915520155211552215523155241552515526155271552815529155301553115532155331553415535155361553715538155391554015541155421554315544155451554615547155481554915550155511555215553155541555515556155571555815559155601556115562155631556415565155661556715568155691557015571155721557315574155751557615577155781557915580155811558215583155841558515586155871558815589155901559115592155931559415595155961559715598155991560015601156021560315604156051560615607156081560915610156111561215613156141561515616156171561815619156201562115622156231562415625156261562715628156291563015631156321563315634156351563615637156381563915640156411564215643156441564515646156471564815649156501565115652156531565415655156561565715658156591566015661156621566315664156651566615667156681566915670156711567215673156741567515676156771567815679156801568115682156831568415685156861568715688156891569015691156921569315694156951569615697156981569915700157011570215703157041570515706157071570815709157101571115712157131571415715157161571715718157191572015721157221572315724157251572615727157281572915730157311573215733157341573515736157371573815739157401574115742157431574415745
  1. [
  2. {
  3. "__type__": "cc.Prefab",
  4. "_name": "",
  5. "_objFlags": 0,
  6. "_native": "",
  7. "data": {
  8. "__id__": 1
  9. },
  10. "optimizationPolicy": 0,
  11. "asyncLoadAssets": false,
  12. "readonly": false
  13. },
  14. {
  15. "__type__": "cc.Node",
  16. "_name": "EquipBreakUI",
  17. "_objFlags": 0,
  18. "_parent": null,
  19. "_children": [
  20. {
  21. "__id__": 2
  22. },
  23. {
  24. "__id__": 7
  25. },
  26. {
  27. "__id__": 13
  28. },
  29. {
  30. "__id__": 18
  31. },
  32. {
  33. "__id__": 21
  34. },
  35. {
  36. "__id__": 25
  37. },
  38. {
  39. "__id__": 28
  40. },
  41. {
  42. "__id__": 31
  43. },
  44. {
  45. "__id__": 34
  46. },
  47. {
  48. "__id__": 48
  49. },
  50. {
  51. "__id__": 51
  52. },
  53. {
  54. "__id__": 87
  55. },
  56. {
  57. "__id__": 98
  58. },
  59. {
  60. "__id__": 101
  61. },
  62. {
  63. "__id__": 115
  64. },
  65. {
  66. "__id__": 126
  67. },
  68. {
  69. "__id__": 170
  70. },
  71. {
  72. "__id__": 301
  73. },
  74. {
  75. "__id__": 315
  76. },
  77. {
  78. "__id__": 318
  79. },
  80. {
  81. "__id__": 325
  82. }
  83. ],
  84. "_active": true,
  85. "_components": [
  86. {
  87. "__id__": 451
  88. }
  89. ],
  90. "_prefab": {
  91. "__id__": 452
  92. },
  93. "_opacity": 255,
  94. "_color": {
  95. "__type__": "cc.Color",
  96. "r": 255,
  97. "g": 255,
  98. "b": 255,
  99. "a": 255
  100. },
  101. "_contentSize": {
  102. "__type__": "cc.Size",
  103. "width": 0,
  104. "height": 0
  105. },
  106. "_anchorPoint": {
  107. "__type__": "cc.Vec2",
  108. "x": 0.5,
  109. "y": 0.5
  110. },
  111. "_trs": {
  112. "__type__": "TypedArray",
  113. "ctor": "Float64Array",
  114. "array": [
  115. 0,
  116. 0,
  117. 0,
  118. 0,
  119. 0,
  120. 0,
  121. 1,
  122. 1,
  123. 1,
  124. 1
  125. ]
  126. },
  127. "_eulerAngles": {
  128. "__type__": "cc.Vec3",
  129. "x": 0,
  130. "y": 0,
  131. "z": 0
  132. },
  133. "_skewX": 0,
  134. "_skewY": 0,
  135. "_is3DNode": false,
  136. "_groupIndex": 0,
  137. "groupIndex": 0,
  138. "_id": ""
  139. },
  140. {
  141. "__type__": "cc.Node",
  142. "_name": "bg",
  143. "_objFlags": 0,
  144. "_parent": {
  145. "__id__": 1
  146. },
  147. "_children": [],
  148. "_active": true,
  149. "_components": [
  150. {
  151. "__id__": 3
  152. },
  153. {
  154. "__id__": 4
  155. },
  156. {
  157. "__id__": 5
  158. }
  159. ],
  160. "_prefab": {
  161. "__id__": 6
  162. },
  163. "_opacity": 255,
  164. "_color": {
  165. "__type__": "cc.Color",
  166. "r": 255,
  167. "g": 255,
  168. "b": 255,
  169. "a": 255
  170. },
  171. "_contentSize": {
  172. "__type__": "cc.Size",
  173. "width": 1920,
  174. "height": 1080
  175. },
  176. "_anchorPoint": {
  177. "__type__": "cc.Vec2",
  178. "x": 0.5,
  179. "y": 0.5
  180. },
  181. "_trs": {
  182. "__type__": "TypedArray",
  183. "ctor": "Float64Array",
  184. "array": [
  185. 0,
  186. 0,
  187. 0,
  188. 0,
  189. 0,
  190. 0,
  191. 1,
  192. 1,
  193. 1,
  194. 1
  195. ]
  196. },
  197. "_eulerAngles": {
  198. "__type__": "cc.Vec3",
  199. "x": 0,
  200. "y": 0,
  201. "z": 0
  202. },
  203. "_skewX": 0,
  204. "_skewY": 0,
  205. "_is3DNode": false,
  206. "_groupIndex": 0,
  207. "groupIndex": 0,
  208. "_id": ""
  209. },
  210. {
  211. "__type__": "cc.Sprite",
  212. "_name": "",
  213. "_objFlags": 0,
  214. "node": {
  215. "__id__": 2
  216. },
  217. "_enabled": true,
  218. "_materials": [
  219. {
  220. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  221. }
  222. ],
  223. "_srcBlendFactor": 770,
  224. "_dstBlendFactor": 771,
  225. "_spriteFrame": {
  226. "__uuid__": "9c65fb73-0545-4b53-9ecb-ee9eb1972867"
  227. },
  228. "_type": 0,
  229. "_sizeMode": 0,
  230. "_fillType": 0,
  231. "_fillCenter": {
  232. "__type__": "cc.Vec2",
  233. "x": 0,
  234. "y": 0
  235. },
  236. "_fillStart": 0,
  237. "_fillRange": 0,
  238. "_isTrimmedMode": true,
  239. "_atlas": null,
  240. "_id": ""
  241. },
  242. {
  243. "__type__": "62f58zwdOVN/rFVGtus3pDj",
  244. "_name": "",
  245. "_objFlags": 0,
  246. "node": {
  247. "__id__": 2
  248. },
  249. "_enabled": true,
  250. "widthFit": true,
  251. "heightFit": true,
  252. "_id": ""
  253. },
  254. {
  255. "__type__": "cc.BlockInputEvents",
  256. "_name": "",
  257. "_objFlags": 0,
  258. "node": {
  259. "__id__": 2
  260. },
  261. "_enabled": true,
  262. "_id": ""
  263. },
  264. {
  265. "__type__": "cc.PrefabInfo",
  266. "root": {
  267. "__id__": 1
  268. },
  269. "asset": {
  270. "__id__": 0
  271. },
  272. "fileId": "0c2M2aA4RKD7ss8FatXOkw",
  273. "sync": false
  274. },
  275. {
  276. "__type__": "cc.Node",
  277. "_name": "return",
  278. "_objFlags": 0,
  279. "_parent": {
  280. "__id__": 1
  281. },
  282. "_children": [],
  283. "_active": true,
  284. "_components": [
  285. {
  286. "__id__": 8
  287. },
  288. {
  289. "__id__": 9
  290. },
  291. {
  292. "__id__": 10
  293. }
  294. ],
  295. "_prefab": {
  296. "__id__": 12
  297. },
  298. "_opacity": 255,
  299. "_color": {
  300. "__type__": "cc.Color",
  301. "r": 255,
  302. "g": 255,
  303. "b": 255,
  304. "a": 255
  305. },
  306. "_contentSize": {
  307. "__type__": "cc.Size",
  308. "width": 106,
  309. "height": 106
  310. },
  311. "_anchorPoint": {
  312. "__type__": "cc.Vec2",
  313. "x": 0.5,
  314. "y": 0.5
  315. },
  316. "_trs": {
  317. "__type__": "TypedArray",
  318. "ctor": "Float64Array",
  319. "array": [
  320. -900,
  321. 480,
  322. 0,
  323. 0,
  324. 0,
  325. 0,
  326. 1,
  327. 1,
  328. 1,
  329. 0
  330. ]
  331. },
  332. "_eulerAngles": {
  333. "__type__": "cc.Vec3",
  334. "x": 0,
  335. "y": 0,
  336. "z": 0
  337. },
  338. "_skewX": 0,
  339. "_skewY": 0,
  340. "_is3DNode": false,
  341. "_groupIndex": 0,
  342. "groupIndex": 0,
  343. "_id": ""
  344. },
  345. {
  346. "__type__": "cc.Sprite",
  347. "_name": "",
  348. "_objFlags": 0,
  349. "node": {
  350. "__id__": 7
  351. },
  352. "_enabled": true,
  353. "_materials": [
  354. {
  355. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  356. }
  357. ],
  358. "_srcBlendFactor": 770,
  359. "_dstBlendFactor": 771,
  360. "_spriteFrame": {
  361. "__uuid__": "aad0ef4a-c231-4830-bea5-9b59c21d6548"
  362. },
  363. "_type": 0,
  364. "_sizeMode": 1,
  365. "_fillType": 0,
  366. "_fillCenter": {
  367. "__type__": "cc.Vec2",
  368. "x": 0,
  369. "y": 0
  370. },
  371. "_fillStart": 0,
  372. "_fillRange": 0,
  373. "_isTrimmedMode": true,
  374. "_atlas": null,
  375. "_id": ""
  376. },
  377. {
  378. "__type__": "466e8BS6wJF6bKBj6rcxcSE",
  379. "_name": "",
  380. "_objFlags": 0,
  381. "node": {
  382. "__id__": 7
  383. },
  384. "_enabled": true,
  385. "openContinuous": true,
  386. "continuousTime": 0.2,
  387. "multiTouch": false,
  388. "_id": ""
  389. },
  390. {
  391. "__type__": "61994AafntNFIbmt1zoyLq+",
  392. "_name": "",
  393. "_objFlags": 0,
  394. "node": {
  395. "__id__": 7
  396. },
  397. "_enabled": true,
  398. "_normalMaterial": null,
  399. "_grayMaterial": null,
  400. "duration": 0.1,
  401. "zoomScale": 1.2,
  402. "clickEvents": [
  403. {
  404. "__id__": 11
  405. }
  406. ],
  407. "_N$interactable": true,
  408. "_N$enableAutoGrayEffect": false,
  409. "_N$transition": 3,
  410. "transition": 3,
  411. "_N$normalColor": {
  412. "__type__": "cc.Color",
  413. "r": 255,
  414. "g": 255,
  415. "b": 255,
  416. "a": 255
  417. },
  418. "_N$pressedColor": {
  419. "__type__": "cc.Color",
  420. "r": 211,
  421. "g": 211,
  422. "b": 211,
  423. "a": 255
  424. },
  425. "pressedColor": {
  426. "__type__": "cc.Color",
  427. "r": 211,
  428. "g": 211,
  429. "b": 211,
  430. "a": 255
  431. },
  432. "_N$hoverColor": {
  433. "__type__": "cc.Color",
  434. "r": 255,
  435. "g": 255,
  436. "b": 255,
  437. "a": 255
  438. },
  439. "hoverColor": {
  440. "__type__": "cc.Color",
  441. "r": 255,
  442. "g": 255,
  443. "b": 255,
  444. "a": 255
  445. },
  446. "_N$disabledColor": {
  447. "__type__": "cc.Color",
  448. "r": 124,
  449. "g": 124,
  450. "b": 124,
  451. "a": 255
  452. },
  453. "_N$normalSprite": null,
  454. "_N$pressedSprite": null,
  455. "pressedSprite": null,
  456. "_N$hoverSprite": null,
  457. "hoverSprite": null,
  458. "_N$disabledSprite": null,
  459. "_N$target": null,
  460. "_id": ""
  461. },
  462. {
  463. "__type__": "cc.ClickEvent",
  464. "target": {
  465. "__id__": 1
  466. },
  467. "component": "",
  468. "_componentId": "ac1b6sIq7BFa5uPq8b8pdyl",
  469. "handler": "hide",
  470. "customEventData": ""
  471. },
  472. {
  473. "__type__": "cc.PrefabInfo",
  474. "root": {
  475. "__id__": 1
  476. },
  477. "asset": {
  478. "__id__": 0
  479. },
  480. "fileId": "d9CZDSSzFLB76+rOW0UOYs",
  481. "sync": false
  482. },
  483. {
  484. "__type__": "cc.Node",
  485. "_name": "lb",
  486. "_objFlags": 0,
  487. "_parent": {
  488. "__id__": 1
  489. },
  490. "_children": [],
  491. "_active": true,
  492. "_components": [
  493. {
  494. "__id__": 14
  495. },
  496. {
  497. "__id__": 15
  498. },
  499. {
  500. "__id__": 16
  501. }
  502. ],
  503. "_prefab": {
  504. "__id__": 17
  505. },
  506. "_opacity": 255,
  507. "_color": {
  508. "__type__": "cc.Color",
  509. "r": 255,
  510. "g": 255,
  511. "b": 255,
  512. "a": 255
  513. },
  514. "_contentSize": {
  515. "__type__": "cc.Size",
  516. "width": 165.06,
  517. "height": 73
  518. },
  519. "_anchorPoint": {
  520. "__type__": "cc.Vec2",
  521. "x": 0,
  522. "y": 0.5
  523. },
  524. "_trs": {
  525. "__type__": "TypedArray",
  526. "ctor": "Float64Array",
  527. "array": [
  528. -840,
  529. 480,
  530. 0,
  531. 0,
  532. 0,
  533. 0,
  534. 1,
  535. 1,
  536. 1,
  537. 1
  538. ]
  539. },
  540. "_eulerAngles": {
  541. "__type__": "cc.Vec3",
  542. "x": 0,
  543. "y": 0,
  544. "z": 0
  545. },
  546. "_skewX": 0,
  547. "_skewY": 0,
  548. "_is3DNode": false,
  549. "_groupIndex": 0,
  550. "groupIndex": 0,
  551. "_id": ""
  552. },
  553. {
  554. "__type__": "cc.Label",
  555. "_name": "",
  556. "_objFlags": 0,
  557. "node": {
  558. "__id__": 13
  559. },
  560. "_enabled": true,
  561. "_materials": [
  562. {
  563. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  564. }
  565. ],
  566. "_srcBlendFactor": 770,
  567. "_dstBlendFactor": 771,
  568. "_string": "EQUIP",
  569. "_N$string": "EQUIP",
  570. "_fontSize": 48,
  571. "_lineHeight": 50,
  572. "_enableWrapText": true,
  573. "_N$file": {
  574. "__uuid__": "53fae5bd-72f8-48d5-9465-9798bf9bde5c"
  575. },
  576. "_isSystemFontUsed": false,
  577. "_spacingX": 0,
  578. "_batchAsBitmap": false,
  579. "_styleFlags": 0,
  580. "_underlineHeight": 0,
  581. "_N$horizontalAlign": 1,
  582. "_N$verticalAlign": 1,
  583. "_N$fontFamily": "Arial",
  584. "_N$overflow": 0,
  585. "_N$cacheMode": 0,
  586. "_id": ""
  587. },
  588. {
  589. "__type__": "41ebaVoPpRA4Kp67XEdHfZn",
  590. "_name": "",
  591. "_objFlags": 0,
  592. "node": {
  593. "__id__": 13
  594. },
  595. "_enabled": true,
  596. "_englishCase": 2,
  597. "i18n_string": "t59",
  598. "i18n_params": [],
  599. "_addColon": false,
  600. "_id": ""
  601. },
  602. {
  603. "__type__": "cc.LabelOutline",
  604. "_name": "",
  605. "_objFlags": 0,
  606. "node": {
  607. "__id__": 13
  608. },
  609. "_enabled": true,
  610. "_color": {
  611. "__type__": "cc.Color",
  612. "r": 38,
  613. "g": 17,
  614. "b": 12,
  615. "a": 255
  616. },
  617. "_width": 5,
  618. "_id": ""
  619. },
  620. {
  621. "__type__": "cc.PrefabInfo",
  622. "root": {
  623. "__id__": 1
  624. },
  625. "asset": {
  626. "__id__": 0
  627. },
  628. "fileId": "15xUqp/91Du7BGhqk5v1yy",
  629. "sync": false
  630. },
  631. {
  632. "__type__": "cc.Node",
  633. "_name": "block2",
  634. "_objFlags": 0,
  635. "_parent": {
  636. "__id__": 1
  637. },
  638. "_children": [],
  639. "_active": true,
  640. "_components": [
  641. {
  642. "__id__": 19
  643. }
  644. ],
  645. "_prefab": {
  646. "__id__": 20
  647. },
  648. "_opacity": 153,
  649. "_color": {
  650. "__type__": "cc.Color",
  651. "r": 0,
  652. "g": 0,
  653. "b": 0,
  654. "a": 255
  655. },
  656. "_contentSize": {
  657. "__type__": "cc.Size",
  658. "width": 900,
  659. "height": 80
  660. },
  661. "_anchorPoint": {
  662. "__type__": "cc.Vec2",
  663. "x": 0.5,
  664. "y": 0.5
  665. },
  666. "_trs": {
  667. "__type__": "TypedArray",
  668. "ctor": "Float64Array",
  669. "array": [
  670. -346.654,
  671. 351.367,
  672. 0,
  673. 0,
  674. 0,
  675. 0,
  676. 1,
  677. 1,
  678. 1,
  679. 1
  680. ]
  681. },
  682. "_eulerAngles": {
  683. "__type__": "cc.Vec3",
  684. "x": 0,
  685. "y": 0,
  686. "z": 0
  687. },
  688. "_skewX": 0,
  689. "_skewY": 0,
  690. "_is3DNode": false,
  691. "_groupIndex": 0,
  692. "groupIndex": 0,
  693. "_id": ""
  694. },
  695. {
  696. "__type__": "cc.Sprite",
  697. "_name": "",
  698. "_objFlags": 0,
  699. "node": {
  700. "__id__": 18
  701. },
  702. "_enabled": true,
  703. "_materials": [
  704. {
  705. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  706. }
  707. ],
  708. "_srcBlendFactor": 770,
  709. "_dstBlendFactor": 771,
  710. "_spriteFrame": {
  711. "__uuid__": "05b69229-67ad-42c3-bf71-09c34d9def2b"
  712. },
  713. "_type": 1,
  714. "_sizeMode": 0,
  715. "_fillType": 0,
  716. "_fillCenter": {
  717. "__type__": "cc.Vec2",
  718. "x": 0,
  719. "y": 0
  720. },
  721. "_fillStart": 0,
  722. "_fillRange": 0,
  723. "_isTrimmedMode": true,
  724. "_atlas": null,
  725. "_id": ""
  726. },
  727. {
  728. "__type__": "cc.PrefabInfo",
  729. "root": {
  730. "__id__": 1
  731. },
  732. "asset": {
  733. "__id__": 0
  734. },
  735. "fileId": "01X1pLnQdDR4/XdMPCGNTk",
  736. "sync": false
  737. },
  738. {
  739. "__type__": "cc.Node",
  740. "_name": "tip_rt",
  741. "_objFlags": 0,
  742. "_parent": {
  743. "__id__": 1
  744. },
  745. "_children": [],
  746. "_active": true,
  747. "_components": [
  748. {
  749. "__id__": 22
  750. },
  751. {
  752. "__id__": 23
  753. }
  754. ],
  755. "_prefab": {
  756. "__id__": 24
  757. },
  758. "_opacity": 255,
  759. "_color": {
  760. "__type__": "cc.Color",
  761. "r": 255,
  762. "g": 255,
  763. "b": 255,
  764. "a": 255
  765. },
  766. "_contentSize": {
  767. "__type__": "cc.Size",
  768. "width": 880,
  769. "height": 47.88
  770. },
  771. "_anchorPoint": {
  772. "__type__": "cc.Vec2",
  773. "x": 0.5,
  774. "y": 0.5
  775. },
  776. "_trs": {
  777. "__type__": "TypedArray",
  778. "ctor": "Float64Array",
  779. "array": [
  780. -346.654,
  781. 351.367,
  782. 0,
  783. 0,
  784. 0,
  785. 0,
  786. 1,
  787. 1,
  788. 1,
  789. 1
  790. ]
  791. },
  792. "_eulerAngles": {
  793. "__type__": "cc.Vec3",
  794. "x": 0,
  795. "y": 0,
  796. "z": 0
  797. },
  798. "_skewX": 0,
  799. "_skewY": 0,
  800. "_is3DNode": false,
  801. "_groupIndex": 0,
  802. "groupIndex": 0,
  803. "_id": ""
  804. },
  805. {
  806. "__type__": "cc.RichText",
  807. "_name": "",
  808. "_objFlags": 0,
  809. "node": {
  810. "__id__": 21
  811. },
  812. "_enabled": true,
  813. "_fontFamily": "Arial",
  814. "_isSystemFontUsed": false,
  815. "_N$string": "Need 1x <color=#6cda2b>Excellent</c>",
  816. "_N$horizontalAlign": 1,
  817. "_N$fontSize": 36,
  818. "_N$font": {
  819. "__uuid__": "53fae5bd-72f8-48d5-9465-9798bf9bde5c"
  820. },
  821. "_N$cacheMode": 0,
  822. "_N$maxWidth": 880,
  823. "_N$lineHeight": 38,
  824. "_N$imageAtlas": null,
  825. "_N$handleTouchEvent": true,
  826. "_id": ""
  827. },
  828. {
  829. "__type__": "41ebaVoPpRA4Kp67XEdHfZn",
  830. "_name": "",
  831. "_objFlags": 0,
  832. "node": {
  833. "__id__": 21
  834. },
  835. "_enabled": true,
  836. "_englishCase": 3,
  837. "i18n_string": "t44",
  838. "i18n_params": [
  839. "1",
  840. "#6CDA2B",
  841. "excellent"
  842. ],
  843. "_addColon": false,
  844. "_id": ""
  845. },
  846. {
  847. "__type__": "cc.PrefabInfo",
  848. "root": {
  849. "__id__": 1
  850. },
  851. "asset": {
  852. "__id__": 0
  853. },
  854. "fileId": "f6FtROfx9I4J49elSRi68j",
  855. "sync": false
  856. },
  857. {
  858. "__type__": "cc.Node",
  859. "_name": "common_frame2",
  860. "_objFlags": 0,
  861. "_parent": {
  862. "__id__": 1
  863. },
  864. "_children": [],
  865. "_active": true,
  866. "_components": [
  867. {
  868. "__id__": 26
  869. }
  870. ],
  871. "_prefab": {
  872. "__id__": 27
  873. },
  874. "_opacity": 255,
  875. "_color": {
  876. "__type__": "cc.Color",
  877. "r": 255,
  878. "g": 255,
  879. "b": 255,
  880. "a": 255
  881. },
  882. "_contentSize": {
  883. "__type__": "cc.Size",
  884. "width": 714,
  885. "height": 914
  886. },
  887. "_anchorPoint": {
  888. "__type__": "cc.Vec2",
  889. "x": 0.5,
  890. "y": 0.5
  891. },
  892. "_trs": {
  893. "__type__": "TypedArray",
  894. "ctor": "Float64Array",
  895. "array": [
  896. 577.913,
  897. -44.837,
  898. 0,
  899. 0,
  900. 0,
  901. 0,
  902. 1,
  903. 1,
  904. 1,
  905. 1
  906. ]
  907. },
  908. "_eulerAngles": {
  909. "__type__": "cc.Vec3",
  910. "x": 0,
  911. "y": 0,
  912. "z": 0
  913. },
  914. "_skewX": 0,
  915. "_skewY": 0,
  916. "_is3DNode": false,
  917. "_groupIndex": 0,
  918. "groupIndex": 0,
  919. "_id": ""
  920. },
  921. {
  922. "__type__": "cc.Sprite",
  923. "_name": "",
  924. "_objFlags": 0,
  925. "node": {
  926. "__id__": 25
  927. },
  928. "_enabled": true,
  929. "_materials": [
  930. {
  931. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  932. }
  933. ],
  934. "_srcBlendFactor": 770,
  935. "_dstBlendFactor": 771,
  936. "_spriteFrame": {
  937. "__uuid__": "081dc70f-4e06-4aa8-aed4-915ef25eff26"
  938. },
  939. "_type": 1,
  940. "_sizeMode": 0,
  941. "_fillType": 0,
  942. "_fillCenter": {
  943. "__type__": "cc.Vec2",
  944. "x": 0,
  945. "y": 0
  946. },
  947. "_fillStart": 0,
  948. "_fillRange": 0,
  949. "_isTrimmedMode": true,
  950. "_atlas": null,
  951. "_id": ""
  952. },
  953. {
  954. "__type__": "cc.PrefabInfo",
  955. "root": {
  956. "__id__": 1
  957. },
  958. "asset": {
  959. "__id__": 0
  960. },
  961. "fileId": "20RyezaqtGTbarIstkrLHe",
  962. "sync": false
  963. },
  964. {
  965. "__type__": "cc.Node",
  966. "_name": "chain",
  967. "_objFlags": 0,
  968. "_parent": {
  969. "__id__": 1
  970. },
  971. "_children": [],
  972. "_active": true,
  973. "_components": [
  974. {
  975. "__id__": 29
  976. }
  977. ],
  978. "_prefab": {
  979. "__id__": 30
  980. },
  981. "_opacity": 255,
  982. "_color": {
  983. "__type__": "cc.Color",
  984. "r": 255,
  985. "g": 255,
  986. "b": 255,
  987. "a": 255
  988. },
  989. "_contentSize": {
  990. "__type__": "cc.Size",
  991. "width": 24,
  992. "height": 59
  993. },
  994. "_anchorPoint": {
  995. "__type__": "cc.Vec2",
  996. "x": 0.5,
  997. "y": 0.5
  998. },
  999. "_trs": {
  1000. "__type__": "TypedArray",
  1001. "ctor": "Float64Array",
  1002. "array": [
  1003. -756.108,
  1004. 54.873,
  1005. 0,
  1006. 0,
  1007. 0,
  1008. 0,
  1009. 1,
  1010. 1,
  1011. 1,
  1012. 1
  1013. ]
  1014. },
  1015. "_eulerAngles": {
  1016. "__type__": "cc.Vec3",
  1017. "x": 0,
  1018. "y": 0,
  1019. "z": 0
  1020. },
  1021. "_skewX": 0,
  1022. "_skewY": 0,
  1023. "_is3DNode": false,
  1024. "_groupIndex": 0,
  1025. "groupIndex": 0,
  1026. "_id": ""
  1027. },
  1028. {
  1029. "__type__": "cc.Sprite",
  1030. "_name": "",
  1031. "_objFlags": 0,
  1032. "node": {
  1033. "__id__": 28
  1034. },
  1035. "_enabled": true,
  1036. "_materials": [
  1037. {
  1038. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  1039. }
  1040. ],
  1041. "_srcBlendFactor": 770,
  1042. "_dstBlendFactor": 771,
  1043. "_spriteFrame": {
  1044. "__uuid__": "d1c8582d-6d32-45d1-9197-3a9e97252180"
  1045. },
  1046. "_type": 0,
  1047. "_sizeMode": 1,
  1048. "_fillType": 0,
  1049. "_fillCenter": {
  1050. "__type__": "cc.Vec2",
  1051. "x": 0,
  1052. "y": 0
  1053. },
  1054. "_fillStart": 0,
  1055. "_fillRange": 0,
  1056. "_isTrimmedMode": true,
  1057. "_atlas": null,
  1058. "_id": ""
  1059. },
  1060. {
  1061. "__type__": "cc.PrefabInfo",
  1062. "root": {
  1063. "__id__": 1
  1064. },
  1065. "asset": {
  1066. "__id__": 0
  1067. },
  1068. "fileId": "fbKiLMiOJM0qwaGkqK5wS2",
  1069. "sync": false
  1070. },
  1071. {
  1072. "__type__": "cc.Node",
  1073. "_name": "chain",
  1074. "_objFlags": 0,
  1075. "_parent": {
  1076. "__id__": 1
  1077. },
  1078. "_children": [],
  1079. "_active": true,
  1080. "_components": [
  1081. {
  1082. "__id__": 32
  1083. }
  1084. ],
  1085. "_prefab": {
  1086. "__id__": 33
  1087. },
  1088. "_opacity": 255,
  1089. "_color": {
  1090. "__type__": "cc.Color",
  1091. "r": 255,
  1092. "g": 255,
  1093. "b": 255,
  1094. "a": 255
  1095. },
  1096. "_contentSize": {
  1097. "__type__": "cc.Size",
  1098. "width": 24,
  1099. "height": 59
  1100. },
  1101. "_anchorPoint": {
  1102. "__type__": "cc.Vec2",
  1103. "x": 0.5,
  1104. "y": 0.5
  1105. },
  1106. "_trs": {
  1107. "__type__": "TypedArray",
  1108. "ctor": "Float64Array",
  1109. "array": [
  1110. -607.441,
  1111. 54.873,
  1112. 0,
  1113. 0,
  1114. 0,
  1115. 0,
  1116. 1,
  1117. 1,
  1118. 1,
  1119. 1
  1120. ]
  1121. },
  1122. "_eulerAngles": {
  1123. "__type__": "cc.Vec3",
  1124. "x": 0,
  1125. "y": 0,
  1126. "z": 0
  1127. },
  1128. "_skewX": 0,
  1129. "_skewY": 0,
  1130. "_is3DNode": false,
  1131. "_groupIndex": 0,
  1132. "groupIndex": 0,
  1133. "_id": ""
  1134. },
  1135. {
  1136. "__type__": "cc.Sprite",
  1137. "_name": "",
  1138. "_objFlags": 0,
  1139. "node": {
  1140. "__id__": 31
  1141. },
  1142. "_enabled": true,
  1143. "_materials": [
  1144. {
  1145. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  1146. }
  1147. ],
  1148. "_srcBlendFactor": 770,
  1149. "_dstBlendFactor": 771,
  1150. "_spriteFrame": {
  1151. "__uuid__": "d1c8582d-6d32-45d1-9197-3a9e97252180"
  1152. },
  1153. "_type": 0,
  1154. "_sizeMode": 1,
  1155. "_fillType": 0,
  1156. "_fillCenter": {
  1157. "__type__": "cc.Vec2",
  1158. "x": 0,
  1159. "y": 0
  1160. },
  1161. "_fillStart": 0,
  1162. "_fillRange": 0,
  1163. "_isTrimmedMode": true,
  1164. "_atlas": null,
  1165. "_id": ""
  1166. },
  1167. {
  1168. "__type__": "cc.PrefabInfo",
  1169. "root": {
  1170. "__id__": 1
  1171. },
  1172. "asset": {
  1173. "__id__": 0
  1174. },
  1175. "fileId": "aeTwje2m9DgqkufA8Sza0c",
  1176. "sync": false
  1177. },
  1178. {
  1179. "__type__": "cc.Node",
  1180. "_name": "cur_slot",
  1181. "_objFlags": 0,
  1182. "_parent": {
  1183. "__id__": 1
  1184. },
  1185. "_children": [
  1186. {
  1187. "__id__": 35
  1188. },
  1189. {
  1190. "__id__": 38
  1191. },
  1192. {
  1193. "__id__": 41
  1194. }
  1195. ],
  1196. "_active": true,
  1197. "_components": [
  1198. {
  1199. "__id__": 46
  1200. }
  1201. ],
  1202. "_prefab": {
  1203. "__id__": 47
  1204. },
  1205. "_opacity": 255,
  1206. "_color": {
  1207. "__type__": "cc.Color",
  1208. "r": 255,
  1209. "g": 255,
  1210. "b": 255,
  1211. "a": 255
  1212. },
  1213. "_contentSize": {
  1214. "__type__": "cc.Size",
  1215. "width": 219,
  1216. "height": 218
  1217. },
  1218. "_anchorPoint": {
  1219. "__type__": "cc.Vec2",
  1220. "x": 0.5,
  1221. "y": 0.5
  1222. },
  1223. "_trs": {
  1224. "__type__": "TypedArray",
  1225. "ctor": "Float64Array",
  1226. "array": [
  1227. -682.552,
  1228. 194.814,
  1229. 0,
  1230. 0,
  1231. 0,
  1232. 0,
  1233. 1,
  1234. 1,
  1235. 1,
  1236. 1
  1237. ]
  1238. },
  1239. "_eulerAngles": {
  1240. "__type__": "cc.Vec3",
  1241. "x": 0,
  1242. "y": 0,
  1243. "z": 0
  1244. },
  1245. "_skewX": 0,
  1246. "_skewY": 0,
  1247. "_is3DNode": false,
  1248. "_groupIndex": 0,
  1249. "groupIndex": 0,
  1250. "_id": ""
  1251. },
  1252. {
  1253. "__type__": "cc.Node",
  1254. "_name": "bg",
  1255. "_objFlags": 0,
  1256. "_parent": {
  1257. "__id__": 34
  1258. },
  1259. "_children": [],
  1260. "_active": true,
  1261. "_components": [
  1262. {
  1263. "__id__": 36
  1264. }
  1265. ],
  1266. "_prefab": {
  1267. "__id__": 37
  1268. },
  1269. "_opacity": 255,
  1270. "_color": {
  1271. "__type__": "cc.Color",
  1272. "r": 255,
  1273. "g": 255,
  1274. "b": 255,
  1275. "a": 255
  1276. },
  1277. "_contentSize": {
  1278. "__type__": "cc.Size",
  1279. "width": 219,
  1280. "height": 218
  1281. },
  1282. "_anchorPoint": {
  1283. "__type__": "cc.Vec2",
  1284. "x": 0.5,
  1285. "y": 0.5
  1286. },
  1287. "_trs": {
  1288. "__type__": "TypedArray",
  1289. "ctor": "Float64Array",
  1290. "array": [
  1291. 0,
  1292. 0,
  1293. 0,
  1294. 0,
  1295. 0,
  1296. 0,
  1297. 1,
  1298. 1,
  1299. 1,
  1300. 1
  1301. ]
  1302. },
  1303. "_eulerAngles": {
  1304. "__type__": "cc.Vec3",
  1305. "x": 0,
  1306. "y": 0,
  1307. "z": 0
  1308. },
  1309. "_skewX": 0,
  1310. "_skewY": 0,
  1311. "_is3DNode": false,
  1312. "_groupIndex": 0,
  1313. "groupIndex": 0,
  1314. "_id": ""
  1315. },
  1316. {
  1317. "__type__": "cc.Sprite",
  1318. "_name": "",
  1319. "_objFlags": 0,
  1320. "node": {
  1321. "__id__": 35
  1322. },
  1323. "_enabled": true,
  1324. "_materials": [
  1325. {
  1326. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  1327. }
  1328. ],
  1329. "_srcBlendFactor": 770,
  1330. "_dstBlendFactor": 771,
  1331. "_spriteFrame": {
  1332. "__uuid__": "33f08784-3057-41f8-a74d-54ced51209b1"
  1333. },
  1334. "_type": 0,
  1335. "_sizeMode": 1,
  1336. "_fillType": 0,
  1337. "_fillCenter": {
  1338. "__type__": "cc.Vec2",
  1339. "x": 0,
  1340. "y": 0
  1341. },
  1342. "_fillStart": 0,
  1343. "_fillRange": 0,
  1344. "_isTrimmedMode": true,
  1345. "_atlas": null,
  1346. "_id": ""
  1347. },
  1348. {
  1349. "__type__": "cc.PrefabInfo",
  1350. "root": {
  1351. "__id__": 1
  1352. },
  1353. "asset": {
  1354. "__id__": 0
  1355. },
  1356. "fileId": "44hHPC/q1KBY/wafotnjV6",
  1357. "sync": false
  1358. },
  1359. {
  1360. "__type__": "cc.Node",
  1361. "_name": "add_2",
  1362. "_objFlags": 0,
  1363. "_parent": {
  1364. "__id__": 34
  1365. },
  1366. "_children": [],
  1367. "_active": true,
  1368. "_components": [
  1369. {
  1370. "__id__": 39
  1371. }
  1372. ],
  1373. "_prefab": {
  1374. "__id__": 40
  1375. },
  1376. "_opacity": 255,
  1377. "_color": {
  1378. "__type__": "cc.Color",
  1379. "r": 255,
  1380. "g": 255,
  1381. "b": 255,
  1382. "a": 255
  1383. },
  1384. "_contentSize": {
  1385. "__type__": "cc.Size",
  1386. "width": 101,
  1387. "height": 101
  1388. },
  1389. "_anchorPoint": {
  1390. "__type__": "cc.Vec2",
  1391. "x": 0.5,
  1392. "y": 0.5
  1393. },
  1394. "_trs": {
  1395. "__type__": "TypedArray",
  1396. "ctor": "Float64Array",
  1397. "array": [
  1398. 0,
  1399. 0,
  1400. 0,
  1401. 0,
  1402. 0,
  1403. 0,
  1404. 1,
  1405. 1,
  1406. 1,
  1407. 1
  1408. ]
  1409. },
  1410. "_eulerAngles": {
  1411. "__type__": "cc.Vec3",
  1412. "x": 0,
  1413. "y": 0,
  1414. "z": 0
  1415. },
  1416. "_skewX": 0,
  1417. "_skewY": 0,
  1418. "_is3DNode": false,
  1419. "_groupIndex": 0,
  1420. "groupIndex": 0,
  1421. "_id": ""
  1422. },
  1423. {
  1424. "__type__": "cc.Sprite",
  1425. "_name": "",
  1426. "_objFlags": 0,
  1427. "node": {
  1428. "__id__": 38
  1429. },
  1430. "_enabled": true,
  1431. "_materials": [
  1432. {
  1433. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  1434. }
  1435. ],
  1436. "_srcBlendFactor": 770,
  1437. "_dstBlendFactor": 771,
  1438. "_spriteFrame": {
  1439. "__uuid__": "30fe9ffc-f695-4523-af2a-be031513db72"
  1440. },
  1441. "_type": 0,
  1442. "_sizeMode": 1,
  1443. "_fillType": 0,
  1444. "_fillCenter": {
  1445. "__type__": "cc.Vec2",
  1446. "x": 0,
  1447. "y": 0
  1448. },
  1449. "_fillStart": 0,
  1450. "_fillRange": 0,
  1451. "_isTrimmedMode": true,
  1452. "_atlas": null,
  1453. "_id": ""
  1454. },
  1455. {
  1456. "__type__": "cc.PrefabInfo",
  1457. "root": {
  1458. "__id__": 1
  1459. },
  1460. "asset": {
  1461. "__id__": 0
  1462. },
  1463. "fileId": "a4GMahYFJDbLAQQ2qAK3a6",
  1464. "sync": false
  1465. },
  1466. {
  1467. "__type__": "cc.Node",
  1468. "_name": "equip",
  1469. "_objFlags": 0,
  1470. "_parent": {
  1471. "__id__": 34
  1472. },
  1473. "_children": [],
  1474. "_active": true,
  1475. "_components": [
  1476. {
  1477. "__id__": 42
  1478. },
  1479. {
  1480. "__id__": 43
  1481. }
  1482. ],
  1483. "_prefab": {
  1484. "__id__": 45
  1485. },
  1486. "_opacity": 255,
  1487. "_color": {
  1488. "__type__": "cc.Color",
  1489. "r": 255,
  1490. "g": 255,
  1491. "b": 255,
  1492. "a": 255
  1493. },
  1494. "_contentSize": {
  1495. "__type__": "cc.Size",
  1496. "width": 166,
  1497. "height": 166
  1498. },
  1499. "_anchorPoint": {
  1500. "__type__": "cc.Vec2",
  1501. "x": 0.5,
  1502. "y": 0.5
  1503. },
  1504. "_trs": {
  1505. "__type__": "TypedArray",
  1506. "ctor": "Float64Array",
  1507. "array": [
  1508. 0,
  1509. 0,
  1510. 0,
  1511. 0,
  1512. 0,
  1513. 0,
  1514. 1,
  1515. 0.9,
  1516. 0.9,
  1517. 1
  1518. ]
  1519. },
  1520. "_eulerAngles": {
  1521. "__type__": "cc.Vec3",
  1522. "x": 0,
  1523. "y": 0,
  1524. "z": 0
  1525. },
  1526. "_skewX": 0,
  1527. "_skewY": 0,
  1528. "_is3DNode": false,
  1529. "_groupIndex": 0,
  1530. "groupIndex": 0,
  1531. "_id": ""
  1532. },
  1533. {
  1534. "__type__": "466e8BS6wJF6bKBj6rcxcSE",
  1535. "_name": "",
  1536. "_objFlags": 0,
  1537. "node": {
  1538. "__id__": 41
  1539. },
  1540. "_enabled": true,
  1541. "openContinuous": true,
  1542. "continuousTime": 0.2,
  1543. "multiTouch": false,
  1544. "_id": ""
  1545. },
  1546. {
  1547. "__type__": "61994AafntNFIbmt1zoyLq+",
  1548. "_name": "",
  1549. "_objFlags": 0,
  1550. "node": {
  1551. "__id__": 41
  1552. },
  1553. "_enabled": true,
  1554. "_normalMaterial": null,
  1555. "_grayMaterial": null,
  1556. "duration": 0.1,
  1557. "zoomScale": 1.2,
  1558. "clickEvents": [
  1559. {
  1560. "__id__": 44
  1561. }
  1562. ],
  1563. "_N$interactable": true,
  1564. "_N$enableAutoGrayEffect": false,
  1565. "_N$transition": 0,
  1566. "transition": 0,
  1567. "_N$normalColor": {
  1568. "__type__": "cc.Color",
  1569. "r": 255,
  1570. "g": 255,
  1571. "b": 255,
  1572. "a": 255
  1573. },
  1574. "_N$pressedColor": {
  1575. "__type__": "cc.Color",
  1576. "r": 211,
  1577. "g": 211,
  1578. "b": 211,
  1579. "a": 255
  1580. },
  1581. "pressedColor": {
  1582. "__type__": "cc.Color",
  1583. "r": 211,
  1584. "g": 211,
  1585. "b": 211,
  1586. "a": 255
  1587. },
  1588. "_N$hoverColor": {
  1589. "__type__": "cc.Color",
  1590. "r": 255,
  1591. "g": 255,
  1592. "b": 255,
  1593. "a": 255
  1594. },
  1595. "hoverColor": {
  1596. "__type__": "cc.Color",
  1597. "r": 255,
  1598. "g": 255,
  1599. "b": 255,
  1600. "a": 255
  1601. },
  1602. "_N$disabledColor": {
  1603. "__type__": "cc.Color",
  1604. "r": 124,
  1605. "g": 124,
  1606. "b": 124,
  1607. "a": 255
  1608. },
  1609. "_N$normalSprite": null,
  1610. "_N$pressedSprite": null,
  1611. "pressedSprite": null,
  1612. "_N$hoverSprite": null,
  1613. "hoverSprite": null,
  1614. "_N$disabledSprite": null,
  1615. "_N$target": null,
  1616. "_id": ""
  1617. },
  1618. {
  1619. "__type__": "cc.ClickEvent",
  1620. "target": {
  1621. "__id__": 1
  1622. },
  1623. "component": "",
  1624. "_componentId": "ac1b6sIq7BFa5uPq8b8pdyl",
  1625. "handler": "onChooseEquipClick",
  1626. "customEventData": ""
  1627. },
  1628. {
  1629. "__type__": "cc.PrefabInfo",
  1630. "root": {
  1631. "__id__": 41
  1632. },
  1633. "asset": {
  1634. "__uuid__": "1a36c1a6-7e22-4920-ada0-ab3e5c63521f"
  1635. },
  1636. "fileId": "f9hivnuENE+anLL8KdiQZv",
  1637. "sync": false
  1638. },
  1639. {
  1640. "__type__": "cc.Sprite",
  1641. "_name": "",
  1642. "_objFlags": 0,
  1643. "node": {
  1644. "__id__": 34
  1645. },
  1646. "_enabled": true,
  1647. "_materials": [
  1648. {
  1649. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  1650. }
  1651. ],
  1652. "_srcBlendFactor": 770,
  1653. "_dstBlendFactor": 771,
  1654. "_spriteFrame": {
  1655. "__uuid__": "33f08784-3057-41f8-a74d-54ced51209b1"
  1656. },
  1657. "_type": 0,
  1658. "_sizeMode": 1,
  1659. "_fillType": 0,
  1660. "_fillCenter": {
  1661. "__type__": "cc.Vec2",
  1662. "x": 0,
  1663. "y": 0
  1664. },
  1665. "_fillStart": 0,
  1666. "_fillRange": 0,
  1667. "_isTrimmedMode": true,
  1668. "_atlas": null,
  1669. "_id": ""
  1670. },
  1671. {
  1672. "__type__": "cc.PrefabInfo",
  1673. "root": {
  1674. "__id__": 1
  1675. },
  1676. "asset": {
  1677. "__id__": 0
  1678. },
  1679. "fileId": "ce2LKn4bhCUZEpg0Fl92Vw",
  1680. "sync": false
  1681. },
  1682. {
  1683. "__type__": "cc.Node",
  1684. "_name": "add_need",
  1685. "_objFlags": 0,
  1686. "_parent": {
  1687. "__id__": 1
  1688. },
  1689. "_children": [],
  1690. "_active": false,
  1691. "_components": [
  1692. {
  1693. "__id__": 49
  1694. }
  1695. ],
  1696. "_prefab": {
  1697. "__id__": 50
  1698. },
  1699. "_opacity": 255,
  1700. "_color": {
  1701. "__type__": "cc.Color",
  1702. "r": 255,
  1703. "g": 255,
  1704. "b": 255,
  1705. "a": 255
  1706. },
  1707. "_contentSize": {
  1708. "__type__": "cc.Size",
  1709. "width": 62,
  1710. "height": 62
  1711. },
  1712. "_anchorPoint": {
  1713. "__type__": "cc.Vec2",
  1714. "x": 0.5,
  1715. "y": 0.5
  1716. },
  1717. "_trs": {
  1718. "__type__": "TypedArray",
  1719. "ctor": "Float64Array",
  1720. "array": [
  1721. -505.054,
  1722. 196.665,
  1723. 0,
  1724. 0,
  1725. 0,
  1726. 0,
  1727. 1,
  1728. 1,
  1729. 1,
  1730. 1
  1731. ]
  1732. },
  1733. "_eulerAngles": {
  1734. "__type__": "cc.Vec3",
  1735. "x": 0,
  1736. "y": 0,
  1737. "z": 0
  1738. },
  1739. "_skewX": 0,
  1740. "_skewY": 0,
  1741. "_is3DNode": false,
  1742. "_groupIndex": 0,
  1743. "groupIndex": 0,
  1744. "_id": ""
  1745. },
  1746. {
  1747. "__type__": "cc.Sprite",
  1748. "_name": "",
  1749. "_objFlags": 0,
  1750. "node": {
  1751. "__id__": 48
  1752. },
  1753. "_enabled": true,
  1754. "_materials": [
  1755. {
  1756. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  1757. }
  1758. ],
  1759. "_srcBlendFactor": 770,
  1760. "_dstBlendFactor": 771,
  1761. "_spriteFrame": {
  1762. "__uuid__": "e386fa51-fec3-4067-8e85-58f83aa6ea1e"
  1763. },
  1764. "_type": 0,
  1765. "_sizeMode": 1,
  1766. "_fillType": 0,
  1767. "_fillCenter": {
  1768. "__type__": "cc.Vec2",
  1769. "x": 0,
  1770. "y": 0
  1771. },
  1772. "_fillStart": 0,
  1773. "_fillRange": 0,
  1774. "_isTrimmedMode": true,
  1775. "_atlas": null,
  1776. "_id": ""
  1777. },
  1778. {
  1779. "__type__": "cc.PrefabInfo",
  1780. "root": {
  1781. "__id__": 1
  1782. },
  1783. "asset": {
  1784. "__id__": 0
  1785. },
  1786. "fileId": "4fEzANM09AILIhGAVldkwy",
  1787. "sync": false
  1788. },
  1789. {
  1790. "__type__": "cc.Node",
  1791. "_name": "need",
  1792. "_objFlags": 0,
  1793. "_parent": {
  1794. "__id__": 1
  1795. },
  1796. "_children": [
  1797. {
  1798. "__id__": 52
  1799. },
  1800. {
  1801. "__id__": 63
  1802. },
  1803. {
  1804. "__id__": 74
  1805. }
  1806. ],
  1807. "_active": false,
  1808. "_components": [
  1809. {
  1810. "__id__": 85
  1811. }
  1812. ],
  1813. "_prefab": {
  1814. "__id__": 86
  1815. },
  1816. "_opacity": 255,
  1817. "_color": {
  1818. "__type__": "cc.Color",
  1819. "r": 255,
  1820. "g": 255,
  1821. "b": 255,
  1822. "a": 255
  1823. },
  1824. "_contentSize": {
  1825. "__type__": "cc.Size",
  1826. "width": 574,
  1827. "height": 200
  1828. },
  1829. "_anchorPoint": {
  1830. "__type__": "cc.Vec2",
  1831. "x": 0.5,
  1832. "y": 0.5
  1833. },
  1834. "_trs": {
  1835. "__type__": "TypedArray",
  1836. "ctor": "Float64Array",
  1837. "array": [
  1838. -149.361,
  1839. 196.609,
  1840. 0,
  1841. 0,
  1842. 0,
  1843. 0,
  1844. 1,
  1845. 1,
  1846. 1,
  1847. 1
  1848. ]
  1849. },
  1850. "_eulerAngles": {
  1851. "__type__": "cc.Vec3",
  1852. "x": 0,
  1853. "y": 0,
  1854. "z": 0
  1855. },
  1856. "_skewX": 0,
  1857. "_skewY": 0,
  1858. "_is3DNode": false,
  1859. "_groupIndex": 0,
  1860. "groupIndex": 0,
  1861. "_id": ""
  1862. },
  1863. {
  1864. "__type__": "cc.Node",
  1865. "_name": "slot",
  1866. "_objFlags": 0,
  1867. "_parent": {
  1868. "__id__": 51
  1869. },
  1870. "_children": [
  1871. {
  1872. "__id__": 53
  1873. },
  1874. {
  1875. "__id__": 56
  1876. },
  1877. {
  1878. "__id__": 59
  1879. }
  1880. ],
  1881. "_active": true,
  1882. "_components": [
  1883. {
  1884. "__id__": 61
  1885. }
  1886. ],
  1887. "_prefab": {
  1888. "__id__": 62
  1889. },
  1890. "_opacity": 255,
  1891. "_color": {
  1892. "__type__": "cc.Color",
  1893. "r": 255,
  1894. "g": 255,
  1895. "b": 255,
  1896. "a": 255
  1897. },
  1898. "_contentSize": {
  1899. "__type__": "cc.Size",
  1900. "width": 219,
  1901. "height": 218
  1902. },
  1903. "_anchorPoint": {
  1904. "__type__": "cc.Vec2",
  1905. "x": 0.5,
  1906. "y": 0.5
  1907. },
  1908. "_trs": {
  1909. "__type__": "TypedArray",
  1910. "ctor": "Float64Array",
  1911. "array": [
  1912. -204.875,
  1913. 0.48,
  1914. 0,
  1915. 0,
  1916. 0,
  1917. 0,
  1918. 1,
  1919. 0.75,
  1920. 0.75,
  1921. 1
  1922. ]
  1923. },
  1924. "_eulerAngles": {
  1925. "__type__": "cc.Vec3",
  1926. "x": 0,
  1927. "y": 0,
  1928. "z": 0
  1929. },
  1930. "_skewX": 0,
  1931. "_skewY": 0,
  1932. "_is3DNode": false,
  1933. "_groupIndex": 0,
  1934. "groupIndex": 0,
  1935. "_id": ""
  1936. },
  1937. {
  1938. "__type__": "cc.Node",
  1939. "_name": "bg",
  1940. "_objFlags": 0,
  1941. "_parent": {
  1942. "__id__": 52
  1943. },
  1944. "_children": [],
  1945. "_active": true,
  1946. "_components": [
  1947. {
  1948. "__id__": 54
  1949. }
  1950. ],
  1951. "_prefab": {
  1952. "__id__": 55
  1953. },
  1954. "_opacity": 255,
  1955. "_color": {
  1956. "__type__": "cc.Color",
  1957. "r": 255,
  1958. "g": 255,
  1959. "b": 255,
  1960. "a": 255
  1961. },
  1962. "_contentSize": {
  1963. "__type__": "cc.Size",
  1964. "width": 219,
  1965. "height": 218
  1966. },
  1967. "_anchorPoint": {
  1968. "__type__": "cc.Vec2",
  1969. "x": 0.5,
  1970. "y": 0.5
  1971. },
  1972. "_trs": {
  1973. "__type__": "TypedArray",
  1974. "ctor": "Float64Array",
  1975. "array": [
  1976. 0,
  1977. 0,
  1978. 0,
  1979. 0,
  1980. 0,
  1981. 0,
  1982. 1,
  1983. 1,
  1984. 1,
  1985. 1
  1986. ]
  1987. },
  1988. "_eulerAngles": {
  1989. "__type__": "cc.Vec3",
  1990. "x": 0,
  1991. "y": 0,
  1992. "z": 0
  1993. },
  1994. "_skewX": 0,
  1995. "_skewY": 0,
  1996. "_is3DNode": false,
  1997. "_groupIndex": 0,
  1998. "groupIndex": 0,
  1999. "_id": ""
  2000. },
  2001. {
  2002. "__type__": "cc.Sprite",
  2003. "_name": "",
  2004. "_objFlags": 0,
  2005. "node": {
  2006. "__id__": 53
  2007. },
  2008. "_enabled": true,
  2009. "_materials": [
  2010. {
  2011. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  2012. }
  2013. ],
  2014. "_srcBlendFactor": 770,
  2015. "_dstBlendFactor": 771,
  2016. "_spriteFrame": {
  2017. "__uuid__": "33f08784-3057-41f8-a74d-54ced51209b1"
  2018. },
  2019. "_type": 0,
  2020. "_sizeMode": 1,
  2021. "_fillType": 0,
  2022. "_fillCenter": {
  2023. "__type__": "cc.Vec2",
  2024. "x": 0,
  2025. "y": 0
  2026. },
  2027. "_fillStart": 0,
  2028. "_fillRange": 0,
  2029. "_isTrimmedMode": true,
  2030. "_atlas": null,
  2031. "_id": ""
  2032. },
  2033. {
  2034. "__type__": "cc.PrefabInfo",
  2035. "root": {
  2036. "__id__": 1
  2037. },
  2038. "asset": {
  2039. "__id__": 0
  2040. },
  2041. "fileId": "29TecxBTlBXrto/P48tylR",
  2042. "sync": false
  2043. },
  2044. {
  2045. "__type__": "cc.Node",
  2046. "_name": "add_2",
  2047. "_objFlags": 0,
  2048. "_parent": {
  2049. "__id__": 52
  2050. },
  2051. "_children": [],
  2052. "_active": true,
  2053. "_components": [
  2054. {
  2055. "__id__": 57
  2056. }
  2057. ],
  2058. "_prefab": {
  2059. "__id__": 58
  2060. },
  2061. "_opacity": 255,
  2062. "_color": {
  2063. "__type__": "cc.Color",
  2064. "r": 255,
  2065. "g": 255,
  2066. "b": 255,
  2067. "a": 255
  2068. },
  2069. "_contentSize": {
  2070. "__type__": "cc.Size",
  2071. "width": 101,
  2072. "height": 101
  2073. },
  2074. "_anchorPoint": {
  2075. "__type__": "cc.Vec2",
  2076. "x": 0.5,
  2077. "y": 0.5
  2078. },
  2079. "_trs": {
  2080. "__type__": "TypedArray",
  2081. "ctor": "Float64Array",
  2082. "array": [
  2083. 0,
  2084. 0,
  2085. 0,
  2086. 0,
  2087. 0,
  2088. 0,
  2089. 1,
  2090. 1,
  2091. 1,
  2092. 1
  2093. ]
  2094. },
  2095. "_eulerAngles": {
  2096. "__type__": "cc.Vec3",
  2097. "x": 0,
  2098. "y": 0,
  2099. "z": 0
  2100. },
  2101. "_skewX": 0,
  2102. "_skewY": 0,
  2103. "_is3DNode": false,
  2104. "_groupIndex": 0,
  2105. "groupIndex": 0,
  2106. "_id": ""
  2107. },
  2108. {
  2109. "__type__": "cc.Sprite",
  2110. "_name": "",
  2111. "_objFlags": 0,
  2112. "node": {
  2113. "__id__": 56
  2114. },
  2115. "_enabled": true,
  2116. "_materials": [
  2117. {
  2118. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  2119. }
  2120. ],
  2121. "_srcBlendFactor": 770,
  2122. "_dstBlendFactor": 771,
  2123. "_spriteFrame": {
  2124. "__uuid__": "30fe9ffc-f695-4523-af2a-be031513db72"
  2125. },
  2126. "_type": 0,
  2127. "_sizeMode": 1,
  2128. "_fillType": 0,
  2129. "_fillCenter": {
  2130. "__type__": "cc.Vec2",
  2131. "x": 0,
  2132. "y": 0
  2133. },
  2134. "_fillStart": 0,
  2135. "_fillRange": 0,
  2136. "_isTrimmedMode": true,
  2137. "_atlas": null,
  2138. "_id": ""
  2139. },
  2140. {
  2141. "__type__": "cc.PrefabInfo",
  2142. "root": {
  2143. "__id__": 1
  2144. },
  2145. "asset": {
  2146. "__id__": 0
  2147. },
  2148. "fileId": "55gTgNtRhFiqMDi5FBW4p3",
  2149. "sync": false
  2150. },
  2151. {
  2152. "__type__": "cc.Node",
  2153. "_name": "itemParent",
  2154. "_objFlags": 0,
  2155. "_parent": {
  2156. "__id__": 52
  2157. },
  2158. "_children": [],
  2159. "_active": true,
  2160. "_components": [],
  2161. "_prefab": {
  2162. "__id__": 60
  2163. },
  2164. "_opacity": 255,
  2165. "_color": {
  2166. "__type__": "cc.Color",
  2167. "r": 255,
  2168. "g": 255,
  2169. "b": 255,
  2170. "a": 255
  2171. },
  2172. "_contentSize": {
  2173. "__type__": "cc.Size",
  2174. "width": 166,
  2175. "height": 166
  2176. },
  2177. "_anchorPoint": {
  2178. "__type__": "cc.Vec2",
  2179. "x": 0.5,
  2180. "y": 0.5
  2181. },
  2182. "_trs": {
  2183. "__type__": "TypedArray",
  2184. "ctor": "Float64Array",
  2185. "array": [
  2186. 0,
  2187. 0,
  2188. 0,
  2189. 0,
  2190. 0,
  2191. 0,
  2192. 1,
  2193. 1,
  2194. 1,
  2195. 1
  2196. ]
  2197. },
  2198. "_eulerAngles": {
  2199. "__type__": "cc.Vec3",
  2200. "x": 0,
  2201. "y": 0,
  2202. "z": 0
  2203. },
  2204. "_skewX": 0,
  2205. "_skewY": 0,
  2206. "_is3DNode": false,
  2207. "_groupIndex": 0,
  2208. "groupIndex": 0,
  2209. "_id": ""
  2210. },
  2211. {
  2212. "__type__": "cc.PrefabInfo",
  2213. "root": {
  2214. "__id__": 59
  2215. },
  2216. "asset": {
  2217. "__uuid__": "1a36c1a6-7e22-4920-ada0-ab3e5c63521f"
  2218. },
  2219. "fileId": "5bqMGd9/tOuIOFcSQq+jLf",
  2220. "sync": false
  2221. },
  2222. {
  2223. "__type__": "cc.Sprite",
  2224. "_name": "",
  2225. "_objFlags": 0,
  2226. "node": {
  2227. "__id__": 52
  2228. },
  2229. "_enabled": true,
  2230. "_materials": [
  2231. {
  2232. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  2233. }
  2234. ],
  2235. "_srcBlendFactor": 770,
  2236. "_dstBlendFactor": 771,
  2237. "_spriteFrame": {
  2238. "__uuid__": "33f08784-3057-41f8-a74d-54ced51209b1"
  2239. },
  2240. "_type": 0,
  2241. "_sizeMode": 1,
  2242. "_fillType": 0,
  2243. "_fillCenter": {
  2244. "__type__": "cc.Vec2",
  2245. "x": 0,
  2246. "y": 0
  2247. },
  2248. "_fillStart": 0,
  2249. "_fillRange": 0,
  2250. "_isTrimmedMode": true,
  2251. "_atlas": null,
  2252. "_id": ""
  2253. },
  2254. {
  2255. "__type__": "cc.PrefabInfo",
  2256. "root": {
  2257. "__id__": 1
  2258. },
  2259. "asset": {
  2260. "__id__": 0
  2261. },
  2262. "fileId": "81i0PCKCFIeLQjgAqao11M",
  2263. "sync": false
  2264. },
  2265. {
  2266. "__type__": "cc.Node",
  2267. "_name": "slot",
  2268. "_objFlags": 0,
  2269. "_parent": {
  2270. "__id__": 51
  2271. },
  2272. "_children": [
  2273. {
  2274. "__id__": 64
  2275. },
  2276. {
  2277. "__id__": 67
  2278. },
  2279. {
  2280. "__id__": 70
  2281. }
  2282. ],
  2283. "_active": true,
  2284. "_components": [
  2285. {
  2286. "__id__": 72
  2287. }
  2288. ],
  2289. "_prefab": {
  2290. "__id__": 73
  2291. },
  2292. "_opacity": 255,
  2293. "_color": {
  2294. "__type__": "cc.Color",
  2295. "r": 255,
  2296. "g": 255,
  2297. "b": 255,
  2298. "a": 255
  2299. },
  2300. "_contentSize": {
  2301. "__type__": "cc.Size",
  2302. "width": 219,
  2303. "height": 218
  2304. },
  2305. "_anchorPoint": {
  2306. "__type__": "cc.Vec2",
  2307. "x": 0.5,
  2308. "y": 0.5
  2309. },
  2310. "_trs": {
  2311. "__type__": "TypedArray",
  2312. "ctor": "Float64Array",
  2313. "array": [
  2314. -15.625,
  2315. 0.48,
  2316. 0,
  2317. 0,
  2318. 0,
  2319. 0,
  2320. 1,
  2321. 0.75,
  2322. 0.75,
  2323. 1
  2324. ]
  2325. },
  2326. "_eulerAngles": {
  2327. "__type__": "cc.Vec3",
  2328. "x": 0,
  2329. "y": 0,
  2330. "z": 0
  2331. },
  2332. "_skewX": 0,
  2333. "_skewY": 0,
  2334. "_is3DNode": false,
  2335. "_groupIndex": 0,
  2336. "groupIndex": 0,
  2337. "_id": ""
  2338. },
  2339. {
  2340. "__type__": "cc.Node",
  2341. "_name": "bg",
  2342. "_objFlags": 0,
  2343. "_parent": {
  2344. "__id__": 63
  2345. },
  2346. "_children": [],
  2347. "_active": true,
  2348. "_components": [
  2349. {
  2350. "__id__": 65
  2351. }
  2352. ],
  2353. "_prefab": {
  2354. "__id__": 66
  2355. },
  2356. "_opacity": 255,
  2357. "_color": {
  2358. "__type__": "cc.Color",
  2359. "r": 255,
  2360. "g": 255,
  2361. "b": 255,
  2362. "a": 255
  2363. },
  2364. "_contentSize": {
  2365. "__type__": "cc.Size",
  2366. "width": 219,
  2367. "height": 218
  2368. },
  2369. "_anchorPoint": {
  2370. "__type__": "cc.Vec2",
  2371. "x": 0.5,
  2372. "y": 0.5
  2373. },
  2374. "_trs": {
  2375. "__type__": "TypedArray",
  2376. "ctor": "Float64Array",
  2377. "array": [
  2378. 0,
  2379. 0,
  2380. 0,
  2381. 0,
  2382. 0,
  2383. 0,
  2384. 1,
  2385. 1,
  2386. 1,
  2387. 1
  2388. ]
  2389. },
  2390. "_eulerAngles": {
  2391. "__type__": "cc.Vec3",
  2392. "x": 0,
  2393. "y": 0,
  2394. "z": 0
  2395. },
  2396. "_skewX": 0,
  2397. "_skewY": 0,
  2398. "_is3DNode": false,
  2399. "_groupIndex": 0,
  2400. "groupIndex": 0,
  2401. "_id": ""
  2402. },
  2403. {
  2404. "__type__": "cc.Sprite",
  2405. "_name": "",
  2406. "_objFlags": 0,
  2407. "node": {
  2408. "__id__": 64
  2409. },
  2410. "_enabled": true,
  2411. "_materials": [
  2412. {
  2413. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  2414. }
  2415. ],
  2416. "_srcBlendFactor": 770,
  2417. "_dstBlendFactor": 771,
  2418. "_spriteFrame": {
  2419. "__uuid__": "33f08784-3057-41f8-a74d-54ced51209b1"
  2420. },
  2421. "_type": 0,
  2422. "_sizeMode": 1,
  2423. "_fillType": 0,
  2424. "_fillCenter": {
  2425. "__type__": "cc.Vec2",
  2426. "x": 0,
  2427. "y": 0
  2428. },
  2429. "_fillStart": 0,
  2430. "_fillRange": 0,
  2431. "_isTrimmedMode": true,
  2432. "_atlas": null,
  2433. "_id": ""
  2434. },
  2435. {
  2436. "__type__": "cc.PrefabInfo",
  2437. "root": {
  2438. "__id__": 1
  2439. },
  2440. "asset": {
  2441. "__id__": 0
  2442. },
  2443. "fileId": "78vzDySLxNArB0Q/2zHVsC",
  2444. "sync": false
  2445. },
  2446. {
  2447. "__type__": "cc.Node",
  2448. "_name": "add_2",
  2449. "_objFlags": 0,
  2450. "_parent": {
  2451. "__id__": 63
  2452. },
  2453. "_children": [],
  2454. "_active": true,
  2455. "_components": [
  2456. {
  2457. "__id__": 68
  2458. }
  2459. ],
  2460. "_prefab": {
  2461. "__id__": 69
  2462. },
  2463. "_opacity": 255,
  2464. "_color": {
  2465. "__type__": "cc.Color",
  2466. "r": 255,
  2467. "g": 255,
  2468. "b": 255,
  2469. "a": 255
  2470. },
  2471. "_contentSize": {
  2472. "__type__": "cc.Size",
  2473. "width": 101,
  2474. "height": 101
  2475. },
  2476. "_anchorPoint": {
  2477. "__type__": "cc.Vec2",
  2478. "x": 0.5,
  2479. "y": 0.5
  2480. },
  2481. "_trs": {
  2482. "__type__": "TypedArray",
  2483. "ctor": "Float64Array",
  2484. "array": [
  2485. 0,
  2486. 0,
  2487. 0,
  2488. 0,
  2489. 0,
  2490. 0,
  2491. 1,
  2492. 1,
  2493. 1,
  2494. 1
  2495. ]
  2496. },
  2497. "_eulerAngles": {
  2498. "__type__": "cc.Vec3",
  2499. "x": 0,
  2500. "y": 0,
  2501. "z": 0
  2502. },
  2503. "_skewX": 0,
  2504. "_skewY": 0,
  2505. "_is3DNode": false,
  2506. "_groupIndex": 0,
  2507. "groupIndex": 0,
  2508. "_id": ""
  2509. },
  2510. {
  2511. "__type__": "cc.Sprite",
  2512. "_name": "",
  2513. "_objFlags": 0,
  2514. "node": {
  2515. "__id__": 67
  2516. },
  2517. "_enabled": true,
  2518. "_materials": [
  2519. {
  2520. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  2521. }
  2522. ],
  2523. "_srcBlendFactor": 770,
  2524. "_dstBlendFactor": 771,
  2525. "_spriteFrame": {
  2526. "__uuid__": "30fe9ffc-f695-4523-af2a-be031513db72"
  2527. },
  2528. "_type": 0,
  2529. "_sizeMode": 1,
  2530. "_fillType": 0,
  2531. "_fillCenter": {
  2532. "__type__": "cc.Vec2",
  2533. "x": 0,
  2534. "y": 0
  2535. },
  2536. "_fillStart": 0,
  2537. "_fillRange": 0,
  2538. "_isTrimmedMode": true,
  2539. "_atlas": null,
  2540. "_id": ""
  2541. },
  2542. {
  2543. "__type__": "cc.PrefabInfo",
  2544. "root": {
  2545. "__id__": 1
  2546. },
  2547. "asset": {
  2548. "__id__": 0
  2549. },
  2550. "fileId": "9exuyOUn1BI4Us9FEArgRZ",
  2551. "sync": false
  2552. },
  2553. {
  2554. "__type__": "cc.Node",
  2555. "_name": "itemParent",
  2556. "_objFlags": 0,
  2557. "_parent": {
  2558. "__id__": 63
  2559. },
  2560. "_children": [],
  2561. "_active": true,
  2562. "_components": [],
  2563. "_prefab": {
  2564. "__id__": 71
  2565. },
  2566. "_opacity": 255,
  2567. "_color": {
  2568. "__type__": "cc.Color",
  2569. "r": 255,
  2570. "g": 255,
  2571. "b": 255,
  2572. "a": 255
  2573. },
  2574. "_contentSize": {
  2575. "__type__": "cc.Size",
  2576. "width": 166,
  2577. "height": 166
  2578. },
  2579. "_anchorPoint": {
  2580. "__type__": "cc.Vec2",
  2581. "x": 0.5,
  2582. "y": 0.5
  2583. },
  2584. "_trs": {
  2585. "__type__": "TypedArray",
  2586. "ctor": "Float64Array",
  2587. "array": [
  2588. 0,
  2589. 0,
  2590. 0,
  2591. 0,
  2592. 0,
  2593. 0,
  2594. 1,
  2595. 1,
  2596. 1,
  2597. 1
  2598. ]
  2599. },
  2600. "_eulerAngles": {
  2601. "__type__": "cc.Vec3",
  2602. "x": 0,
  2603. "y": 0,
  2604. "z": 0
  2605. },
  2606. "_skewX": 0,
  2607. "_skewY": 0,
  2608. "_is3DNode": false,
  2609. "_groupIndex": 0,
  2610. "groupIndex": 0,
  2611. "_id": ""
  2612. },
  2613. {
  2614. "__type__": "cc.PrefabInfo",
  2615. "root": {
  2616. "__id__": 70
  2617. },
  2618. "asset": {
  2619. "__uuid__": "1a36c1a6-7e22-4920-ada0-ab3e5c63521f"
  2620. },
  2621. "fileId": "18rQT2nuVLWrKXiT/Bh+CP",
  2622. "sync": false
  2623. },
  2624. {
  2625. "__type__": "cc.Sprite",
  2626. "_name": "",
  2627. "_objFlags": 0,
  2628. "node": {
  2629. "__id__": 63
  2630. },
  2631. "_enabled": true,
  2632. "_materials": [
  2633. {
  2634. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  2635. }
  2636. ],
  2637. "_srcBlendFactor": 770,
  2638. "_dstBlendFactor": 771,
  2639. "_spriteFrame": {
  2640. "__uuid__": "33f08784-3057-41f8-a74d-54ced51209b1"
  2641. },
  2642. "_type": 0,
  2643. "_sizeMode": 1,
  2644. "_fillType": 0,
  2645. "_fillCenter": {
  2646. "__type__": "cc.Vec2",
  2647. "x": 0,
  2648. "y": 0
  2649. },
  2650. "_fillStart": 0,
  2651. "_fillRange": 0,
  2652. "_isTrimmedMode": true,
  2653. "_atlas": null,
  2654. "_id": ""
  2655. },
  2656. {
  2657. "__type__": "cc.PrefabInfo",
  2658. "root": {
  2659. "__id__": 1
  2660. },
  2661. "asset": {
  2662. "__id__": 0
  2663. },
  2664. "fileId": "7fwJBXe4tIKpcPzDFjB/JU",
  2665. "sync": false
  2666. },
  2667. {
  2668. "__type__": "cc.Node",
  2669. "_name": "slot",
  2670. "_objFlags": 0,
  2671. "_parent": {
  2672. "__id__": 51
  2673. },
  2674. "_children": [
  2675. {
  2676. "__id__": 75
  2677. },
  2678. {
  2679. "__id__": 78
  2680. },
  2681. {
  2682. "__id__": 81
  2683. }
  2684. ],
  2685. "_active": true,
  2686. "_components": [
  2687. {
  2688. "__id__": 83
  2689. }
  2690. ],
  2691. "_prefab": {
  2692. "__id__": 84
  2693. },
  2694. "_opacity": 255,
  2695. "_color": {
  2696. "__type__": "cc.Color",
  2697. "r": 255,
  2698. "g": 255,
  2699. "b": 255,
  2700. "a": 255
  2701. },
  2702. "_contentSize": {
  2703. "__type__": "cc.Size",
  2704. "width": 219,
  2705. "height": 218
  2706. },
  2707. "_anchorPoint": {
  2708. "__type__": "cc.Vec2",
  2709. "x": 0.5,
  2710. "y": 0.5
  2711. },
  2712. "_trs": {
  2713. "__type__": "TypedArray",
  2714. "ctor": "Float64Array",
  2715. "array": [
  2716. 173.625,
  2717. 0.48,
  2718. 0,
  2719. 0,
  2720. 0,
  2721. 0,
  2722. 1,
  2723. 0.75,
  2724. 0.75,
  2725. 1
  2726. ]
  2727. },
  2728. "_eulerAngles": {
  2729. "__type__": "cc.Vec3",
  2730. "x": 0,
  2731. "y": 0,
  2732. "z": 0
  2733. },
  2734. "_skewX": 0,
  2735. "_skewY": 0,
  2736. "_is3DNode": false,
  2737. "_groupIndex": 0,
  2738. "groupIndex": 0,
  2739. "_id": ""
  2740. },
  2741. {
  2742. "__type__": "cc.Node",
  2743. "_name": "bg",
  2744. "_objFlags": 0,
  2745. "_parent": {
  2746. "__id__": 74
  2747. },
  2748. "_children": [],
  2749. "_active": true,
  2750. "_components": [
  2751. {
  2752. "__id__": 76
  2753. }
  2754. ],
  2755. "_prefab": {
  2756. "__id__": 77
  2757. },
  2758. "_opacity": 255,
  2759. "_color": {
  2760. "__type__": "cc.Color",
  2761. "r": 255,
  2762. "g": 255,
  2763. "b": 255,
  2764. "a": 255
  2765. },
  2766. "_contentSize": {
  2767. "__type__": "cc.Size",
  2768. "width": 219,
  2769. "height": 218
  2770. },
  2771. "_anchorPoint": {
  2772. "__type__": "cc.Vec2",
  2773. "x": 0.5,
  2774. "y": 0.5
  2775. },
  2776. "_trs": {
  2777. "__type__": "TypedArray",
  2778. "ctor": "Float64Array",
  2779. "array": [
  2780. 0,
  2781. 0,
  2782. 0,
  2783. 0,
  2784. 0,
  2785. 0,
  2786. 1,
  2787. 1,
  2788. 1,
  2789. 1
  2790. ]
  2791. },
  2792. "_eulerAngles": {
  2793. "__type__": "cc.Vec3",
  2794. "x": 0,
  2795. "y": 0,
  2796. "z": 0
  2797. },
  2798. "_skewX": 0,
  2799. "_skewY": 0,
  2800. "_is3DNode": false,
  2801. "_groupIndex": 0,
  2802. "groupIndex": 0,
  2803. "_id": ""
  2804. },
  2805. {
  2806. "__type__": "cc.Sprite",
  2807. "_name": "",
  2808. "_objFlags": 0,
  2809. "node": {
  2810. "__id__": 75
  2811. },
  2812. "_enabled": true,
  2813. "_materials": [
  2814. {
  2815. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  2816. }
  2817. ],
  2818. "_srcBlendFactor": 770,
  2819. "_dstBlendFactor": 771,
  2820. "_spriteFrame": {
  2821. "__uuid__": "33f08784-3057-41f8-a74d-54ced51209b1"
  2822. },
  2823. "_type": 0,
  2824. "_sizeMode": 1,
  2825. "_fillType": 0,
  2826. "_fillCenter": {
  2827. "__type__": "cc.Vec2",
  2828. "x": 0,
  2829. "y": 0
  2830. },
  2831. "_fillStart": 0,
  2832. "_fillRange": 0,
  2833. "_isTrimmedMode": true,
  2834. "_atlas": null,
  2835. "_id": ""
  2836. },
  2837. {
  2838. "__type__": "cc.PrefabInfo",
  2839. "root": {
  2840. "__id__": 1
  2841. },
  2842. "asset": {
  2843. "__id__": 0
  2844. },
  2845. "fileId": "fbn+Sw1HFFFo/mOVZlPWt9",
  2846. "sync": false
  2847. },
  2848. {
  2849. "__type__": "cc.Node",
  2850. "_name": "add_2",
  2851. "_objFlags": 0,
  2852. "_parent": {
  2853. "__id__": 74
  2854. },
  2855. "_children": [],
  2856. "_active": true,
  2857. "_components": [
  2858. {
  2859. "__id__": 79
  2860. }
  2861. ],
  2862. "_prefab": {
  2863. "__id__": 80
  2864. },
  2865. "_opacity": 255,
  2866. "_color": {
  2867. "__type__": "cc.Color",
  2868. "r": 255,
  2869. "g": 255,
  2870. "b": 255,
  2871. "a": 255
  2872. },
  2873. "_contentSize": {
  2874. "__type__": "cc.Size",
  2875. "width": 101,
  2876. "height": 101
  2877. },
  2878. "_anchorPoint": {
  2879. "__type__": "cc.Vec2",
  2880. "x": 0.5,
  2881. "y": 0.5
  2882. },
  2883. "_trs": {
  2884. "__type__": "TypedArray",
  2885. "ctor": "Float64Array",
  2886. "array": [
  2887. 0,
  2888. 0,
  2889. 0,
  2890. 0,
  2891. 0,
  2892. 0,
  2893. 1,
  2894. 1,
  2895. 1,
  2896. 1
  2897. ]
  2898. },
  2899. "_eulerAngles": {
  2900. "__type__": "cc.Vec3",
  2901. "x": 0,
  2902. "y": 0,
  2903. "z": 0
  2904. },
  2905. "_skewX": 0,
  2906. "_skewY": 0,
  2907. "_is3DNode": false,
  2908. "_groupIndex": 0,
  2909. "groupIndex": 0,
  2910. "_id": ""
  2911. },
  2912. {
  2913. "__type__": "cc.Sprite",
  2914. "_name": "",
  2915. "_objFlags": 0,
  2916. "node": {
  2917. "__id__": 78
  2918. },
  2919. "_enabled": true,
  2920. "_materials": [
  2921. {
  2922. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  2923. }
  2924. ],
  2925. "_srcBlendFactor": 770,
  2926. "_dstBlendFactor": 771,
  2927. "_spriteFrame": {
  2928. "__uuid__": "30fe9ffc-f695-4523-af2a-be031513db72"
  2929. },
  2930. "_type": 0,
  2931. "_sizeMode": 1,
  2932. "_fillType": 0,
  2933. "_fillCenter": {
  2934. "__type__": "cc.Vec2",
  2935. "x": 0,
  2936. "y": 0
  2937. },
  2938. "_fillStart": 0,
  2939. "_fillRange": 0,
  2940. "_isTrimmedMode": true,
  2941. "_atlas": null,
  2942. "_id": ""
  2943. },
  2944. {
  2945. "__type__": "cc.PrefabInfo",
  2946. "root": {
  2947. "__id__": 1
  2948. },
  2949. "asset": {
  2950. "__id__": 0
  2951. },
  2952. "fileId": "52dVyYD7FBj78VACMxv8D+",
  2953. "sync": false
  2954. },
  2955. {
  2956. "__type__": "cc.Node",
  2957. "_name": "itemParent",
  2958. "_objFlags": 0,
  2959. "_parent": {
  2960. "__id__": 74
  2961. },
  2962. "_children": [],
  2963. "_active": true,
  2964. "_components": [],
  2965. "_prefab": {
  2966. "__id__": 82
  2967. },
  2968. "_opacity": 255,
  2969. "_color": {
  2970. "__type__": "cc.Color",
  2971. "r": 255,
  2972. "g": 255,
  2973. "b": 255,
  2974. "a": 255
  2975. },
  2976. "_contentSize": {
  2977. "__type__": "cc.Size",
  2978. "width": 166,
  2979. "height": 166
  2980. },
  2981. "_anchorPoint": {
  2982. "__type__": "cc.Vec2",
  2983. "x": 0.5,
  2984. "y": 0.5
  2985. },
  2986. "_trs": {
  2987. "__type__": "TypedArray",
  2988. "ctor": "Float64Array",
  2989. "array": [
  2990. 0,
  2991. 0,
  2992. 0,
  2993. 0,
  2994. 0,
  2995. 0,
  2996. 1,
  2997. 1,
  2998. 1,
  2999. 1
  3000. ]
  3001. },
  3002. "_eulerAngles": {
  3003. "__type__": "cc.Vec3",
  3004. "x": 0,
  3005. "y": 0,
  3006. "z": 0
  3007. },
  3008. "_skewX": 0,
  3009. "_skewY": 0,
  3010. "_is3DNode": false,
  3011. "_groupIndex": 0,
  3012. "groupIndex": 0,
  3013. "_id": ""
  3014. },
  3015. {
  3016. "__type__": "cc.PrefabInfo",
  3017. "root": {
  3018. "__id__": 81
  3019. },
  3020. "asset": {
  3021. "__uuid__": "1a36c1a6-7e22-4920-ada0-ab3e5c63521f"
  3022. },
  3023. "fileId": "3fKtiRdC1FiovMMTYKCEMg",
  3024. "sync": false
  3025. },
  3026. {
  3027. "__type__": "cc.Sprite",
  3028. "_name": "",
  3029. "_objFlags": 0,
  3030. "node": {
  3031. "__id__": 74
  3032. },
  3033. "_enabled": true,
  3034. "_materials": [
  3035. {
  3036. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  3037. }
  3038. ],
  3039. "_srcBlendFactor": 770,
  3040. "_dstBlendFactor": 771,
  3041. "_spriteFrame": {
  3042. "__uuid__": "33f08784-3057-41f8-a74d-54ced51209b1"
  3043. },
  3044. "_type": 0,
  3045. "_sizeMode": 1,
  3046. "_fillType": 0,
  3047. "_fillCenter": {
  3048. "__type__": "cc.Vec2",
  3049. "x": 0,
  3050. "y": 0
  3051. },
  3052. "_fillStart": 0,
  3053. "_fillRange": 0,
  3054. "_isTrimmedMode": true,
  3055. "_atlas": null,
  3056. "_id": ""
  3057. },
  3058. {
  3059. "__type__": "cc.PrefabInfo",
  3060. "root": {
  3061. "__id__": 1
  3062. },
  3063. "asset": {
  3064. "__id__": 0
  3065. },
  3066. "fileId": "5c/VF0JylAI5xefpbLwB8I",
  3067. "sync": false
  3068. },
  3069. {
  3070. "__type__": "cc.Layout",
  3071. "_name": "",
  3072. "_objFlags": 0,
  3073. "node": {
  3074. "__id__": 51
  3075. },
  3076. "_enabled": true,
  3077. "_layoutSize": {
  3078. "__type__": "cc.Size",
  3079. "width": 300,
  3080. "height": 200
  3081. },
  3082. "_resize": 0,
  3083. "_N$layoutType": 1,
  3084. "_N$cellSize": {
  3085. "__type__": "cc.Size",
  3086. "width": 40,
  3087. "height": 40
  3088. },
  3089. "_N$startAxis": 0,
  3090. "_N$paddingLeft": 0,
  3091. "_N$paddingRight": 0,
  3092. "_N$paddingTop": 0,
  3093. "_N$paddingBottom": 0,
  3094. "_N$spacingX": 25,
  3095. "_N$spacingY": 0,
  3096. "_N$verticalDirection": 1,
  3097. "_N$horizontalDirection": 0,
  3098. "_N$affectedByScale": true,
  3099. "_id": ""
  3100. },
  3101. {
  3102. "__type__": "cc.PrefabInfo",
  3103. "root": {
  3104. "__id__": 1
  3105. },
  3106. "asset": {
  3107. "__id__": 0
  3108. },
  3109. "fileId": "abJhu6TS5Na7emOQ9u6MGO",
  3110. "sync": false
  3111. },
  3112. {
  3113. "__type__": "cc.Node",
  3114. "_name": "next_slot",
  3115. "_objFlags": 0,
  3116. "_parent": {
  3117. "__id__": 1
  3118. },
  3119. "_children": [
  3120. {
  3121. "__id__": 88
  3122. },
  3123. {
  3124. "__id__": 91
  3125. },
  3126. {
  3127. "__id__": 94
  3128. }
  3129. ],
  3130. "_active": true,
  3131. "_components": [
  3132. {
  3133. "__id__": 96
  3134. }
  3135. ],
  3136. "_prefab": {
  3137. "__id__": 97
  3138. },
  3139. "_opacity": 255,
  3140. "_color": {
  3141. "__type__": "cc.Color",
  3142. "r": 255,
  3143. "g": 255,
  3144. "b": 255,
  3145. "a": 255
  3146. },
  3147. "_contentSize": {
  3148. "__type__": "cc.Size",
  3149. "width": 219,
  3150. "height": 218
  3151. },
  3152. "_anchorPoint": {
  3153. "__type__": "cc.Vec2",
  3154. "x": 0.5,
  3155. "y": 0.5
  3156. },
  3157. "_trs": {
  3158. "__type__": "TypedArray",
  3159. "ctor": "Float64Array",
  3160. "array": [
  3161. -682.552,
  3162. -133.538,
  3163. 0,
  3164. 0,
  3165. 0,
  3166. 0,
  3167. 1,
  3168. 1.65,
  3169. 1.65,
  3170. 1
  3171. ]
  3172. },
  3173. "_eulerAngles": {
  3174. "__type__": "cc.Vec3",
  3175. "x": 0,
  3176. "y": 0,
  3177. "z": 0
  3178. },
  3179. "_skewX": 0,
  3180. "_skewY": 0,
  3181. "_is3DNode": false,
  3182. "_groupIndex": 0,
  3183. "groupIndex": 0,
  3184. "_id": ""
  3185. },
  3186. {
  3187. "__type__": "cc.Node",
  3188. "_name": "bg",
  3189. "_objFlags": 0,
  3190. "_parent": {
  3191. "__id__": 87
  3192. },
  3193. "_children": [],
  3194. "_active": true,
  3195. "_components": [
  3196. {
  3197. "__id__": 89
  3198. }
  3199. ],
  3200. "_prefab": {
  3201. "__id__": 90
  3202. },
  3203. "_opacity": 255,
  3204. "_color": {
  3205. "__type__": "cc.Color",
  3206. "r": 255,
  3207. "g": 255,
  3208. "b": 255,
  3209. "a": 255
  3210. },
  3211. "_contentSize": {
  3212. "__type__": "cc.Size",
  3213. "width": 219,
  3214. "height": 218
  3215. },
  3216. "_anchorPoint": {
  3217. "__type__": "cc.Vec2",
  3218. "x": 0.5,
  3219. "y": 0.5
  3220. },
  3221. "_trs": {
  3222. "__type__": "TypedArray",
  3223. "ctor": "Float64Array",
  3224. "array": [
  3225. 0,
  3226. 0,
  3227. 0,
  3228. 0,
  3229. 0,
  3230. 0,
  3231. 1,
  3232. 1,
  3233. 1,
  3234. 1
  3235. ]
  3236. },
  3237. "_eulerAngles": {
  3238. "__type__": "cc.Vec3",
  3239. "x": 0,
  3240. "y": 0,
  3241. "z": 0
  3242. },
  3243. "_skewX": 0,
  3244. "_skewY": 0,
  3245. "_is3DNode": false,
  3246. "_groupIndex": 0,
  3247. "groupIndex": 0,
  3248. "_id": ""
  3249. },
  3250. {
  3251. "__type__": "cc.Sprite",
  3252. "_name": "",
  3253. "_objFlags": 0,
  3254. "node": {
  3255. "__id__": 88
  3256. },
  3257. "_enabled": true,
  3258. "_materials": [
  3259. {
  3260. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  3261. }
  3262. ],
  3263. "_srcBlendFactor": 770,
  3264. "_dstBlendFactor": 771,
  3265. "_spriteFrame": {
  3266. "__uuid__": "33f08784-3057-41f8-a74d-54ced51209b1"
  3267. },
  3268. "_type": 0,
  3269. "_sizeMode": 1,
  3270. "_fillType": 0,
  3271. "_fillCenter": {
  3272. "__type__": "cc.Vec2",
  3273. "x": 0,
  3274. "y": 0
  3275. },
  3276. "_fillStart": 0,
  3277. "_fillRange": 0,
  3278. "_isTrimmedMode": true,
  3279. "_atlas": null,
  3280. "_id": ""
  3281. },
  3282. {
  3283. "__type__": "cc.PrefabInfo",
  3284. "root": {
  3285. "__id__": 1
  3286. },
  3287. "asset": {
  3288. "__id__": 0
  3289. },
  3290. "fileId": "86SnFRxYlIUb33sxwC/Tqk",
  3291. "sync": false
  3292. },
  3293. {
  3294. "__type__": "cc.Node",
  3295. "_name": "add_2",
  3296. "_objFlags": 0,
  3297. "_parent": {
  3298. "__id__": 87
  3299. },
  3300. "_children": [],
  3301. "_active": true,
  3302. "_components": [
  3303. {
  3304. "__id__": 92
  3305. }
  3306. ],
  3307. "_prefab": {
  3308. "__id__": 93
  3309. },
  3310. "_opacity": 255,
  3311. "_color": {
  3312. "__type__": "cc.Color",
  3313. "r": 255,
  3314. "g": 255,
  3315. "b": 255,
  3316. "a": 255
  3317. },
  3318. "_contentSize": {
  3319. "__type__": "cc.Size",
  3320. "width": 101,
  3321. "height": 101
  3322. },
  3323. "_anchorPoint": {
  3324. "__type__": "cc.Vec2",
  3325. "x": 0.5,
  3326. "y": 0.5
  3327. },
  3328. "_trs": {
  3329. "__type__": "TypedArray",
  3330. "ctor": "Float64Array",
  3331. "array": [
  3332. 0,
  3333. 0,
  3334. 0,
  3335. 0,
  3336. 0,
  3337. 0,
  3338. 1,
  3339. 1,
  3340. 1,
  3341. 1
  3342. ]
  3343. },
  3344. "_eulerAngles": {
  3345. "__type__": "cc.Vec3",
  3346. "x": 0,
  3347. "y": 0,
  3348. "z": 0
  3349. },
  3350. "_skewX": 0,
  3351. "_skewY": 0,
  3352. "_is3DNode": false,
  3353. "_groupIndex": 0,
  3354. "groupIndex": 0,
  3355. "_id": ""
  3356. },
  3357. {
  3358. "__type__": "cc.Sprite",
  3359. "_name": "",
  3360. "_objFlags": 0,
  3361. "node": {
  3362. "__id__": 91
  3363. },
  3364. "_enabled": true,
  3365. "_materials": [
  3366. {
  3367. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  3368. }
  3369. ],
  3370. "_srcBlendFactor": 770,
  3371. "_dstBlendFactor": 771,
  3372. "_spriteFrame": {
  3373. "__uuid__": "30fe9ffc-f695-4523-af2a-be031513db72"
  3374. },
  3375. "_type": 0,
  3376. "_sizeMode": 1,
  3377. "_fillType": 0,
  3378. "_fillCenter": {
  3379. "__type__": "cc.Vec2",
  3380. "x": 0,
  3381. "y": 0
  3382. },
  3383. "_fillStart": 0,
  3384. "_fillRange": 0,
  3385. "_isTrimmedMode": true,
  3386. "_atlas": null,
  3387. "_id": ""
  3388. },
  3389. {
  3390. "__type__": "cc.PrefabInfo",
  3391. "root": {
  3392. "__id__": 1
  3393. },
  3394. "asset": {
  3395. "__id__": 0
  3396. },
  3397. "fileId": "6eH8D3sJJPxa1Sbn7qmw3U",
  3398. "sync": false
  3399. },
  3400. {
  3401. "__type__": "cc.Node",
  3402. "_name": "equip",
  3403. "_objFlags": 0,
  3404. "_parent": {
  3405. "__id__": 87
  3406. },
  3407. "_children": [],
  3408. "_active": true,
  3409. "_components": [],
  3410. "_prefab": {
  3411. "__id__": 95
  3412. },
  3413. "_opacity": 255,
  3414. "_color": {
  3415. "__type__": "cc.Color",
  3416. "r": 255,
  3417. "g": 255,
  3418. "b": 255,
  3419. "a": 255
  3420. },
  3421. "_contentSize": {
  3422. "__type__": "cc.Size",
  3423. "width": 166,
  3424. "height": 166
  3425. },
  3426. "_anchorPoint": {
  3427. "__type__": "cc.Vec2",
  3428. "x": 0.5,
  3429. "y": 0.5
  3430. },
  3431. "_trs": {
  3432. "__type__": "TypedArray",
  3433. "ctor": "Float64Array",
  3434. "array": [
  3435. 0,
  3436. 0,
  3437. 0,
  3438. 0,
  3439. 0,
  3440. 0,
  3441. 1,
  3442. 1,
  3443. 1,
  3444. 1
  3445. ]
  3446. },
  3447. "_eulerAngles": {
  3448. "__type__": "cc.Vec3",
  3449. "x": 0,
  3450. "y": 0,
  3451. "z": 0
  3452. },
  3453. "_skewX": 0,
  3454. "_skewY": 0,
  3455. "_is3DNode": false,
  3456. "_groupIndex": 0,
  3457. "groupIndex": 0,
  3458. "_id": ""
  3459. },
  3460. {
  3461. "__type__": "cc.PrefabInfo",
  3462. "root": {
  3463. "__id__": 94
  3464. },
  3465. "asset": {
  3466. "__uuid__": "1a36c1a6-7e22-4920-ada0-ab3e5c63521f"
  3467. },
  3468. "fileId": "6a4ZIAl4xF+b9+sTIdl6pT",
  3469. "sync": false
  3470. },
  3471. {
  3472. "__type__": "cc.Sprite",
  3473. "_name": "",
  3474. "_objFlags": 0,
  3475. "node": {
  3476. "__id__": 87
  3477. },
  3478. "_enabled": true,
  3479. "_materials": [
  3480. {
  3481. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  3482. }
  3483. ],
  3484. "_srcBlendFactor": 770,
  3485. "_dstBlendFactor": 771,
  3486. "_spriteFrame": {
  3487. "__uuid__": "33f08784-3057-41f8-a74d-54ced51209b1"
  3488. },
  3489. "_type": 0,
  3490. "_sizeMode": 1,
  3491. "_fillType": 0,
  3492. "_fillCenter": {
  3493. "__type__": "cc.Vec2",
  3494. "x": 0,
  3495. "y": 0
  3496. },
  3497. "_fillStart": 0,
  3498. "_fillRange": 0,
  3499. "_isTrimmedMode": true,
  3500. "_atlas": null,
  3501. "_id": ""
  3502. },
  3503. {
  3504. "__type__": "cc.PrefabInfo",
  3505. "root": {
  3506. "__id__": 1
  3507. },
  3508. "asset": {
  3509. "__id__": 0
  3510. },
  3511. "fileId": "391Bzak+hFDLNbf7ikjNKr",
  3512. "sync": false
  3513. },
  3514. {
  3515. "__type__": "cc.Node",
  3516. "_name": "arrow_2",
  3517. "_objFlags": 0,
  3518. "_parent": {
  3519. "__id__": 1
  3520. },
  3521. "_children": [],
  3522. "_active": true,
  3523. "_components": [
  3524. {
  3525. "__id__": 99
  3526. }
  3527. ],
  3528. "_prefab": {
  3529. "__id__": 100
  3530. },
  3531. "_opacity": 255,
  3532. "_color": {
  3533. "__type__": "cc.Color",
  3534. "r": 255,
  3535. "g": 255,
  3536. "b": 255,
  3537. "a": 255
  3538. },
  3539. "_contentSize": {
  3540. "__type__": "cc.Size",
  3541. "width": 64,
  3542. "height": 95
  3543. },
  3544. "_anchorPoint": {
  3545. "__type__": "cc.Vec2",
  3546. "x": 0.5,
  3547. "y": 0.5
  3548. },
  3549. "_trs": {
  3550. "__type__": "TypedArray",
  3551. "ctor": "Float64Array",
  3552. "array": [
  3553. -681.605,
  3554. 60.991,
  3555. 0,
  3556. 0,
  3557. 0,
  3558. 0,
  3559. 1,
  3560. 1,
  3561. 1,
  3562. 1
  3563. ]
  3564. },
  3565. "_eulerAngles": {
  3566. "__type__": "cc.Vec3",
  3567. "x": 0,
  3568. "y": 0,
  3569. "z": 0
  3570. },
  3571. "_skewX": 0,
  3572. "_skewY": 0,
  3573. "_is3DNode": false,
  3574. "_groupIndex": 0,
  3575. "groupIndex": 0,
  3576. "_id": ""
  3577. },
  3578. {
  3579. "__type__": "cc.Sprite",
  3580. "_name": "",
  3581. "_objFlags": 0,
  3582. "node": {
  3583. "__id__": 98
  3584. },
  3585. "_enabled": true,
  3586. "_materials": [
  3587. {
  3588. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  3589. }
  3590. ],
  3591. "_srcBlendFactor": 770,
  3592. "_dstBlendFactor": 771,
  3593. "_spriteFrame": {
  3594. "__uuid__": "c4c10cb6-7435-4d15-b843-bf66709f60ad"
  3595. },
  3596. "_type": 0,
  3597. "_sizeMode": 1,
  3598. "_fillType": 0,
  3599. "_fillCenter": {
  3600. "__type__": "cc.Vec2",
  3601. "x": 0,
  3602. "y": 0
  3603. },
  3604. "_fillStart": 0,
  3605. "_fillRange": 0,
  3606. "_isTrimmedMode": true,
  3607. "_atlas": null,
  3608. "_id": ""
  3609. },
  3610. {
  3611. "__type__": "cc.PrefabInfo",
  3612. "root": {
  3613. "__id__": 1
  3614. },
  3615. "asset": {
  3616. "__id__": 0
  3617. },
  3618. "fileId": "96vI5HF0pDKZYg4hbc+qHE",
  3619. "sync": false
  3620. },
  3621. {
  3622. "__type__": "cc.Node",
  3623. "_name": "btn_auto",
  3624. "_objFlags": 0,
  3625. "_parent": {
  3626. "__id__": 1
  3627. },
  3628. "_children": [
  3629. {
  3630. "__id__": 102
  3631. },
  3632. {
  3633. "__id__": 107
  3634. }
  3635. ],
  3636. "_active": true,
  3637. "_components": [
  3638. {
  3639. "__id__": 110
  3640. },
  3641. {
  3642. "__id__": 111
  3643. },
  3644. {
  3645. "__id__": 112
  3646. }
  3647. ],
  3648. "_prefab": {
  3649. "__id__": 114
  3650. },
  3651. "_opacity": 255,
  3652. "_color": {
  3653. "__type__": "cc.Color",
  3654. "r": 255,
  3655. "g": 255,
  3656. "b": 255,
  3657. "a": 255
  3658. },
  3659. "_contentSize": {
  3660. "__type__": "cc.Size",
  3661. "width": 318,
  3662. "height": 129
  3663. },
  3664. "_anchorPoint": {
  3665. "__type__": "cc.Vec2",
  3666. "x": 0.5,
  3667. "y": 0.5
  3668. },
  3669. "_trs": {
  3670. "__type__": "TypedArray",
  3671. "ctor": "Float64Array",
  3672. "array": [
  3673. -364.103,
  3674. -434.53,
  3675. 0,
  3676. 0,
  3677. 0,
  3678. 0,
  3679. 1,
  3680. 1,
  3681. 1,
  3682. 0
  3683. ]
  3684. },
  3685. "_eulerAngles": {
  3686. "__type__": "cc.Vec3",
  3687. "x": 0,
  3688. "y": 0,
  3689. "z": 0
  3690. },
  3691. "_skewX": 0,
  3692. "_skewY": 0,
  3693. "_is3DNode": false,
  3694. "_groupIndex": 0,
  3695. "groupIndex": 0,
  3696. "_id": ""
  3697. },
  3698. {
  3699. "__type__": "cc.Node",
  3700. "_name": "lb",
  3701. "_objFlags": 0,
  3702. "_parent": {
  3703. "__id__": 101
  3704. },
  3705. "_children": [],
  3706. "_active": true,
  3707. "_components": [
  3708. {
  3709. "__id__": 103
  3710. },
  3711. {
  3712. "__id__": 104
  3713. },
  3714. {
  3715. "__id__": 105
  3716. }
  3717. ],
  3718. "_prefab": {
  3719. "__id__": 106
  3720. },
  3721. "_opacity": 255,
  3722. "_color": {
  3723. "__type__": "cc.Color",
  3724. "r": 29,
  3725. "g": 37,
  3726. "b": 7,
  3727. "a": 255
  3728. },
  3729. "_contentSize": {
  3730. "__type__": "cc.Size",
  3731. "width": 290,
  3732. "height": 60
  3733. },
  3734. "_anchorPoint": {
  3735. "__type__": "cc.Vec2",
  3736. "x": 0.5,
  3737. "y": 0.5
  3738. },
  3739. "_trs": {
  3740. "__type__": "TypedArray",
  3741. "ctor": "Float64Array",
  3742. "array": [
  3743. 0,
  3744. 0,
  3745. 0,
  3746. 0,
  3747. 0,
  3748. 0,
  3749. 1,
  3750. 1,
  3751. 1,
  3752. 1
  3753. ]
  3754. },
  3755. "_eulerAngles": {
  3756. "__type__": "cc.Vec3",
  3757. "x": 0,
  3758. "y": 0,
  3759. "z": 0
  3760. },
  3761. "_skewX": 0,
  3762. "_skewY": 0,
  3763. "_is3DNode": false,
  3764. "_groupIndex": 0,
  3765. "groupIndex": 0,
  3766. "_id": ""
  3767. },
  3768. {
  3769. "__type__": "cc.Label",
  3770. "_name": "",
  3771. "_objFlags": 0,
  3772. "node": {
  3773. "__id__": 102
  3774. },
  3775. "_enabled": true,
  3776. "_materials": [
  3777. {
  3778. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  3779. }
  3780. ],
  3781. "_srcBlendFactor": 770,
  3782. "_dstBlendFactor": 771,
  3783. "_string": "Auto Break",
  3784. "_N$string": "Auto Break",
  3785. "_fontSize": 48,
  3786. "_lineHeight": 50,
  3787. "_enableWrapText": true,
  3788. "_N$file": {
  3789. "__uuid__": "53fae5bd-72f8-48d5-9465-9798bf9bde5c"
  3790. },
  3791. "_isSystemFontUsed": false,
  3792. "_spacingX": 0,
  3793. "_batchAsBitmap": false,
  3794. "_styleFlags": 0,
  3795. "_underlineHeight": 0,
  3796. "_N$horizontalAlign": 1,
  3797. "_N$verticalAlign": 1,
  3798. "_N$fontFamily": "Arial",
  3799. "_N$overflow": 2,
  3800. "_N$cacheMode": 0,
  3801. "_id": ""
  3802. },
  3803. {
  3804. "__type__": "cc.LabelOutline",
  3805. "_name": "",
  3806. "_objFlags": 0,
  3807. "node": {
  3808. "__id__": 102
  3809. },
  3810. "_enabled": true,
  3811. "_color": {
  3812. "__type__": "cc.Color",
  3813. "r": 190,
  3814. "g": 213,
  3815. "b": 4,
  3816. "a": 255
  3817. },
  3818. "_width": 5,
  3819. "_id": ""
  3820. },
  3821. {
  3822. "__type__": "41ebaVoPpRA4Kp67XEdHfZn",
  3823. "_name": "",
  3824. "_objFlags": 0,
  3825. "node": {
  3826. "__id__": 102
  3827. },
  3828. "_enabled": true,
  3829. "_englishCase": 3,
  3830. "i18n_string": "t54",
  3831. "i18n_params": [],
  3832. "_addColon": false,
  3833. "_id": ""
  3834. },
  3835. {
  3836. "__type__": "cc.PrefabInfo",
  3837. "root": {
  3838. "__id__": 101
  3839. },
  3840. "asset": {
  3841. "__uuid__": "1d0c5047-03dd-40b0-ab83-09536f4a8565"
  3842. },
  3843. "fileId": "0257Bkg0NEyKj9p2eHdWI8",
  3844. "sync": false
  3845. },
  3846. {
  3847. "__type__": "cc.Node",
  3848. "_name": "red_dots",
  3849. "_objFlags": 0,
  3850. "_parent": {
  3851. "__id__": 101
  3852. },
  3853. "_children": [],
  3854. "_active": false,
  3855. "_components": [
  3856. {
  3857. "__id__": 108
  3858. }
  3859. ],
  3860. "_prefab": {
  3861. "__id__": 109
  3862. },
  3863. "_opacity": 255,
  3864. "_color": {
  3865. "__type__": "cc.Color",
  3866. "r": 255,
  3867. "g": 255,
  3868. "b": 255,
  3869. "a": 255
  3870. },
  3871. "_contentSize": {
  3872. "__type__": "cc.Size",
  3873. "width": 40,
  3874. "height": 40
  3875. },
  3876. "_anchorPoint": {
  3877. "__type__": "cc.Vec2",
  3878. "x": 0.5,
  3879. "y": 0.5
  3880. },
  3881. "_trs": {
  3882. "__type__": "TypedArray",
  3883. "ctor": "Float64Array",
  3884. "array": [
  3885. 151.659,
  3886. 58.117,
  3887. 0,
  3888. 0,
  3889. 0,
  3890. 0,
  3891. 1,
  3892. 1,
  3893. 1,
  3894. 1
  3895. ]
  3896. },
  3897. "_eulerAngles": {
  3898. "__type__": "cc.Vec3",
  3899. "x": 0,
  3900. "y": 0,
  3901. "z": 0
  3902. },
  3903. "_skewX": 0,
  3904. "_skewY": 0,
  3905. "_is3DNode": false,
  3906. "_groupIndex": 0,
  3907. "groupIndex": 0,
  3908. "_id": ""
  3909. },
  3910. {
  3911. "__type__": "cc.Sprite",
  3912. "_name": "",
  3913. "_objFlags": 0,
  3914. "node": {
  3915. "__id__": 107
  3916. },
  3917. "_enabled": true,
  3918. "_materials": [
  3919. {
  3920. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  3921. }
  3922. ],
  3923. "_srcBlendFactor": 770,
  3924. "_dstBlendFactor": 771,
  3925. "_spriteFrame": {
  3926. "__uuid__": "2e0bba47-213b-4d41-9454-69b2b6261500"
  3927. },
  3928. "_type": 0,
  3929. "_sizeMode": 0,
  3930. "_fillType": 0,
  3931. "_fillCenter": {
  3932. "__type__": "cc.Vec2",
  3933. "x": 0,
  3934. "y": 0
  3935. },
  3936. "_fillStart": 0,
  3937. "_fillRange": 0,
  3938. "_isTrimmedMode": true,
  3939. "_atlas": null,
  3940. "_id": ""
  3941. },
  3942. {
  3943. "__type__": "cc.PrefabInfo",
  3944. "root": {
  3945. "__id__": 101
  3946. },
  3947. "asset": {
  3948. "__uuid__": "1d0c5047-03dd-40b0-ab83-09536f4a8565"
  3949. },
  3950. "fileId": "fdHKVk7mVHBaMBMRUk3KNC",
  3951. "sync": false
  3952. },
  3953. {
  3954. "__type__": "cc.Sprite",
  3955. "_name": "",
  3956. "_objFlags": 0,
  3957. "node": {
  3958. "__id__": 101
  3959. },
  3960. "_enabled": true,
  3961. "_materials": [
  3962. {
  3963. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  3964. }
  3965. ],
  3966. "_srcBlendFactor": 770,
  3967. "_dstBlendFactor": 771,
  3968. "_spriteFrame": {
  3969. "__uuid__": "79ade49c-941d-4e47-a06a-8c8504fa6f4a"
  3970. },
  3971. "_type": 0,
  3972. "_sizeMode": 1,
  3973. "_fillType": 0,
  3974. "_fillCenter": {
  3975. "__type__": "cc.Vec2",
  3976. "x": 0,
  3977. "y": 0
  3978. },
  3979. "_fillStart": 0,
  3980. "_fillRange": 0,
  3981. "_isTrimmedMode": true,
  3982. "_atlas": null,
  3983. "_id": ""
  3984. },
  3985. {
  3986. "__type__": "466e8BS6wJF6bKBj6rcxcSE",
  3987. "_name": "",
  3988. "_objFlags": 0,
  3989. "node": {
  3990. "__id__": 101
  3991. },
  3992. "_enabled": true,
  3993. "openContinuous": true,
  3994. "continuousTime": 0.2,
  3995. "multiTouch": false,
  3996. "_id": ""
  3997. },
  3998. {
  3999. "__type__": "61994AafntNFIbmt1zoyLq+",
  4000. "_name": "",
  4001. "_objFlags": 0,
  4002. "node": {
  4003. "__id__": 101
  4004. },
  4005. "_enabled": true,
  4006. "_normalMaterial": null,
  4007. "_grayMaterial": null,
  4008. "duration": 0.1,
  4009. "zoomScale": 1.2,
  4010. "clickEvents": [
  4011. {
  4012. "__id__": 113
  4013. }
  4014. ],
  4015. "_N$interactable": true,
  4016. "_N$enableAutoGrayEffect": false,
  4017. "_N$transition": 3,
  4018. "transition": 3,
  4019. "_N$normalColor": {
  4020. "__type__": "cc.Color",
  4021. "r": 255,
  4022. "g": 255,
  4023. "b": 255,
  4024. "a": 255
  4025. },
  4026. "_N$pressedColor": {
  4027. "__type__": "cc.Color",
  4028. "r": 211,
  4029. "g": 211,
  4030. "b": 211,
  4031. "a": 255
  4032. },
  4033. "pressedColor": {
  4034. "__type__": "cc.Color",
  4035. "r": 211,
  4036. "g": 211,
  4037. "b": 211,
  4038. "a": 255
  4039. },
  4040. "_N$hoverColor": {
  4041. "__type__": "cc.Color",
  4042. "r": 255,
  4043. "g": 255,
  4044. "b": 255,
  4045. "a": 255
  4046. },
  4047. "hoverColor": {
  4048. "__type__": "cc.Color",
  4049. "r": 255,
  4050. "g": 255,
  4051. "b": 255,
  4052. "a": 255
  4053. },
  4054. "_N$disabledColor": {
  4055. "__type__": "cc.Color",
  4056. "r": 124,
  4057. "g": 124,
  4058. "b": 124,
  4059. "a": 255
  4060. },
  4061. "_N$normalSprite": null,
  4062. "_N$pressedSprite": null,
  4063. "pressedSprite": null,
  4064. "_N$hoverSprite": null,
  4065. "hoverSprite": null,
  4066. "_N$disabledSprite": null,
  4067. "_N$target": null,
  4068. "_id": ""
  4069. },
  4070. {
  4071. "__type__": "cc.ClickEvent",
  4072. "target": {
  4073. "__id__": 1
  4074. },
  4075. "component": "",
  4076. "_componentId": "ac1b6sIq7BFa5uPq8b8pdyl",
  4077. "handler": "onOneKeyBreakClick",
  4078. "customEventData": ""
  4079. },
  4080. {
  4081. "__type__": "cc.PrefabInfo",
  4082. "root": {
  4083. "__id__": 101
  4084. },
  4085. "asset": {
  4086. "__uuid__": "1d0c5047-03dd-40b0-ab83-09536f4a8565"
  4087. },
  4088. "fileId": "23wBVWMgFBKZiTFoOujXpl",
  4089. "sync": false
  4090. },
  4091. {
  4092. "__type__": "cc.Node",
  4093. "_name": "btn_break",
  4094. "_objFlags": 0,
  4095. "_parent": {
  4096. "__id__": 1
  4097. },
  4098. "_children": [
  4099. {
  4100. "__id__": 116
  4101. }
  4102. ],
  4103. "_active": false,
  4104. "_components": [
  4105. {
  4106. "__id__": 121
  4107. },
  4108. {
  4109. "__id__": 122
  4110. },
  4111. {
  4112. "__id__": 123
  4113. }
  4114. ],
  4115. "_prefab": {
  4116. "__id__": 125
  4117. },
  4118. "_opacity": 255,
  4119. "_color": {
  4120. "__type__": "cc.Color",
  4121. "r": 255,
  4122. "g": 255,
  4123. "b": 255,
  4124. "a": 255
  4125. },
  4126. "_contentSize": {
  4127. "__type__": "cc.Size",
  4128. "width": 318,
  4129. "height": 129
  4130. },
  4131. "_anchorPoint": {
  4132. "__type__": "cc.Vec2",
  4133. "x": 0.5,
  4134. "y": 0.5
  4135. },
  4136. "_trs": {
  4137. "__type__": "TypedArray",
  4138. "ctor": "Float64Array",
  4139. "array": [
  4140. -364.103,
  4141. -434.53,
  4142. 0,
  4143. 0,
  4144. 0,
  4145. 0,
  4146. 1,
  4147. 1,
  4148. 1,
  4149. 0
  4150. ]
  4151. },
  4152. "_eulerAngles": {
  4153. "__type__": "cc.Vec3",
  4154. "x": 0,
  4155. "y": 0,
  4156. "z": 0
  4157. },
  4158. "_skewX": 0,
  4159. "_skewY": 0,
  4160. "_is3DNode": false,
  4161. "_groupIndex": 0,
  4162. "groupIndex": 0,
  4163. "_id": ""
  4164. },
  4165. {
  4166. "__type__": "cc.Node",
  4167. "_name": "lb",
  4168. "_objFlags": 0,
  4169. "_parent": {
  4170. "__id__": 115
  4171. },
  4172. "_children": [],
  4173. "_active": true,
  4174. "_components": [
  4175. {
  4176. "__id__": 117
  4177. },
  4178. {
  4179. "__id__": 118
  4180. },
  4181. {
  4182. "__id__": 119
  4183. }
  4184. ],
  4185. "_prefab": {
  4186. "__id__": 120
  4187. },
  4188. "_opacity": 255,
  4189. "_color": {
  4190. "__type__": "cc.Color",
  4191. "r": 68,
  4192. "g": 41,
  4193. "b": 0,
  4194. "a": 255
  4195. },
  4196. "_contentSize": {
  4197. "__type__": "cc.Size",
  4198. "width": 170.37,
  4199. "height": 60
  4200. },
  4201. "_anchorPoint": {
  4202. "__type__": "cc.Vec2",
  4203. "x": 0.5,
  4204. "y": 0.5
  4205. },
  4206. "_trs": {
  4207. "__type__": "TypedArray",
  4208. "ctor": "Float64Array",
  4209. "array": [
  4210. 0,
  4211. 5,
  4212. 0,
  4213. 0,
  4214. 0,
  4215. 0,
  4216. 1,
  4217. 1,
  4218. 1,
  4219. 1
  4220. ]
  4221. },
  4222. "_eulerAngles": {
  4223. "__type__": "cc.Vec3",
  4224. "x": 0,
  4225. "y": 0,
  4226. "z": 0
  4227. },
  4228. "_skewX": 0,
  4229. "_skewY": 0,
  4230. "_is3DNode": false,
  4231. "_groupIndex": 0,
  4232. "groupIndex": 0,
  4233. "_id": ""
  4234. },
  4235. {
  4236. "__type__": "cc.Label",
  4237. "_name": "",
  4238. "_objFlags": 0,
  4239. "node": {
  4240. "__id__": 116
  4241. },
  4242. "_enabled": true,
  4243. "_materials": [
  4244. null
  4245. ],
  4246. "_srcBlendFactor": 770,
  4247. "_dstBlendFactor": 771,
  4248. "_string": "Break",
  4249. "_N$string": "Break",
  4250. "_fontSize": 48,
  4251. "_lineHeight": 50,
  4252. "_enableWrapText": false,
  4253. "_N$file": {
  4254. "__uuid__": "53fae5bd-72f8-48d5-9465-9798bf9bde5c"
  4255. },
  4256. "_isSystemFontUsed": false,
  4257. "_spacingX": 0,
  4258. "_batchAsBitmap": false,
  4259. "_styleFlags": 0,
  4260. "_underlineHeight": 0,
  4261. "_N$horizontalAlign": 1,
  4262. "_N$verticalAlign": 1,
  4263. "_N$fontFamily": "Arial",
  4264. "_N$overflow": 0,
  4265. "_N$cacheMode": 0,
  4266. "_id": ""
  4267. },
  4268. {
  4269. "__type__": "cc.LabelOutline",
  4270. "_name": "",
  4271. "_objFlags": 0,
  4272. "node": {
  4273. "__id__": 116
  4274. },
  4275. "_enabled": true,
  4276. "_color": {
  4277. "__type__": "cc.Color",
  4278. "r": 255,
  4279. "g": 210,
  4280. "b": 0,
  4281. "a": 255
  4282. },
  4283. "_width": 5,
  4284. "_id": ""
  4285. },
  4286. {
  4287. "__type__": "41ebaVoPpRA4Kp67XEdHfZn",
  4288. "_name": "",
  4289. "_objFlags": 0,
  4290. "node": {
  4291. "__id__": 116
  4292. },
  4293. "_enabled": true,
  4294. "_englishCase": 1,
  4295. "i18n_string": "t25",
  4296. "i18n_params": [],
  4297. "_addColon": false,
  4298. "_id": ""
  4299. },
  4300. {
  4301. "__type__": "cc.PrefabInfo",
  4302. "root": {
  4303. "__id__": 1
  4304. },
  4305. "asset": {
  4306. "__id__": 0
  4307. },
  4308. "fileId": "38KJ/LmTRMCppzgmgMLIGN",
  4309. "sync": false
  4310. },
  4311. {
  4312. "__type__": "cc.Sprite",
  4313. "_name": "",
  4314. "_objFlags": 0,
  4315. "node": {
  4316. "__id__": 115
  4317. },
  4318. "_enabled": true,
  4319. "_materials": [
  4320. {
  4321. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  4322. }
  4323. ],
  4324. "_srcBlendFactor": 770,
  4325. "_dstBlendFactor": 771,
  4326. "_spriteFrame": {
  4327. "__uuid__": "d3486a1f-4c52-44bd-924b-39e06794d99f"
  4328. },
  4329. "_type": 0,
  4330. "_sizeMode": 1,
  4331. "_fillType": 0,
  4332. "_fillCenter": {
  4333. "__type__": "cc.Vec2",
  4334. "x": 0,
  4335. "y": 0
  4336. },
  4337. "_fillStart": 0,
  4338. "_fillRange": 0,
  4339. "_isTrimmedMode": true,
  4340. "_atlas": null,
  4341. "_id": ""
  4342. },
  4343. {
  4344. "__type__": "466e8BS6wJF6bKBj6rcxcSE",
  4345. "_name": "",
  4346. "_objFlags": 0,
  4347. "node": {
  4348. "__id__": 115
  4349. },
  4350. "_enabled": true,
  4351. "openContinuous": true,
  4352. "continuousTime": 0.2,
  4353. "multiTouch": false,
  4354. "_id": ""
  4355. },
  4356. {
  4357. "__type__": "61994AafntNFIbmt1zoyLq+",
  4358. "_name": "",
  4359. "_objFlags": 0,
  4360. "node": {
  4361. "__id__": 115
  4362. },
  4363. "_enabled": true,
  4364. "_normalMaterial": null,
  4365. "_grayMaterial": null,
  4366. "duration": 0.1,
  4367. "zoomScale": 1.2,
  4368. "clickEvents": [
  4369. {
  4370. "__id__": 124
  4371. }
  4372. ],
  4373. "_N$interactable": true,
  4374. "_N$enableAutoGrayEffect": false,
  4375. "_N$transition": 3,
  4376. "transition": 3,
  4377. "_N$normalColor": {
  4378. "__type__": "cc.Color",
  4379. "r": 255,
  4380. "g": 255,
  4381. "b": 255,
  4382. "a": 255
  4383. },
  4384. "_N$pressedColor": {
  4385. "__type__": "cc.Color",
  4386. "r": 211,
  4387. "g": 211,
  4388. "b": 211,
  4389. "a": 255
  4390. },
  4391. "pressedColor": {
  4392. "__type__": "cc.Color",
  4393. "r": 211,
  4394. "g": 211,
  4395. "b": 211,
  4396. "a": 255
  4397. },
  4398. "_N$hoverColor": {
  4399. "__type__": "cc.Color",
  4400. "r": 255,
  4401. "g": 255,
  4402. "b": 255,
  4403. "a": 255
  4404. },
  4405. "hoverColor": {
  4406. "__type__": "cc.Color",
  4407. "r": 255,
  4408. "g": 255,
  4409. "b": 255,
  4410. "a": 255
  4411. },
  4412. "_N$disabledColor": {
  4413. "__type__": "cc.Color",
  4414. "r": 124,
  4415. "g": 124,
  4416. "b": 124,
  4417. "a": 255
  4418. },
  4419. "_N$normalSprite": null,
  4420. "_N$pressedSprite": null,
  4421. "pressedSprite": null,
  4422. "_N$hoverSprite": null,
  4423. "hoverSprite": null,
  4424. "_N$disabledSprite": null,
  4425. "_N$target": null,
  4426. "_id": ""
  4427. },
  4428. {
  4429. "__type__": "cc.ClickEvent",
  4430. "target": {
  4431. "__id__": 1
  4432. },
  4433. "component": "",
  4434. "_componentId": "ac1b6sIq7BFa5uPq8b8pdyl",
  4435. "handler": "onBreakClick",
  4436. "customEventData": ""
  4437. },
  4438. {
  4439. "__type__": "cc.PrefabInfo",
  4440. "root": {
  4441. "__id__": 1
  4442. },
  4443. "asset": {
  4444. "__id__": 0
  4445. },
  4446. "fileId": "0dlPr43PNANJkGC/x0bQCq",
  4447. "sync": false
  4448. },
  4449. {
  4450. "__type__": "cc.Node",
  4451. "_name": "equipList",
  4452. "_objFlags": 0,
  4453. "_parent": {
  4454. "__id__": 1
  4455. },
  4456. "_children": [
  4457. {
  4458. "__id__": 127
  4459. },
  4460. {
  4461. "__id__": 158
  4462. }
  4463. ],
  4464. "_active": true,
  4465. "_components": [
  4466. {
  4467. "__id__": 163
  4468. },
  4469. {
  4470. "__id__": 164
  4471. },
  4472. {
  4473. "__id__": 168
  4474. }
  4475. ],
  4476. "_prefab": {
  4477. "__id__": 169
  4478. },
  4479. "_opacity": 255,
  4480. "_color": {
  4481. "__type__": "cc.Color",
  4482. "r": 255,
  4483. "g": 255,
  4484. "b": 255,
  4485. "a": 255
  4486. },
  4487. "_contentSize": {
  4488. "__type__": "cc.Size",
  4489. "width": 650,
  4490. "height": 780
  4491. },
  4492. "_anchorPoint": {
  4493. "__type__": "cc.Vec2",
  4494. "x": 0.5,
  4495. "y": 0.5
  4496. },
  4497. "_trs": {
  4498. "__type__": "TypedArray",
  4499. "ctor": "Float64Array",
  4500. "array": [
  4501. 576.7,
  4502. -12.4,
  4503. 0,
  4504. 0,
  4505. 0,
  4506. 0,
  4507. 1,
  4508. 1,
  4509. 1,
  4510. 1
  4511. ]
  4512. },
  4513. "_eulerAngles": {
  4514. "__type__": "cc.Vec3",
  4515. "x": 0,
  4516. "y": 0,
  4517. "z": 0
  4518. },
  4519. "_skewX": 0,
  4520. "_skewY": 0,
  4521. "_is3DNode": false,
  4522. "_groupIndex": 0,
  4523. "groupIndex": 0,
  4524. "_id": ""
  4525. },
  4526. {
  4527. "__type__": "cc.Node",
  4528. "_name": "view",
  4529. "_objFlags": 0,
  4530. "_parent": {
  4531. "__id__": 126
  4532. },
  4533. "_children": [
  4534. {
  4535. "__id__": 128
  4536. }
  4537. ],
  4538. "_active": true,
  4539. "_components": [
  4540. {
  4541. "__id__": 156
  4542. }
  4543. ],
  4544. "_prefab": {
  4545. "__id__": 157
  4546. },
  4547. "_opacity": 255,
  4548. "_color": {
  4549. "__type__": "cc.Color",
  4550. "r": 255,
  4551. "g": 255,
  4552. "b": 255,
  4553. "a": 255
  4554. },
  4555. "_contentSize": {
  4556. "__type__": "cc.Size",
  4557. "width": 650,
  4558. "height": 780
  4559. },
  4560. "_anchorPoint": {
  4561. "__type__": "cc.Vec2",
  4562. "x": 0.5,
  4563. "y": 1
  4564. },
  4565. "_trs": {
  4566. "__type__": "TypedArray",
  4567. "ctor": "Float64Array",
  4568. "array": [
  4569. 0,
  4570. 390,
  4571. 0,
  4572. 0,
  4573. 0,
  4574. 0,
  4575. 1,
  4576. 1,
  4577. 1,
  4578. 1
  4579. ]
  4580. },
  4581. "_eulerAngles": {
  4582. "__type__": "cc.Vec3",
  4583. "x": 0,
  4584. "y": 0,
  4585. "z": 0
  4586. },
  4587. "_skewX": 0,
  4588. "_skewY": 0,
  4589. "_is3DNode": false,
  4590. "_groupIndex": 0,
  4591. "groupIndex": 0,
  4592. "_id": ""
  4593. },
  4594. {
  4595. "__type__": "cc.Node",
  4596. "_name": "content",
  4597. "_objFlags": 0,
  4598. "_parent": {
  4599. "__id__": 127
  4600. },
  4601. "_children": [
  4602. {
  4603. "__id__": 129
  4604. }
  4605. ],
  4606. "_active": true,
  4607. "_components": [
  4608. {
  4609. "__id__": 154
  4610. }
  4611. ],
  4612. "_prefab": {
  4613. "__id__": 155
  4614. },
  4615. "_opacity": 255,
  4616. "_color": {
  4617. "__type__": "cc.Color",
  4618. "r": 255,
  4619. "g": 255,
  4620. "b": 255,
  4621. "a": 255
  4622. },
  4623. "_contentSize": {
  4624. "__type__": "cc.Size",
  4625. "width": 650,
  4626. "height": 780
  4627. },
  4628. "_anchorPoint": {
  4629. "__type__": "cc.Vec2",
  4630. "x": 0.5,
  4631. "y": 1
  4632. },
  4633. "_trs": {
  4634. "__type__": "TypedArray",
  4635. "ctor": "Float64Array",
  4636. "array": [
  4637. 0,
  4638. 0,
  4639. 0,
  4640. 0,
  4641. 0,
  4642. 0,
  4643. 1,
  4644. 1,
  4645. 1,
  4646. 1
  4647. ]
  4648. },
  4649. "_eulerAngles": {
  4650. "__type__": "cc.Vec3",
  4651. "x": 0,
  4652. "y": 0,
  4653. "z": 0
  4654. },
  4655. "_skewX": 0,
  4656. "_skewY": 0,
  4657. "_is3DNode": false,
  4658. "_groupIndex": 0,
  4659. "groupIndex": 0,
  4660. "_id": ""
  4661. },
  4662. {
  4663. "__type__": "cc.Node",
  4664. "_name": "item",
  4665. "_objFlags": 0,
  4666. "_parent": {
  4667. "__id__": 128
  4668. },
  4669. "_children": [
  4670. {
  4671. "__id__": 130
  4672. },
  4673. {
  4674. "__id__": 132
  4675. },
  4676. {
  4677. "__id__": 138
  4678. },
  4679. {
  4680. "__id__": 141
  4681. },
  4682. {
  4683. "__id__": 144
  4684. },
  4685. {
  4686. "__id__": 147
  4687. }
  4688. ],
  4689. "_active": true,
  4690. "_components": [
  4691. {
  4692. "__id__": 150
  4693. },
  4694. {
  4695. "__id__": 151
  4696. },
  4697. {
  4698. "__id__": 152
  4699. }
  4700. ],
  4701. "_prefab": {
  4702. "__id__": 153
  4703. },
  4704. "_opacity": 255,
  4705. "_color": {
  4706. "__type__": "cc.Color",
  4707. "r": 255,
  4708. "g": 255,
  4709. "b": 255,
  4710. "a": 255
  4711. },
  4712. "_contentSize": {
  4713. "__type__": "cc.Size",
  4714. "width": 150,
  4715. "height": 150
  4716. },
  4717. "_anchorPoint": {
  4718. "__type__": "cc.Vec2",
  4719. "x": 0.5,
  4720. "y": 0.5
  4721. },
  4722. "_trs": {
  4723. "__type__": "TypedArray",
  4724. "ctor": "Float64Array",
  4725. "array": [
  4726. -238,
  4727. -94,
  4728. 0,
  4729. 0,
  4730. 0,
  4731. 0,
  4732. 1,
  4733. 1,
  4734. 1,
  4735. 1
  4736. ]
  4737. },
  4738. "_eulerAngles": {
  4739. "__type__": "cc.Vec3",
  4740. "x": 0,
  4741. "y": 0,
  4742. "z": 0
  4743. },
  4744. "_skewX": 0,
  4745. "_skewY": 0,
  4746. "_is3DNode": false,
  4747. "_groupIndex": 0,
  4748. "groupIndex": 0,
  4749. "_id": ""
  4750. },
  4751. {
  4752. "__type__": "cc.Node",
  4753. "_name": "itemParent",
  4754. "_objFlags": 0,
  4755. "_parent": {
  4756. "__id__": 129
  4757. },
  4758. "_children": [],
  4759. "_active": true,
  4760. "_components": [],
  4761. "_prefab": {
  4762. "__id__": 131
  4763. },
  4764. "_opacity": 255,
  4765. "_color": {
  4766. "__type__": "cc.Color",
  4767. "r": 255,
  4768. "g": 255,
  4769. "b": 255,
  4770. "a": 255
  4771. },
  4772. "_contentSize": {
  4773. "__type__": "cc.Size",
  4774. "width": 166,
  4775. "height": 166
  4776. },
  4777. "_anchorPoint": {
  4778. "__type__": "cc.Vec2",
  4779. "x": 0.5,
  4780. "y": 0.5
  4781. },
  4782. "_trs": {
  4783. "__type__": "TypedArray",
  4784. "ctor": "Float64Array",
  4785. "array": [
  4786. 0,
  4787. 0,
  4788. 0,
  4789. 0,
  4790. 0,
  4791. 0,
  4792. 1,
  4793. 0.9,
  4794. 0.9,
  4795. 1
  4796. ]
  4797. },
  4798. "_eulerAngles": {
  4799. "__type__": "cc.Vec3",
  4800. "x": 0,
  4801. "y": 0,
  4802. "z": 0
  4803. },
  4804. "_skewX": 0,
  4805. "_skewY": 0,
  4806. "_is3DNode": false,
  4807. "_groupIndex": 0,
  4808. "groupIndex": 0,
  4809. "_id": ""
  4810. },
  4811. {
  4812. "__type__": "cc.PrefabInfo",
  4813. "root": {
  4814. "__id__": 130
  4815. },
  4816. "asset": {
  4817. "__uuid__": "1a36c1a6-7e22-4920-ada0-ab3e5c63521f"
  4818. },
  4819. "fileId": "81fah/EZZL/YxwH5EjC9To",
  4820. "sync": false
  4821. },
  4822. {
  4823. "__type__": "cc.Node",
  4824. "_name": "hero",
  4825. "_objFlags": 0,
  4826. "_parent": {
  4827. "__id__": 129
  4828. },
  4829. "_children": [
  4830. {
  4831. "__id__": 133
  4832. }
  4833. ],
  4834. "_active": true,
  4835. "_components": [
  4836. {
  4837. "__id__": 136
  4838. }
  4839. ],
  4840. "_prefab": {
  4841. "__id__": 137
  4842. },
  4843. "_opacity": 255,
  4844. "_color": {
  4845. "__type__": "cc.Color",
  4846. "r": 255,
  4847. "g": 255,
  4848. "b": 255,
  4849. "a": 255
  4850. },
  4851. "_contentSize": {
  4852. "__type__": "cc.Size",
  4853. "width": 50,
  4854. "height": 50
  4855. },
  4856. "_anchorPoint": {
  4857. "__type__": "cc.Vec2",
  4858. "x": 0.5,
  4859. "y": 0.5
  4860. },
  4861. "_trs": {
  4862. "__type__": "TypedArray",
  4863. "ctor": "Float64Array",
  4864. "array": [
  4865. -49.451,
  4866. 49.601,
  4867. 0,
  4868. 0,
  4869. 0,
  4870. 0,
  4871. 1,
  4872. 1,
  4873. 1,
  4874. 1
  4875. ]
  4876. },
  4877. "_eulerAngles": {
  4878. "__type__": "cc.Vec3",
  4879. "x": 0,
  4880. "y": 0,
  4881. "z": 0
  4882. },
  4883. "_skewX": 0,
  4884. "_skewY": 0,
  4885. "_is3DNode": false,
  4886. "_groupIndex": 0,
  4887. "groupIndex": 0,
  4888. "_id": ""
  4889. },
  4890. {
  4891. "__type__": "cc.Node",
  4892. "_name": "icon",
  4893. "_objFlags": 0,
  4894. "_parent": {
  4895. "__id__": 132
  4896. },
  4897. "_children": [],
  4898. "_active": true,
  4899. "_components": [
  4900. {
  4901. "__id__": 134
  4902. }
  4903. ],
  4904. "_prefab": {
  4905. "__id__": 135
  4906. },
  4907. "_opacity": 255,
  4908. "_color": {
  4909. "__type__": "cc.Color",
  4910. "r": 255,
  4911. "g": 255,
  4912. "b": 255,
  4913. "a": 255
  4914. },
  4915. "_contentSize": {
  4916. "__type__": "cc.Size",
  4917. "width": 42,
  4918. "height": 42
  4919. },
  4920. "_anchorPoint": {
  4921. "__type__": "cc.Vec2",
  4922. "x": 0.5,
  4923. "y": 0.5
  4924. },
  4925. "_trs": {
  4926. "__type__": "TypedArray",
  4927. "ctor": "Float64Array",
  4928. "array": [
  4929. 0,
  4930. 0,
  4931. 0,
  4932. 0,
  4933. 0,
  4934. 0,
  4935. 1,
  4936. 1,
  4937. 1,
  4938. 1
  4939. ]
  4940. },
  4941. "_eulerAngles": {
  4942. "__type__": "cc.Vec3",
  4943. "x": 0,
  4944. "y": 0,
  4945. "z": 0
  4946. },
  4947. "_skewX": 0,
  4948. "_skewY": 0,
  4949. "_is3DNode": false,
  4950. "_groupIndex": 0,
  4951. "groupIndex": 0,
  4952. "_id": ""
  4953. },
  4954. {
  4955. "__type__": "cc.Sprite",
  4956. "_name": "",
  4957. "_objFlags": 0,
  4958. "node": {
  4959. "__id__": 133
  4960. },
  4961. "_enabled": true,
  4962. "_materials": [
  4963. {
  4964. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  4965. }
  4966. ],
  4967. "_srcBlendFactor": 770,
  4968. "_dstBlendFactor": 771,
  4969. "_spriteFrame": null,
  4970. "_type": 0,
  4971. "_sizeMode": 0,
  4972. "_fillType": 0,
  4973. "_fillCenter": {
  4974. "__type__": "cc.Vec2",
  4975. "x": 0,
  4976. "y": 0
  4977. },
  4978. "_fillStart": 0,
  4979. "_fillRange": 0,
  4980. "_isTrimmedMode": true,
  4981. "_atlas": null,
  4982. "_id": ""
  4983. },
  4984. {
  4985. "__type__": "cc.PrefabInfo",
  4986. "root": {
  4987. "__id__": 1
  4988. },
  4989. "asset": {
  4990. "__id__": 0
  4991. },
  4992. "fileId": "0bafrHgi5Dm6LrRoAtwPCs",
  4993. "sync": false
  4994. },
  4995. {
  4996. "__type__": "cc.Sprite",
  4997. "_name": "",
  4998. "_objFlags": 0,
  4999. "node": {
  5000. "__id__": 132
  5001. },
  5002. "_enabled": true,
  5003. "_materials": [
  5004. {
  5005. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  5006. }
  5007. ],
  5008. "_srcBlendFactor": 770,
  5009. "_dstBlendFactor": 771,
  5010. "_spriteFrame": {
  5011. "__uuid__": "c5c24ba3-39e2-40cc-93e6-bae7b79eb3a1"
  5012. },
  5013. "_type": 1,
  5014. "_sizeMode": 0,
  5015. "_fillType": 0,
  5016. "_fillCenter": {
  5017. "__type__": "cc.Vec2",
  5018. "x": 0,
  5019. "y": 0
  5020. },
  5021. "_fillStart": 0,
  5022. "_fillRange": 0,
  5023. "_isTrimmedMode": true,
  5024. "_atlas": null,
  5025. "_id": ""
  5026. },
  5027. {
  5028. "__type__": "cc.PrefabInfo",
  5029. "root": {
  5030. "__id__": 1
  5031. },
  5032. "asset": {
  5033. "__id__": 0
  5034. },
  5035. "fileId": "bf37JrlExHupxR+88v+KuF",
  5036. "sync": false
  5037. },
  5038. {
  5039. "__type__": "cc.Node",
  5040. "_name": "select_1",
  5041. "_objFlags": 0,
  5042. "_parent": {
  5043. "__id__": 129
  5044. },
  5045. "_children": [],
  5046. "_active": false,
  5047. "_components": [
  5048. {
  5049. "__id__": 139
  5050. }
  5051. ],
  5052. "_prefab": {
  5053. "__id__": 140
  5054. },
  5055. "_opacity": 255,
  5056. "_color": {
  5057. "__type__": "cc.Color",
  5058. "r": 255,
  5059. "g": 255,
  5060. "b": 255,
  5061. "a": 255
  5062. },
  5063. "_contentSize": {
  5064. "__type__": "cc.Size",
  5065. "width": 92,
  5066. "height": 66
  5067. },
  5068. "_anchorPoint": {
  5069. "__type__": "cc.Vec2",
  5070. "x": 0.5,
  5071. "y": 0.5
  5072. },
  5073. "_trs": {
  5074. "__type__": "TypedArray",
  5075. "ctor": "Float64Array",
  5076. "array": [
  5077. 0,
  5078. 0,
  5079. 0,
  5080. 0,
  5081. 0,
  5082. 0,
  5083. 1,
  5084. 1,
  5085. 1,
  5086. 1
  5087. ]
  5088. },
  5089. "_eulerAngles": {
  5090. "__type__": "cc.Vec3",
  5091. "x": 0,
  5092. "y": 0,
  5093. "z": 0
  5094. },
  5095. "_skewX": 0,
  5096. "_skewY": 0,
  5097. "_is3DNode": false,
  5098. "_groupIndex": 0,
  5099. "groupIndex": 0,
  5100. "_id": ""
  5101. },
  5102. {
  5103. "__type__": "cc.Sprite",
  5104. "_name": "",
  5105. "_objFlags": 0,
  5106. "node": {
  5107. "__id__": 138
  5108. },
  5109. "_enabled": true,
  5110. "_materials": [
  5111. {
  5112. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  5113. }
  5114. ],
  5115. "_srcBlendFactor": 770,
  5116. "_dstBlendFactor": 771,
  5117. "_spriteFrame": {
  5118. "__uuid__": "b9e4722c-e1d5-4892-ade4-2d0f9587183e"
  5119. },
  5120. "_type": 0,
  5121. "_sizeMode": 1,
  5122. "_fillType": 0,
  5123. "_fillCenter": {
  5124. "__type__": "cc.Vec2",
  5125. "x": 0,
  5126. "y": 0
  5127. },
  5128. "_fillStart": 0,
  5129. "_fillRange": 0,
  5130. "_isTrimmedMode": true,
  5131. "_atlas": null,
  5132. "_id": ""
  5133. },
  5134. {
  5135. "__type__": "cc.PrefabInfo",
  5136. "root": {
  5137. "__id__": 1
  5138. },
  5139. "asset": {
  5140. "__id__": 0
  5141. },
  5142. "fileId": "a5v8tWHQ9JWI12d0mGhjmg",
  5143. "sync": false
  5144. },
  5145. {
  5146. "__type__": "cc.Node",
  5147. "_name": "icon_battle",
  5148. "_objFlags": 0,
  5149. "_parent": {
  5150. "__id__": 129
  5151. },
  5152. "_children": [],
  5153. "_active": false,
  5154. "_components": [
  5155. {
  5156. "__id__": 142
  5157. }
  5158. ],
  5159. "_prefab": {
  5160. "__id__": 143
  5161. },
  5162. "_opacity": 255,
  5163. "_color": {
  5164. "__type__": "cc.Color",
  5165. "r": 255,
  5166. "g": 255,
  5167. "b": 255,
  5168. "a": 255
  5169. },
  5170. "_contentSize": {
  5171. "__type__": "cc.Size",
  5172. "width": 46,
  5173. "height": 45
  5174. },
  5175. "_anchorPoint": {
  5176. "__type__": "cc.Vec2",
  5177. "x": 0.5,
  5178. "y": 0.5
  5179. },
  5180. "_trs": {
  5181. "__type__": "TypedArray",
  5182. "ctor": "Float64Array",
  5183. "array": [
  5184. -51.184,
  5185. 52.216,
  5186. 0,
  5187. 0,
  5188. 0,
  5189. 0,
  5190. 1,
  5191. 1,
  5192. 1,
  5193. 1
  5194. ]
  5195. },
  5196. "_eulerAngles": {
  5197. "__type__": "cc.Vec3",
  5198. "x": 0,
  5199. "y": 0,
  5200. "z": 0
  5201. },
  5202. "_skewX": 0,
  5203. "_skewY": 0,
  5204. "_is3DNode": false,
  5205. "_groupIndex": 0,
  5206. "groupIndex": 0,
  5207. "_id": ""
  5208. },
  5209. {
  5210. "__type__": "cc.Sprite",
  5211. "_name": "",
  5212. "_objFlags": 0,
  5213. "node": {
  5214. "__id__": 141
  5215. },
  5216. "_enabled": true,
  5217. "_materials": [
  5218. {
  5219. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  5220. }
  5221. ],
  5222. "_srcBlendFactor": 770,
  5223. "_dstBlendFactor": 771,
  5224. "_spriteFrame": {
  5225. "__uuid__": "bea32121-3c6a-4215-b53e-6b76f7073b31"
  5226. },
  5227. "_type": 0,
  5228. "_sizeMode": 1,
  5229. "_fillType": 0,
  5230. "_fillCenter": {
  5231. "__type__": "cc.Vec2",
  5232. "x": 0,
  5233. "y": 0
  5234. },
  5235. "_fillStart": 0,
  5236. "_fillRange": 0,
  5237. "_isTrimmedMode": true,
  5238. "_atlas": null,
  5239. "_id": ""
  5240. },
  5241. {
  5242. "__type__": "cc.PrefabInfo",
  5243. "root": {
  5244. "__id__": 1
  5245. },
  5246. "asset": {
  5247. "__id__": 0
  5248. },
  5249. "fileId": "ce8G09tvBCrpb7kycIJAtw",
  5250. "sync": false
  5251. },
  5252. {
  5253. "__type__": "cc.Node",
  5254. "_name": "red_dots",
  5255. "_objFlags": 0,
  5256. "_parent": {
  5257. "__id__": 129
  5258. },
  5259. "_children": [],
  5260. "_active": false,
  5261. "_components": [
  5262. {
  5263. "__id__": 145
  5264. }
  5265. ],
  5266. "_prefab": {
  5267. "__id__": 146
  5268. },
  5269. "_opacity": 255,
  5270. "_color": {
  5271. "__type__": "cc.Color",
  5272. "r": 255,
  5273. "g": 255,
  5274. "b": 255,
  5275. "a": 255
  5276. },
  5277. "_contentSize": {
  5278. "__type__": "cc.Size",
  5279. "width": 40,
  5280. "height": 40
  5281. },
  5282. "_anchorPoint": {
  5283. "__type__": "cc.Vec2",
  5284. "x": 0.5,
  5285. "y": 0.5
  5286. },
  5287. "_trs": {
  5288. "__type__": "TypedArray",
  5289. "ctor": "Float64Array",
  5290. "array": [
  5291. 57.556,
  5292. 58.117,
  5293. 0,
  5294. 0,
  5295. 0,
  5296. 0,
  5297. 1,
  5298. 1,
  5299. 1,
  5300. 1
  5301. ]
  5302. },
  5303. "_eulerAngles": {
  5304. "__type__": "cc.Vec3",
  5305. "x": 0,
  5306. "y": 0,
  5307. "z": 0
  5308. },
  5309. "_skewX": 0,
  5310. "_skewY": 0,
  5311. "_is3DNode": false,
  5312. "_groupIndex": 0,
  5313. "groupIndex": 0,
  5314. "_id": ""
  5315. },
  5316. {
  5317. "__type__": "cc.Sprite",
  5318. "_name": "",
  5319. "_objFlags": 0,
  5320. "node": {
  5321. "__id__": 144
  5322. },
  5323. "_enabled": true,
  5324. "_materials": [
  5325. {
  5326. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  5327. }
  5328. ],
  5329. "_srcBlendFactor": 770,
  5330. "_dstBlendFactor": 771,
  5331. "_spriteFrame": {
  5332. "__uuid__": "2e0bba47-213b-4d41-9454-69b2b6261500"
  5333. },
  5334. "_type": 0,
  5335. "_sizeMode": 0,
  5336. "_fillType": 0,
  5337. "_fillCenter": {
  5338. "__type__": "cc.Vec2",
  5339. "x": 0,
  5340. "y": 0
  5341. },
  5342. "_fillStart": 0,
  5343. "_fillRange": 0,
  5344. "_isTrimmedMode": true,
  5345. "_atlas": null,
  5346. "_id": ""
  5347. },
  5348. {
  5349. "__type__": "cc.PrefabInfo",
  5350. "root": {
  5351. "__id__": 1
  5352. },
  5353. "asset": {
  5354. "__id__": 0
  5355. },
  5356. "fileId": "06rFxET51GOb4L6i/OOkLg",
  5357. "sync": false
  5358. },
  5359. {
  5360. "__type__": "cc.Node",
  5361. "_name": "gray",
  5362. "_objFlags": 0,
  5363. "_parent": {
  5364. "__id__": 129
  5365. },
  5366. "_children": [],
  5367. "_active": false,
  5368. "_components": [
  5369. {
  5370. "__id__": 148
  5371. }
  5372. ],
  5373. "_prefab": {
  5374. "__id__": 149
  5375. },
  5376. "_opacity": 153,
  5377. "_color": {
  5378. "__type__": "cc.Color",
  5379. "r": 0,
  5380. "g": 0,
  5381. "b": 0,
  5382. "a": 255
  5383. },
  5384. "_contentSize": {
  5385. "__type__": "cc.Size",
  5386. "width": 182,
  5387. "height": 182
  5388. },
  5389. "_anchorPoint": {
  5390. "__type__": "cc.Vec2",
  5391. "x": 0.5,
  5392. "y": 0.5
  5393. },
  5394. "_trs": {
  5395. "__type__": "TypedArray",
  5396. "ctor": "Float64Array",
  5397. "array": [
  5398. 0,
  5399. 0,
  5400. 0,
  5401. 0,
  5402. 0,
  5403. 0,
  5404. 1,
  5405. 0.9,
  5406. 0.9,
  5407. 1
  5408. ]
  5409. },
  5410. "_eulerAngles": {
  5411. "__type__": "cc.Vec3",
  5412. "x": 0,
  5413. "y": 0,
  5414. "z": 0
  5415. },
  5416. "_skewX": 0,
  5417. "_skewY": 0,
  5418. "_is3DNode": false,
  5419. "_groupIndex": 0,
  5420. "groupIndex": 0,
  5421. "_id": ""
  5422. },
  5423. {
  5424. "__type__": "cc.Sprite",
  5425. "_name": "",
  5426. "_objFlags": 0,
  5427. "node": {
  5428. "__id__": 147
  5429. },
  5430. "_enabled": true,
  5431. "_materials": [
  5432. {
  5433. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  5434. }
  5435. ],
  5436. "_srcBlendFactor": 770,
  5437. "_dstBlendFactor": 771,
  5438. "_spriteFrame": {
  5439. "__uuid__": "05b69229-67ad-42c3-bf71-09c34d9def2b"
  5440. },
  5441. "_type": 1,
  5442. "_sizeMode": 0,
  5443. "_fillType": 0,
  5444. "_fillCenter": {
  5445. "__type__": "cc.Vec2",
  5446. "x": 0,
  5447. "y": 0
  5448. },
  5449. "_fillStart": 0,
  5450. "_fillRange": 0,
  5451. "_isTrimmedMode": true,
  5452. "_atlas": null,
  5453. "_id": ""
  5454. },
  5455. {
  5456. "__type__": "cc.PrefabInfo",
  5457. "root": {
  5458. "__id__": 1
  5459. },
  5460. "asset": {
  5461. "__id__": 0
  5462. },
  5463. "fileId": "c7nDkKM2tBHJnhJCgSGp/V",
  5464. "sync": false
  5465. },
  5466. {
  5467. "__type__": "61994AafntNFIbmt1zoyLq+",
  5468. "_name": "",
  5469. "_objFlags": 0,
  5470. "node": {
  5471. "__id__": 129
  5472. },
  5473. "_enabled": true,
  5474. "_normalMaterial": null,
  5475. "_grayMaterial": null,
  5476. "duration": 0.1,
  5477. "zoomScale": 1.2,
  5478. "clickEvents": [],
  5479. "_N$interactable": true,
  5480. "_N$enableAutoGrayEffect": false,
  5481. "_N$transition": 0,
  5482. "transition": 0,
  5483. "_N$normalColor": {
  5484. "__type__": "cc.Color",
  5485. "r": 255,
  5486. "g": 255,
  5487. "b": 255,
  5488. "a": 255
  5489. },
  5490. "_N$pressedColor": {
  5491. "__type__": "cc.Color",
  5492. "r": 211,
  5493. "g": 211,
  5494. "b": 211,
  5495. "a": 255
  5496. },
  5497. "pressedColor": {
  5498. "__type__": "cc.Color",
  5499. "r": 211,
  5500. "g": 211,
  5501. "b": 211,
  5502. "a": 255
  5503. },
  5504. "_N$hoverColor": {
  5505. "__type__": "cc.Color",
  5506. "r": 255,
  5507. "g": 255,
  5508. "b": 255,
  5509. "a": 255
  5510. },
  5511. "hoverColor": {
  5512. "__type__": "cc.Color",
  5513. "r": 255,
  5514. "g": 255,
  5515. "b": 255,
  5516. "a": 255
  5517. },
  5518. "_N$disabledColor": {
  5519. "__type__": "cc.Color",
  5520. "r": 124,
  5521. "g": 124,
  5522. "b": 124,
  5523. "a": 255
  5524. },
  5525. "_N$normalSprite": null,
  5526. "_N$pressedSprite": null,
  5527. "pressedSprite": null,
  5528. "_N$hoverSprite": null,
  5529. "hoverSprite": null,
  5530. "_N$disabledSprite": null,
  5531. "_N$target": null,
  5532. "_id": ""
  5533. },
  5534. {
  5535. "__type__": "8bb20RZX+RMopL+jM3mntx4",
  5536. "_name": "",
  5537. "_objFlags": 0,
  5538. "node": {
  5539. "__id__": 129
  5540. },
  5541. "_enabled": true,
  5542. "icon": null,
  5543. "title": null,
  5544. "selectedMode": 1,
  5545. "selectedFlag": {
  5546. "__id__": 138
  5547. },
  5548. "selectedSpriteFrame": null,
  5549. "adaptiveSize": false,
  5550. "_id": ""
  5551. },
  5552. {
  5553. "__type__": "466e8BS6wJF6bKBj6rcxcSE",
  5554. "_name": "",
  5555. "_objFlags": 0,
  5556. "node": {
  5557. "__id__": 129
  5558. },
  5559. "_enabled": true,
  5560. "openContinuous": true,
  5561. "continuousTime": 0.2,
  5562. "multiTouch": false,
  5563. "_id": ""
  5564. },
  5565. {
  5566. "__type__": "cc.PrefabInfo",
  5567. "root": {
  5568. "__id__": 1
  5569. },
  5570. "asset": {
  5571. "__id__": 0
  5572. },
  5573. "fileId": "86kUWchClLAbTvXQB906VW",
  5574. "sync": false
  5575. },
  5576. {
  5577. "__type__": "cc.Layout",
  5578. "_name": "",
  5579. "_objFlags": 0,
  5580. "node": {
  5581. "__id__": 128
  5582. },
  5583. "_enabled": true,
  5584. "_layoutSize": {
  5585. "__type__": "cc.Size",
  5586. "width": 650,
  5587. "height": 780
  5588. },
  5589. "_resize": 0,
  5590. "_N$layoutType": 3,
  5591. "_N$cellSize": {
  5592. "__type__": "cc.Size",
  5593. "width": 40,
  5594. "height": 40
  5595. },
  5596. "_N$startAxis": 0,
  5597. "_N$paddingLeft": 12,
  5598. "_N$paddingRight": 0,
  5599. "_N$paddingTop": 19,
  5600. "_N$paddingBottom": 10,
  5601. "_N$spacingX": 11,
  5602. "_N$spacingY": 11,
  5603. "_N$verticalDirection": 1,
  5604. "_N$horizontalDirection": 0,
  5605. "_N$affectedByScale": false,
  5606. "_id": ""
  5607. },
  5608. {
  5609. "__type__": "cc.PrefabInfo",
  5610. "root": {
  5611. "__id__": 1
  5612. },
  5613. "asset": {
  5614. "__id__": 0
  5615. },
  5616. "fileId": "c7oJb59PpPr4+jsk/ZcJ5d",
  5617. "sync": false
  5618. },
  5619. {
  5620. "__type__": "cc.Mask",
  5621. "_name": "",
  5622. "_objFlags": 0,
  5623. "node": {
  5624. "__id__": 127
  5625. },
  5626. "_enabled": true,
  5627. "_materials": [
  5628. {
  5629. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  5630. }
  5631. ],
  5632. "_spriteFrame": null,
  5633. "_type": 0,
  5634. "_segments": 64,
  5635. "_N$alphaThreshold": 0,
  5636. "_N$inverted": false,
  5637. "_id": ""
  5638. },
  5639. {
  5640. "__type__": "cc.PrefabInfo",
  5641. "root": {
  5642. "__id__": 1
  5643. },
  5644. "asset": {
  5645. "__id__": 0
  5646. },
  5647. "fileId": "58ZsFGxINFRZZP3HDhPzyY",
  5648. "sync": false
  5649. },
  5650. {
  5651. "__type__": "cc.Node",
  5652. "_name": "lb",
  5653. "_objFlags": 0,
  5654. "_parent": {
  5655. "__id__": 126
  5656. },
  5657. "_children": [],
  5658. "_active": true,
  5659. "_components": [
  5660. {
  5661. "__id__": 159
  5662. },
  5663. {
  5664. "__id__": 160
  5665. },
  5666. {
  5667. "__id__": 161
  5668. }
  5669. ],
  5670. "_prefab": {
  5671. "__id__": 162
  5672. },
  5673. "_opacity": 255,
  5674. "_color": {
  5675. "__type__": "cc.Color",
  5676. "r": 255,
  5677. "g": 255,
  5678. "b": 255,
  5679. "a": 255
  5680. },
  5681. "_contentSize": {
  5682. "__type__": "cc.Size",
  5683. "width": 224.57,
  5684. "height": 56.4
  5685. },
  5686. "_anchorPoint": {
  5687. "__type__": "cc.Vec2",
  5688. "x": 0.5,
  5689. "y": 0.5
  5690. },
  5691. "_trs": {
  5692. "__type__": "TypedArray",
  5693. "ctor": "Float64Array",
  5694. "array": [
  5695. 0,
  5696. 0,
  5697. 0,
  5698. 0,
  5699. 0,
  5700. 0,
  5701. 1,
  5702. 1,
  5703. 1,
  5704. 1
  5705. ]
  5706. },
  5707. "_eulerAngles": {
  5708. "__type__": "cc.Vec3",
  5709. "x": 0,
  5710. "y": 0,
  5711. "z": 0
  5712. },
  5713. "_skewX": 0,
  5714. "_skewY": 0,
  5715. "_is3DNode": false,
  5716. "_groupIndex": 0,
  5717. "groupIndex": 0,
  5718. "_id": ""
  5719. },
  5720. {
  5721. "__type__": "cc.Label",
  5722. "_name": "",
  5723. "_objFlags": 0,
  5724. "node": {
  5725. "__id__": 158
  5726. },
  5727. "_enabled": true,
  5728. "_materials": [
  5729. {
  5730. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  5731. }
  5732. ],
  5733. "_srcBlendFactor": 770,
  5734. "_dstBlendFactor": 771,
  5735. "_string": "No equipment",
  5736. "_N$string": "No equipment",
  5737. "_fontSize": 36,
  5738. "_lineHeight": 40,
  5739. "_enableWrapText": true,
  5740. "_N$file": {
  5741. "__uuid__": "53fae5bd-72f8-48d5-9465-9798bf9bde5c"
  5742. },
  5743. "_isSystemFontUsed": false,
  5744. "_spacingX": 0,
  5745. "_batchAsBitmap": false,
  5746. "_styleFlags": 0,
  5747. "_underlineHeight": 0,
  5748. "_N$horizontalAlign": 1,
  5749. "_N$verticalAlign": 1,
  5750. "_N$fontFamily": "Arial",
  5751. "_N$overflow": 0,
  5752. "_N$cacheMode": 0,
  5753. "_id": ""
  5754. },
  5755. {
  5756. "__type__": "41ebaVoPpRA4Kp67XEdHfZn",
  5757. "_name": "",
  5758. "_objFlags": 0,
  5759. "node": {
  5760. "__id__": 158
  5761. },
  5762. "_enabled": true,
  5763. "_englishCase": 1,
  5764. "i18n_string": "t61",
  5765. "i18n_params": [
  5766. "1"
  5767. ],
  5768. "_addColon": false,
  5769. "_id": ""
  5770. },
  5771. {
  5772. "__type__": "cc.LabelOutline",
  5773. "_name": "",
  5774. "_objFlags": 0,
  5775. "node": {
  5776. "__id__": 158
  5777. },
  5778. "_enabled": true,
  5779. "_color": {
  5780. "__type__": "cc.Color",
  5781. "r": 38,
  5782. "g": 17,
  5783. "b": 12,
  5784. "a": 255
  5785. },
  5786. "_width": 3,
  5787. "_id": ""
  5788. },
  5789. {
  5790. "__type__": "cc.PrefabInfo",
  5791. "root": {
  5792. "__id__": 1
  5793. },
  5794. "asset": {
  5795. "__id__": 0
  5796. },
  5797. "fileId": "900v4KFDRAVagOCuumKPKy",
  5798. "sync": false
  5799. },
  5800. {
  5801. "__type__": "cc.ScrollView",
  5802. "_name": "",
  5803. "_objFlags": 0,
  5804. "node": {
  5805. "__id__": 126
  5806. },
  5807. "_enabled": true,
  5808. "horizontal": false,
  5809. "vertical": true,
  5810. "inertia": true,
  5811. "brake": 0.75,
  5812. "elastic": false,
  5813. "bounceDuration": 0.23,
  5814. "scrollEvents": [],
  5815. "cancelInnerEvents": true,
  5816. "_N$content": {
  5817. "__id__": 128
  5818. },
  5819. "content": {
  5820. "__id__": 128
  5821. },
  5822. "_N$horizontalScrollBar": null,
  5823. "_N$verticalScrollBar": null,
  5824. "_id": ""
  5825. },
  5826. {
  5827. "__type__": "c8b0avBBlRLLLMX0ufI4l6A",
  5828. "_name": "",
  5829. "_objFlags": 0,
  5830. "node": {
  5831. "__id__": 126
  5832. },
  5833. "_enabled": true,
  5834. "templateType": 1,
  5835. "tmpNode": {
  5836. "__id__": 129
  5837. },
  5838. "tmpPrefab": null,
  5839. "_slideMode": 1,
  5840. "pageDistance": 0.3,
  5841. "pageChangeEvent": {
  5842. "__id__": 165
  5843. },
  5844. "_virtual": true,
  5845. "cyclic": false,
  5846. "lackCenter": false,
  5847. "lackSlide": false,
  5848. "_updateRate": 0,
  5849. "frameByFrameRenderNum": 0,
  5850. "renderEvent": {
  5851. "__id__": 166
  5852. },
  5853. "selectedMode": 2,
  5854. "repeatEventSingle": false,
  5855. "selectedEvent": {
  5856. "__id__": 167
  5857. },
  5858. "_id": ""
  5859. },
  5860. {
  5861. "__type__": "cc.ClickEvent",
  5862. "target": null,
  5863. "component": "",
  5864. "_componentId": "",
  5865. "handler": "",
  5866. "customEventData": ""
  5867. },
  5868. {
  5869. "__type__": "cc.ClickEvent",
  5870. "target": {
  5871. "__id__": 1
  5872. },
  5873. "component": "",
  5874. "_componentId": "ac1b6sIq7BFa5uPq8b8pdyl",
  5875. "handler": "initEquipListItem",
  5876. "customEventData": ""
  5877. },
  5878. {
  5879. "__type__": "cc.ClickEvent",
  5880. "target": {
  5881. "__id__": 1
  5882. },
  5883. "component": "",
  5884. "_componentId": "ac1b6sIq7BFa5uPq8b8pdyl",
  5885. "handler": "onEquipClick",
  5886. "customEventData": ""
  5887. },
  5888. {
  5889. "__type__": "cc.Sprite",
  5890. "_name": "",
  5891. "_objFlags": 0,
  5892. "node": {
  5893. "__id__": 126
  5894. },
  5895. "_enabled": true,
  5896. "_materials": [
  5897. {
  5898. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  5899. }
  5900. ],
  5901. "_srcBlendFactor": 770,
  5902. "_dstBlendFactor": 771,
  5903. "_spriteFrame": {
  5904. "__uuid__": "f2a9fd92-10f7-4e39-b1e4-54d0059b8c1f"
  5905. },
  5906. "_type": 1,
  5907. "_sizeMode": 0,
  5908. "_fillType": 0,
  5909. "_fillCenter": {
  5910. "__type__": "cc.Vec2",
  5911. "x": 0,
  5912. "y": 0
  5913. },
  5914. "_fillStart": 0,
  5915. "_fillRange": 0,
  5916. "_isTrimmedMode": true,
  5917. "_atlas": null,
  5918. "_id": ""
  5919. },
  5920. {
  5921. "__type__": "cc.PrefabInfo",
  5922. "root": {
  5923. "__id__": 1
  5924. },
  5925. "asset": {
  5926. "__id__": 0
  5927. },
  5928. "fileId": "37PETIfiBO2K8ytPoJtDQk",
  5929. "sync": false
  5930. },
  5931. {
  5932. "__type__": "cc.Node",
  5933. "_name": "chooseType",
  5934. "_objFlags": 0,
  5935. "_parent": {
  5936. "__id__": 1
  5937. },
  5938. "_children": [
  5939. {
  5940. "__id__": 171
  5941. },
  5942. {
  5943. "__id__": 174
  5944. }
  5945. ],
  5946. "_active": false,
  5947. "_components": [
  5948. {
  5949. "__id__": 299
  5950. }
  5951. ],
  5952. "_prefab": {
  5953. "__id__": 300
  5954. },
  5955. "_opacity": 255,
  5956. "_color": {
  5957. "__type__": "cc.Color",
  5958. "r": 255,
  5959. "g": 255,
  5960. "b": 255,
  5961. "a": 255
  5962. },
  5963. "_contentSize": {
  5964. "__type__": "cc.Size",
  5965. "width": 650,
  5966. "height": 250
  5967. },
  5968. "_anchorPoint": {
  5969. "__type__": "cc.Vec2",
  5970. "x": 0.5,
  5971. "y": 0.5
  5972. },
  5973. "_trs": {
  5974. "__type__": "TypedArray",
  5975. "ctor": "Float64Array",
  5976. "array": [
  5977. 578.462,
  5978. -342.965,
  5979. 0,
  5980. 0,
  5981. 0,
  5982. 0,
  5983. 1,
  5984. 1,
  5985. 1,
  5986. 1
  5987. ]
  5988. },
  5989. "_eulerAngles": {
  5990. "__type__": "cc.Vec3",
  5991. "x": 0,
  5992. "y": 0,
  5993. "z": 0
  5994. },
  5995. "_skewX": 0,
  5996. "_skewY": 0,
  5997. "_is3DNode": false,
  5998. "_groupIndex": 0,
  5999. "groupIndex": 0,
  6000. "_id": ""
  6001. },
  6002. {
  6003. "__type__": "cc.Node",
  6004. "_name": "common_frame1",
  6005. "_objFlags": 0,
  6006. "_parent": {
  6007. "__id__": 170
  6008. },
  6009. "_children": [],
  6010. "_active": true,
  6011. "_components": [
  6012. {
  6013. "__id__": 172
  6014. }
  6015. ],
  6016. "_prefab": {
  6017. "__id__": 173
  6018. },
  6019. "_opacity": 255,
  6020. "_color": {
  6021. "__type__": "cc.Color",
  6022. "r": 255,
  6023. "g": 255,
  6024. "b": 255,
  6025. "a": 255
  6026. },
  6027. "_contentSize": {
  6028. "__type__": "cc.Size",
  6029. "width": 650,
  6030. "height": 250
  6031. },
  6032. "_anchorPoint": {
  6033. "__type__": "cc.Vec2",
  6034. "x": 0.5,
  6035. "y": 0.5
  6036. },
  6037. "_trs": {
  6038. "__type__": "TypedArray",
  6039. "ctor": "Float64Array",
  6040. "array": [
  6041. 0,
  6042. 0,
  6043. 0,
  6044. 0,
  6045. 0,
  6046. 0,
  6047. 1,
  6048. 1,
  6049. 1,
  6050. 1
  6051. ]
  6052. },
  6053. "_eulerAngles": {
  6054. "__type__": "cc.Vec3",
  6055. "x": 0,
  6056. "y": 0,
  6057. "z": 0
  6058. },
  6059. "_skewX": 0,
  6060. "_skewY": 0,
  6061. "_is3DNode": false,
  6062. "_groupIndex": 0,
  6063. "groupIndex": 0,
  6064. "_id": ""
  6065. },
  6066. {
  6067. "__type__": "cc.Sprite",
  6068. "_name": "",
  6069. "_objFlags": 0,
  6070. "node": {
  6071. "__id__": 171
  6072. },
  6073. "_enabled": true,
  6074. "_materials": [
  6075. {
  6076. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  6077. }
  6078. ],
  6079. "_srcBlendFactor": 770,
  6080. "_dstBlendFactor": 771,
  6081. "_spriteFrame": {
  6082. "__uuid__": "a75724db-0345-46b3-bba1-6ea6743fbe06"
  6083. },
  6084. "_type": 1,
  6085. "_sizeMode": 0,
  6086. "_fillType": 0,
  6087. "_fillCenter": {
  6088. "__type__": "cc.Vec2",
  6089. "x": 0,
  6090. "y": 0
  6091. },
  6092. "_fillStart": 0,
  6093. "_fillRange": 0,
  6094. "_isTrimmedMode": true,
  6095. "_atlas": null,
  6096. "_id": ""
  6097. },
  6098. {
  6099. "__type__": "cc.PrefabInfo",
  6100. "root": {
  6101. "__id__": 1
  6102. },
  6103. "asset": {
  6104. "__id__": 0
  6105. },
  6106. "fileId": "c3epWIThJJQL2rkdUDG8Nd",
  6107. "sync": false
  6108. },
  6109. {
  6110. "__type__": "cc.Node",
  6111. "_name": "items",
  6112. "_objFlags": 0,
  6113. "_parent": {
  6114. "__id__": 170
  6115. },
  6116. "_children": [
  6117. {
  6118. "__id__": 175
  6119. },
  6120. {
  6121. "__id__": 196
  6122. },
  6123. {
  6124. "__id__": 213
  6125. },
  6126. {
  6127. "__id__": 230
  6128. },
  6129. {
  6130. "__id__": 247
  6131. },
  6132. {
  6133. "__id__": 264
  6134. },
  6135. {
  6136. "__id__": 281
  6137. }
  6138. ],
  6139. "_active": true,
  6140. "_components": [],
  6141. "_prefab": {
  6142. "__id__": 298
  6143. },
  6144. "_opacity": 255,
  6145. "_color": {
  6146. "__type__": "cc.Color",
  6147. "r": 255,
  6148. "g": 255,
  6149. "b": 255,
  6150. "a": 255
  6151. },
  6152. "_contentSize": {
  6153. "__type__": "cc.Size",
  6154. "width": 0,
  6155. "height": 0
  6156. },
  6157. "_anchorPoint": {
  6158. "__type__": "cc.Vec2",
  6159. "x": 0.5,
  6160. "y": 0.5
  6161. },
  6162. "_trs": {
  6163. "__type__": "TypedArray",
  6164. "ctor": "Float64Array",
  6165. "array": [
  6166. 0,
  6167. 0,
  6168. 0,
  6169. 0,
  6170. 0,
  6171. 0,
  6172. 1,
  6173. 1,
  6174. 1,
  6175. 1
  6176. ]
  6177. },
  6178. "_eulerAngles": {
  6179. "__type__": "cc.Vec3",
  6180. "x": 0,
  6181. "y": 0,
  6182. "z": 0
  6183. },
  6184. "_skewX": 0,
  6185. "_skewY": 0,
  6186. "_is3DNode": false,
  6187. "_groupIndex": 0,
  6188. "groupIndex": 0,
  6189. "_id": ""
  6190. },
  6191. {
  6192. "__type__": "cc.Node",
  6193. "_name": "item",
  6194. "_objFlags": 0,
  6195. "_parent": {
  6196. "__id__": 174
  6197. },
  6198. "_children": [
  6199. {
  6200. "__id__": 176
  6201. },
  6202. {
  6203. "__id__": 184
  6204. }
  6205. ],
  6206. "_active": true,
  6207. "_components": [
  6208. {
  6209. "__id__": 192
  6210. },
  6211. {
  6212. "__id__": 193
  6213. }
  6214. ],
  6215. "_prefab": {
  6216. "__id__": 195
  6217. },
  6218. "_opacity": 255,
  6219. "_color": {
  6220. "__type__": "cc.Color",
  6221. "r": 255,
  6222. "g": 255,
  6223. "b": 255,
  6224. "a": 255
  6225. },
  6226. "_contentSize": {
  6227. "__type__": "cc.Size",
  6228. "width": 126,
  6229. "height": 160
  6230. },
  6231. "_anchorPoint": {
  6232. "__type__": "cc.Vec2",
  6233. "x": 0.5,
  6234. "y": 0.5
  6235. },
  6236. "_trs": {
  6237. "__type__": "TypedArray",
  6238. "ctor": "Float64Array",
  6239. "array": [
  6240. -241.465,
  6241. 22.24,
  6242. 0,
  6243. 0,
  6244. 0,
  6245. 0,
  6246. 1,
  6247. 1,
  6248. 1,
  6249. 1
  6250. ]
  6251. },
  6252. "_eulerAngles": {
  6253. "__type__": "cc.Vec3",
  6254. "x": 0,
  6255. "y": 0,
  6256. "z": 0
  6257. },
  6258. "_skewX": 0,
  6259. "_skewY": 0,
  6260. "_is3DNode": false,
  6261. "_groupIndex": 0,
  6262. "groupIndex": 0,
  6263. "_id": ""
  6264. },
  6265. {
  6266. "__type__": "cc.Node",
  6267. "_name": "paging2",
  6268. "_objFlags": 0,
  6269. "_parent": {
  6270. "__id__": 175
  6271. },
  6272. "_children": [
  6273. {
  6274. "__id__": 177
  6275. }
  6276. ],
  6277. "_active": true,
  6278. "_components": [
  6279. {
  6280. "__id__": 182
  6281. }
  6282. ],
  6283. "_prefab": {
  6284. "__id__": 183
  6285. },
  6286. "_opacity": 255,
  6287. "_color": {
  6288. "__type__": "cc.Color",
  6289. "r": 255,
  6290. "g": 255,
  6291. "b": 255,
  6292. "a": 255
  6293. },
  6294. "_contentSize": {
  6295. "__type__": "cc.Size",
  6296. "width": 126,
  6297. "height": 160
  6298. },
  6299. "_anchorPoint": {
  6300. "__type__": "cc.Vec2",
  6301. "x": 0.5,
  6302. "y": 0.5
  6303. },
  6304. "_trs": {
  6305. "__type__": "TypedArray",
  6306. "ctor": "Float64Array",
  6307. "array": [
  6308. 0,
  6309. 0,
  6310. 0,
  6311. 0,
  6312. 0,
  6313. 0,
  6314. 1,
  6315. 1,
  6316. 1,
  6317. 1
  6318. ]
  6319. },
  6320. "_eulerAngles": {
  6321. "__type__": "cc.Vec3",
  6322. "x": 0,
  6323. "y": 0,
  6324. "z": 0
  6325. },
  6326. "_skewX": 0,
  6327. "_skewY": 0,
  6328. "_is3DNode": false,
  6329. "_groupIndex": 0,
  6330. "groupIndex": 0,
  6331. "_id": ""
  6332. },
  6333. {
  6334. "__type__": "cc.Node",
  6335. "_name": "label",
  6336. "_objFlags": 0,
  6337. "_parent": {
  6338. "__id__": 176
  6339. },
  6340. "_children": [],
  6341. "_active": true,
  6342. "_components": [
  6343. {
  6344. "__id__": 178
  6345. },
  6346. {
  6347. "__id__": 179
  6348. },
  6349. {
  6350. "__id__": 180
  6351. }
  6352. ],
  6353. "_prefab": {
  6354. "__id__": 181
  6355. },
  6356. "_opacity": 255,
  6357. "_color": {
  6358. "__type__": "cc.Color",
  6359. "r": 170,
  6360. "g": 170,
  6361. "b": 170,
  6362. "a": 255
  6363. },
  6364. "_contentSize": {
  6365. "__type__": "cc.Size",
  6366. "width": 84.49,
  6367. "height": 46
  6368. },
  6369. "_anchorPoint": {
  6370. "__type__": "cc.Vec2",
  6371. "x": 0.5,
  6372. "y": 0.5
  6373. },
  6374. "_trs": {
  6375. "__type__": "TypedArray",
  6376. "ctor": "Float64Array",
  6377. "array": [
  6378. 0,
  6379. 0,
  6380. 0,
  6381. 0,
  6382. 0,
  6383. 0,
  6384. 1,
  6385. 1,
  6386. 1,
  6387. 1
  6388. ]
  6389. },
  6390. "_eulerAngles": {
  6391. "__type__": "cc.Vec3",
  6392. "x": 0,
  6393. "y": 0,
  6394. "z": 0
  6395. },
  6396. "_skewX": 0,
  6397. "_skewY": 0,
  6398. "_is3DNode": false,
  6399. "_groupIndex": 0,
  6400. "groupIndex": 0,
  6401. "_id": ""
  6402. },
  6403. {
  6404. "__type__": "cc.Label",
  6405. "_name": "",
  6406. "_objFlags": 0,
  6407. "node": {
  6408. "__id__": 177
  6409. },
  6410. "_enabled": true,
  6411. "_materials": [
  6412. null
  6413. ],
  6414. "_srcBlendFactor": 770,
  6415. "_dstBlendFactor": 771,
  6416. "_string": "ALL",
  6417. "_N$string": "ALL",
  6418. "_fontSize": 36,
  6419. "_lineHeight": 40,
  6420. "_enableWrapText": true,
  6421. "_N$file": {
  6422. "__uuid__": "53fae5bd-72f8-48d5-9465-9798bf9bde5c"
  6423. },
  6424. "_isSystemFontUsed": false,
  6425. "_spacingX": 0,
  6426. "_batchAsBitmap": false,
  6427. "_styleFlags": 0,
  6428. "_underlineHeight": 0,
  6429. "_N$horizontalAlign": 1,
  6430. "_N$verticalAlign": 1,
  6431. "_N$fontFamily": "Arial",
  6432. "_N$overflow": 0,
  6433. "_N$cacheMode": 0,
  6434. "_id": ""
  6435. },
  6436. {
  6437. "__type__": "cc.LabelOutline",
  6438. "_name": "",
  6439. "_objFlags": 0,
  6440. "node": {
  6441. "__id__": 177
  6442. },
  6443. "_enabled": true,
  6444. "_color": {
  6445. "__type__": "cc.Color",
  6446. "r": 38,
  6447. "g": 17,
  6448. "b": 12,
  6449. "a": 255
  6450. },
  6451. "_width": 3,
  6452. "_id": ""
  6453. },
  6454. {
  6455. "__type__": "41ebaVoPpRA4Kp67XEdHfZn",
  6456. "_name": "",
  6457. "_objFlags": 0,
  6458. "node": {
  6459. "__id__": 177
  6460. },
  6461. "_enabled": true,
  6462. "_englishCase": 2,
  6463. "i18n_string": "t62",
  6464. "i18n_params": [],
  6465. "_addColon": false,
  6466. "_id": ""
  6467. },
  6468. {
  6469. "__type__": "cc.PrefabInfo",
  6470. "root": {
  6471. "__id__": 177
  6472. },
  6473. "asset": {
  6474. "__uuid__": "b55c4816-1512-4abe-a683-117b4601b39a"
  6475. },
  6476. "fileId": "8c5dKEznBDV5g1mi3QKcNO",
  6477. "sync": false
  6478. },
  6479. {
  6480. "__type__": "cc.Sprite",
  6481. "_name": "",
  6482. "_objFlags": 0,
  6483. "node": {
  6484. "__id__": 176
  6485. },
  6486. "_enabled": true,
  6487. "_materials": [
  6488. {
  6489. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  6490. }
  6491. ],
  6492. "_srcBlendFactor": 770,
  6493. "_dstBlendFactor": 771,
  6494. "_spriteFrame": {
  6495. "__uuid__": "e5c440fd-41bb-4128-bf90-5c74b8550af2"
  6496. },
  6497. "_type": 1,
  6498. "_sizeMode": 0,
  6499. "_fillType": 0,
  6500. "_fillCenter": {
  6501. "__type__": "cc.Vec2",
  6502. "x": 0,
  6503. "y": 0
  6504. },
  6505. "_fillStart": 0,
  6506. "_fillRange": 0,
  6507. "_isTrimmedMode": true,
  6508. "_atlas": null,
  6509. "_id": ""
  6510. },
  6511. {
  6512. "__type__": "cc.PrefabInfo",
  6513. "root": {
  6514. "__id__": 1
  6515. },
  6516. "asset": {
  6517. "__id__": 0
  6518. },
  6519. "fileId": "495E+AR1tOsYIrtAOh/PAW",
  6520. "sync": false
  6521. },
  6522. {
  6523. "__type__": "cc.Node",
  6524. "_name": "choose",
  6525. "_objFlags": 0,
  6526. "_parent": {
  6527. "__id__": 175
  6528. },
  6529. "_children": [
  6530. {
  6531. "__id__": 185
  6532. }
  6533. ],
  6534. "_active": true,
  6535. "_components": [
  6536. {
  6537. "__id__": 190
  6538. }
  6539. ],
  6540. "_prefab": {
  6541. "__id__": 191
  6542. },
  6543. "_opacity": 255,
  6544. "_color": {
  6545. "__type__": "cc.Color",
  6546. "r": 255,
  6547. "g": 255,
  6548. "b": 255,
  6549. "a": 255
  6550. },
  6551. "_contentSize": {
  6552. "__type__": "cc.Size",
  6553. "width": 126,
  6554. "height": 160
  6555. },
  6556. "_anchorPoint": {
  6557. "__type__": "cc.Vec2",
  6558. "x": 0.5,
  6559. "y": 0.5
  6560. },
  6561. "_trs": {
  6562. "__type__": "TypedArray",
  6563. "ctor": "Float64Array",
  6564. "array": [
  6565. 0,
  6566. 0,
  6567. 0,
  6568. 0,
  6569. 0,
  6570. 0,
  6571. 1,
  6572. 1,
  6573. 1,
  6574. 1
  6575. ]
  6576. },
  6577. "_eulerAngles": {
  6578. "__type__": "cc.Vec3",
  6579. "x": 0,
  6580. "y": 0,
  6581. "z": 0
  6582. },
  6583. "_skewX": 0,
  6584. "_skewY": 0,
  6585. "_is3DNode": false,
  6586. "_groupIndex": 0,
  6587. "groupIndex": 0,
  6588. "_id": ""
  6589. },
  6590. {
  6591. "__type__": "cc.Node",
  6592. "_name": "label",
  6593. "_objFlags": 0,
  6594. "_parent": {
  6595. "__id__": 184
  6596. },
  6597. "_children": [],
  6598. "_active": true,
  6599. "_components": [
  6600. {
  6601. "__id__": 186
  6602. },
  6603. {
  6604. "__id__": 187
  6605. },
  6606. {
  6607. "__id__": 188
  6608. }
  6609. ],
  6610. "_prefab": {
  6611. "__id__": 189
  6612. },
  6613. "_opacity": 255,
  6614. "_color": {
  6615. "__type__": "cc.Color",
  6616. "r": 255,
  6617. "g": 239,
  6618. "b": 129,
  6619. "a": 255
  6620. },
  6621. "_contentSize": {
  6622. "__type__": "cc.Size",
  6623. "width": 84.49,
  6624. "height": 46
  6625. },
  6626. "_anchorPoint": {
  6627. "__type__": "cc.Vec2",
  6628. "x": 0.5,
  6629. "y": 0.5
  6630. },
  6631. "_trs": {
  6632. "__type__": "TypedArray",
  6633. "ctor": "Float64Array",
  6634. "array": [
  6635. 0,
  6636. 0,
  6637. 0,
  6638. 0,
  6639. 0,
  6640. 0,
  6641. 1,
  6642. 1,
  6643. 1,
  6644. 1
  6645. ]
  6646. },
  6647. "_eulerAngles": {
  6648. "__type__": "cc.Vec3",
  6649. "x": 0,
  6650. "y": 0,
  6651. "z": 0
  6652. },
  6653. "_skewX": 0,
  6654. "_skewY": 0,
  6655. "_is3DNode": false,
  6656. "_groupIndex": 0,
  6657. "groupIndex": 0,
  6658. "_id": ""
  6659. },
  6660. {
  6661. "__type__": "cc.Label",
  6662. "_name": "",
  6663. "_objFlags": 0,
  6664. "node": {
  6665. "__id__": 185
  6666. },
  6667. "_enabled": true,
  6668. "_materials": [
  6669. null
  6670. ],
  6671. "_srcBlendFactor": 770,
  6672. "_dstBlendFactor": 771,
  6673. "_string": "ALL",
  6674. "_N$string": "ALL",
  6675. "_fontSize": 36,
  6676. "_lineHeight": 40,
  6677. "_enableWrapText": true,
  6678. "_N$file": {
  6679. "__uuid__": "53fae5bd-72f8-48d5-9465-9798bf9bde5c"
  6680. },
  6681. "_isSystemFontUsed": false,
  6682. "_spacingX": 0,
  6683. "_batchAsBitmap": false,
  6684. "_styleFlags": 0,
  6685. "_underlineHeight": 0,
  6686. "_N$horizontalAlign": 1,
  6687. "_N$verticalAlign": 1,
  6688. "_N$fontFamily": "Arial",
  6689. "_N$overflow": 0,
  6690. "_N$cacheMode": 0,
  6691. "_id": ""
  6692. },
  6693. {
  6694. "__type__": "cc.LabelOutline",
  6695. "_name": "",
  6696. "_objFlags": 0,
  6697. "node": {
  6698. "__id__": 185
  6699. },
  6700. "_enabled": true,
  6701. "_color": {
  6702. "__type__": "cc.Color",
  6703. "r": 38,
  6704. "g": 17,
  6705. "b": 12,
  6706. "a": 255
  6707. },
  6708. "_width": 3,
  6709. "_id": ""
  6710. },
  6711. {
  6712. "__type__": "41ebaVoPpRA4Kp67XEdHfZn",
  6713. "_name": "",
  6714. "_objFlags": 0,
  6715. "node": {
  6716. "__id__": 185
  6717. },
  6718. "_enabled": true,
  6719. "_englishCase": 2,
  6720. "i18n_string": "t62",
  6721. "i18n_params": [],
  6722. "_addColon": false,
  6723. "_id": ""
  6724. },
  6725. {
  6726. "__type__": "cc.PrefabInfo",
  6727. "root": {
  6728. "__id__": 185
  6729. },
  6730. "asset": {
  6731. "__uuid__": "b55c4816-1512-4abe-a683-117b4601b39a"
  6732. },
  6733. "fileId": "ddJ+91qzVFMJQHXAI7Qk5R",
  6734. "sync": false
  6735. },
  6736. {
  6737. "__type__": "cc.Sprite",
  6738. "_name": "",
  6739. "_objFlags": 0,
  6740. "node": {
  6741. "__id__": 184
  6742. },
  6743. "_enabled": true,
  6744. "_materials": [
  6745. {
  6746. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  6747. }
  6748. ],
  6749. "_srcBlendFactor": 770,
  6750. "_dstBlendFactor": 771,
  6751. "_spriteFrame": {
  6752. "__uuid__": "16ef86cd-a92f-48eb-8d2d-8b5be206246e"
  6753. },
  6754. "_type": 1,
  6755. "_sizeMode": 0,
  6756. "_fillType": 0,
  6757. "_fillCenter": {
  6758. "__type__": "cc.Vec2",
  6759. "x": 0,
  6760. "y": 0
  6761. },
  6762. "_fillStart": 0,
  6763. "_fillRange": 0,
  6764. "_isTrimmedMode": true,
  6765. "_atlas": null,
  6766. "_id": ""
  6767. },
  6768. {
  6769. "__type__": "cc.PrefabInfo",
  6770. "root": {
  6771. "__id__": 1
  6772. },
  6773. "asset": {
  6774. "__id__": 0
  6775. },
  6776. "fileId": "ceN29OKcdGK6BwqHUQ7jrd",
  6777. "sync": false
  6778. },
  6779. {
  6780. "__type__": "466e8BS6wJF6bKBj6rcxcSE",
  6781. "_name": "",
  6782. "_objFlags": 0,
  6783. "node": {
  6784. "__id__": 175
  6785. },
  6786. "_enabled": true,
  6787. "openContinuous": true,
  6788. "continuousTime": 0.2,
  6789. "multiTouch": false,
  6790. "_id": ""
  6791. },
  6792. {
  6793. "__type__": "61994AafntNFIbmt1zoyLq+",
  6794. "_name": "",
  6795. "_objFlags": 0,
  6796. "node": {
  6797. "__id__": 175
  6798. },
  6799. "_enabled": true,
  6800. "_normalMaterial": null,
  6801. "_grayMaterial": null,
  6802. "duration": 0.1,
  6803. "zoomScale": 1.2,
  6804. "clickEvents": [
  6805. {
  6806. "__id__": 194
  6807. }
  6808. ],
  6809. "_N$interactable": true,
  6810. "_N$enableAutoGrayEffect": false,
  6811. "_N$transition": 0,
  6812. "transition": 0,
  6813. "_N$normalColor": {
  6814. "__type__": "cc.Color",
  6815. "r": 255,
  6816. "g": 255,
  6817. "b": 255,
  6818. "a": 255
  6819. },
  6820. "_N$pressedColor": {
  6821. "__type__": "cc.Color",
  6822. "r": 211,
  6823. "g": 211,
  6824. "b": 211,
  6825. "a": 255
  6826. },
  6827. "pressedColor": {
  6828. "__type__": "cc.Color",
  6829. "r": 211,
  6830. "g": 211,
  6831. "b": 211,
  6832. "a": 255
  6833. },
  6834. "_N$hoverColor": {
  6835. "__type__": "cc.Color",
  6836. "r": 255,
  6837. "g": 255,
  6838. "b": 255,
  6839. "a": 255
  6840. },
  6841. "hoverColor": {
  6842. "__type__": "cc.Color",
  6843. "r": 255,
  6844. "g": 255,
  6845. "b": 255,
  6846. "a": 255
  6847. },
  6848. "_N$disabledColor": {
  6849. "__type__": "cc.Color",
  6850. "r": 124,
  6851. "g": 124,
  6852. "b": 124,
  6853. "a": 255
  6854. },
  6855. "_N$normalSprite": null,
  6856. "_N$pressedSprite": null,
  6857. "pressedSprite": null,
  6858. "_N$hoverSprite": null,
  6859. "hoverSprite": null,
  6860. "_N$disabledSprite": null,
  6861. "_N$target": null,
  6862. "_id": ""
  6863. },
  6864. {
  6865. "__type__": "cc.ClickEvent",
  6866. "target": {
  6867. "__id__": 1
  6868. },
  6869. "component": "",
  6870. "_componentId": "ac1b6sIq7BFa5uPq8b8pdyl",
  6871. "handler": "onChooseEquipItemClick",
  6872. "customEventData": "0"
  6873. },
  6874. {
  6875. "__type__": "cc.PrefabInfo",
  6876. "root": {
  6877. "__id__": 1
  6878. },
  6879. "asset": {
  6880. "__id__": 0
  6881. },
  6882. "fileId": "24MNpxUV9HIJRMQ3DpFFa+",
  6883. "sync": false
  6884. },
  6885. {
  6886. "__type__": "cc.Node",
  6887. "_name": "item",
  6888. "_objFlags": 0,
  6889. "_parent": {
  6890. "__id__": 174
  6891. },
  6892. "_children": [
  6893. {
  6894. "__id__": 197
  6895. },
  6896. {
  6897. "__id__": 203
  6898. }
  6899. ],
  6900. "_active": true,
  6901. "_components": [
  6902. {
  6903. "__id__": 209
  6904. },
  6905. {
  6906. "__id__": 210
  6907. }
  6908. ],
  6909. "_prefab": {
  6910. "__id__": 212
  6911. },
  6912. "_opacity": 255,
  6913. "_color": {
  6914. "__type__": "cc.Color",
  6915. "r": 255,
  6916. "g": 255,
  6917. "b": 255,
  6918. "a": 255
  6919. },
  6920. "_contentSize": {
  6921. "__type__": "cc.Size",
  6922. "width": 156,
  6923. "height": 76
  6924. },
  6925. "_anchorPoint": {
  6926. "__type__": "cc.Vec2",
  6927. "x": 0.5,
  6928. "y": 0.5
  6929. },
  6930. "_trs": {
  6931. "__type__": "TypedArray",
  6932. "ctor": "Float64Array",
  6933. "array": [
  6934. -94.063,
  6935. 63.028,
  6936. 0,
  6937. 0,
  6938. 0,
  6939. 0,
  6940. 1,
  6941. 1,
  6942. 1,
  6943. 1
  6944. ]
  6945. },
  6946. "_eulerAngles": {
  6947. "__type__": "cc.Vec3",
  6948. "x": 0,
  6949. "y": 0,
  6950. "z": 0
  6951. },
  6952. "_skewX": 0,
  6953. "_skewY": 0,
  6954. "_is3DNode": false,
  6955. "_groupIndex": 0,
  6956. "groupIndex": 0,
  6957. "_id": ""
  6958. },
  6959. {
  6960. "__type__": "cc.Node",
  6961. "_name": "paging2",
  6962. "_objFlags": 0,
  6963. "_parent": {
  6964. "__id__": 196
  6965. },
  6966. "_children": [
  6967. {
  6968. "__id__": 198
  6969. }
  6970. ],
  6971. "_active": true,
  6972. "_components": [
  6973. {
  6974. "__id__": 201
  6975. }
  6976. ],
  6977. "_prefab": {
  6978. "__id__": 202
  6979. },
  6980. "_opacity": 255,
  6981. "_color": {
  6982. "__type__": "cc.Color",
  6983. "r": 255,
  6984. "g": 255,
  6985. "b": 255,
  6986. "a": 255
  6987. },
  6988. "_contentSize": {
  6989. "__type__": "cc.Size",
  6990. "width": 156,
  6991. "height": 76
  6992. },
  6993. "_anchorPoint": {
  6994. "__type__": "cc.Vec2",
  6995. "x": 0.5,
  6996. "y": 0.5
  6997. },
  6998. "_trs": {
  6999. "__type__": "TypedArray",
  7000. "ctor": "Float64Array",
  7001. "array": [
  7002. 0,
  7003. 0,
  7004. 0,
  7005. 0,
  7006. 0,
  7007. 0,
  7008. 1,
  7009. 1,
  7010. 1,
  7011. 1
  7012. ]
  7013. },
  7014. "_eulerAngles": {
  7015. "__type__": "cc.Vec3",
  7016. "x": 0,
  7017. "y": 0,
  7018. "z": 0
  7019. },
  7020. "_skewX": 0,
  7021. "_skewY": 0,
  7022. "_is3DNode": false,
  7023. "_groupIndex": 0,
  7024. "groupIndex": 0,
  7025. "_id": ""
  7026. },
  7027. {
  7028. "__type__": "cc.Node",
  7029. "_name": "filter_icon",
  7030. "_objFlags": 0,
  7031. "_parent": {
  7032. "__id__": 197
  7033. },
  7034. "_children": [],
  7035. "_active": true,
  7036. "_components": [
  7037. {
  7038. "__id__": 199
  7039. }
  7040. ],
  7041. "_prefab": {
  7042. "__id__": 200
  7043. },
  7044. "_opacity": 255,
  7045. "_color": {
  7046. "__type__": "cc.Color",
  7047. "r": 255,
  7048. "g": 255,
  7049. "b": 255,
  7050. "a": 255
  7051. },
  7052. "_contentSize": {
  7053. "__type__": "cc.Size",
  7054. "width": 56,
  7055. "height": 55
  7056. },
  7057. "_anchorPoint": {
  7058. "__type__": "cc.Vec2",
  7059. "x": 0.5,
  7060. "y": 0.5
  7061. },
  7062. "_trs": {
  7063. "__type__": "TypedArray",
  7064. "ctor": "Float64Array",
  7065. "array": [
  7066. 0,
  7067. 0,
  7068. 0,
  7069. 0,
  7070. 0,
  7071. 0,
  7072. 1,
  7073. 1,
  7074. 1,
  7075. 1
  7076. ]
  7077. },
  7078. "_eulerAngles": {
  7079. "__type__": "cc.Vec3",
  7080. "x": 0,
  7081. "y": 0,
  7082. "z": 0
  7083. },
  7084. "_skewX": 0,
  7085. "_skewY": 0,
  7086. "_is3DNode": false,
  7087. "_groupIndex": 0,
  7088. "groupIndex": 0,
  7089. "_id": ""
  7090. },
  7091. {
  7092. "__type__": "cc.Sprite",
  7093. "_name": "",
  7094. "_objFlags": 0,
  7095. "node": {
  7096. "__id__": 198
  7097. },
  7098. "_enabled": true,
  7099. "_materials": [
  7100. {
  7101. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  7102. }
  7103. ],
  7104. "_srcBlendFactor": 770,
  7105. "_dstBlendFactor": 771,
  7106. "_spriteFrame": {
  7107. "__uuid__": "918dcbdb-d54b-44e5-a193-192507ab338c"
  7108. },
  7109. "_type": 0,
  7110. "_sizeMode": 1,
  7111. "_fillType": 0,
  7112. "_fillCenter": {
  7113. "__type__": "cc.Vec2",
  7114. "x": 0,
  7115. "y": 0
  7116. },
  7117. "_fillStart": 0,
  7118. "_fillRange": 0,
  7119. "_isTrimmedMode": true,
  7120. "_atlas": null,
  7121. "_id": ""
  7122. },
  7123. {
  7124. "__type__": "cc.PrefabInfo",
  7125. "root": {
  7126. "__id__": 1
  7127. },
  7128. "asset": {
  7129. "__id__": 0
  7130. },
  7131. "fileId": "ceMOZe3bJKYaIc0wujwzH7",
  7132. "sync": false
  7133. },
  7134. {
  7135. "__type__": "cc.Sprite",
  7136. "_name": "",
  7137. "_objFlags": 0,
  7138. "node": {
  7139. "__id__": 197
  7140. },
  7141. "_enabled": true,
  7142. "_materials": [
  7143. {
  7144. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  7145. }
  7146. ],
  7147. "_srcBlendFactor": 770,
  7148. "_dstBlendFactor": 771,
  7149. "_spriteFrame": {
  7150. "__uuid__": "e5c440fd-41bb-4128-bf90-5c74b8550af2"
  7151. },
  7152. "_type": 1,
  7153. "_sizeMode": 0,
  7154. "_fillType": 0,
  7155. "_fillCenter": {
  7156. "__type__": "cc.Vec2",
  7157. "x": 0,
  7158. "y": 0
  7159. },
  7160. "_fillStart": 0,
  7161. "_fillRange": 0,
  7162. "_isTrimmedMode": true,
  7163. "_atlas": null,
  7164. "_id": ""
  7165. },
  7166. {
  7167. "__type__": "cc.PrefabInfo",
  7168. "root": {
  7169. "__id__": 1
  7170. },
  7171. "asset": {
  7172. "__id__": 0
  7173. },
  7174. "fileId": "ab3ifPJ6dEzL8TxK5ZZfJx",
  7175. "sync": false
  7176. },
  7177. {
  7178. "__type__": "cc.Node",
  7179. "_name": "choose",
  7180. "_objFlags": 0,
  7181. "_parent": {
  7182. "__id__": 196
  7183. },
  7184. "_children": [
  7185. {
  7186. "__id__": 204
  7187. }
  7188. ],
  7189. "_active": false,
  7190. "_components": [
  7191. {
  7192. "__id__": 207
  7193. }
  7194. ],
  7195. "_prefab": {
  7196. "__id__": 208
  7197. },
  7198. "_opacity": 255,
  7199. "_color": {
  7200. "__type__": "cc.Color",
  7201. "r": 255,
  7202. "g": 255,
  7203. "b": 255,
  7204. "a": 255
  7205. },
  7206. "_contentSize": {
  7207. "__type__": "cc.Size",
  7208. "width": 156,
  7209. "height": 76
  7210. },
  7211. "_anchorPoint": {
  7212. "__type__": "cc.Vec2",
  7213. "x": 0.5,
  7214. "y": 0.5
  7215. },
  7216. "_trs": {
  7217. "__type__": "TypedArray",
  7218. "ctor": "Float64Array",
  7219. "array": [
  7220. 0,
  7221. 0,
  7222. 0,
  7223. 0,
  7224. 0,
  7225. 0,
  7226. 1,
  7227. 1,
  7228. 1,
  7229. 1
  7230. ]
  7231. },
  7232. "_eulerAngles": {
  7233. "__type__": "cc.Vec3",
  7234. "x": 0,
  7235. "y": 0,
  7236. "z": 0
  7237. },
  7238. "_skewX": 0,
  7239. "_skewY": 0,
  7240. "_is3DNode": false,
  7241. "_groupIndex": 0,
  7242. "groupIndex": 0,
  7243. "_id": ""
  7244. },
  7245. {
  7246. "__type__": "cc.Node",
  7247. "_name": "filter_icon_y",
  7248. "_objFlags": 0,
  7249. "_parent": {
  7250. "__id__": 203
  7251. },
  7252. "_children": [],
  7253. "_active": true,
  7254. "_components": [
  7255. {
  7256. "__id__": 205
  7257. }
  7258. ],
  7259. "_prefab": {
  7260. "__id__": 206
  7261. },
  7262. "_opacity": 255,
  7263. "_color": {
  7264. "__type__": "cc.Color",
  7265. "r": 255,
  7266. "g": 255,
  7267. "b": 255,
  7268. "a": 255
  7269. },
  7270. "_contentSize": {
  7271. "__type__": "cc.Size",
  7272. "width": 56,
  7273. "height": 55
  7274. },
  7275. "_anchorPoint": {
  7276. "__type__": "cc.Vec2",
  7277. "x": 0.5,
  7278. "y": 0.5
  7279. },
  7280. "_trs": {
  7281. "__type__": "TypedArray",
  7282. "ctor": "Float64Array",
  7283. "array": [
  7284. 0,
  7285. 0,
  7286. 0,
  7287. 0,
  7288. 0,
  7289. 0,
  7290. 1,
  7291. 1,
  7292. 1,
  7293. 1
  7294. ]
  7295. },
  7296. "_eulerAngles": {
  7297. "__type__": "cc.Vec3",
  7298. "x": 0,
  7299. "y": 0,
  7300. "z": 0
  7301. },
  7302. "_skewX": 0,
  7303. "_skewY": 0,
  7304. "_is3DNode": false,
  7305. "_groupIndex": 0,
  7306. "groupIndex": 0,
  7307. "_id": ""
  7308. },
  7309. {
  7310. "__type__": "cc.Sprite",
  7311. "_name": "",
  7312. "_objFlags": 0,
  7313. "node": {
  7314. "__id__": 204
  7315. },
  7316. "_enabled": true,
  7317. "_materials": [
  7318. {
  7319. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  7320. }
  7321. ],
  7322. "_srcBlendFactor": 770,
  7323. "_dstBlendFactor": 771,
  7324. "_spriteFrame": {
  7325. "__uuid__": "4d10b9a3-c295-494e-abd7-b96c5a5c1eb7"
  7326. },
  7327. "_type": 0,
  7328. "_sizeMode": 1,
  7329. "_fillType": 0,
  7330. "_fillCenter": {
  7331. "__type__": "cc.Vec2",
  7332. "x": 0,
  7333. "y": 0
  7334. },
  7335. "_fillStart": 0,
  7336. "_fillRange": 0,
  7337. "_isTrimmedMode": true,
  7338. "_atlas": null,
  7339. "_id": ""
  7340. },
  7341. {
  7342. "__type__": "cc.PrefabInfo",
  7343. "root": {
  7344. "__id__": 1
  7345. },
  7346. "asset": {
  7347. "__id__": 0
  7348. },
  7349. "fileId": "0bhINtZpZDCpxeIZVckpbz",
  7350. "sync": false
  7351. },
  7352. {
  7353. "__type__": "cc.Sprite",
  7354. "_name": "",
  7355. "_objFlags": 0,
  7356. "node": {
  7357. "__id__": 203
  7358. },
  7359. "_enabled": true,
  7360. "_materials": [
  7361. {
  7362. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  7363. }
  7364. ],
  7365. "_srcBlendFactor": 770,
  7366. "_dstBlendFactor": 771,
  7367. "_spriteFrame": {
  7368. "__uuid__": "16ef86cd-a92f-48eb-8d2d-8b5be206246e"
  7369. },
  7370. "_type": 1,
  7371. "_sizeMode": 0,
  7372. "_fillType": 0,
  7373. "_fillCenter": {
  7374. "__type__": "cc.Vec2",
  7375. "x": 0,
  7376. "y": 0
  7377. },
  7378. "_fillStart": 0,
  7379. "_fillRange": 0,
  7380. "_isTrimmedMode": true,
  7381. "_atlas": null,
  7382. "_id": ""
  7383. },
  7384. {
  7385. "__type__": "cc.PrefabInfo",
  7386. "root": {
  7387. "__id__": 1
  7388. },
  7389. "asset": {
  7390. "__id__": 0
  7391. },
  7392. "fileId": "6azglRTRJAZpbLx4DzSagT",
  7393. "sync": false
  7394. },
  7395. {
  7396. "__type__": "466e8BS6wJF6bKBj6rcxcSE",
  7397. "_name": "",
  7398. "_objFlags": 0,
  7399. "node": {
  7400. "__id__": 196
  7401. },
  7402. "_enabled": true,
  7403. "openContinuous": true,
  7404. "continuousTime": 0.2,
  7405. "multiTouch": false,
  7406. "_id": ""
  7407. },
  7408. {
  7409. "__type__": "61994AafntNFIbmt1zoyLq+",
  7410. "_name": "",
  7411. "_objFlags": 0,
  7412. "node": {
  7413. "__id__": 196
  7414. },
  7415. "_enabled": true,
  7416. "_normalMaterial": null,
  7417. "_grayMaterial": null,
  7418. "duration": 0.1,
  7419. "zoomScale": 1.2,
  7420. "clickEvents": [
  7421. {
  7422. "__id__": 211
  7423. }
  7424. ],
  7425. "_N$interactable": true,
  7426. "_N$enableAutoGrayEffect": false,
  7427. "_N$transition": 0,
  7428. "transition": 0,
  7429. "_N$normalColor": {
  7430. "__type__": "cc.Color",
  7431. "r": 255,
  7432. "g": 255,
  7433. "b": 255,
  7434. "a": 255
  7435. },
  7436. "_N$pressedColor": {
  7437. "__type__": "cc.Color",
  7438. "r": 211,
  7439. "g": 211,
  7440. "b": 211,
  7441. "a": 255
  7442. },
  7443. "pressedColor": {
  7444. "__type__": "cc.Color",
  7445. "r": 211,
  7446. "g": 211,
  7447. "b": 211,
  7448. "a": 255
  7449. },
  7450. "_N$hoverColor": {
  7451. "__type__": "cc.Color",
  7452. "r": 255,
  7453. "g": 255,
  7454. "b": 255,
  7455. "a": 255
  7456. },
  7457. "hoverColor": {
  7458. "__type__": "cc.Color",
  7459. "r": 255,
  7460. "g": 255,
  7461. "b": 255,
  7462. "a": 255
  7463. },
  7464. "_N$disabledColor": {
  7465. "__type__": "cc.Color",
  7466. "r": 124,
  7467. "g": 124,
  7468. "b": 124,
  7469. "a": 255
  7470. },
  7471. "_N$normalSprite": null,
  7472. "_N$pressedSprite": null,
  7473. "pressedSprite": null,
  7474. "_N$hoverSprite": null,
  7475. "hoverSprite": null,
  7476. "_N$disabledSprite": null,
  7477. "_N$target": null,
  7478. "_id": ""
  7479. },
  7480. {
  7481. "__type__": "cc.ClickEvent",
  7482. "target": {
  7483. "__id__": 1
  7484. },
  7485. "component": "",
  7486. "_componentId": "ac1b6sIq7BFa5uPq8b8pdyl",
  7487. "handler": "onChooseEquipItemClick",
  7488. "customEventData": "1"
  7489. },
  7490. {
  7491. "__type__": "cc.PrefabInfo",
  7492. "root": {
  7493. "__id__": 1
  7494. },
  7495. "asset": {
  7496. "__id__": 0
  7497. },
  7498. "fileId": "39hCsVpxZB4af99BpGfjle",
  7499. "sync": false
  7500. },
  7501. {
  7502. "__type__": "cc.Node",
  7503. "_name": "item",
  7504. "_objFlags": 0,
  7505. "_parent": {
  7506. "__id__": 174
  7507. },
  7508. "_children": [
  7509. {
  7510. "__id__": 214
  7511. },
  7512. {
  7513. "__id__": 220
  7514. }
  7515. ],
  7516. "_active": true,
  7517. "_components": [
  7518. {
  7519. "__id__": 226
  7520. },
  7521. {
  7522. "__id__": 227
  7523. }
  7524. ],
  7525. "_prefab": {
  7526. "__id__": 229
  7527. },
  7528. "_opacity": 255,
  7529. "_color": {
  7530. "__type__": "cc.Color",
  7531. "r": 255,
  7532. "g": 255,
  7533. "b": 255,
  7534. "a": 255
  7535. },
  7536. "_contentSize": {
  7537. "__type__": "cc.Size",
  7538. "width": 156,
  7539. "height": 76
  7540. },
  7541. "_anchorPoint": {
  7542. "__type__": "cc.Vec2",
  7543. "x": 0.5,
  7544. "y": 0.5
  7545. },
  7546. "_trs": {
  7547. "__type__": "TypedArray",
  7548. "ctor": "Float64Array",
  7549. "array": [
  7550. 65.933,
  7551. 63.028,
  7552. 0,
  7553. 0,
  7554. 0,
  7555. 0,
  7556. 1,
  7557. 1,
  7558. 1,
  7559. 1
  7560. ]
  7561. },
  7562. "_eulerAngles": {
  7563. "__type__": "cc.Vec3",
  7564. "x": 0,
  7565. "y": 0,
  7566. "z": 0
  7567. },
  7568. "_skewX": 0,
  7569. "_skewY": 0,
  7570. "_is3DNode": false,
  7571. "_groupIndex": 0,
  7572. "groupIndex": 0,
  7573. "_id": ""
  7574. },
  7575. {
  7576. "__type__": "cc.Node",
  7577. "_name": "paging2",
  7578. "_objFlags": 0,
  7579. "_parent": {
  7580. "__id__": 213
  7581. },
  7582. "_children": [
  7583. {
  7584. "__id__": 215
  7585. }
  7586. ],
  7587. "_active": true,
  7588. "_components": [
  7589. {
  7590. "__id__": 218
  7591. }
  7592. ],
  7593. "_prefab": {
  7594. "__id__": 219
  7595. },
  7596. "_opacity": 255,
  7597. "_color": {
  7598. "__type__": "cc.Color",
  7599. "r": 255,
  7600. "g": 255,
  7601. "b": 255,
  7602. "a": 255
  7603. },
  7604. "_contentSize": {
  7605. "__type__": "cc.Size",
  7606. "width": 156,
  7607. "height": 76
  7608. },
  7609. "_anchorPoint": {
  7610. "__type__": "cc.Vec2",
  7611. "x": 0.5,
  7612. "y": 0.5
  7613. },
  7614. "_trs": {
  7615. "__type__": "TypedArray",
  7616. "ctor": "Float64Array",
  7617. "array": [
  7618. 0,
  7619. 0,
  7620. 0,
  7621. 0,
  7622. 0,
  7623. 0,
  7624. 1,
  7625. 1,
  7626. 1,
  7627. 1
  7628. ]
  7629. },
  7630. "_eulerAngles": {
  7631. "__type__": "cc.Vec3",
  7632. "x": 0,
  7633. "y": 0,
  7634. "z": 0
  7635. },
  7636. "_skewX": 0,
  7637. "_skewY": 0,
  7638. "_is3DNode": false,
  7639. "_groupIndex": 0,
  7640. "groupIndex": 0,
  7641. "_id": ""
  7642. },
  7643. {
  7644. "__type__": "cc.Node",
  7645. "_name": "filter_icon",
  7646. "_objFlags": 0,
  7647. "_parent": {
  7648. "__id__": 214
  7649. },
  7650. "_children": [],
  7651. "_active": true,
  7652. "_components": [
  7653. {
  7654. "__id__": 216
  7655. }
  7656. ],
  7657. "_prefab": {
  7658. "__id__": 217
  7659. },
  7660. "_opacity": 255,
  7661. "_color": {
  7662. "__type__": "cc.Color",
  7663. "r": 255,
  7664. "g": 255,
  7665. "b": 255,
  7666. "a": 255
  7667. },
  7668. "_contentSize": {
  7669. "__type__": "cc.Size",
  7670. "width": 52,
  7671. "height": 55
  7672. },
  7673. "_anchorPoint": {
  7674. "__type__": "cc.Vec2",
  7675. "x": 0.5,
  7676. "y": 0.5
  7677. },
  7678. "_trs": {
  7679. "__type__": "TypedArray",
  7680. "ctor": "Float64Array",
  7681. "array": [
  7682. 0,
  7683. 0,
  7684. 0,
  7685. 0,
  7686. 0,
  7687. 0,
  7688. 1,
  7689. 1,
  7690. 1,
  7691. 1
  7692. ]
  7693. },
  7694. "_eulerAngles": {
  7695. "__type__": "cc.Vec3",
  7696. "x": 0,
  7697. "y": 0,
  7698. "z": 0
  7699. },
  7700. "_skewX": 0,
  7701. "_skewY": 0,
  7702. "_is3DNode": false,
  7703. "_groupIndex": 0,
  7704. "groupIndex": 0,
  7705. "_id": ""
  7706. },
  7707. {
  7708. "__type__": "cc.Sprite",
  7709. "_name": "",
  7710. "_objFlags": 0,
  7711. "node": {
  7712. "__id__": 215
  7713. },
  7714. "_enabled": true,
  7715. "_materials": [
  7716. {
  7717. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  7718. }
  7719. ],
  7720. "_srcBlendFactor": 770,
  7721. "_dstBlendFactor": 771,
  7722. "_spriteFrame": {
  7723. "__uuid__": "88809e1e-4b4f-441e-b304-a246360a8271"
  7724. },
  7725. "_type": 0,
  7726. "_sizeMode": 1,
  7727. "_fillType": 0,
  7728. "_fillCenter": {
  7729. "__type__": "cc.Vec2",
  7730. "x": 0,
  7731. "y": 0
  7732. },
  7733. "_fillStart": 0,
  7734. "_fillRange": 0,
  7735. "_isTrimmedMode": true,
  7736. "_atlas": null,
  7737. "_id": ""
  7738. },
  7739. {
  7740. "__type__": "cc.PrefabInfo",
  7741. "root": {
  7742. "__id__": 1
  7743. },
  7744. "asset": {
  7745. "__id__": 0
  7746. },
  7747. "fileId": "f8WJpr8WZFZYVNuAk5XbjD",
  7748. "sync": false
  7749. },
  7750. {
  7751. "__type__": "cc.Sprite",
  7752. "_name": "",
  7753. "_objFlags": 0,
  7754. "node": {
  7755. "__id__": 214
  7756. },
  7757. "_enabled": true,
  7758. "_materials": [
  7759. {
  7760. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  7761. }
  7762. ],
  7763. "_srcBlendFactor": 770,
  7764. "_dstBlendFactor": 771,
  7765. "_spriteFrame": {
  7766. "__uuid__": "e5c440fd-41bb-4128-bf90-5c74b8550af2"
  7767. },
  7768. "_type": 1,
  7769. "_sizeMode": 0,
  7770. "_fillType": 0,
  7771. "_fillCenter": {
  7772. "__type__": "cc.Vec2",
  7773. "x": 0,
  7774. "y": 0
  7775. },
  7776. "_fillStart": 0,
  7777. "_fillRange": 0,
  7778. "_isTrimmedMode": true,
  7779. "_atlas": null,
  7780. "_id": ""
  7781. },
  7782. {
  7783. "__type__": "cc.PrefabInfo",
  7784. "root": {
  7785. "__id__": 1
  7786. },
  7787. "asset": {
  7788. "__id__": 0
  7789. },
  7790. "fileId": "c89McTj5ZPDa5+L2hE48fm",
  7791. "sync": false
  7792. },
  7793. {
  7794. "__type__": "cc.Node",
  7795. "_name": "choose",
  7796. "_objFlags": 0,
  7797. "_parent": {
  7798. "__id__": 213
  7799. },
  7800. "_children": [
  7801. {
  7802. "__id__": 221
  7803. }
  7804. ],
  7805. "_active": false,
  7806. "_components": [
  7807. {
  7808. "__id__": 224
  7809. }
  7810. ],
  7811. "_prefab": {
  7812. "__id__": 225
  7813. },
  7814. "_opacity": 255,
  7815. "_color": {
  7816. "__type__": "cc.Color",
  7817. "r": 255,
  7818. "g": 255,
  7819. "b": 255,
  7820. "a": 255
  7821. },
  7822. "_contentSize": {
  7823. "__type__": "cc.Size",
  7824. "width": 156,
  7825. "height": 76
  7826. },
  7827. "_anchorPoint": {
  7828. "__type__": "cc.Vec2",
  7829. "x": 0.5,
  7830. "y": 0.5
  7831. },
  7832. "_trs": {
  7833. "__type__": "TypedArray",
  7834. "ctor": "Float64Array",
  7835. "array": [
  7836. 0,
  7837. 0,
  7838. 0,
  7839. 0,
  7840. 0,
  7841. 0,
  7842. 1,
  7843. 1,
  7844. 1,
  7845. 1
  7846. ]
  7847. },
  7848. "_eulerAngles": {
  7849. "__type__": "cc.Vec3",
  7850. "x": 0,
  7851. "y": 0,
  7852. "z": 0
  7853. },
  7854. "_skewX": 0,
  7855. "_skewY": 0,
  7856. "_is3DNode": false,
  7857. "_groupIndex": 0,
  7858. "groupIndex": 0,
  7859. "_id": ""
  7860. },
  7861. {
  7862. "__type__": "cc.Node",
  7863. "_name": "filter_icon_y",
  7864. "_objFlags": 0,
  7865. "_parent": {
  7866. "__id__": 220
  7867. },
  7868. "_children": [],
  7869. "_active": true,
  7870. "_components": [
  7871. {
  7872. "__id__": 222
  7873. }
  7874. ],
  7875. "_prefab": {
  7876. "__id__": 223
  7877. },
  7878. "_opacity": 255,
  7879. "_color": {
  7880. "__type__": "cc.Color",
  7881. "r": 255,
  7882. "g": 255,
  7883. "b": 255,
  7884. "a": 255
  7885. },
  7886. "_contentSize": {
  7887. "__type__": "cc.Size",
  7888. "width": 52,
  7889. "height": 55
  7890. },
  7891. "_anchorPoint": {
  7892. "__type__": "cc.Vec2",
  7893. "x": 0.5,
  7894. "y": 0.5
  7895. },
  7896. "_trs": {
  7897. "__type__": "TypedArray",
  7898. "ctor": "Float64Array",
  7899. "array": [
  7900. 0,
  7901. 0,
  7902. 0,
  7903. 0,
  7904. 0,
  7905. 0,
  7906. 1,
  7907. 1,
  7908. 1,
  7909. 1
  7910. ]
  7911. },
  7912. "_eulerAngles": {
  7913. "__type__": "cc.Vec3",
  7914. "x": 0,
  7915. "y": 0,
  7916. "z": 0
  7917. },
  7918. "_skewX": 0,
  7919. "_skewY": 0,
  7920. "_is3DNode": false,
  7921. "_groupIndex": 0,
  7922. "groupIndex": 0,
  7923. "_id": ""
  7924. },
  7925. {
  7926. "__type__": "cc.Sprite",
  7927. "_name": "",
  7928. "_objFlags": 0,
  7929. "node": {
  7930. "__id__": 221
  7931. },
  7932. "_enabled": true,
  7933. "_materials": [
  7934. {
  7935. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  7936. }
  7937. ],
  7938. "_srcBlendFactor": 770,
  7939. "_dstBlendFactor": 771,
  7940. "_spriteFrame": {
  7941. "__uuid__": "e23aa1b5-eead-4c29-b24e-8a0d1bcf076a"
  7942. },
  7943. "_type": 0,
  7944. "_sizeMode": 1,
  7945. "_fillType": 0,
  7946. "_fillCenter": {
  7947. "__type__": "cc.Vec2",
  7948. "x": 0,
  7949. "y": 0
  7950. },
  7951. "_fillStart": 0,
  7952. "_fillRange": 0,
  7953. "_isTrimmedMode": true,
  7954. "_atlas": null,
  7955. "_id": ""
  7956. },
  7957. {
  7958. "__type__": "cc.PrefabInfo",
  7959. "root": {
  7960. "__id__": 1
  7961. },
  7962. "asset": {
  7963. "__id__": 0
  7964. },
  7965. "fileId": "5aDNgo9ttLsqxTBdptlBm5",
  7966. "sync": false
  7967. },
  7968. {
  7969. "__type__": "cc.Sprite",
  7970. "_name": "",
  7971. "_objFlags": 0,
  7972. "node": {
  7973. "__id__": 220
  7974. },
  7975. "_enabled": true,
  7976. "_materials": [
  7977. {
  7978. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  7979. }
  7980. ],
  7981. "_srcBlendFactor": 770,
  7982. "_dstBlendFactor": 771,
  7983. "_spriteFrame": {
  7984. "__uuid__": "16ef86cd-a92f-48eb-8d2d-8b5be206246e"
  7985. },
  7986. "_type": 1,
  7987. "_sizeMode": 0,
  7988. "_fillType": 0,
  7989. "_fillCenter": {
  7990. "__type__": "cc.Vec2",
  7991. "x": 0,
  7992. "y": 0
  7993. },
  7994. "_fillStart": 0,
  7995. "_fillRange": 0,
  7996. "_isTrimmedMode": true,
  7997. "_atlas": null,
  7998. "_id": ""
  7999. },
  8000. {
  8001. "__type__": "cc.PrefabInfo",
  8002. "root": {
  8003. "__id__": 1
  8004. },
  8005. "asset": {
  8006. "__id__": 0
  8007. },
  8008. "fileId": "e33jJyrXJLVY/EYcqipS2L",
  8009. "sync": false
  8010. },
  8011. {
  8012. "__type__": "466e8BS6wJF6bKBj6rcxcSE",
  8013. "_name": "",
  8014. "_objFlags": 0,
  8015. "node": {
  8016. "__id__": 213
  8017. },
  8018. "_enabled": true,
  8019. "openContinuous": true,
  8020. "continuousTime": 0.2,
  8021. "multiTouch": false,
  8022. "_id": ""
  8023. },
  8024. {
  8025. "__type__": "61994AafntNFIbmt1zoyLq+",
  8026. "_name": "",
  8027. "_objFlags": 0,
  8028. "node": {
  8029. "__id__": 213
  8030. },
  8031. "_enabled": true,
  8032. "_normalMaterial": null,
  8033. "_grayMaterial": null,
  8034. "duration": 0.1,
  8035. "zoomScale": 1.2,
  8036. "clickEvents": [
  8037. {
  8038. "__id__": 228
  8039. }
  8040. ],
  8041. "_N$interactable": true,
  8042. "_N$enableAutoGrayEffect": false,
  8043. "_N$transition": 0,
  8044. "transition": 0,
  8045. "_N$normalColor": {
  8046. "__type__": "cc.Color",
  8047. "r": 255,
  8048. "g": 255,
  8049. "b": 255,
  8050. "a": 255
  8051. },
  8052. "_N$pressedColor": {
  8053. "__type__": "cc.Color",
  8054. "r": 211,
  8055. "g": 211,
  8056. "b": 211,
  8057. "a": 255
  8058. },
  8059. "pressedColor": {
  8060. "__type__": "cc.Color",
  8061. "r": 211,
  8062. "g": 211,
  8063. "b": 211,
  8064. "a": 255
  8065. },
  8066. "_N$hoverColor": {
  8067. "__type__": "cc.Color",
  8068. "r": 255,
  8069. "g": 255,
  8070. "b": 255,
  8071. "a": 255
  8072. },
  8073. "hoverColor": {
  8074. "__type__": "cc.Color",
  8075. "r": 255,
  8076. "g": 255,
  8077. "b": 255,
  8078. "a": 255
  8079. },
  8080. "_N$disabledColor": {
  8081. "__type__": "cc.Color",
  8082. "r": 124,
  8083. "g": 124,
  8084. "b": 124,
  8085. "a": 255
  8086. },
  8087. "_N$normalSprite": null,
  8088. "_N$pressedSprite": null,
  8089. "pressedSprite": null,
  8090. "_N$hoverSprite": null,
  8091. "hoverSprite": null,
  8092. "_N$disabledSprite": null,
  8093. "_N$target": null,
  8094. "_id": ""
  8095. },
  8096. {
  8097. "__type__": "cc.ClickEvent",
  8098. "target": {
  8099. "__id__": 1
  8100. },
  8101. "component": "",
  8102. "_componentId": "ac1b6sIq7BFa5uPq8b8pdyl",
  8103. "handler": "onChooseEquipItemClick",
  8104. "customEventData": "2"
  8105. },
  8106. {
  8107. "__type__": "cc.PrefabInfo",
  8108. "root": {
  8109. "__id__": 1
  8110. },
  8111. "asset": {
  8112. "__id__": 0
  8113. },
  8114. "fileId": "f476axyzpLyLE+KDsK6+vo",
  8115. "sync": false
  8116. },
  8117. {
  8118. "__type__": "cc.Node",
  8119. "_name": "item",
  8120. "_objFlags": 0,
  8121. "_parent": {
  8122. "__id__": 174
  8123. },
  8124. "_children": [
  8125. {
  8126. "__id__": 231
  8127. },
  8128. {
  8129. "__id__": 237
  8130. }
  8131. ],
  8132. "_active": true,
  8133. "_components": [
  8134. {
  8135. "__id__": 243
  8136. },
  8137. {
  8138. "__id__": 244
  8139. }
  8140. ],
  8141. "_prefab": {
  8142. "__id__": 246
  8143. },
  8144. "_opacity": 255,
  8145. "_color": {
  8146. "__type__": "cc.Color",
  8147. "r": 255,
  8148. "g": 255,
  8149. "b": 255,
  8150. "a": 255
  8151. },
  8152. "_contentSize": {
  8153. "__type__": "cc.Size",
  8154. "width": 156,
  8155. "height": 76
  8156. },
  8157. "_anchorPoint": {
  8158. "__type__": "cc.Vec2",
  8159. "x": 0.5,
  8160. "y": 0.5
  8161. },
  8162. "_trs": {
  8163. "__type__": "TypedArray",
  8164. "ctor": "Float64Array",
  8165. "array": [
  8166. 226.477,
  8167. 63.028,
  8168. 0,
  8169. 0,
  8170. 0,
  8171. 0,
  8172. 1,
  8173. 1,
  8174. 1,
  8175. 1
  8176. ]
  8177. },
  8178. "_eulerAngles": {
  8179. "__type__": "cc.Vec3",
  8180. "x": 0,
  8181. "y": 0,
  8182. "z": 0
  8183. },
  8184. "_skewX": 0,
  8185. "_skewY": 0,
  8186. "_is3DNode": false,
  8187. "_groupIndex": 0,
  8188. "groupIndex": 0,
  8189. "_id": ""
  8190. },
  8191. {
  8192. "__type__": "cc.Node",
  8193. "_name": "paging2",
  8194. "_objFlags": 0,
  8195. "_parent": {
  8196. "__id__": 230
  8197. },
  8198. "_children": [
  8199. {
  8200. "__id__": 232
  8201. }
  8202. ],
  8203. "_active": true,
  8204. "_components": [
  8205. {
  8206. "__id__": 235
  8207. }
  8208. ],
  8209. "_prefab": {
  8210. "__id__": 236
  8211. },
  8212. "_opacity": 255,
  8213. "_color": {
  8214. "__type__": "cc.Color",
  8215. "r": 255,
  8216. "g": 255,
  8217. "b": 255,
  8218. "a": 255
  8219. },
  8220. "_contentSize": {
  8221. "__type__": "cc.Size",
  8222. "width": 156,
  8223. "height": 76
  8224. },
  8225. "_anchorPoint": {
  8226. "__type__": "cc.Vec2",
  8227. "x": 0.5,
  8228. "y": 0.5
  8229. },
  8230. "_trs": {
  8231. "__type__": "TypedArray",
  8232. "ctor": "Float64Array",
  8233. "array": [
  8234. 0,
  8235. 0,
  8236. 0,
  8237. 0,
  8238. 0,
  8239. 0,
  8240. 1,
  8241. 1,
  8242. 1,
  8243. 1
  8244. ]
  8245. },
  8246. "_eulerAngles": {
  8247. "__type__": "cc.Vec3",
  8248. "x": 0,
  8249. "y": 0,
  8250. "z": 0
  8251. },
  8252. "_skewX": 0,
  8253. "_skewY": 0,
  8254. "_is3DNode": false,
  8255. "_groupIndex": 0,
  8256. "groupIndex": 0,
  8257. "_id": ""
  8258. },
  8259. {
  8260. "__type__": "cc.Node",
  8261. "_name": "filter_icon",
  8262. "_objFlags": 0,
  8263. "_parent": {
  8264. "__id__": 231
  8265. },
  8266. "_children": [],
  8267. "_active": true,
  8268. "_components": [
  8269. {
  8270. "__id__": 233
  8271. }
  8272. ],
  8273. "_prefab": {
  8274. "__id__": 234
  8275. },
  8276. "_opacity": 255,
  8277. "_color": {
  8278. "__type__": "cc.Color",
  8279. "r": 255,
  8280. "g": 255,
  8281. "b": 255,
  8282. "a": 255
  8283. },
  8284. "_contentSize": {
  8285. "__type__": "cc.Size",
  8286. "width": 56,
  8287. "height": 55
  8288. },
  8289. "_anchorPoint": {
  8290. "__type__": "cc.Vec2",
  8291. "x": 0.5,
  8292. "y": 0.5
  8293. },
  8294. "_trs": {
  8295. "__type__": "TypedArray",
  8296. "ctor": "Float64Array",
  8297. "array": [
  8298. 0,
  8299. 0,
  8300. 0,
  8301. 0,
  8302. 0,
  8303. 0,
  8304. 1,
  8305. 1,
  8306. 1,
  8307. 1
  8308. ]
  8309. },
  8310. "_eulerAngles": {
  8311. "__type__": "cc.Vec3",
  8312. "x": 0,
  8313. "y": 0,
  8314. "z": 0
  8315. },
  8316. "_skewX": 0,
  8317. "_skewY": 0,
  8318. "_is3DNode": false,
  8319. "_groupIndex": 0,
  8320. "groupIndex": 0,
  8321. "_id": ""
  8322. },
  8323. {
  8324. "__type__": "cc.Sprite",
  8325. "_name": "",
  8326. "_objFlags": 0,
  8327. "node": {
  8328. "__id__": 232
  8329. },
  8330. "_enabled": true,
  8331. "_materials": [
  8332. {
  8333. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  8334. }
  8335. ],
  8336. "_srcBlendFactor": 770,
  8337. "_dstBlendFactor": 771,
  8338. "_spriteFrame": {
  8339. "__uuid__": "0d08a315-7338-4d19-827a-1711a6fe939c"
  8340. },
  8341. "_type": 0,
  8342. "_sizeMode": 1,
  8343. "_fillType": 0,
  8344. "_fillCenter": {
  8345. "__type__": "cc.Vec2",
  8346. "x": 0,
  8347. "y": 0
  8348. },
  8349. "_fillStart": 0,
  8350. "_fillRange": 0,
  8351. "_isTrimmedMode": true,
  8352. "_atlas": null,
  8353. "_id": ""
  8354. },
  8355. {
  8356. "__type__": "cc.PrefabInfo",
  8357. "root": {
  8358. "__id__": 1
  8359. },
  8360. "asset": {
  8361. "__id__": 0
  8362. },
  8363. "fileId": "8cf7+8199Hbrl4UmR0DIjA",
  8364. "sync": false
  8365. },
  8366. {
  8367. "__type__": "cc.Sprite",
  8368. "_name": "",
  8369. "_objFlags": 0,
  8370. "node": {
  8371. "__id__": 231
  8372. },
  8373. "_enabled": true,
  8374. "_materials": [
  8375. {
  8376. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  8377. }
  8378. ],
  8379. "_srcBlendFactor": 770,
  8380. "_dstBlendFactor": 771,
  8381. "_spriteFrame": {
  8382. "__uuid__": "e5c440fd-41bb-4128-bf90-5c74b8550af2"
  8383. },
  8384. "_type": 1,
  8385. "_sizeMode": 0,
  8386. "_fillType": 0,
  8387. "_fillCenter": {
  8388. "__type__": "cc.Vec2",
  8389. "x": 0,
  8390. "y": 0
  8391. },
  8392. "_fillStart": 0,
  8393. "_fillRange": 0,
  8394. "_isTrimmedMode": true,
  8395. "_atlas": null,
  8396. "_id": ""
  8397. },
  8398. {
  8399. "__type__": "cc.PrefabInfo",
  8400. "root": {
  8401. "__id__": 1
  8402. },
  8403. "asset": {
  8404. "__id__": 0
  8405. },
  8406. "fileId": "a3KS7aD7tF053OWcBPvMt+",
  8407. "sync": false
  8408. },
  8409. {
  8410. "__type__": "cc.Node",
  8411. "_name": "choose",
  8412. "_objFlags": 0,
  8413. "_parent": {
  8414. "__id__": 230
  8415. },
  8416. "_children": [
  8417. {
  8418. "__id__": 238
  8419. }
  8420. ],
  8421. "_active": false,
  8422. "_components": [
  8423. {
  8424. "__id__": 241
  8425. }
  8426. ],
  8427. "_prefab": {
  8428. "__id__": 242
  8429. },
  8430. "_opacity": 255,
  8431. "_color": {
  8432. "__type__": "cc.Color",
  8433. "r": 255,
  8434. "g": 255,
  8435. "b": 255,
  8436. "a": 255
  8437. },
  8438. "_contentSize": {
  8439. "__type__": "cc.Size",
  8440. "width": 156,
  8441. "height": 76
  8442. },
  8443. "_anchorPoint": {
  8444. "__type__": "cc.Vec2",
  8445. "x": 0.5,
  8446. "y": 0.5
  8447. },
  8448. "_trs": {
  8449. "__type__": "TypedArray",
  8450. "ctor": "Float64Array",
  8451. "array": [
  8452. 0,
  8453. 0,
  8454. 0,
  8455. 0,
  8456. 0,
  8457. 0,
  8458. 1,
  8459. 1,
  8460. 1,
  8461. 1
  8462. ]
  8463. },
  8464. "_eulerAngles": {
  8465. "__type__": "cc.Vec3",
  8466. "x": 0,
  8467. "y": 0,
  8468. "z": 0
  8469. },
  8470. "_skewX": 0,
  8471. "_skewY": 0,
  8472. "_is3DNode": false,
  8473. "_groupIndex": 0,
  8474. "groupIndex": 0,
  8475. "_id": ""
  8476. },
  8477. {
  8478. "__type__": "cc.Node",
  8479. "_name": "filter_icon_y",
  8480. "_objFlags": 0,
  8481. "_parent": {
  8482. "__id__": 237
  8483. },
  8484. "_children": [],
  8485. "_active": true,
  8486. "_components": [
  8487. {
  8488. "__id__": 239
  8489. }
  8490. ],
  8491. "_prefab": {
  8492. "__id__": 240
  8493. },
  8494. "_opacity": 255,
  8495. "_color": {
  8496. "__type__": "cc.Color",
  8497. "r": 255,
  8498. "g": 255,
  8499. "b": 255,
  8500. "a": 255
  8501. },
  8502. "_contentSize": {
  8503. "__type__": "cc.Size",
  8504. "width": 56,
  8505. "height": 55
  8506. },
  8507. "_anchorPoint": {
  8508. "__type__": "cc.Vec2",
  8509. "x": 0.5,
  8510. "y": 0.5
  8511. },
  8512. "_trs": {
  8513. "__type__": "TypedArray",
  8514. "ctor": "Float64Array",
  8515. "array": [
  8516. 0,
  8517. 0,
  8518. 0,
  8519. 0,
  8520. 0,
  8521. 0,
  8522. 1,
  8523. 1,
  8524. 1,
  8525. 1
  8526. ]
  8527. },
  8528. "_eulerAngles": {
  8529. "__type__": "cc.Vec3",
  8530. "x": 0,
  8531. "y": 0,
  8532. "z": 0
  8533. },
  8534. "_skewX": 0,
  8535. "_skewY": 0,
  8536. "_is3DNode": false,
  8537. "_groupIndex": 0,
  8538. "groupIndex": 0,
  8539. "_id": ""
  8540. },
  8541. {
  8542. "__type__": "cc.Sprite",
  8543. "_name": "",
  8544. "_objFlags": 0,
  8545. "node": {
  8546. "__id__": 238
  8547. },
  8548. "_enabled": true,
  8549. "_materials": [
  8550. {
  8551. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  8552. }
  8553. ],
  8554. "_srcBlendFactor": 770,
  8555. "_dstBlendFactor": 771,
  8556. "_spriteFrame": {
  8557. "__uuid__": "01ecd9ca-2298-490e-8b3d-0c5238e5fce2"
  8558. },
  8559. "_type": 0,
  8560. "_sizeMode": 1,
  8561. "_fillType": 0,
  8562. "_fillCenter": {
  8563. "__type__": "cc.Vec2",
  8564. "x": 0,
  8565. "y": 0
  8566. },
  8567. "_fillStart": 0,
  8568. "_fillRange": 0,
  8569. "_isTrimmedMode": true,
  8570. "_atlas": null,
  8571. "_id": ""
  8572. },
  8573. {
  8574. "__type__": "cc.PrefabInfo",
  8575. "root": {
  8576. "__id__": 1
  8577. },
  8578. "asset": {
  8579. "__id__": 0
  8580. },
  8581. "fileId": "65qYp0uL9K/pGvsN6aDjCL",
  8582. "sync": false
  8583. },
  8584. {
  8585. "__type__": "cc.Sprite",
  8586. "_name": "",
  8587. "_objFlags": 0,
  8588. "node": {
  8589. "__id__": 237
  8590. },
  8591. "_enabled": true,
  8592. "_materials": [
  8593. {
  8594. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  8595. }
  8596. ],
  8597. "_srcBlendFactor": 770,
  8598. "_dstBlendFactor": 771,
  8599. "_spriteFrame": {
  8600. "__uuid__": "16ef86cd-a92f-48eb-8d2d-8b5be206246e"
  8601. },
  8602. "_type": 1,
  8603. "_sizeMode": 0,
  8604. "_fillType": 0,
  8605. "_fillCenter": {
  8606. "__type__": "cc.Vec2",
  8607. "x": 0,
  8608. "y": 0
  8609. },
  8610. "_fillStart": 0,
  8611. "_fillRange": 0,
  8612. "_isTrimmedMode": true,
  8613. "_atlas": null,
  8614. "_id": ""
  8615. },
  8616. {
  8617. "__type__": "cc.PrefabInfo",
  8618. "root": {
  8619. "__id__": 1
  8620. },
  8621. "asset": {
  8622. "__id__": 0
  8623. },
  8624. "fileId": "62HmILhMhDj6jpdwvAACQM",
  8625. "sync": false
  8626. },
  8627. {
  8628. "__type__": "466e8BS6wJF6bKBj6rcxcSE",
  8629. "_name": "",
  8630. "_objFlags": 0,
  8631. "node": {
  8632. "__id__": 230
  8633. },
  8634. "_enabled": true,
  8635. "openContinuous": true,
  8636. "continuousTime": 0.2,
  8637. "multiTouch": false,
  8638. "_id": ""
  8639. },
  8640. {
  8641. "__type__": "61994AafntNFIbmt1zoyLq+",
  8642. "_name": "",
  8643. "_objFlags": 0,
  8644. "node": {
  8645. "__id__": 230
  8646. },
  8647. "_enabled": true,
  8648. "_normalMaterial": null,
  8649. "_grayMaterial": null,
  8650. "duration": 0.1,
  8651. "zoomScale": 1.2,
  8652. "clickEvents": [
  8653. {
  8654. "__id__": 245
  8655. }
  8656. ],
  8657. "_N$interactable": true,
  8658. "_N$enableAutoGrayEffect": false,
  8659. "_N$transition": 0,
  8660. "transition": 0,
  8661. "_N$normalColor": {
  8662. "__type__": "cc.Color",
  8663. "r": 255,
  8664. "g": 255,
  8665. "b": 255,
  8666. "a": 255
  8667. },
  8668. "_N$pressedColor": {
  8669. "__type__": "cc.Color",
  8670. "r": 211,
  8671. "g": 211,
  8672. "b": 211,
  8673. "a": 255
  8674. },
  8675. "pressedColor": {
  8676. "__type__": "cc.Color",
  8677. "r": 211,
  8678. "g": 211,
  8679. "b": 211,
  8680. "a": 255
  8681. },
  8682. "_N$hoverColor": {
  8683. "__type__": "cc.Color",
  8684. "r": 255,
  8685. "g": 255,
  8686. "b": 255,
  8687. "a": 255
  8688. },
  8689. "hoverColor": {
  8690. "__type__": "cc.Color",
  8691. "r": 255,
  8692. "g": 255,
  8693. "b": 255,
  8694. "a": 255
  8695. },
  8696. "_N$disabledColor": {
  8697. "__type__": "cc.Color",
  8698. "r": 124,
  8699. "g": 124,
  8700. "b": 124,
  8701. "a": 255
  8702. },
  8703. "_N$normalSprite": null,
  8704. "_N$pressedSprite": null,
  8705. "pressedSprite": null,
  8706. "_N$hoverSprite": null,
  8707. "hoverSprite": null,
  8708. "_N$disabledSprite": null,
  8709. "_N$target": null,
  8710. "_id": ""
  8711. },
  8712. {
  8713. "__type__": "cc.ClickEvent",
  8714. "target": {
  8715. "__id__": 1
  8716. },
  8717. "component": "",
  8718. "_componentId": "ac1b6sIq7BFa5uPq8b8pdyl",
  8719. "handler": "onChooseEquipItemClick",
  8720. "customEventData": "3"
  8721. },
  8722. {
  8723. "__type__": "cc.PrefabInfo",
  8724. "root": {
  8725. "__id__": 1
  8726. },
  8727. "asset": {
  8728. "__id__": 0
  8729. },
  8730. "fileId": "69QJ5VkC1MyorgWVfOZ5Uf",
  8731. "sync": false
  8732. },
  8733. {
  8734. "__type__": "cc.Node",
  8735. "_name": "item",
  8736. "_objFlags": 0,
  8737. "_parent": {
  8738. "__id__": 174
  8739. },
  8740. "_children": [
  8741. {
  8742. "__id__": 248
  8743. },
  8744. {
  8745. "__id__": 254
  8746. }
  8747. ],
  8748. "_active": true,
  8749. "_components": [
  8750. {
  8751. "__id__": 260
  8752. },
  8753. {
  8754. "__id__": 261
  8755. }
  8756. ],
  8757. "_prefab": {
  8758. "__id__": 263
  8759. },
  8760. "_opacity": 255,
  8761. "_color": {
  8762. "__type__": "cc.Color",
  8763. "r": 255,
  8764. "g": 255,
  8765. "b": 255,
  8766. "a": 255
  8767. },
  8768. "_contentSize": {
  8769. "__type__": "cc.Size",
  8770. "width": 156,
  8771. "height": 76
  8772. },
  8773. "_anchorPoint": {
  8774. "__type__": "cc.Vec2",
  8775. "x": 0.5,
  8776. "y": 0.5
  8777. },
  8778. "_trs": {
  8779. "__type__": "TypedArray",
  8780. "ctor": "Float64Array",
  8781. "array": [
  8782. -94.063,
  8783. -19.378,
  8784. 0,
  8785. 0,
  8786. 0,
  8787. 0,
  8788. 1,
  8789. 1,
  8790. 1,
  8791. 1
  8792. ]
  8793. },
  8794. "_eulerAngles": {
  8795. "__type__": "cc.Vec3",
  8796. "x": 0,
  8797. "y": 0,
  8798. "z": 0
  8799. },
  8800. "_skewX": 0,
  8801. "_skewY": 0,
  8802. "_is3DNode": false,
  8803. "_groupIndex": 0,
  8804. "groupIndex": 0,
  8805. "_id": ""
  8806. },
  8807. {
  8808. "__type__": "cc.Node",
  8809. "_name": "paging2",
  8810. "_objFlags": 0,
  8811. "_parent": {
  8812. "__id__": 247
  8813. },
  8814. "_children": [
  8815. {
  8816. "__id__": 249
  8817. }
  8818. ],
  8819. "_active": true,
  8820. "_components": [
  8821. {
  8822. "__id__": 252
  8823. }
  8824. ],
  8825. "_prefab": {
  8826. "__id__": 253
  8827. },
  8828. "_opacity": 255,
  8829. "_color": {
  8830. "__type__": "cc.Color",
  8831. "r": 255,
  8832. "g": 255,
  8833. "b": 255,
  8834. "a": 255
  8835. },
  8836. "_contentSize": {
  8837. "__type__": "cc.Size",
  8838. "width": 156,
  8839. "height": 76
  8840. },
  8841. "_anchorPoint": {
  8842. "__type__": "cc.Vec2",
  8843. "x": 0.5,
  8844. "y": 0.5
  8845. },
  8846. "_trs": {
  8847. "__type__": "TypedArray",
  8848. "ctor": "Float64Array",
  8849. "array": [
  8850. 0,
  8851. 0,
  8852. 0,
  8853. 0,
  8854. 0,
  8855. 0,
  8856. 1,
  8857. 1,
  8858. 1,
  8859. 1
  8860. ]
  8861. },
  8862. "_eulerAngles": {
  8863. "__type__": "cc.Vec3",
  8864. "x": 0,
  8865. "y": 0,
  8866. "z": 0
  8867. },
  8868. "_skewX": 0,
  8869. "_skewY": 0,
  8870. "_is3DNode": false,
  8871. "_groupIndex": 0,
  8872. "groupIndex": 0,
  8873. "_id": ""
  8874. },
  8875. {
  8876. "__type__": "cc.Node",
  8877. "_name": "filter_icon",
  8878. "_objFlags": 0,
  8879. "_parent": {
  8880. "__id__": 248
  8881. },
  8882. "_children": [],
  8883. "_active": true,
  8884. "_components": [
  8885. {
  8886. "__id__": 250
  8887. }
  8888. ],
  8889. "_prefab": {
  8890. "__id__": 251
  8891. },
  8892. "_opacity": 255,
  8893. "_color": {
  8894. "__type__": "cc.Color",
  8895. "r": 255,
  8896. "g": 255,
  8897. "b": 255,
  8898. "a": 255
  8899. },
  8900. "_contentSize": {
  8901. "__type__": "cc.Size",
  8902. "width": 63,
  8903. "height": 54
  8904. },
  8905. "_anchorPoint": {
  8906. "__type__": "cc.Vec2",
  8907. "x": 0.5,
  8908. "y": 0.5
  8909. },
  8910. "_trs": {
  8911. "__type__": "TypedArray",
  8912. "ctor": "Float64Array",
  8913. "array": [
  8914. 0,
  8915. 0,
  8916. 0,
  8917. 0,
  8918. 0,
  8919. 0,
  8920. 1,
  8921. 1,
  8922. 1,
  8923. 1
  8924. ]
  8925. },
  8926. "_eulerAngles": {
  8927. "__type__": "cc.Vec3",
  8928. "x": 0,
  8929. "y": 0,
  8930. "z": 0
  8931. },
  8932. "_skewX": 0,
  8933. "_skewY": 0,
  8934. "_is3DNode": false,
  8935. "_groupIndex": 0,
  8936. "groupIndex": 0,
  8937. "_id": ""
  8938. },
  8939. {
  8940. "__type__": "cc.Sprite",
  8941. "_name": "",
  8942. "_objFlags": 0,
  8943. "node": {
  8944. "__id__": 249
  8945. },
  8946. "_enabled": true,
  8947. "_materials": [
  8948. {
  8949. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  8950. }
  8951. ],
  8952. "_srcBlendFactor": 770,
  8953. "_dstBlendFactor": 771,
  8954. "_spriteFrame": {
  8955. "__uuid__": "06a4f90a-ae5c-4e5e-94ca-694673f76d30"
  8956. },
  8957. "_type": 0,
  8958. "_sizeMode": 1,
  8959. "_fillType": 0,
  8960. "_fillCenter": {
  8961. "__type__": "cc.Vec2",
  8962. "x": 0,
  8963. "y": 0
  8964. },
  8965. "_fillStart": 0,
  8966. "_fillRange": 0,
  8967. "_isTrimmedMode": true,
  8968. "_atlas": null,
  8969. "_id": ""
  8970. },
  8971. {
  8972. "__type__": "cc.PrefabInfo",
  8973. "root": {
  8974. "__id__": 1
  8975. },
  8976. "asset": {
  8977. "__id__": 0
  8978. },
  8979. "fileId": "a6u/f6JEJEz6Uzf/ORF4l6",
  8980. "sync": false
  8981. },
  8982. {
  8983. "__type__": "cc.Sprite",
  8984. "_name": "",
  8985. "_objFlags": 0,
  8986. "node": {
  8987. "__id__": 248
  8988. },
  8989. "_enabled": true,
  8990. "_materials": [
  8991. {
  8992. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  8993. }
  8994. ],
  8995. "_srcBlendFactor": 770,
  8996. "_dstBlendFactor": 771,
  8997. "_spriteFrame": {
  8998. "__uuid__": "e5c440fd-41bb-4128-bf90-5c74b8550af2"
  8999. },
  9000. "_type": 1,
  9001. "_sizeMode": 0,
  9002. "_fillType": 0,
  9003. "_fillCenter": {
  9004. "__type__": "cc.Vec2",
  9005. "x": 0,
  9006. "y": 0
  9007. },
  9008. "_fillStart": 0,
  9009. "_fillRange": 0,
  9010. "_isTrimmedMode": true,
  9011. "_atlas": null,
  9012. "_id": ""
  9013. },
  9014. {
  9015. "__type__": "cc.PrefabInfo",
  9016. "root": {
  9017. "__id__": 1
  9018. },
  9019. "asset": {
  9020. "__id__": 0
  9021. },
  9022. "fileId": "87LEOR5gVD5I/+/HB6EQXM",
  9023. "sync": false
  9024. },
  9025. {
  9026. "__type__": "cc.Node",
  9027. "_name": "choose",
  9028. "_objFlags": 0,
  9029. "_parent": {
  9030. "__id__": 247
  9031. },
  9032. "_children": [
  9033. {
  9034. "__id__": 255
  9035. }
  9036. ],
  9037. "_active": false,
  9038. "_components": [
  9039. {
  9040. "__id__": 258
  9041. }
  9042. ],
  9043. "_prefab": {
  9044. "__id__": 259
  9045. },
  9046. "_opacity": 255,
  9047. "_color": {
  9048. "__type__": "cc.Color",
  9049. "r": 255,
  9050. "g": 255,
  9051. "b": 255,
  9052. "a": 255
  9053. },
  9054. "_contentSize": {
  9055. "__type__": "cc.Size",
  9056. "width": 156,
  9057. "height": 76
  9058. },
  9059. "_anchorPoint": {
  9060. "__type__": "cc.Vec2",
  9061. "x": 0.5,
  9062. "y": 0.5
  9063. },
  9064. "_trs": {
  9065. "__type__": "TypedArray",
  9066. "ctor": "Float64Array",
  9067. "array": [
  9068. 0,
  9069. 0,
  9070. 0,
  9071. 0,
  9072. 0,
  9073. 0,
  9074. 1,
  9075. 1,
  9076. 1,
  9077. 1
  9078. ]
  9079. },
  9080. "_eulerAngles": {
  9081. "__type__": "cc.Vec3",
  9082. "x": 0,
  9083. "y": 0,
  9084. "z": 0
  9085. },
  9086. "_skewX": 0,
  9087. "_skewY": 0,
  9088. "_is3DNode": false,
  9089. "_groupIndex": 0,
  9090. "groupIndex": 0,
  9091. "_id": ""
  9092. },
  9093. {
  9094. "__type__": "cc.Node",
  9095. "_name": "filter_icon_y",
  9096. "_objFlags": 0,
  9097. "_parent": {
  9098. "__id__": 254
  9099. },
  9100. "_children": [],
  9101. "_active": true,
  9102. "_components": [
  9103. {
  9104. "__id__": 256
  9105. }
  9106. ],
  9107. "_prefab": {
  9108. "__id__": 257
  9109. },
  9110. "_opacity": 255,
  9111. "_color": {
  9112. "__type__": "cc.Color",
  9113. "r": 255,
  9114. "g": 255,
  9115. "b": 255,
  9116. "a": 255
  9117. },
  9118. "_contentSize": {
  9119. "__type__": "cc.Size",
  9120. "width": 63,
  9121. "height": 54
  9122. },
  9123. "_anchorPoint": {
  9124. "__type__": "cc.Vec2",
  9125. "x": 0.5,
  9126. "y": 0.5
  9127. },
  9128. "_trs": {
  9129. "__type__": "TypedArray",
  9130. "ctor": "Float64Array",
  9131. "array": [
  9132. 0,
  9133. 0,
  9134. 0,
  9135. 0,
  9136. 0,
  9137. 0,
  9138. 1,
  9139. 1,
  9140. 1,
  9141. 1
  9142. ]
  9143. },
  9144. "_eulerAngles": {
  9145. "__type__": "cc.Vec3",
  9146. "x": 0,
  9147. "y": 0,
  9148. "z": 0
  9149. },
  9150. "_skewX": 0,
  9151. "_skewY": 0,
  9152. "_is3DNode": false,
  9153. "_groupIndex": 0,
  9154. "groupIndex": 0,
  9155. "_id": ""
  9156. },
  9157. {
  9158. "__type__": "cc.Sprite",
  9159. "_name": "",
  9160. "_objFlags": 0,
  9161. "node": {
  9162. "__id__": 255
  9163. },
  9164. "_enabled": true,
  9165. "_materials": [
  9166. {
  9167. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  9168. }
  9169. ],
  9170. "_srcBlendFactor": 770,
  9171. "_dstBlendFactor": 771,
  9172. "_spriteFrame": {
  9173. "__uuid__": "4c4db85d-96c2-44b5-bf5a-04d698624212"
  9174. },
  9175. "_type": 0,
  9176. "_sizeMode": 1,
  9177. "_fillType": 0,
  9178. "_fillCenter": {
  9179. "__type__": "cc.Vec2",
  9180. "x": 0,
  9181. "y": 0
  9182. },
  9183. "_fillStart": 0,
  9184. "_fillRange": 0,
  9185. "_isTrimmedMode": true,
  9186. "_atlas": null,
  9187. "_id": ""
  9188. },
  9189. {
  9190. "__type__": "cc.PrefabInfo",
  9191. "root": {
  9192. "__id__": 1
  9193. },
  9194. "asset": {
  9195. "__id__": 0
  9196. },
  9197. "fileId": "58X5P8XAhMZ5xzn+ikI2Cq",
  9198. "sync": false
  9199. },
  9200. {
  9201. "__type__": "cc.Sprite",
  9202. "_name": "",
  9203. "_objFlags": 0,
  9204. "node": {
  9205. "__id__": 254
  9206. },
  9207. "_enabled": true,
  9208. "_materials": [
  9209. {
  9210. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  9211. }
  9212. ],
  9213. "_srcBlendFactor": 770,
  9214. "_dstBlendFactor": 771,
  9215. "_spriteFrame": {
  9216. "__uuid__": "16ef86cd-a92f-48eb-8d2d-8b5be206246e"
  9217. },
  9218. "_type": 1,
  9219. "_sizeMode": 0,
  9220. "_fillType": 0,
  9221. "_fillCenter": {
  9222. "__type__": "cc.Vec2",
  9223. "x": 0,
  9224. "y": 0
  9225. },
  9226. "_fillStart": 0,
  9227. "_fillRange": 0,
  9228. "_isTrimmedMode": true,
  9229. "_atlas": null,
  9230. "_id": ""
  9231. },
  9232. {
  9233. "__type__": "cc.PrefabInfo",
  9234. "root": {
  9235. "__id__": 1
  9236. },
  9237. "asset": {
  9238. "__id__": 0
  9239. },
  9240. "fileId": "daJ2Tpl15HLJUIY6M0TKrQ",
  9241. "sync": false
  9242. },
  9243. {
  9244. "__type__": "466e8BS6wJF6bKBj6rcxcSE",
  9245. "_name": "",
  9246. "_objFlags": 0,
  9247. "node": {
  9248. "__id__": 247
  9249. },
  9250. "_enabled": true,
  9251. "openContinuous": true,
  9252. "continuousTime": 0.2,
  9253. "multiTouch": false,
  9254. "_id": ""
  9255. },
  9256. {
  9257. "__type__": "61994AafntNFIbmt1zoyLq+",
  9258. "_name": "",
  9259. "_objFlags": 0,
  9260. "node": {
  9261. "__id__": 247
  9262. },
  9263. "_enabled": true,
  9264. "_normalMaterial": null,
  9265. "_grayMaterial": null,
  9266. "duration": 0.1,
  9267. "zoomScale": 1.2,
  9268. "clickEvents": [
  9269. {
  9270. "__id__": 262
  9271. }
  9272. ],
  9273. "_N$interactable": true,
  9274. "_N$enableAutoGrayEffect": false,
  9275. "_N$transition": 0,
  9276. "transition": 0,
  9277. "_N$normalColor": {
  9278. "__type__": "cc.Color",
  9279. "r": 255,
  9280. "g": 255,
  9281. "b": 255,
  9282. "a": 255
  9283. },
  9284. "_N$pressedColor": {
  9285. "__type__": "cc.Color",
  9286. "r": 211,
  9287. "g": 211,
  9288. "b": 211,
  9289. "a": 255
  9290. },
  9291. "pressedColor": {
  9292. "__type__": "cc.Color",
  9293. "r": 211,
  9294. "g": 211,
  9295. "b": 211,
  9296. "a": 255
  9297. },
  9298. "_N$hoverColor": {
  9299. "__type__": "cc.Color",
  9300. "r": 255,
  9301. "g": 255,
  9302. "b": 255,
  9303. "a": 255
  9304. },
  9305. "hoverColor": {
  9306. "__type__": "cc.Color",
  9307. "r": 255,
  9308. "g": 255,
  9309. "b": 255,
  9310. "a": 255
  9311. },
  9312. "_N$disabledColor": {
  9313. "__type__": "cc.Color",
  9314. "r": 124,
  9315. "g": 124,
  9316. "b": 124,
  9317. "a": 255
  9318. },
  9319. "_N$normalSprite": null,
  9320. "_N$pressedSprite": null,
  9321. "pressedSprite": null,
  9322. "_N$hoverSprite": null,
  9323. "hoverSprite": null,
  9324. "_N$disabledSprite": null,
  9325. "_N$target": null,
  9326. "_id": ""
  9327. },
  9328. {
  9329. "__type__": "cc.ClickEvent",
  9330. "target": {
  9331. "__id__": 1
  9332. },
  9333. "component": "",
  9334. "_componentId": "ac1b6sIq7BFa5uPq8b8pdyl",
  9335. "handler": "onChooseEquipItemClick",
  9336. "customEventData": "4"
  9337. },
  9338. {
  9339. "__type__": "cc.PrefabInfo",
  9340. "root": {
  9341. "__id__": 1
  9342. },
  9343. "asset": {
  9344. "__id__": 0
  9345. },
  9346. "fileId": "cfCkIPyTNEJ5YISFUOLxJX",
  9347. "sync": false
  9348. },
  9349. {
  9350. "__type__": "cc.Node",
  9351. "_name": "item",
  9352. "_objFlags": 0,
  9353. "_parent": {
  9354. "__id__": 174
  9355. },
  9356. "_children": [
  9357. {
  9358. "__id__": 265
  9359. },
  9360. {
  9361. "__id__": 271
  9362. }
  9363. ],
  9364. "_active": true,
  9365. "_components": [
  9366. {
  9367. "__id__": 277
  9368. },
  9369. {
  9370. "__id__": 278
  9371. }
  9372. ],
  9373. "_prefab": {
  9374. "__id__": 280
  9375. },
  9376. "_opacity": 255,
  9377. "_color": {
  9378. "__type__": "cc.Color",
  9379. "r": 255,
  9380. "g": 255,
  9381. "b": 255,
  9382. "a": 255
  9383. },
  9384. "_contentSize": {
  9385. "__type__": "cc.Size",
  9386. "width": 156,
  9387. "height": 76
  9388. },
  9389. "_anchorPoint": {
  9390. "__type__": "cc.Vec2",
  9391. "x": 0.5,
  9392. "y": 0.5
  9393. },
  9394. "_trs": {
  9395. "__type__": "TypedArray",
  9396. "ctor": "Float64Array",
  9397. "array": [
  9398. 65.933,
  9399. -19.378,
  9400. 0,
  9401. 0,
  9402. 0,
  9403. 0,
  9404. 1,
  9405. 1,
  9406. 1,
  9407. 1
  9408. ]
  9409. },
  9410. "_eulerAngles": {
  9411. "__type__": "cc.Vec3",
  9412. "x": 0,
  9413. "y": 0,
  9414. "z": 0
  9415. },
  9416. "_skewX": 0,
  9417. "_skewY": 0,
  9418. "_is3DNode": false,
  9419. "_groupIndex": 0,
  9420. "groupIndex": 0,
  9421. "_id": ""
  9422. },
  9423. {
  9424. "__type__": "cc.Node",
  9425. "_name": "paging2",
  9426. "_objFlags": 0,
  9427. "_parent": {
  9428. "__id__": 264
  9429. },
  9430. "_children": [
  9431. {
  9432. "__id__": 266
  9433. }
  9434. ],
  9435. "_active": true,
  9436. "_components": [
  9437. {
  9438. "__id__": 269
  9439. }
  9440. ],
  9441. "_prefab": {
  9442. "__id__": 270
  9443. },
  9444. "_opacity": 255,
  9445. "_color": {
  9446. "__type__": "cc.Color",
  9447. "r": 255,
  9448. "g": 255,
  9449. "b": 255,
  9450. "a": 255
  9451. },
  9452. "_contentSize": {
  9453. "__type__": "cc.Size",
  9454. "width": 156,
  9455. "height": 76
  9456. },
  9457. "_anchorPoint": {
  9458. "__type__": "cc.Vec2",
  9459. "x": 0.5,
  9460. "y": 0.5
  9461. },
  9462. "_trs": {
  9463. "__type__": "TypedArray",
  9464. "ctor": "Float64Array",
  9465. "array": [
  9466. 0,
  9467. 0,
  9468. 0,
  9469. 0,
  9470. 0,
  9471. 0,
  9472. 1,
  9473. 1,
  9474. 1,
  9475. 1
  9476. ]
  9477. },
  9478. "_eulerAngles": {
  9479. "__type__": "cc.Vec3",
  9480. "x": 0,
  9481. "y": 0,
  9482. "z": 0
  9483. },
  9484. "_skewX": 0,
  9485. "_skewY": 0,
  9486. "_is3DNode": false,
  9487. "_groupIndex": 0,
  9488. "groupIndex": 0,
  9489. "_id": ""
  9490. },
  9491. {
  9492. "__type__": "cc.Node",
  9493. "_name": "filter_icon",
  9494. "_objFlags": 0,
  9495. "_parent": {
  9496. "__id__": 265
  9497. },
  9498. "_children": [],
  9499. "_active": true,
  9500. "_components": [
  9501. {
  9502. "__id__": 267
  9503. }
  9504. ],
  9505. "_prefab": {
  9506. "__id__": 268
  9507. },
  9508. "_opacity": 255,
  9509. "_color": {
  9510. "__type__": "cc.Color",
  9511. "r": 255,
  9512. "g": 255,
  9513. "b": 255,
  9514. "a": 255
  9515. },
  9516. "_contentSize": {
  9517. "__type__": "cc.Size",
  9518. "width": 63,
  9519. "height": 46
  9520. },
  9521. "_anchorPoint": {
  9522. "__type__": "cc.Vec2",
  9523. "x": 0.5,
  9524. "y": 0.5
  9525. },
  9526. "_trs": {
  9527. "__type__": "TypedArray",
  9528. "ctor": "Float64Array",
  9529. "array": [
  9530. 0,
  9531. 0,
  9532. 0,
  9533. 0,
  9534. 0,
  9535. 0,
  9536. 1,
  9537. 1,
  9538. 1,
  9539. 1
  9540. ]
  9541. },
  9542. "_eulerAngles": {
  9543. "__type__": "cc.Vec3",
  9544. "x": 0,
  9545. "y": 0,
  9546. "z": 0
  9547. },
  9548. "_skewX": 0,
  9549. "_skewY": 0,
  9550. "_is3DNode": false,
  9551. "_groupIndex": 0,
  9552. "groupIndex": 0,
  9553. "_id": ""
  9554. },
  9555. {
  9556. "__type__": "cc.Sprite",
  9557. "_name": "",
  9558. "_objFlags": 0,
  9559. "node": {
  9560. "__id__": 266
  9561. },
  9562. "_enabled": true,
  9563. "_materials": [
  9564. {
  9565. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  9566. }
  9567. ],
  9568. "_srcBlendFactor": 770,
  9569. "_dstBlendFactor": 771,
  9570. "_spriteFrame": {
  9571. "__uuid__": "8764e75f-cdb4-4957-8bf0-0754688c2a2b"
  9572. },
  9573. "_type": 0,
  9574. "_sizeMode": 1,
  9575. "_fillType": 0,
  9576. "_fillCenter": {
  9577. "__type__": "cc.Vec2",
  9578. "x": 0,
  9579. "y": 0
  9580. },
  9581. "_fillStart": 0,
  9582. "_fillRange": 0,
  9583. "_isTrimmedMode": true,
  9584. "_atlas": null,
  9585. "_id": ""
  9586. },
  9587. {
  9588. "__type__": "cc.PrefabInfo",
  9589. "root": {
  9590. "__id__": 1
  9591. },
  9592. "asset": {
  9593. "__id__": 0
  9594. },
  9595. "fileId": "9bFsbdzxJMCImEdAas/BSc",
  9596. "sync": false
  9597. },
  9598. {
  9599. "__type__": "cc.Sprite",
  9600. "_name": "",
  9601. "_objFlags": 0,
  9602. "node": {
  9603. "__id__": 265
  9604. },
  9605. "_enabled": true,
  9606. "_materials": [
  9607. {
  9608. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  9609. }
  9610. ],
  9611. "_srcBlendFactor": 770,
  9612. "_dstBlendFactor": 771,
  9613. "_spriteFrame": {
  9614. "__uuid__": "e5c440fd-41bb-4128-bf90-5c74b8550af2"
  9615. },
  9616. "_type": 1,
  9617. "_sizeMode": 0,
  9618. "_fillType": 0,
  9619. "_fillCenter": {
  9620. "__type__": "cc.Vec2",
  9621. "x": 0,
  9622. "y": 0
  9623. },
  9624. "_fillStart": 0,
  9625. "_fillRange": 0,
  9626. "_isTrimmedMode": true,
  9627. "_atlas": null,
  9628. "_id": ""
  9629. },
  9630. {
  9631. "__type__": "cc.PrefabInfo",
  9632. "root": {
  9633. "__id__": 1
  9634. },
  9635. "asset": {
  9636. "__id__": 0
  9637. },
  9638. "fileId": "aczUkUqCVLDqHfWEgPBcEn",
  9639. "sync": false
  9640. },
  9641. {
  9642. "__type__": "cc.Node",
  9643. "_name": "choose",
  9644. "_objFlags": 0,
  9645. "_parent": {
  9646. "__id__": 264
  9647. },
  9648. "_children": [
  9649. {
  9650. "__id__": 272
  9651. }
  9652. ],
  9653. "_active": false,
  9654. "_components": [
  9655. {
  9656. "__id__": 275
  9657. }
  9658. ],
  9659. "_prefab": {
  9660. "__id__": 276
  9661. },
  9662. "_opacity": 255,
  9663. "_color": {
  9664. "__type__": "cc.Color",
  9665. "r": 255,
  9666. "g": 255,
  9667. "b": 255,
  9668. "a": 255
  9669. },
  9670. "_contentSize": {
  9671. "__type__": "cc.Size",
  9672. "width": 156,
  9673. "height": 76
  9674. },
  9675. "_anchorPoint": {
  9676. "__type__": "cc.Vec2",
  9677. "x": 0.5,
  9678. "y": 0.5
  9679. },
  9680. "_trs": {
  9681. "__type__": "TypedArray",
  9682. "ctor": "Float64Array",
  9683. "array": [
  9684. 0,
  9685. 0,
  9686. 0,
  9687. 0,
  9688. 0,
  9689. 0,
  9690. 1,
  9691. 1,
  9692. 1,
  9693. 1
  9694. ]
  9695. },
  9696. "_eulerAngles": {
  9697. "__type__": "cc.Vec3",
  9698. "x": 0,
  9699. "y": 0,
  9700. "z": 0
  9701. },
  9702. "_skewX": 0,
  9703. "_skewY": 0,
  9704. "_is3DNode": false,
  9705. "_groupIndex": 0,
  9706. "groupIndex": 0,
  9707. "_id": ""
  9708. },
  9709. {
  9710. "__type__": "cc.Node",
  9711. "_name": "filter_icon_y",
  9712. "_objFlags": 0,
  9713. "_parent": {
  9714. "__id__": 271
  9715. },
  9716. "_children": [],
  9717. "_active": true,
  9718. "_components": [
  9719. {
  9720. "__id__": 273
  9721. }
  9722. ],
  9723. "_prefab": {
  9724. "__id__": 274
  9725. },
  9726. "_opacity": 255,
  9727. "_color": {
  9728. "__type__": "cc.Color",
  9729. "r": 255,
  9730. "g": 255,
  9731. "b": 255,
  9732. "a": 255
  9733. },
  9734. "_contentSize": {
  9735. "__type__": "cc.Size",
  9736. "width": 63,
  9737. "height": 46
  9738. },
  9739. "_anchorPoint": {
  9740. "__type__": "cc.Vec2",
  9741. "x": 0.5,
  9742. "y": 0.5
  9743. },
  9744. "_trs": {
  9745. "__type__": "TypedArray",
  9746. "ctor": "Float64Array",
  9747. "array": [
  9748. 0,
  9749. 0,
  9750. 0,
  9751. 0,
  9752. 0,
  9753. 0,
  9754. 1,
  9755. 1,
  9756. 1,
  9757. 1
  9758. ]
  9759. },
  9760. "_eulerAngles": {
  9761. "__type__": "cc.Vec3",
  9762. "x": 0,
  9763. "y": 0,
  9764. "z": 0
  9765. },
  9766. "_skewX": 0,
  9767. "_skewY": 0,
  9768. "_is3DNode": false,
  9769. "_groupIndex": 0,
  9770. "groupIndex": 0,
  9771. "_id": ""
  9772. },
  9773. {
  9774. "__type__": "cc.Sprite",
  9775. "_name": "",
  9776. "_objFlags": 0,
  9777. "node": {
  9778. "__id__": 272
  9779. },
  9780. "_enabled": true,
  9781. "_materials": [
  9782. {
  9783. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  9784. }
  9785. ],
  9786. "_srcBlendFactor": 770,
  9787. "_dstBlendFactor": 771,
  9788. "_spriteFrame": {
  9789. "__uuid__": "bff79e53-842e-4948-8b4e-a7036286babc"
  9790. },
  9791. "_type": 0,
  9792. "_sizeMode": 1,
  9793. "_fillType": 0,
  9794. "_fillCenter": {
  9795. "__type__": "cc.Vec2",
  9796. "x": 0,
  9797. "y": 0
  9798. },
  9799. "_fillStart": 0,
  9800. "_fillRange": 0,
  9801. "_isTrimmedMode": true,
  9802. "_atlas": null,
  9803. "_id": ""
  9804. },
  9805. {
  9806. "__type__": "cc.PrefabInfo",
  9807. "root": {
  9808. "__id__": 1
  9809. },
  9810. "asset": {
  9811. "__id__": 0
  9812. },
  9813. "fileId": "15fvxRYz1PJ5oeH57Bp+Vo",
  9814. "sync": false
  9815. },
  9816. {
  9817. "__type__": "cc.Sprite",
  9818. "_name": "",
  9819. "_objFlags": 0,
  9820. "node": {
  9821. "__id__": 271
  9822. },
  9823. "_enabled": true,
  9824. "_materials": [
  9825. {
  9826. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  9827. }
  9828. ],
  9829. "_srcBlendFactor": 770,
  9830. "_dstBlendFactor": 771,
  9831. "_spriteFrame": {
  9832. "__uuid__": "16ef86cd-a92f-48eb-8d2d-8b5be206246e"
  9833. },
  9834. "_type": 1,
  9835. "_sizeMode": 0,
  9836. "_fillType": 0,
  9837. "_fillCenter": {
  9838. "__type__": "cc.Vec2",
  9839. "x": 0,
  9840. "y": 0
  9841. },
  9842. "_fillStart": 0,
  9843. "_fillRange": 0,
  9844. "_isTrimmedMode": true,
  9845. "_atlas": null,
  9846. "_id": ""
  9847. },
  9848. {
  9849. "__type__": "cc.PrefabInfo",
  9850. "root": {
  9851. "__id__": 1
  9852. },
  9853. "asset": {
  9854. "__id__": 0
  9855. },
  9856. "fileId": "11yViFcSxMl5s3HSTU5N5w",
  9857. "sync": false
  9858. },
  9859. {
  9860. "__type__": "466e8BS6wJF6bKBj6rcxcSE",
  9861. "_name": "",
  9862. "_objFlags": 0,
  9863. "node": {
  9864. "__id__": 264
  9865. },
  9866. "_enabled": true,
  9867. "openContinuous": true,
  9868. "continuousTime": 0.2,
  9869. "multiTouch": false,
  9870. "_id": ""
  9871. },
  9872. {
  9873. "__type__": "61994AafntNFIbmt1zoyLq+",
  9874. "_name": "",
  9875. "_objFlags": 0,
  9876. "node": {
  9877. "__id__": 264
  9878. },
  9879. "_enabled": true,
  9880. "_normalMaterial": null,
  9881. "_grayMaterial": null,
  9882. "duration": 0.1,
  9883. "zoomScale": 1.2,
  9884. "clickEvents": [
  9885. {
  9886. "__id__": 279
  9887. }
  9888. ],
  9889. "_N$interactable": true,
  9890. "_N$enableAutoGrayEffect": false,
  9891. "_N$transition": 0,
  9892. "transition": 0,
  9893. "_N$normalColor": {
  9894. "__type__": "cc.Color",
  9895. "r": 255,
  9896. "g": 255,
  9897. "b": 255,
  9898. "a": 255
  9899. },
  9900. "_N$pressedColor": {
  9901. "__type__": "cc.Color",
  9902. "r": 211,
  9903. "g": 211,
  9904. "b": 211,
  9905. "a": 255
  9906. },
  9907. "pressedColor": {
  9908. "__type__": "cc.Color",
  9909. "r": 211,
  9910. "g": 211,
  9911. "b": 211,
  9912. "a": 255
  9913. },
  9914. "_N$hoverColor": {
  9915. "__type__": "cc.Color",
  9916. "r": 255,
  9917. "g": 255,
  9918. "b": 255,
  9919. "a": 255
  9920. },
  9921. "hoverColor": {
  9922. "__type__": "cc.Color",
  9923. "r": 255,
  9924. "g": 255,
  9925. "b": 255,
  9926. "a": 255
  9927. },
  9928. "_N$disabledColor": {
  9929. "__type__": "cc.Color",
  9930. "r": 124,
  9931. "g": 124,
  9932. "b": 124,
  9933. "a": 255
  9934. },
  9935. "_N$normalSprite": null,
  9936. "_N$pressedSprite": null,
  9937. "pressedSprite": null,
  9938. "_N$hoverSprite": null,
  9939. "hoverSprite": null,
  9940. "_N$disabledSprite": null,
  9941. "_N$target": null,
  9942. "_id": ""
  9943. },
  9944. {
  9945. "__type__": "cc.ClickEvent",
  9946. "target": {
  9947. "__id__": 1
  9948. },
  9949. "component": "",
  9950. "_componentId": "ac1b6sIq7BFa5uPq8b8pdyl",
  9951. "handler": "onChooseEquipItemClick",
  9952. "customEventData": "5"
  9953. },
  9954. {
  9955. "__type__": "cc.PrefabInfo",
  9956. "root": {
  9957. "__id__": 1
  9958. },
  9959. "asset": {
  9960. "__id__": 0
  9961. },
  9962. "fileId": "93rihEF3NFd4d/p7tVbGRE",
  9963. "sync": false
  9964. },
  9965. {
  9966. "__type__": "cc.Node",
  9967. "_name": "item",
  9968. "_objFlags": 0,
  9969. "_parent": {
  9970. "__id__": 174
  9971. },
  9972. "_children": [
  9973. {
  9974. "__id__": 282
  9975. },
  9976. {
  9977. "__id__": 288
  9978. }
  9979. ],
  9980. "_active": true,
  9981. "_components": [
  9982. {
  9983. "__id__": 294
  9984. },
  9985. {
  9986. "__id__": 295
  9987. }
  9988. ],
  9989. "_prefab": {
  9990. "__id__": 297
  9991. },
  9992. "_opacity": 255,
  9993. "_color": {
  9994. "__type__": "cc.Color",
  9995. "r": 255,
  9996. "g": 255,
  9997. "b": 255,
  9998. "a": 255
  9999. },
  10000. "_contentSize": {
  10001. "__type__": "cc.Size",
  10002. "width": 156,
  10003. "height": 76
  10004. },
  10005. "_anchorPoint": {
  10006. "__type__": "cc.Vec2",
  10007. "x": 0.5,
  10008. "y": 0.5
  10009. },
  10010. "_trs": {
  10011. "__type__": "TypedArray",
  10012. "ctor": "Float64Array",
  10013. "array": [
  10014. 226.477,
  10015. -19.378,
  10016. 0,
  10017. 0,
  10018. 0,
  10019. 0,
  10020. 1,
  10021. 1,
  10022. 1,
  10023. 1
  10024. ]
  10025. },
  10026. "_eulerAngles": {
  10027. "__type__": "cc.Vec3",
  10028. "x": 0,
  10029. "y": 0,
  10030. "z": 0
  10031. },
  10032. "_skewX": 0,
  10033. "_skewY": 0,
  10034. "_is3DNode": false,
  10035. "_groupIndex": 0,
  10036. "groupIndex": 0,
  10037. "_id": ""
  10038. },
  10039. {
  10040. "__type__": "cc.Node",
  10041. "_name": "paging2",
  10042. "_objFlags": 0,
  10043. "_parent": {
  10044. "__id__": 281
  10045. },
  10046. "_children": [
  10047. {
  10048. "__id__": 283
  10049. }
  10050. ],
  10051. "_active": true,
  10052. "_components": [
  10053. {
  10054. "__id__": 286
  10055. }
  10056. ],
  10057. "_prefab": {
  10058. "__id__": 287
  10059. },
  10060. "_opacity": 255,
  10061. "_color": {
  10062. "__type__": "cc.Color",
  10063. "r": 255,
  10064. "g": 255,
  10065. "b": 255,
  10066. "a": 255
  10067. },
  10068. "_contentSize": {
  10069. "__type__": "cc.Size",
  10070. "width": 156,
  10071. "height": 76
  10072. },
  10073. "_anchorPoint": {
  10074. "__type__": "cc.Vec2",
  10075. "x": 0.5,
  10076. "y": 0.5
  10077. },
  10078. "_trs": {
  10079. "__type__": "TypedArray",
  10080. "ctor": "Float64Array",
  10081. "array": [
  10082. 0,
  10083. 0,
  10084. 0,
  10085. 0,
  10086. 0,
  10087. 0,
  10088. 1,
  10089. 1,
  10090. 1,
  10091. 1
  10092. ]
  10093. },
  10094. "_eulerAngles": {
  10095. "__type__": "cc.Vec3",
  10096. "x": 0,
  10097. "y": 0,
  10098. "z": 0
  10099. },
  10100. "_skewX": 0,
  10101. "_skewY": 0,
  10102. "_is3DNode": false,
  10103. "_groupIndex": 0,
  10104. "groupIndex": 0,
  10105. "_id": ""
  10106. },
  10107. {
  10108. "__type__": "cc.Node",
  10109. "_name": "filter_icon",
  10110. "_objFlags": 0,
  10111. "_parent": {
  10112. "__id__": 282
  10113. },
  10114. "_children": [],
  10115. "_active": true,
  10116. "_components": [
  10117. {
  10118. "__id__": 284
  10119. }
  10120. ],
  10121. "_prefab": {
  10122. "__id__": 285
  10123. },
  10124. "_opacity": 255,
  10125. "_color": {
  10126. "__type__": "cc.Color",
  10127. "r": 255,
  10128. "g": 255,
  10129. "b": 255,
  10130. "a": 255
  10131. },
  10132. "_contentSize": {
  10133. "__type__": "cc.Size",
  10134. "width": 55,
  10135. "height": 51
  10136. },
  10137. "_anchorPoint": {
  10138. "__type__": "cc.Vec2",
  10139. "x": 0.5,
  10140. "y": 0.5
  10141. },
  10142. "_trs": {
  10143. "__type__": "TypedArray",
  10144. "ctor": "Float64Array",
  10145. "array": [
  10146. 0,
  10147. 0,
  10148. 0,
  10149. 0,
  10150. 0,
  10151. 0,
  10152. 1,
  10153. 1,
  10154. 1,
  10155. 1
  10156. ]
  10157. },
  10158. "_eulerAngles": {
  10159. "__type__": "cc.Vec3",
  10160. "x": 0,
  10161. "y": 0,
  10162. "z": 0
  10163. },
  10164. "_skewX": 0,
  10165. "_skewY": 0,
  10166. "_is3DNode": false,
  10167. "_groupIndex": 0,
  10168. "groupIndex": 0,
  10169. "_id": ""
  10170. },
  10171. {
  10172. "__type__": "cc.Sprite",
  10173. "_name": "",
  10174. "_objFlags": 0,
  10175. "node": {
  10176. "__id__": 283
  10177. },
  10178. "_enabled": true,
  10179. "_materials": [
  10180. {
  10181. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  10182. }
  10183. ],
  10184. "_srcBlendFactor": 770,
  10185. "_dstBlendFactor": 771,
  10186. "_spriteFrame": {
  10187. "__uuid__": "82d13739-fcdb-4623-85e4-cba66655d9ec"
  10188. },
  10189. "_type": 0,
  10190. "_sizeMode": 1,
  10191. "_fillType": 0,
  10192. "_fillCenter": {
  10193. "__type__": "cc.Vec2",
  10194. "x": 0,
  10195. "y": 0
  10196. },
  10197. "_fillStart": 0,
  10198. "_fillRange": 0,
  10199. "_isTrimmedMode": true,
  10200. "_atlas": null,
  10201. "_id": ""
  10202. },
  10203. {
  10204. "__type__": "cc.PrefabInfo",
  10205. "root": {
  10206. "__id__": 1
  10207. },
  10208. "asset": {
  10209. "__id__": 0
  10210. },
  10211. "fileId": "9b4eKleWFJF59H9iSkWiN0",
  10212. "sync": false
  10213. },
  10214. {
  10215. "__type__": "cc.Sprite",
  10216. "_name": "",
  10217. "_objFlags": 0,
  10218. "node": {
  10219. "__id__": 282
  10220. },
  10221. "_enabled": true,
  10222. "_materials": [
  10223. {
  10224. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  10225. }
  10226. ],
  10227. "_srcBlendFactor": 770,
  10228. "_dstBlendFactor": 771,
  10229. "_spriteFrame": {
  10230. "__uuid__": "e5c440fd-41bb-4128-bf90-5c74b8550af2"
  10231. },
  10232. "_type": 1,
  10233. "_sizeMode": 0,
  10234. "_fillType": 0,
  10235. "_fillCenter": {
  10236. "__type__": "cc.Vec2",
  10237. "x": 0,
  10238. "y": 0
  10239. },
  10240. "_fillStart": 0,
  10241. "_fillRange": 0,
  10242. "_isTrimmedMode": true,
  10243. "_atlas": null,
  10244. "_id": ""
  10245. },
  10246. {
  10247. "__type__": "cc.PrefabInfo",
  10248. "root": {
  10249. "__id__": 1
  10250. },
  10251. "asset": {
  10252. "__id__": 0
  10253. },
  10254. "fileId": "49NunNJUpJD62JqrRgOsHM",
  10255. "sync": false
  10256. },
  10257. {
  10258. "__type__": "cc.Node",
  10259. "_name": "choose",
  10260. "_objFlags": 0,
  10261. "_parent": {
  10262. "__id__": 281
  10263. },
  10264. "_children": [
  10265. {
  10266. "__id__": 289
  10267. }
  10268. ],
  10269. "_active": false,
  10270. "_components": [
  10271. {
  10272. "__id__": 292
  10273. }
  10274. ],
  10275. "_prefab": {
  10276. "__id__": 293
  10277. },
  10278. "_opacity": 255,
  10279. "_color": {
  10280. "__type__": "cc.Color",
  10281. "r": 255,
  10282. "g": 255,
  10283. "b": 255,
  10284. "a": 255
  10285. },
  10286. "_contentSize": {
  10287. "__type__": "cc.Size",
  10288. "width": 156,
  10289. "height": 76
  10290. },
  10291. "_anchorPoint": {
  10292. "__type__": "cc.Vec2",
  10293. "x": 0.5,
  10294. "y": 0.5
  10295. },
  10296. "_trs": {
  10297. "__type__": "TypedArray",
  10298. "ctor": "Float64Array",
  10299. "array": [
  10300. 0,
  10301. 0,
  10302. 0,
  10303. 0,
  10304. 0,
  10305. 0,
  10306. 1,
  10307. 1,
  10308. 1,
  10309. 1
  10310. ]
  10311. },
  10312. "_eulerAngles": {
  10313. "__type__": "cc.Vec3",
  10314. "x": 0,
  10315. "y": 0,
  10316. "z": 0
  10317. },
  10318. "_skewX": 0,
  10319. "_skewY": 0,
  10320. "_is3DNode": false,
  10321. "_groupIndex": 0,
  10322. "groupIndex": 0,
  10323. "_id": ""
  10324. },
  10325. {
  10326. "__type__": "cc.Node",
  10327. "_name": "filter_icon_y",
  10328. "_objFlags": 0,
  10329. "_parent": {
  10330. "__id__": 288
  10331. },
  10332. "_children": [],
  10333. "_active": true,
  10334. "_components": [
  10335. {
  10336. "__id__": 290
  10337. }
  10338. ],
  10339. "_prefab": {
  10340. "__id__": 291
  10341. },
  10342. "_opacity": 255,
  10343. "_color": {
  10344. "__type__": "cc.Color",
  10345. "r": 255,
  10346. "g": 255,
  10347. "b": 255,
  10348. "a": 255
  10349. },
  10350. "_contentSize": {
  10351. "__type__": "cc.Size",
  10352. "width": 55,
  10353. "height": 51
  10354. },
  10355. "_anchorPoint": {
  10356. "__type__": "cc.Vec2",
  10357. "x": 0.5,
  10358. "y": 0.5
  10359. },
  10360. "_trs": {
  10361. "__type__": "TypedArray",
  10362. "ctor": "Float64Array",
  10363. "array": [
  10364. 0,
  10365. 0,
  10366. 0,
  10367. 0,
  10368. 0,
  10369. 0,
  10370. 1,
  10371. 1,
  10372. 1,
  10373. 1
  10374. ]
  10375. },
  10376. "_eulerAngles": {
  10377. "__type__": "cc.Vec3",
  10378. "x": 0,
  10379. "y": 0,
  10380. "z": 0
  10381. },
  10382. "_skewX": 0,
  10383. "_skewY": 0,
  10384. "_is3DNode": false,
  10385. "_groupIndex": 0,
  10386. "groupIndex": 0,
  10387. "_id": ""
  10388. },
  10389. {
  10390. "__type__": "cc.Sprite",
  10391. "_name": "",
  10392. "_objFlags": 0,
  10393. "node": {
  10394. "__id__": 289
  10395. },
  10396. "_enabled": true,
  10397. "_materials": [
  10398. {
  10399. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  10400. }
  10401. ],
  10402. "_srcBlendFactor": 770,
  10403. "_dstBlendFactor": 771,
  10404. "_spriteFrame": {
  10405. "__uuid__": "915dc51f-8e80-4f6f-a654-3fdfcf909e26"
  10406. },
  10407. "_type": 0,
  10408. "_sizeMode": 1,
  10409. "_fillType": 0,
  10410. "_fillCenter": {
  10411. "__type__": "cc.Vec2",
  10412. "x": 0,
  10413. "y": 0
  10414. },
  10415. "_fillStart": 0,
  10416. "_fillRange": 0,
  10417. "_isTrimmedMode": true,
  10418. "_atlas": null,
  10419. "_id": ""
  10420. },
  10421. {
  10422. "__type__": "cc.PrefabInfo",
  10423. "root": {
  10424. "__id__": 1
  10425. },
  10426. "asset": {
  10427. "__id__": 0
  10428. },
  10429. "fileId": "dbQWJ12+hO0b47WnGyxmBj",
  10430. "sync": false
  10431. },
  10432. {
  10433. "__type__": "cc.Sprite",
  10434. "_name": "",
  10435. "_objFlags": 0,
  10436. "node": {
  10437. "__id__": 288
  10438. },
  10439. "_enabled": true,
  10440. "_materials": [
  10441. {
  10442. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  10443. }
  10444. ],
  10445. "_srcBlendFactor": 770,
  10446. "_dstBlendFactor": 771,
  10447. "_spriteFrame": {
  10448. "__uuid__": "16ef86cd-a92f-48eb-8d2d-8b5be206246e"
  10449. },
  10450. "_type": 1,
  10451. "_sizeMode": 0,
  10452. "_fillType": 0,
  10453. "_fillCenter": {
  10454. "__type__": "cc.Vec2",
  10455. "x": 0,
  10456. "y": 0
  10457. },
  10458. "_fillStart": 0,
  10459. "_fillRange": 0,
  10460. "_isTrimmedMode": true,
  10461. "_atlas": null,
  10462. "_id": ""
  10463. },
  10464. {
  10465. "__type__": "cc.PrefabInfo",
  10466. "root": {
  10467. "__id__": 1
  10468. },
  10469. "asset": {
  10470. "__id__": 0
  10471. },
  10472. "fileId": "324JawMd1GMbLAXQa7ql9X",
  10473. "sync": false
  10474. },
  10475. {
  10476. "__type__": "466e8BS6wJF6bKBj6rcxcSE",
  10477. "_name": "",
  10478. "_objFlags": 0,
  10479. "node": {
  10480. "__id__": 281
  10481. },
  10482. "_enabled": true,
  10483. "openContinuous": true,
  10484. "continuousTime": 0.2,
  10485. "multiTouch": false,
  10486. "_id": ""
  10487. },
  10488. {
  10489. "__type__": "61994AafntNFIbmt1zoyLq+",
  10490. "_name": "",
  10491. "_objFlags": 0,
  10492. "node": {
  10493. "__id__": 281
  10494. },
  10495. "_enabled": true,
  10496. "_normalMaterial": null,
  10497. "_grayMaterial": null,
  10498. "duration": 0.1,
  10499. "zoomScale": 1.2,
  10500. "clickEvents": [
  10501. {
  10502. "__id__": 296
  10503. }
  10504. ],
  10505. "_N$interactable": true,
  10506. "_N$enableAutoGrayEffect": false,
  10507. "_N$transition": 0,
  10508. "transition": 0,
  10509. "_N$normalColor": {
  10510. "__type__": "cc.Color",
  10511. "r": 255,
  10512. "g": 255,
  10513. "b": 255,
  10514. "a": 255
  10515. },
  10516. "_N$pressedColor": {
  10517. "__type__": "cc.Color",
  10518. "r": 211,
  10519. "g": 211,
  10520. "b": 211,
  10521. "a": 255
  10522. },
  10523. "pressedColor": {
  10524. "__type__": "cc.Color",
  10525. "r": 211,
  10526. "g": 211,
  10527. "b": 211,
  10528. "a": 255
  10529. },
  10530. "_N$hoverColor": {
  10531. "__type__": "cc.Color",
  10532. "r": 255,
  10533. "g": 255,
  10534. "b": 255,
  10535. "a": 255
  10536. },
  10537. "hoverColor": {
  10538. "__type__": "cc.Color",
  10539. "r": 255,
  10540. "g": 255,
  10541. "b": 255,
  10542. "a": 255
  10543. },
  10544. "_N$disabledColor": {
  10545. "__type__": "cc.Color",
  10546. "r": 124,
  10547. "g": 124,
  10548. "b": 124,
  10549. "a": 255
  10550. },
  10551. "_N$normalSprite": null,
  10552. "_N$pressedSprite": null,
  10553. "pressedSprite": null,
  10554. "_N$hoverSprite": null,
  10555. "hoverSprite": null,
  10556. "_N$disabledSprite": null,
  10557. "_N$target": null,
  10558. "_id": ""
  10559. },
  10560. {
  10561. "__type__": "cc.ClickEvent",
  10562. "target": {
  10563. "__id__": 1
  10564. },
  10565. "component": "",
  10566. "_componentId": "ac1b6sIq7BFa5uPq8b8pdyl",
  10567. "handler": "onChooseEquipItemClick",
  10568. "customEventData": "6"
  10569. },
  10570. {
  10571. "__type__": "cc.PrefabInfo",
  10572. "root": {
  10573. "__id__": 1
  10574. },
  10575. "asset": {
  10576. "__id__": 0
  10577. },
  10578. "fileId": "ecKsAVqrRF6IUhaGqFm1si",
  10579. "sync": false
  10580. },
  10581. {
  10582. "__type__": "cc.PrefabInfo",
  10583. "root": {
  10584. "__id__": 1
  10585. },
  10586. "asset": {
  10587. "__id__": 0
  10588. },
  10589. "fileId": "2bVmW69QVAwIgP/KqAJnAH",
  10590. "sync": false
  10591. },
  10592. {
  10593. "__type__": "cc.BlockInputEvents",
  10594. "_name": "",
  10595. "_objFlags": 0,
  10596. "node": {
  10597. "__id__": 170
  10598. },
  10599. "_enabled": true,
  10600. "_id": ""
  10601. },
  10602. {
  10603. "__type__": "cc.PrefabInfo",
  10604. "root": {
  10605. "__id__": 1
  10606. },
  10607. "asset": {
  10608. "__id__": 0
  10609. },
  10610. "fileId": "7c5KBe9GtFUqoq9cROpQrZ",
  10611. "sync": false
  10612. },
  10613. {
  10614. "__type__": "cc.Node",
  10615. "_name": "btn_chooseType",
  10616. "_objFlags": 0,
  10617. "_parent": {
  10618. "__id__": 1
  10619. },
  10620. "_children": [
  10621. {
  10622. "__id__": 302
  10623. },
  10624. {
  10625. "__id__": 307
  10626. }
  10627. ],
  10628. "_active": true,
  10629. "_components": [
  10630. {
  10631. "__id__": 310
  10632. },
  10633. {
  10634. "__id__": 311
  10635. },
  10636. {
  10637. "__id__": 312
  10638. }
  10639. ],
  10640. "_prefab": {
  10641. "__id__": 314
  10642. },
  10643. "_opacity": 255,
  10644. "_color": {
  10645. "__type__": "cc.Color",
  10646. "r": 255,
  10647. "g": 255,
  10648. "b": 255,
  10649. "a": 255
  10650. },
  10651. "_contentSize": {
  10652. "__type__": "cc.Size",
  10653. "width": 650,
  10654. "height": 60
  10655. },
  10656. "_anchorPoint": {
  10657. "__type__": "cc.Vec2",
  10658. "x": 0.5,
  10659. "y": 0.5
  10660. },
  10661. "_trs": {
  10662. "__type__": "TypedArray",
  10663. "ctor": "Float64Array",
  10664. "array": [
  10665. 578.012,
  10666. -442.506,
  10667. 0,
  10668. 0,
  10669. 0,
  10670. 0,
  10671. 1,
  10672. 1,
  10673. 1,
  10674. 1
  10675. ]
  10676. },
  10677. "_eulerAngles": {
  10678. "__type__": "cc.Vec3",
  10679. "x": 0,
  10680. "y": 0,
  10681. "z": 0
  10682. },
  10683. "_skewX": 0,
  10684. "_skewY": 0,
  10685. "_is3DNode": false,
  10686. "_groupIndex": 0,
  10687. "groupIndex": 0,
  10688. "_id": ""
  10689. },
  10690. {
  10691. "__type__": "cc.Node",
  10692. "_name": "label",
  10693. "_objFlags": 0,
  10694. "_parent": {
  10695. "__id__": 301
  10696. },
  10697. "_children": [],
  10698. "_active": true,
  10699. "_components": [
  10700. {
  10701. "__id__": 303
  10702. },
  10703. {
  10704. "__id__": 304
  10705. },
  10706. {
  10707. "__id__": 305
  10708. }
  10709. ],
  10710. "_prefab": {
  10711. "__id__": 306
  10712. },
  10713. "_opacity": 255,
  10714. "_color": {
  10715. "__type__": "cc.Color",
  10716. "r": 255,
  10717. "g": 255,
  10718. "b": 255,
  10719. "a": 255
  10720. },
  10721. "_contentSize": {
  10722. "__type__": "cc.Size",
  10723. "width": 69.77000000000001,
  10724. "height": 56.4
  10725. },
  10726. "_anchorPoint": {
  10727. "__type__": "cc.Vec2",
  10728. "x": 0,
  10729. "y": 0.5
  10730. },
  10731. "_trs": {
  10732. "__type__": "TypedArray",
  10733. "ctor": "Float64Array",
  10734. "array": [
  10735. -44.31,
  10736. 0,
  10737. 0,
  10738. 0,
  10739. 0,
  10740. 0,
  10741. 1,
  10742. 1,
  10743. 1,
  10744. 1
  10745. ]
  10746. },
  10747. "_eulerAngles": {
  10748. "__type__": "cc.Vec3",
  10749. "x": 0,
  10750. "y": 0,
  10751. "z": 0
  10752. },
  10753. "_skewX": 0,
  10754. "_skewY": 0,
  10755. "_is3DNode": false,
  10756. "_groupIndex": 0,
  10757. "groupIndex": 0,
  10758. "_id": ""
  10759. },
  10760. {
  10761. "__type__": "cc.Label",
  10762. "_name": "",
  10763. "_objFlags": 0,
  10764. "node": {
  10765. "__id__": 302
  10766. },
  10767. "_enabled": true,
  10768. "_materials": [
  10769. {
  10770. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  10771. }
  10772. ],
  10773. "_srcBlendFactor": 770,
  10774. "_dstBlendFactor": 771,
  10775. "_string": "ALL",
  10776. "_N$string": "ALL",
  10777. "_fontSize": 36,
  10778. "_lineHeight": 40,
  10779. "_enableWrapText": true,
  10780. "_N$file": {
  10781. "__uuid__": "53fae5bd-72f8-48d5-9465-9798bf9bde5c"
  10782. },
  10783. "_isSystemFontUsed": false,
  10784. "_spacingX": 0,
  10785. "_batchAsBitmap": false,
  10786. "_styleFlags": 0,
  10787. "_underlineHeight": 0,
  10788. "_N$horizontalAlign": 1,
  10789. "_N$verticalAlign": 1,
  10790. "_N$fontFamily": "Arial",
  10791. "_N$overflow": 0,
  10792. "_N$cacheMode": 0,
  10793. "_id": ""
  10794. },
  10795. {
  10796. "__type__": "cc.LabelOutline",
  10797. "_name": "",
  10798. "_objFlags": 0,
  10799. "node": {
  10800. "__id__": 302
  10801. },
  10802. "_enabled": true,
  10803. "_color": {
  10804. "__type__": "cc.Color",
  10805. "r": 38,
  10806. "g": 17,
  10807. "b": 12,
  10808. "a": 255
  10809. },
  10810. "_width": 3,
  10811. "_id": ""
  10812. },
  10813. {
  10814. "__type__": "41ebaVoPpRA4Kp67XEdHfZn",
  10815. "_name": "",
  10816. "_objFlags": 0,
  10817. "node": {
  10818. "__id__": 302
  10819. },
  10820. "_enabled": true,
  10821. "_englishCase": 2,
  10822. "i18n_string": "t62",
  10823. "i18n_params": [],
  10824. "_addColon": false,
  10825. "_id": ""
  10826. },
  10827. {
  10828. "__type__": "cc.PrefabInfo",
  10829. "root": {
  10830. "__id__": 302
  10831. },
  10832. "asset": {
  10833. "__uuid__": "b55c4816-1512-4abe-a683-117b4601b39a"
  10834. },
  10835. "fileId": "0e1GqUhPJHuarUtDnjiqDl",
  10836. "sync": false
  10837. },
  10838. {
  10839. "__type__": "cc.Node",
  10840. "_name": "type_icon",
  10841. "_objFlags": 0,
  10842. "_parent": {
  10843. "__id__": 301
  10844. },
  10845. "_children": [],
  10846. "_active": true,
  10847. "_components": [
  10848. {
  10849. "__id__": 308
  10850. }
  10851. ],
  10852. "_prefab": {
  10853. "__id__": 309
  10854. },
  10855. "_opacity": 255,
  10856. "_color": {
  10857. "__type__": "cc.Color",
  10858. "r": 255,
  10859. "g": 255,
  10860. "b": 255,
  10861. "a": 255
  10862. },
  10863. "_contentSize": {
  10864. "__type__": "cc.Size",
  10865. "width": 56,
  10866. "height": 55
  10867. },
  10868. "_anchorPoint": {
  10869. "__type__": "cc.Vec2",
  10870. "x": 0.5,
  10871. "y": 0.5
  10872. },
  10873. "_trs": {
  10874. "__type__": "TypedArray",
  10875. "ctor": "Float64Array",
  10876. "array": [
  10877. -82.6,
  10878. 0,
  10879. 0,
  10880. 0,
  10881. 0,
  10882. 0,
  10883. 1,
  10884. 1,
  10885. 1,
  10886. 1
  10887. ]
  10888. },
  10889. "_eulerAngles": {
  10890. "__type__": "cc.Vec3",
  10891. "x": 0,
  10892. "y": 0,
  10893. "z": 0
  10894. },
  10895. "_skewX": 0,
  10896. "_skewY": 0,
  10897. "_is3DNode": false,
  10898. "_groupIndex": 0,
  10899. "groupIndex": 0,
  10900. "_id": ""
  10901. },
  10902. {
  10903. "__type__": "cc.Sprite",
  10904. "_name": "",
  10905. "_objFlags": 0,
  10906. "node": {
  10907. "__id__": 307
  10908. },
  10909. "_enabled": true,
  10910. "_materials": [
  10911. {
  10912. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  10913. }
  10914. ],
  10915. "_srcBlendFactor": 770,
  10916. "_dstBlendFactor": 771,
  10917. "_spriteFrame": {
  10918. "__uuid__": "583553b3-f75b-467e-b892-6757e578d9d4"
  10919. },
  10920. "_type": 0,
  10921. "_sizeMode": 1,
  10922. "_fillType": 0,
  10923. "_fillCenter": {
  10924. "__type__": "cc.Vec2",
  10925. "x": 0,
  10926. "y": 0
  10927. },
  10928. "_fillStart": 0,
  10929. "_fillRange": 0,
  10930. "_isTrimmedMode": true,
  10931. "_atlas": null,
  10932. "_id": ""
  10933. },
  10934. {
  10935. "__type__": "cc.PrefabInfo",
  10936. "root": {
  10937. "__id__": 1
  10938. },
  10939. "asset": {
  10940. "__id__": 0
  10941. },
  10942. "fileId": "33oUks7P5CwLspuLIOBxus",
  10943. "sync": false
  10944. },
  10945. {
  10946. "__type__": "cc.Sprite",
  10947. "_name": "",
  10948. "_objFlags": 0,
  10949. "node": {
  10950. "__id__": 301
  10951. },
  10952. "_enabled": true,
  10953. "_materials": [
  10954. {
  10955. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  10956. }
  10957. ],
  10958. "_srcBlendFactor": 770,
  10959. "_dstBlendFactor": 771,
  10960. "_spriteFrame": {
  10961. "__uuid__": "011a4814-a4c3-4bef-89ff-c3a75a4cb9e1"
  10962. },
  10963. "_type": 1,
  10964. "_sizeMode": 0,
  10965. "_fillType": 0,
  10966. "_fillCenter": {
  10967. "__type__": "cc.Vec2",
  10968. "x": 0,
  10969. "y": 0
  10970. },
  10971. "_fillStart": 0,
  10972. "_fillRange": 0,
  10973. "_isTrimmedMode": true,
  10974. "_atlas": null,
  10975. "_id": ""
  10976. },
  10977. {
  10978. "__type__": "466e8BS6wJF6bKBj6rcxcSE",
  10979. "_name": "",
  10980. "_objFlags": 0,
  10981. "node": {
  10982. "__id__": 301
  10983. },
  10984. "_enabled": true,
  10985. "openContinuous": true,
  10986. "continuousTime": 0.2,
  10987. "multiTouch": false,
  10988. "_id": ""
  10989. },
  10990. {
  10991. "__type__": "61994AafntNFIbmt1zoyLq+",
  10992. "_name": "",
  10993. "_objFlags": 0,
  10994. "node": {
  10995. "__id__": 301
  10996. },
  10997. "_enabled": true,
  10998. "_normalMaterial": null,
  10999. "_grayMaterial": null,
  11000. "duration": 0.1,
  11001. "zoomScale": 1.2,
  11002. "clickEvents": [
  11003. {
  11004. "__id__": 313
  11005. }
  11006. ],
  11007. "_N$interactable": true,
  11008. "_N$enableAutoGrayEffect": false,
  11009. "_N$transition": 0,
  11010. "transition": 0,
  11011. "_N$normalColor": {
  11012. "__type__": "cc.Color",
  11013. "r": 255,
  11014. "g": 255,
  11015. "b": 255,
  11016. "a": 255
  11017. },
  11018. "_N$pressedColor": {
  11019. "__type__": "cc.Color",
  11020. "r": 211,
  11021. "g": 211,
  11022. "b": 211,
  11023. "a": 255
  11024. },
  11025. "pressedColor": {
  11026. "__type__": "cc.Color",
  11027. "r": 211,
  11028. "g": 211,
  11029. "b": 211,
  11030. "a": 255
  11031. },
  11032. "_N$hoverColor": {
  11033. "__type__": "cc.Color",
  11034. "r": 255,
  11035. "g": 255,
  11036. "b": 255,
  11037. "a": 255
  11038. },
  11039. "hoverColor": {
  11040. "__type__": "cc.Color",
  11041. "r": 255,
  11042. "g": 255,
  11043. "b": 255,
  11044. "a": 255
  11045. },
  11046. "_N$disabledColor": {
  11047. "__type__": "cc.Color",
  11048. "r": 124,
  11049. "g": 124,
  11050. "b": 124,
  11051. "a": 255
  11052. },
  11053. "_N$normalSprite": null,
  11054. "_N$pressedSprite": null,
  11055. "pressedSprite": null,
  11056. "_N$hoverSprite": null,
  11057. "hoverSprite": null,
  11058. "_N$disabledSprite": null,
  11059. "_N$target": null,
  11060. "_id": ""
  11061. },
  11062. {
  11063. "__type__": "cc.ClickEvent",
  11064. "target": {
  11065. "__id__": 1
  11066. },
  11067. "component": "",
  11068. "_componentId": "ac1b6sIq7BFa5uPq8b8pdyl",
  11069. "handler": "onAllEquipClick",
  11070. "customEventData": ""
  11071. },
  11072. {
  11073. "__type__": "cc.PrefabInfo",
  11074. "root": {
  11075. "__id__": 1
  11076. },
  11077. "asset": {
  11078. "__id__": 0
  11079. },
  11080. "fileId": "6fwiQyHjlPzamqvf+TCT9e",
  11081. "sync": false
  11082. },
  11083. {
  11084. "__type__": "cc.Node",
  11085. "_name": "common_frame3",
  11086. "_objFlags": 0,
  11087. "_parent": {
  11088. "__id__": 1
  11089. },
  11090. "_children": [],
  11091. "_active": true,
  11092. "_components": [
  11093. {
  11094. "__id__": 316
  11095. }
  11096. ],
  11097. "_prefab": {
  11098. "__id__": 317
  11099. },
  11100. "_opacity": 255,
  11101. "_color": {
  11102. "__type__": "cc.Color",
  11103. "r": 255,
  11104. "g": 255,
  11105. "b": 255,
  11106. "a": 255
  11107. },
  11108. "_contentSize": {
  11109. "__type__": "cc.Size",
  11110. "width": 621,
  11111. "height": 382
  11112. },
  11113. "_anchorPoint": {
  11114. "__type__": "cc.Vec2",
  11115. "x": 0.5,
  11116. "y": 0.5
  11117. },
  11118. "_trs": {
  11119. "__type__": "TypedArray",
  11120. "ctor": "Float64Array",
  11121. "array": [
  11122. -163.918,
  11123. -134.685,
  11124. 0,
  11125. 0,
  11126. 0,
  11127. 0,
  11128. 1,
  11129. 1,
  11130. 1,
  11131. 1
  11132. ]
  11133. },
  11134. "_eulerAngles": {
  11135. "__type__": "cc.Vec3",
  11136. "x": 0,
  11137. "y": 0,
  11138. "z": 0
  11139. },
  11140. "_skewX": 0,
  11141. "_skewY": 0,
  11142. "_is3DNode": false,
  11143. "_groupIndex": 0,
  11144. "groupIndex": 0,
  11145. "_id": ""
  11146. },
  11147. {
  11148. "__type__": "cc.Sprite",
  11149. "_name": "",
  11150. "_objFlags": 0,
  11151. "node": {
  11152. "__id__": 315
  11153. },
  11154. "_enabled": true,
  11155. "_materials": [
  11156. {
  11157. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  11158. }
  11159. ],
  11160. "_srcBlendFactor": 770,
  11161. "_dstBlendFactor": 771,
  11162. "_spriteFrame": {
  11163. "__uuid__": "c9078637-a113-41c3-b7d9-c1135458b04d"
  11164. },
  11165. "_type": 1,
  11166. "_sizeMode": 0,
  11167. "_fillType": 0,
  11168. "_fillCenter": {
  11169. "__type__": "cc.Vec2",
  11170. "x": 0,
  11171. "y": 0
  11172. },
  11173. "_fillStart": 0,
  11174. "_fillRange": 0,
  11175. "_isTrimmedMode": true,
  11176. "_atlas": null,
  11177. "_id": ""
  11178. },
  11179. {
  11180. "__type__": "cc.PrefabInfo",
  11181. "root": {
  11182. "__id__": 1
  11183. },
  11184. "asset": {
  11185. "__id__": 0
  11186. },
  11187. "fileId": "23CdUuZXRPxLVYUcVeVZo5",
  11188. "sync": false
  11189. },
  11190. {
  11191. "__type__": "cc.Node",
  11192. "_name": "joinTip",
  11193. "_objFlags": 0,
  11194. "_parent": {
  11195. "__id__": 1
  11196. },
  11197. "_children": [
  11198. {
  11199. "__id__": 319
  11200. }
  11201. ],
  11202. "_active": false,
  11203. "_components": [],
  11204. "_prefab": {
  11205. "__id__": 324
  11206. },
  11207. "_opacity": 255,
  11208. "_color": {
  11209. "__type__": "cc.Color",
  11210. "r": 255,
  11211. "g": 255,
  11212. "b": 255,
  11213. "a": 255
  11214. },
  11215. "_contentSize": {
  11216. "__type__": "cc.Size",
  11217. "width": 0,
  11218. "height": 0
  11219. },
  11220. "_anchorPoint": {
  11221. "__type__": "cc.Vec2",
  11222. "x": 0.5,
  11223. "y": 0.5
  11224. },
  11225. "_trs": {
  11226. "__type__": "TypedArray",
  11227. "ctor": "Float64Array",
  11228. "array": [
  11229. -163.918,
  11230. -127.376,
  11231. 0,
  11232. 0,
  11233. 0,
  11234. 0,
  11235. 1,
  11236. 1,
  11237. 1,
  11238. 1
  11239. ]
  11240. },
  11241. "_eulerAngles": {
  11242. "__type__": "cc.Vec3",
  11243. "x": 0,
  11244. "y": 0,
  11245. "z": 0
  11246. },
  11247. "_skewX": 0,
  11248. "_skewY": 0,
  11249. "_is3DNode": false,
  11250. "_groupIndex": 0,
  11251. "groupIndex": 0,
  11252. "_id": ""
  11253. },
  11254. {
  11255. "__type__": "cc.Node",
  11256. "_name": "lb",
  11257. "_objFlags": 0,
  11258. "_parent": {
  11259. "__id__": 318
  11260. },
  11261. "_children": [],
  11262. "_active": true,
  11263. "_components": [
  11264. {
  11265. "__id__": 320
  11266. },
  11267. {
  11268. "__id__": 321
  11269. },
  11270. {
  11271. "__id__": 322
  11272. }
  11273. ],
  11274. "_prefab": {
  11275. "__id__": 323
  11276. },
  11277. "_opacity": 255,
  11278. "_color": {
  11279. "__type__": "cc.Color",
  11280. "r": 255,
  11281. "g": 255,
  11282. "b": 255,
  11283. "a": 255
  11284. },
  11285. "_contentSize": {
  11286. "__type__": "cc.Size",
  11287. "width": 460,
  11288. "height": 166
  11289. },
  11290. "_anchorPoint": {
  11291. "__type__": "cc.Vec2",
  11292. "x": 0.5,
  11293. "y": 0.5
  11294. },
  11295. "_trs": {
  11296. "__type__": "TypedArray",
  11297. "ctor": "Float64Array",
  11298. "array": [
  11299. 0,
  11300. 0,
  11301. 0,
  11302. 0,
  11303. 0,
  11304. 0,
  11305. 1,
  11306. 1,
  11307. 1,
  11308. 1
  11309. ]
  11310. },
  11311. "_eulerAngles": {
  11312. "__type__": "cc.Vec3",
  11313. "x": 0,
  11314. "y": 0,
  11315. "z": 0
  11316. },
  11317. "_skewX": 0,
  11318. "_skewY": 0,
  11319. "_is3DNode": false,
  11320. "_groupIndex": 0,
  11321. "groupIndex": 0,
  11322. "_id": ""
  11323. },
  11324. {
  11325. "__type__": "cc.Label",
  11326. "_name": "",
  11327. "_objFlags": 0,
  11328. "node": {
  11329. "__id__": 319
  11330. },
  11331. "_enabled": true,
  11332. "_materials": [
  11333. null
  11334. ],
  11335. "_srcBlendFactor": 770,
  11336. "_dstBlendFactor": 771,
  11337. "_string": "Please select the warrior you want to break through on the right side",
  11338. "_N$string": "Please select the warrior you want to break through on the right side",
  11339. "_fontSize": 36,
  11340. "_lineHeight": 40,
  11341. "_enableWrapText": true,
  11342. "_N$file": {
  11343. "__uuid__": "53fae5bd-72f8-48d5-9465-9798bf9bde5c"
  11344. },
  11345. "_isSystemFontUsed": false,
  11346. "_spacingX": 0,
  11347. "_batchAsBitmap": false,
  11348. "_styleFlags": 0,
  11349. "_underlineHeight": 0,
  11350. "_N$horizontalAlign": 1,
  11351. "_N$verticalAlign": 1,
  11352. "_N$fontFamily": "Arial",
  11353. "_N$overflow": 3,
  11354. "_N$cacheMode": 0,
  11355. "_id": ""
  11356. },
  11357. {
  11358. "__type__": "41ebaVoPpRA4Kp67XEdHfZn",
  11359. "_name": "",
  11360. "_objFlags": 0,
  11361. "node": {
  11362. "__id__": 319
  11363. },
  11364. "_enabled": true,
  11365. "_englishCase": 1,
  11366. "i18n_string": "t142",
  11367. "i18n_params": [],
  11368. "_addColon": false,
  11369. "_id": ""
  11370. },
  11371. {
  11372. "__type__": "cc.LabelOutline",
  11373. "_name": "",
  11374. "_objFlags": 0,
  11375. "node": {
  11376. "__id__": 319
  11377. },
  11378. "_enabled": true,
  11379. "_color": {
  11380. "__type__": "cc.Color",
  11381. "r": 38,
  11382. "g": 17,
  11383. "b": 12,
  11384. "a": 255
  11385. },
  11386. "_width": 3,
  11387. "_id": ""
  11388. },
  11389. {
  11390. "__type__": "cc.PrefabInfo",
  11391. "root": {
  11392. "__id__": 1
  11393. },
  11394. "asset": {
  11395. "__id__": 0
  11396. },
  11397. "fileId": "0fNvOCzT1AUo6TXcFOYu1O",
  11398. "sync": false
  11399. },
  11400. {
  11401. "__type__": "cc.PrefabInfo",
  11402. "root": {
  11403. "__id__": 1
  11404. },
  11405. "asset": {
  11406. "__id__": 0
  11407. },
  11408. "fileId": "44av5SU0pP0I++C1SVQJhR",
  11409. "sync": false
  11410. },
  11411. {
  11412. "__type__": "cc.Node",
  11413. "_name": "breakTip",
  11414. "_objFlags": 0,
  11415. "_parent": {
  11416. "__id__": 1
  11417. },
  11418. "_children": [
  11419. {
  11420. "__id__": 326
  11421. },
  11422. {
  11423. "__id__": 329
  11424. },
  11425. {
  11426. "__id__": 334
  11427. }
  11428. ],
  11429. "_active": true,
  11430. "_components": [],
  11431. "_prefab": {
  11432. "__id__": 450
  11433. },
  11434. "_opacity": 255,
  11435. "_color": {
  11436. "__type__": "cc.Color",
  11437. "r": 255,
  11438. "g": 255,
  11439. "b": 255,
  11440. "a": 255
  11441. },
  11442. "_contentSize": {
  11443. "__type__": "cc.Size",
  11444. "width": 0,
  11445. "height": 0
  11446. },
  11447. "_anchorPoint": {
  11448. "__type__": "cc.Vec2",
  11449. "x": 0.5,
  11450. "y": 0.5
  11451. },
  11452. "_trs": {
  11453. "__type__": "TypedArray",
  11454. "ctor": "Float64Array",
  11455. "array": [
  11456. 0,
  11457. 0,
  11458. 0,
  11459. 0,
  11460. 0,
  11461. 0,
  11462. 1,
  11463. 1,
  11464. 1,
  11465. 1
  11466. ]
  11467. },
  11468. "_eulerAngles": {
  11469. "__type__": "cc.Vec3",
  11470. "x": 0,
  11471. "y": 0,
  11472. "z": 0
  11473. },
  11474. "_skewX": 0,
  11475. "_skewY": 0,
  11476. "_is3DNode": false,
  11477. "_groupIndex": 0,
  11478. "groupIndex": 0,
  11479. "_id": ""
  11480. },
  11481. {
  11482. "__type__": "cc.Node",
  11483. "_name": "streamer",
  11484. "_objFlags": 0,
  11485. "_parent": {
  11486. "__id__": 325
  11487. },
  11488. "_children": [],
  11489. "_active": true,
  11490. "_components": [
  11491. {
  11492. "__id__": 327
  11493. }
  11494. ],
  11495. "_prefab": {
  11496. "__id__": 328
  11497. },
  11498. "_opacity": 255,
  11499. "_color": {
  11500. "__type__": "cc.Color",
  11501. "r": 255,
  11502. "g": 255,
  11503. "b": 255,
  11504. "a": 255
  11505. },
  11506. "_contentSize": {
  11507. "__type__": "cc.Size",
  11508. "width": 602,
  11509. "height": 126
  11510. },
  11511. "_anchorPoint": {
  11512. "__type__": "cc.Vec2",
  11513. "x": 0.5,
  11514. "y": 0.5
  11515. },
  11516. "_trs": {
  11517. "__type__": "TypedArray",
  11518. "ctor": "Float64Array",
  11519. "array": [
  11520. -167.335,
  11521. 48.58,
  11522. 0,
  11523. 0,
  11524. 0,
  11525. 0,
  11526. 1,
  11527. 0.8,
  11528. 0.8,
  11529. 0.8
  11530. ]
  11531. },
  11532. "_eulerAngles": {
  11533. "__type__": "cc.Vec3",
  11534. "x": 0,
  11535. "y": 0,
  11536. "z": 0
  11537. },
  11538. "_skewX": 0,
  11539. "_skewY": 0,
  11540. "_is3DNode": false,
  11541. "_groupIndex": 0,
  11542. "groupIndex": 0,
  11543. "_id": ""
  11544. },
  11545. {
  11546. "__type__": "cc.Sprite",
  11547. "_name": "",
  11548. "_objFlags": 0,
  11549. "node": {
  11550. "__id__": 326
  11551. },
  11552. "_enabled": true,
  11553. "_materials": [
  11554. {
  11555. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  11556. }
  11557. ],
  11558. "_srcBlendFactor": 770,
  11559. "_dstBlendFactor": 771,
  11560. "_spriteFrame": null,
  11561. "_type": 0,
  11562. "_sizeMode": 2,
  11563. "_fillType": 0,
  11564. "_fillCenter": {
  11565. "__type__": "cc.Vec2",
  11566. "x": 0,
  11567. "y": 0
  11568. },
  11569. "_fillStart": 0,
  11570. "_fillRange": 0,
  11571. "_isTrimmedMode": false,
  11572. "_atlas": null,
  11573. "_id": ""
  11574. },
  11575. {
  11576. "__type__": "cc.PrefabInfo",
  11577. "root": {
  11578. "__id__": 1
  11579. },
  11580. "asset": {
  11581. "__id__": 0
  11582. },
  11583. "fileId": "5cseyzbmdK75VU89H+h57+",
  11584. "sync": false
  11585. },
  11586. {
  11587. "__type__": "cc.Node",
  11588. "_name": "equipName",
  11589. "_objFlags": 0,
  11590. "_parent": {
  11591. "__id__": 325
  11592. },
  11593. "_children": [],
  11594. "_active": true,
  11595. "_components": [
  11596. {
  11597. "__id__": 330
  11598. },
  11599. {
  11600. "__id__": 331
  11601. },
  11602. {
  11603. "__id__": 332
  11604. }
  11605. ],
  11606. "_prefab": {
  11607. "__id__": 333
  11608. },
  11609. "_opacity": 255,
  11610. "_color": {
  11611. "__type__": "cc.Color",
  11612. "r": 255,
  11613. "g": 255,
  11614. "b": 255,
  11615. "a": 255
  11616. },
  11617. "_contentSize": {
  11618. "__type__": "cc.Size",
  11619. "width": 223.88,
  11620. "height": 62.7
  11621. },
  11622. "_anchorPoint": {
  11623. "__type__": "cc.Vec2",
  11624. "x": 0.5,
  11625. "y": 0.5
  11626. },
  11627. "_trs": {
  11628. "__type__": "TypedArray",
  11629. "ctor": "Float64Array",
  11630. "array": [
  11631. -167.335,
  11632. 62,
  11633. 0,
  11634. 0,
  11635. 0,
  11636. 0,
  11637. 1,
  11638. 1,
  11639. 1,
  11640. 1
  11641. ]
  11642. },
  11643. "_eulerAngles": {
  11644. "__type__": "cc.Vec3",
  11645. "x": 0,
  11646. "y": 0,
  11647. "z": 0
  11648. },
  11649. "_skewX": 0,
  11650. "_skewY": 0,
  11651. "_is3DNode": false,
  11652. "_groupIndex": 0,
  11653. "groupIndex": 0,
  11654. "_id": ""
  11655. },
  11656. {
  11657. "__type__": "cc.Label",
  11658. "_name": "",
  11659. "_objFlags": 0,
  11660. "node": {
  11661. "__id__": 329
  11662. },
  11663. "_enabled": true,
  11664. "_materials": [
  11665. {
  11666. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  11667. }
  11668. ],
  11669. "_srcBlendFactor": 770,
  11670. "_dstBlendFactor": 771,
  11671. "_string": "Equip Name",
  11672. "_N$string": "Equip Name",
  11673. "_fontSize": 42,
  11674. "_lineHeight": 45,
  11675. "_enableWrapText": true,
  11676. "_N$file": {
  11677. "__uuid__": "53fae5bd-72f8-48d5-9465-9798bf9bde5c"
  11678. },
  11679. "_isSystemFontUsed": false,
  11680. "_spacingX": 0,
  11681. "_batchAsBitmap": false,
  11682. "_styleFlags": 0,
  11683. "_underlineHeight": 0,
  11684. "_N$horizontalAlign": 1,
  11685. "_N$verticalAlign": 1,
  11686. "_N$fontFamily": "Arial",
  11687. "_N$overflow": 0,
  11688. "_N$cacheMode": 0,
  11689. "_id": ""
  11690. },
  11691. {
  11692. "__type__": "cc.LabelOutline",
  11693. "_name": "",
  11694. "_objFlags": 0,
  11695. "node": {
  11696. "__id__": 329
  11697. },
  11698. "_enabled": true,
  11699. "_color": {
  11700. "__type__": "cc.Color",
  11701. "r": 38,
  11702. "g": 17,
  11703. "b": 12,
  11704. "a": 255
  11705. },
  11706. "_width": 3,
  11707. "_id": ""
  11708. },
  11709. {
  11710. "__type__": "41ebaVoPpRA4Kp67XEdHfZn",
  11711. "_name": "",
  11712. "_objFlags": 0,
  11713. "node": {
  11714. "__id__": 329
  11715. },
  11716. "_enabled": true,
  11717. "_englishCase": 0,
  11718. "i18n_string": "",
  11719. "i18n_params": [],
  11720. "_addColon": false,
  11721. "_id": ""
  11722. },
  11723. {
  11724. "__type__": "cc.PrefabInfo",
  11725. "root": {
  11726. "__id__": 1
  11727. },
  11728. "asset": {
  11729. "__id__": 0
  11730. },
  11731. "fileId": "03kQkbf/RHs4eFB8Zp/t1m",
  11732. "sync": false
  11733. },
  11734. {
  11735. "__type__": "cc.Node",
  11736. "_name": "scrollView",
  11737. "_objFlags": 0,
  11738. "_parent": {
  11739. "__id__": 325
  11740. },
  11741. "_children": [
  11742. {
  11743. "__id__": 335
  11744. }
  11745. ],
  11746. "_active": true,
  11747. "_components": [
  11748. {
  11749. "__id__": 447
  11750. },
  11751. {
  11752. "__id__": 448
  11753. }
  11754. ],
  11755. "_prefab": {
  11756. "__id__": 449
  11757. },
  11758. "_opacity": 255,
  11759. "_color": {
  11760. "__type__": "cc.Color",
  11761. "r": 186,
  11762. "g": 162,
  11763. "b": 102,
  11764. "a": 255
  11765. },
  11766. "_contentSize": {
  11767. "__type__": "cc.Size",
  11768. "width": 550,
  11769. "height": 280
  11770. },
  11771. "_anchorPoint": {
  11772. "__type__": "cc.Vec2",
  11773. "x": 0.5,
  11774. "y": 0.5
  11775. },
  11776. "_trs": {
  11777. "__type__": "TypedArray",
  11778. "ctor": "Float64Array",
  11779. "array": [
  11780. -163,
  11781. -150,
  11782. 0,
  11783. 0,
  11784. 0,
  11785. 0,
  11786. 1,
  11787. 1,
  11788. 1,
  11789. 1
  11790. ]
  11791. },
  11792. "_eulerAngles": {
  11793. "__type__": "cc.Vec3",
  11794. "x": 0,
  11795. "y": 0,
  11796. "z": 0
  11797. },
  11798. "_skewX": 0,
  11799. "_skewY": 0,
  11800. "_is3DNode": false,
  11801. "_groupIndex": 0,
  11802. "groupIndex": 0,
  11803. "_id": ""
  11804. },
  11805. {
  11806. "__type__": "cc.Node",
  11807. "_name": "view",
  11808. "_objFlags": 0,
  11809. "_parent": {
  11810. "__id__": 334
  11811. },
  11812. "_children": [
  11813. {
  11814. "__id__": 336
  11815. }
  11816. ],
  11817. "_active": true,
  11818. "_components": [
  11819. {
  11820. "__id__": 445
  11821. }
  11822. ],
  11823. "_prefab": {
  11824. "__id__": 446
  11825. },
  11826. "_opacity": 255,
  11827. "_color": {
  11828. "__type__": "cc.Color",
  11829. "r": 255,
  11830. "g": 255,
  11831. "b": 255,
  11832. "a": 255
  11833. },
  11834. "_contentSize": {
  11835. "__type__": "cc.Size",
  11836. "width": 550,
  11837. "height": 280
  11838. },
  11839. "_anchorPoint": {
  11840. "__type__": "cc.Vec2",
  11841. "x": 0.5,
  11842. "y": 0.5
  11843. },
  11844. "_trs": {
  11845. "__type__": "TypedArray",
  11846. "ctor": "Float64Array",
  11847. "array": [
  11848. 0,
  11849. 0,
  11850. 0,
  11851. 0,
  11852. 0,
  11853. 0,
  11854. 1,
  11855. 1,
  11856. 1,
  11857. 1
  11858. ]
  11859. },
  11860. "_eulerAngles": {
  11861. "__type__": "cc.Vec3",
  11862. "x": 0,
  11863. "y": 0,
  11864. "z": 0
  11865. },
  11866. "_skewX": 0,
  11867. "_skewY": 0,
  11868. "_is3DNode": false,
  11869. "_groupIndex": 0,
  11870. "groupIndex": 0,
  11871. "_id": ""
  11872. },
  11873. {
  11874. "__type__": "cc.Node",
  11875. "_name": "content",
  11876. "_objFlags": 0,
  11877. "_parent": {
  11878. "__id__": 335
  11879. },
  11880. "_children": [
  11881. {
  11882. "__id__": 337
  11883. },
  11884. {
  11885. "__id__": 436
  11886. }
  11887. ],
  11888. "_active": true,
  11889. "_components": [
  11890. {
  11891. "__id__": 443
  11892. }
  11893. ],
  11894. "_prefab": {
  11895. "__id__": 444
  11896. },
  11897. "_opacity": 255,
  11898. "_color": {
  11899. "__type__": "cc.Color",
  11900. "r": 255,
  11901. "g": 255,
  11902. "b": 255,
  11903. "a": 255
  11904. },
  11905. "_contentSize": {
  11906. "__type__": "cc.Size",
  11907. "width": 550,
  11908. "height": 280
  11909. },
  11910. "_anchorPoint": {
  11911. "__type__": "cc.Vec2",
  11912. "x": 0.5,
  11913. "y": 1
  11914. },
  11915. "_trs": {
  11916. "__type__": "TypedArray",
  11917. "ctor": "Float64Array",
  11918. "array": [
  11919. 0,
  11920. 140,
  11921. 0,
  11922. 0,
  11923. 0,
  11924. 0,
  11925. 1,
  11926. 1,
  11927. 1,
  11928. 1
  11929. ]
  11930. },
  11931. "_eulerAngles": {
  11932. "__type__": "cc.Vec3",
  11933. "x": 0,
  11934. "y": 0,
  11935. "z": 0
  11936. },
  11937. "_skewX": 0,
  11938. "_skewY": 0,
  11939. "_is3DNode": false,
  11940. "_groupIndex": 0,
  11941. "groupIndex": 0,
  11942. "_id": ""
  11943. },
  11944. {
  11945. "__type__": "cc.Node",
  11946. "_name": "attrs",
  11947. "_objFlags": 0,
  11948. "_parent": {
  11949. "__id__": 336
  11950. },
  11951. "_children": [
  11952. {
  11953. "__id__": 338
  11954. },
  11955. {
  11956. "__id__": 362
  11957. },
  11958. {
  11959. "__id__": 386
  11960. },
  11961. {
  11962. "__id__": 410
  11963. }
  11964. ],
  11965. "_active": true,
  11966. "_components": [
  11967. {
  11968. "__id__": 434
  11969. }
  11970. ],
  11971. "_prefab": {
  11972. "__id__": 435
  11973. },
  11974. "_opacity": 255,
  11975. "_color": {
  11976. "__type__": "cc.Color",
  11977. "r": 255,
  11978. "g": 255,
  11979. "b": 255,
  11980. "a": 255
  11981. },
  11982. "_contentSize": {
  11983. "__type__": "cc.Size",
  11984. "width": 520,
  11985. "height": 203
  11986. },
  11987. "_anchorPoint": {
  11988. "__type__": "cc.Vec2",
  11989. "x": 0.5,
  11990. "y": 1
  11991. },
  11992. "_trs": {
  11993. "__type__": "TypedArray",
  11994. "ctor": "Float64Array",
  11995. "array": [
  11996. 0,
  11997. 0,
  11998. 0,
  11999. 0,
  12000. 0,
  12001. 0,
  12002. 1,
  12003. 1,
  12004. 1,
  12005. 1
  12006. ]
  12007. },
  12008. "_eulerAngles": {
  12009. "__type__": "cc.Vec3",
  12010. "x": 0,
  12011. "y": 0,
  12012. "z": 0
  12013. },
  12014. "_skewX": 0,
  12015. "_skewY": 0,
  12016. "_is3DNode": false,
  12017. "_groupIndex": 0,
  12018. "groupIndex": 0,
  12019. "_id": ""
  12020. },
  12021. {
  12022. "__type__": "cc.Node",
  12023. "_name": "attr",
  12024. "_objFlags": 0,
  12025. "_parent": {
  12026. "__id__": 337
  12027. },
  12028. "_children": [
  12029. {
  12030. "__id__": 339
  12031. },
  12032. {
  12033. "__id__": 342
  12034. },
  12035. {
  12036. "__id__": 345
  12037. },
  12038. {
  12039. "__id__": 350
  12040. },
  12041. {
  12042. "__id__": 354
  12043. },
  12044. {
  12045. "__id__": 357
  12046. }
  12047. ],
  12048. "_active": true,
  12049. "_components": [],
  12050. "_prefab": {
  12051. "__id__": 361
  12052. },
  12053. "_opacity": 255,
  12054. "_color": {
  12055. "__type__": "cc.Color",
  12056. "r": 255,
  12057. "g": 255,
  12058. "b": 255,
  12059. "a": 255
  12060. },
  12061. "_contentSize": {
  12062. "__type__": "cc.Size",
  12063. "width": 520,
  12064. "height": 40
  12065. },
  12066. "_anchorPoint": {
  12067. "__type__": "cc.Vec2",
  12068. "x": 0.5,
  12069. "y": 0.5
  12070. },
  12071. "_trs": {
  12072. "__type__": "TypedArray",
  12073. "ctor": "Float64Array",
  12074. "array": [
  12075. 0,
  12076. -33,
  12077. 0,
  12078. 0,
  12079. 0,
  12080. 0,
  12081. 1,
  12082. 1,
  12083. 1,
  12084. 1
  12085. ]
  12086. },
  12087. "_eulerAngles": {
  12088. "__type__": "cc.Vec3",
  12089. "x": 0,
  12090. "y": 0,
  12091. "z": 0
  12092. },
  12093. "_skewX": 0,
  12094. "_skewY": 0,
  12095. "_is3DNode": false,
  12096. "_groupIndex": 0,
  12097. "groupIndex": 0,
  12098. "_id": ""
  12099. },
  12100. {
  12101. "__type__": "cc.Node",
  12102. "_name": "bg",
  12103. "_objFlags": 0,
  12104. "_parent": {
  12105. "__id__": 338
  12106. },
  12107. "_children": [],
  12108. "_active": true,
  12109. "_components": [
  12110. {
  12111. "__id__": 340
  12112. }
  12113. ],
  12114. "_prefab": {
  12115. "__id__": 341
  12116. },
  12117. "_opacity": 255,
  12118. "_color": {
  12119. "__type__": "cc.Color",
  12120. "r": 166,
  12121. "g": 143,
  12122. "b": 86,
  12123. "a": 255
  12124. },
  12125. "_contentSize": {
  12126. "__type__": "cc.Size",
  12127. "width": 520,
  12128. "height": 40
  12129. },
  12130. "_anchorPoint": {
  12131. "__type__": "cc.Vec2",
  12132. "x": 0.5,
  12133. "y": 0.5
  12134. },
  12135. "_trs": {
  12136. "__type__": "TypedArray",
  12137. "ctor": "Float64Array",
  12138. "array": [
  12139. -0.5,
  12140. 0,
  12141. 0,
  12142. 0,
  12143. 0,
  12144. 0,
  12145. 1,
  12146. 1,
  12147. 1,
  12148. 1
  12149. ]
  12150. },
  12151. "_eulerAngles": {
  12152. "__type__": "cc.Vec3",
  12153. "x": 0,
  12154. "y": 0,
  12155. "z": 0
  12156. },
  12157. "_skewX": 0,
  12158. "_skewY": 0,
  12159. "_is3DNode": false,
  12160. "_groupIndex": 0,
  12161. "groupIndex": 0,
  12162. "_id": ""
  12163. },
  12164. {
  12165. "__type__": "cc.Sprite",
  12166. "_name": "",
  12167. "_objFlags": 0,
  12168. "node": {
  12169. "__id__": 339
  12170. },
  12171. "_enabled": true,
  12172. "_materials": [
  12173. {
  12174. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  12175. }
  12176. ],
  12177. "_srcBlendFactor": 770,
  12178. "_dstBlendFactor": 771,
  12179. "_spriteFrame": {
  12180. "__uuid__": "b1f64ee3-dd78-476c-bb28-83d9997f558e"
  12181. },
  12182. "_type": 0,
  12183. "_sizeMode": 0,
  12184. "_fillType": 0,
  12185. "_fillCenter": {
  12186. "__type__": "cc.Vec2",
  12187. "x": 0,
  12188. "y": 0
  12189. },
  12190. "_fillStart": 0,
  12191. "_fillRange": 0,
  12192. "_isTrimmedMode": false,
  12193. "_atlas": null,
  12194. "_id": ""
  12195. },
  12196. {
  12197. "__type__": "cc.PrefabInfo",
  12198. "root": {
  12199. "__id__": 1
  12200. },
  12201. "asset": {
  12202. "__id__": 0
  12203. },
  12204. "fileId": "b8dYzieGpJj66zr0D3t2dr",
  12205. "sync": false
  12206. },
  12207. {
  12208. "__type__": "cc.Node",
  12209. "_name": "icon",
  12210. "_objFlags": 0,
  12211. "_parent": {
  12212. "__id__": 338
  12213. },
  12214. "_children": [],
  12215. "_active": true,
  12216. "_components": [
  12217. {
  12218. "__id__": 343
  12219. }
  12220. ],
  12221. "_prefab": {
  12222. "__id__": 344
  12223. },
  12224. "_opacity": 255,
  12225. "_color": {
  12226. "__type__": "cc.Color",
  12227. "r": 255,
  12228. "g": 255,
  12229. "b": 255,
  12230. "a": 255
  12231. },
  12232. "_contentSize": {
  12233. "__type__": "cc.Size",
  12234. "width": 53,
  12235. "height": 47
  12236. },
  12237. "_anchorPoint": {
  12238. "__type__": "cc.Vec2",
  12239. "x": 0.5,
  12240. "y": 0.5
  12241. },
  12242. "_trs": {
  12243. "__type__": "TypedArray",
  12244. "ctor": "Float64Array",
  12245. "array": [
  12246. -235.95,
  12247. 0,
  12248. 0,
  12249. 0,
  12250. 0,
  12251. 0,
  12252. 1,
  12253. 1,
  12254. 1,
  12255. 1
  12256. ]
  12257. },
  12258. "_eulerAngles": {
  12259. "__type__": "cc.Vec3",
  12260. "x": 0,
  12261. "y": 0,
  12262. "z": 0
  12263. },
  12264. "_skewX": 0,
  12265. "_skewY": 0,
  12266. "_is3DNode": false,
  12267. "_groupIndex": 0,
  12268. "groupIndex": 0,
  12269. "_id": ""
  12270. },
  12271. {
  12272. "__type__": "cc.Sprite",
  12273. "_name": "",
  12274. "_objFlags": 0,
  12275. "node": {
  12276. "__id__": 342
  12277. },
  12278. "_enabled": true,
  12279. "_materials": [
  12280. {
  12281. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  12282. }
  12283. ],
  12284. "_srcBlendFactor": 770,
  12285. "_dstBlendFactor": 771,
  12286. "_spriteFrame": null,
  12287. "_type": 0,
  12288. "_sizeMode": 1,
  12289. "_fillType": 0,
  12290. "_fillCenter": {
  12291. "__type__": "cc.Vec2",
  12292. "x": 0,
  12293. "y": 0
  12294. },
  12295. "_fillStart": 0,
  12296. "_fillRange": 0,
  12297. "_isTrimmedMode": true,
  12298. "_atlas": null,
  12299. "_id": ""
  12300. },
  12301. {
  12302. "__type__": "cc.PrefabInfo",
  12303. "root": {
  12304. "__id__": 1
  12305. },
  12306. "asset": {
  12307. "__id__": 0
  12308. },
  12309. "fileId": "a8OgWSHstGXI8O8eMvthlD",
  12310. "sync": false
  12311. },
  12312. {
  12313. "__type__": "cc.Node",
  12314. "_name": "attrName",
  12315. "_objFlags": 0,
  12316. "_parent": {
  12317. "__id__": 338
  12318. },
  12319. "_children": [],
  12320. "_active": true,
  12321. "_components": [
  12322. {
  12323. "__id__": 346
  12324. },
  12325. {
  12326. "__id__": 347
  12327. },
  12328. {
  12329. "__id__": 348
  12330. }
  12331. ],
  12332. "_prefab": {
  12333. "__id__": 349
  12334. },
  12335. "_opacity": 255,
  12336. "_color": {
  12337. "__type__": "cc.Color",
  12338. "r": 255,
  12339. "g": 255,
  12340. "b": 255,
  12341. "a": 255
  12342. },
  12343. "_contentSize": {
  12344. "__type__": "cc.Size",
  12345. "width": 56.75,
  12346. "height": 53.88
  12347. },
  12348. "_anchorPoint": {
  12349. "__type__": "cc.Vec2",
  12350. "x": 0,
  12351. "y": 0.5
  12352. },
  12353. "_trs": {
  12354. "__type__": "TypedArray",
  12355. "ctor": "Float64Array",
  12356. "array": [
  12357. -248,
  12358. 0,
  12359. 0,
  12360. 0,
  12361. 0,
  12362. 0,
  12363. 1,
  12364. 1,
  12365. 1,
  12366. 1
  12367. ]
  12368. },
  12369. "_eulerAngles": {
  12370. "__type__": "cc.Vec3",
  12371. "x": 0,
  12372. "y": 0,
  12373. "z": 0
  12374. },
  12375. "_skewX": 0,
  12376. "_skewY": 0,
  12377. "_is3DNode": false,
  12378. "_groupIndex": 0,
  12379. "groupIndex": 0,
  12380. "_id": ""
  12381. },
  12382. {
  12383. "__type__": "cc.Label",
  12384. "_name": "",
  12385. "_objFlags": 0,
  12386. "node": {
  12387. "__id__": 345
  12388. },
  12389. "_enabled": true,
  12390. "_materials": [
  12391. {
  12392. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  12393. }
  12394. ],
  12395. "_srcBlendFactor": 770,
  12396. "_dstBlendFactor": 771,
  12397. "_string": "HP:",
  12398. "_N$string": "HP:",
  12399. "_fontSize": 36,
  12400. "_lineHeight": 38,
  12401. "_enableWrapText": true,
  12402. "_N$file": {
  12403. "__uuid__": "53fae5bd-72f8-48d5-9465-9798bf9bde5c"
  12404. },
  12405. "_isSystemFontUsed": false,
  12406. "_spacingX": 0,
  12407. "_batchAsBitmap": false,
  12408. "_styleFlags": 0,
  12409. "_underlineHeight": 0,
  12410. "_N$horizontalAlign": 1,
  12411. "_N$verticalAlign": 1,
  12412. "_N$fontFamily": "Arial",
  12413. "_N$overflow": 0,
  12414. "_N$cacheMode": 0,
  12415. "_id": ""
  12416. },
  12417. {
  12418. "__type__": "cc.LabelOutline",
  12419. "_name": "",
  12420. "_objFlags": 0,
  12421. "node": {
  12422. "__id__": 345
  12423. },
  12424. "_enabled": true,
  12425. "_color": {
  12426. "__type__": "cc.Color",
  12427. "r": 38,
  12428. "g": 17,
  12429. "b": 12,
  12430. "a": 255
  12431. },
  12432. "_width": 3,
  12433. "_id": ""
  12434. },
  12435. {
  12436. "__type__": "41ebaVoPpRA4Kp67XEdHfZn",
  12437. "_name": "",
  12438. "_objFlags": 0,
  12439. "node": {
  12440. "__id__": 345
  12441. },
  12442. "_enabled": true,
  12443. "_englishCase": 2,
  12444. "i18n_string": "t1001",
  12445. "i18n_params": [],
  12446. "_addColon": true,
  12447. "_id": ""
  12448. },
  12449. {
  12450. "__type__": "cc.PrefabInfo",
  12451. "root": {
  12452. "__id__": 1
  12453. },
  12454. "asset": {
  12455. "__id__": 0
  12456. },
  12457. "fileId": "499xSqcxxOS4tys2O9mO2C",
  12458. "sync": false
  12459. },
  12460. {
  12461. "__type__": "cc.Node",
  12462. "_name": "attrNum",
  12463. "_objFlags": 0,
  12464. "_parent": {
  12465. "__id__": 338
  12466. },
  12467. "_children": [],
  12468. "_active": true,
  12469. "_components": [
  12470. {
  12471. "__id__": 351
  12472. },
  12473. {
  12474. "__id__": 352
  12475. }
  12476. ],
  12477. "_prefab": {
  12478. "__id__": 353
  12479. },
  12480. "_opacity": 255,
  12481. "_color": {
  12482. "__type__": "cc.Color",
  12483. "r": 255,
  12484. "g": 255,
  12485. "b": 255,
  12486. "a": 255
  12487. },
  12488. "_contentSize": {
  12489. "__type__": "cc.Size",
  12490. "width": 131.3,
  12491. "height": 53.88
  12492. },
  12493. "_anchorPoint": {
  12494. "__type__": "cc.Vec2",
  12495. "x": 0.5,
  12496. "y": 0.5
  12497. },
  12498. "_trs": {
  12499. "__type__": "TypedArray",
  12500. "ctor": "Float64Array",
  12501. "array": [
  12502. -0.097,
  12503. 0,
  12504. 0,
  12505. 0,
  12506. 0,
  12507. 0,
  12508. 1,
  12509. 1,
  12510. 1,
  12511. 1
  12512. ]
  12513. },
  12514. "_eulerAngles": {
  12515. "__type__": "cc.Vec3",
  12516. "x": 0,
  12517. "y": 0,
  12518. "z": 0
  12519. },
  12520. "_skewX": 0,
  12521. "_skewY": 0,
  12522. "_is3DNode": false,
  12523. "_groupIndex": 0,
  12524. "groupIndex": 0,
  12525. "_id": ""
  12526. },
  12527. {
  12528. "__type__": "cc.Label",
  12529. "_name": "",
  12530. "_objFlags": 0,
  12531. "node": {
  12532. "__id__": 350
  12533. },
  12534. "_enabled": true,
  12535. "_materials": [
  12536. {
  12537. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  12538. }
  12539. ],
  12540. "_srcBlendFactor": 770,
  12541. "_dstBlendFactor": 771,
  12542. "_string": "5000k",
  12543. "_N$string": "5000k",
  12544. "_fontSize": 36,
  12545. "_lineHeight": 38,
  12546. "_enableWrapText": true,
  12547. "_N$file": {
  12548. "__uuid__": "53fae5bd-72f8-48d5-9465-9798bf9bde5c"
  12549. },
  12550. "_isSystemFontUsed": false,
  12551. "_spacingX": 0,
  12552. "_batchAsBitmap": false,
  12553. "_styleFlags": 0,
  12554. "_underlineHeight": 0,
  12555. "_N$horizontalAlign": 1,
  12556. "_N$verticalAlign": 1,
  12557. "_N$fontFamily": "Arial",
  12558. "_N$overflow": 0,
  12559. "_N$cacheMode": 0,
  12560. "_id": ""
  12561. },
  12562. {
  12563. "__type__": "cc.LabelOutline",
  12564. "_name": "",
  12565. "_objFlags": 0,
  12566. "node": {
  12567. "__id__": 350
  12568. },
  12569. "_enabled": true,
  12570. "_color": {
  12571. "__type__": "cc.Color",
  12572. "r": 38,
  12573. "g": 17,
  12574. "b": 12,
  12575. "a": 255
  12576. },
  12577. "_width": 3,
  12578. "_id": ""
  12579. },
  12580. {
  12581. "__type__": "cc.PrefabInfo",
  12582. "root": {
  12583. "__id__": 1
  12584. },
  12585. "asset": {
  12586. "__id__": 0
  12587. },
  12588. "fileId": "66el38CqNAkLadborXrgTr",
  12589. "sync": false
  12590. },
  12591. {
  12592. "__type__": "cc.Node",
  12593. "_name": "arrow_3",
  12594. "_objFlags": 0,
  12595. "_parent": {
  12596. "__id__": 338
  12597. },
  12598. "_children": [],
  12599. "_active": true,
  12600. "_components": [
  12601. {
  12602. "__id__": 355
  12603. }
  12604. ],
  12605. "_prefab": {
  12606. "__id__": 356
  12607. },
  12608. "_opacity": 255,
  12609. "_color": {
  12610. "__type__": "cc.Color",
  12611. "r": 186,
  12612. "g": 255,
  12613. "b": 39,
  12614. "a": 255
  12615. },
  12616. "_contentSize": {
  12617. "__type__": "cc.Size",
  12618. "width": 45,
  12619. "height": 28
  12620. },
  12621. "_anchorPoint": {
  12622. "__type__": "cc.Vec2",
  12623. "x": 0.5,
  12624. "y": 0.5
  12625. },
  12626. "_trs": {
  12627. "__type__": "TypedArray",
  12628. "ctor": "Float64Array",
  12629. "array": [
  12630. 93.928,
  12631. 0,
  12632. 0,
  12633. 0,
  12634. 0,
  12635. 0,
  12636. 1,
  12637. 1,
  12638. 1,
  12639. 1
  12640. ]
  12641. },
  12642. "_eulerAngles": {
  12643. "__type__": "cc.Vec3",
  12644. "x": 0,
  12645. "y": 0,
  12646. "z": 0
  12647. },
  12648. "_skewX": 0,
  12649. "_skewY": 0,
  12650. "_is3DNode": false,
  12651. "_groupIndex": 0,
  12652. "groupIndex": 0,
  12653. "_id": ""
  12654. },
  12655. {
  12656. "__type__": "cc.Sprite",
  12657. "_name": "",
  12658. "_objFlags": 0,
  12659. "node": {
  12660. "__id__": 354
  12661. },
  12662. "_enabled": true,
  12663. "_materials": [
  12664. {
  12665. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  12666. }
  12667. ],
  12668. "_srcBlendFactor": 770,
  12669. "_dstBlendFactor": 771,
  12670. "_spriteFrame": {
  12671. "__uuid__": "b236e179-24da-4d06-a2ee-8b3747be2fad"
  12672. },
  12673. "_type": 0,
  12674. "_sizeMode": 1,
  12675. "_fillType": 0,
  12676. "_fillCenter": {
  12677. "__type__": "cc.Vec2",
  12678. "x": 0,
  12679. "y": 0
  12680. },
  12681. "_fillStart": 0,
  12682. "_fillRange": 0,
  12683. "_isTrimmedMode": true,
  12684. "_atlas": null,
  12685. "_id": ""
  12686. },
  12687. {
  12688. "__type__": "cc.PrefabInfo",
  12689. "root": {
  12690. "__id__": 1
  12691. },
  12692. "asset": {
  12693. "__id__": 0
  12694. },
  12695. "fileId": "2239zYIVxM1pK8UQQqdNr9",
  12696. "sync": false
  12697. },
  12698. {
  12699. "__type__": "cc.Node",
  12700. "_name": "nextNum",
  12701. "_objFlags": 0,
  12702. "_parent": {
  12703. "__id__": 338
  12704. },
  12705. "_children": [],
  12706. "_active": true,
  12707. "_components": [
  12708. {
  12709. "__id__": 358
  12710. },
  12711. {
  12712. "__id__": 359
  12713. }
  12714. ],
  12715. "_prefab": {
  12716. "__id__": 360
  12717. },
  12718. "_opacity": 255,
  12719. "_color": {
  12720. "__type__": "cc.Color",
  12721. "r": 186,
  12722. "g": 255,
  12723. "b": 39,
  12724. "a": 255
  12725. },
  12726. "_contentSize": {
  12727. "__type__": "cc.Size",
  12728. "width": 131.3,
  12729. "height": 53.88
  12730. },
  12731. "_anchorPoint": {
  12732. "__type__": "cc.Vec2",
  12733. "x": 0.5,
  12734. "y": 0.5
  12735. },
  12736. "_trs": {
  12737. "__type__": "TypedArray",
  12738. "ctor": "Float64Array",
  12739. "array": [
  12740. 187.301,
  12741. 0,
  12742. 0,
  12743. 0,
  12744. 0,
  12745. 0,
  12746. 1,
  12747. 1,
  12748. 1,
  12749. 1
  12750. ]
  12751. },
  12752. "_eulerAngles": {
  12753. "__type__": "cc.Vec3",
  12754. "x": 0,
  12755. "y": 0,
  12756. "z": 0
  12757. },
  12758. "_skewX": 0,
  12759. "_skewY": 0,
  12760. "_is3DNode": false,
  12761. "_groupIndex": 0,
  12762. "groupIndex": 0,
  12763. "_id": ""
  12764. },
  12765. {
  12766. "__type__": "cc.Label",
  12767. "_name": "",
  12768. "_objFlags": 0,
  12769. "node": {
  12770. "__id__": 357
  12771. },
  12772. "_enabled": true,
  12773. "_materials": [
  12774. {
  12775. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  12776. }
  12777. ],
  12778. "_srcBlendFactor": 770,
  12779. "_dstBlendFactor": 771,
  12780. "_string": "5000k",
  12781. "_N$string": "5000k",
  12782. "_fontSize": 36,
  12783. "_lineHeight": 38,
  12784. "_enableWrapText": true,
  12785. "_N$file": {
  12786. "__uuid__": "53fae5bd-72f8-48d5-9465-9798bf9bde5c"
  12787. },
  12788. "_isSystemFontUsed": false,
  12789. "_spacingX": 0,
  12790. "_batchAsBitmap": false,
  12791. "_styleFlags": 0,
  12792. "_underlineHeight": 0,
  12793. "_N$horizontalAlign": 1,
  12794. "_N$verticalAlign": 1,
  12795. "_N$fontFamily": "Arial",
  12796. "_N$overflow": 0,
  12797. "_N$cacheMode": 0,
  12798. "_id": ""
  12799. },
  12800. {
  12801. "__type__": "cc.LabelOutline",
  12802. "_name": "",
  12803. "_objFlags": 0,
  12804. "node": {
  12805. "__id__": 357
  12806. },
  12807. "_enabled": true,
  12808. "_color": {
  12809. "__type__": "cc.Color",
  12810. "r": 38,
  12811. "g": 17,
  12812. "b": 12,
  12813. "a": 255
  12814. },
  12815. "_width": 3,
  12816. "_id": ""
  12817. },
  12818. {
  12819. "__type__": "cc.PrefabInfo",
  12820. "root": {
  12821. "__id__": 1
  12822. },
  12823. "asset": {
  12824. "__id__": 0
  12825. },
  12826. "fileId": "97lox33kRFgJE8lPM/UYKO",
  12827. "sync": false
  12828. },
  12829. {
  12830. "__type__": "cc.PrefabInfo",
  12831. "root": {
  12832. "__id__": 1
  12833. },
  12834. "asset": {
  12835. "__id__": 0
  12836. },
  12837. "fileId": "3c5VNOscFKDZpWrTFjsfJT",
  12838. "sync": false
  12839. },
  12840. {
  12841. "__type__": "cc.Node",
  12842. "_name": "attr",
  12843. "_objFlags": 0,
  12844. "_parent": {
  12845. "__id__": 337
  12846. },
  12847. "_children": [
  12848. {
  12849. "__id__": 363
  12850. },
  12851. {
  12852. "__id__": 366
  12853. },
  12854. {
  12855. "__id__": 369
  12856. },
  12857. {
  12858. "__id__": 374
  12859. },
  12860. {
  12861. "__id__": 378
  12862. },
  12863. {
  12864. "__id__": 381
  12865. }
  12866. ],
  12867. "_active": true,
  12868. "_components": [],
  12869. "_prefab": {
  12870. "__id__": 385
  12871. },
  12872. "_opacity": 255,
  12873. "_color": {
  12874. "__type__": "cc.Color",
  12875. "r": 255,
  12876. "g": 255,
  12877. "b": 255,
  12878. "a": 255
  12879. },
  12880. "_contentSize": {
  12881. "__type__": "cc.Size",
  12882. "width": 520,
  12883. "height": 40
  12884. },
  12885. "_anchorPoint": {
  12886. "__type__": "cc.Vec2",
  12887. "x": 0.5,
  12888. "y": 0.5
  12889. },
  12890. "_trs": {
  12891. "__type__": "TypedArray",
  12892. "ctor": "Float64Array",
  12893. "array": [
  12894. 0,
  12895. -83,
  12896. 0,
  12897. 0,
  12898. 0,
  12899. 0,
  12900. 1,
  12901. 1,
  12902. 1,
  12903. 1
  12904. ]
  12905. },
  12906. "_eulerAngles": {
  12907. "__type__": "cc.Vec3",
  12908. "x": 0,
  12909. "y": 0,
  12910. "z": 0
  12911. },
  12912. "_skewX": 0,
  12913. "_skewY": 0,
  12914. "_is3DNode": false,
  12915. "_groupIndex": 0,
  12916. "groupIndex": 0,
  12917. "_id": ""
  12918. },
  12919. {
  12920. "__type__": "cc.Node",
  12921. "_name": "bg",
  12922. "_objFlags": 0,
  12923. "_parent": {
  12924. "__id__": 362
  12925. },
  12926. "_children": [],
  12927. "_active": true,
  12928. "_components": [
  12929. {
  12930. "__id__": 364
  12931. }
  12932. ],
  12933. "_prefab": {
  12934. "__id__": 365
  12935. },
  12936. "_opacity": 255,
  12937. "_color": {
  12938. "__type__": "cc.Color",
  12939. "r": 166,
  12940. "g": 143,
  12941. "b": 86,
  12942. "a": 255
  12943. },
  12944. "_contentSize": {
  12945. "__type__": "cc.Size",
  12946. "width": 520,
  12947. "height": 40
  12948. },
  12949. "_anchorPoint": {
  12950. "__type__": "cc.Vec2",
  12951. "x": 0.5,
  12952. "y": 0.5
  12953. },
  12954. "_trs": {
  12955. "__type__": "TypedArray",
  12956. "ctor": "Float64Array",
  12957. "array": [
  12958. -0.5,
  12959. 0,
  12960. 0,
  12961. 0,
  12962. 0,
  12963. 0,
  12964. 1,
  12965. 1,
  12966. 1,
  12967. 1
  12968. ]
  12969. },
  12970. "_eulerAngles": {
  12971. "__type__": "cc.Vec3",
  12972. "x": 0,
  12973. "y": 0,
  12974. "z": 0
  12975. },
  12976. "_skewX": 0,
  12977. "_skewY": 0,
  12978. "_is3DNode": false,
  12979. "_groupIndex": 0,
  12980. "groupIndex": 0,
  12981. "_id": ""
  12982. },
  12983. {
  12984. "__type__": "cc.Sprite",
  12985. "_name": "",
  12986. "_objFlags": 0,
  12987. "node": {
  12988. "__id__": 363
  12989. },
  12990. "_enabled": true,
  12991. "_materials": [
  12992. {
  12993. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  12994. }
  12995. ],
  12996. "_srcBlendFactor": 770,
  12997. "_dstBlendFactor": 771,
  12998. "_spriteFrame": {
  12999. "__uuid__": "b1f64ee3-dd78-476c-bb28-83d9997f558e"
  13000. },
  13001. "_type": 0,
  13002. "_sizeMode": 0,
  13003. "_fillType": 0,
  13004. "_fillCenter": {
  13005. "__type__": "cc.Vec2",
  13006. "x": 0,
  13007. "y": 0
  13008. },
  13009. "_fillStart": 0,
  13010. "_fillRange": 0,
  13011. "_isTrimmedMode": false,
  13012. "_atlas": null,
  13013. "_id": ""
  13014. },
  13015. {
  13016. "__type__": "cc.PrefabInfo",
  13017. "root": {
  13018. "__id__": 1
  13019. },
  13020. "asset": {
  13021. "__id__": 0
  13022. },
  13023. "fileId": "96OrDqtdZGGbgSaqdDBa0p",
  13024. "sync": false
  13025. },
  13026. {
  13027. "__type__": "cc.Node",
  13028. "_name": "icon",
  13029. "_objFlags": 0,
  13030. "_parent": {
  13031. "__id__": 362
  13032. },
  13033. "_children": [],
  13034. "_active": true,
  13035. "_components": [
  13036. {
  13037. "__id__": 367
  13038. }
  13039. ],
  13040. "_prefab": {
  13041. "__id__": 368
  13042. },
  13043. "_opacity": 255,
  13044. "_color": {
  13045. "__type__": "cc.Color",
  13046. "r": 255,
  13047. "g": 255,
  13048. "b": 255,
  13049. "a": 255
  13050. },
  13051. "_contentSize": {
  13052. "__type__": "cc.Size",
  13053. "width": 53,
  13054. "height": 47
  13055. },
  13056. "_anchorPoint": {
  13057. "__type__": "cc.Vec2",
  13058. "x": 0.5,
  13059. "y": 0.5
  13060. },
  13061. "_trs": {
  13062. "__type__": "TypedArray",
  13063. "ctor": "Float64Array",
  13064. "array": [
  13065. -235.95,
  13066. 0,
  13067. 0,
  13068. 0,
  13069. 0,
  13070. 0,
  13071. 1,
  13072. 1,
  13073. 1,
  13074. 1
  13075. ]
  13076. },
  13077. "_eulerAngles": {
  13078. "__type__": "cc.Vec3",
  13079. "x": 0,
  13080. "y": 0,
  13081. "z": 0
  13082. },
  13083. "_skewX": 0,
  13084. "_skewY": 0,
  13085. "_is3DNode": false,
  13086. "_groupIndex": 0,
  13087. "groupIndex": 0,
  13088. "_id": ""
  13089. },
  13090. {
  13091. "__type__": "cc.Sprite",
  13092. "_name": "",
  13093. "_objFlags": 0,
  13094. "node": {
  13095. "__id__": 366
  13096. },
  13097. "_enabled": true,
  13098. "_materials": [
  13099. {
  13100. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  13101. }
  13102. ],
  13103. "_srcBlendFactor": 770,
  13104. "_dstBlendFactor": 771,
  13105. "_spriteFrame": null,
  13106. "_type": 0,
  13107. "_sizeMode": 1,
  13108. "_fillType": 0,
  13109. "_fillCenter": {
  13110. "__type__": "cc.Vec2",
  13111. "x": 0,
  13112. "y": 0
  13113. },
  13114. "_fillStart": 0,
  13115. "_fillRange": 0,
  13116. "_isTrimmedMode": true,
  13117. "_atlas": null,
  13118. "_id": ""
  13119. },
  13120. {
  13121. "__type__": "cc.PrefabInfo",
  13122. "root": {
  13123. "__id__": 1
  13124. },
  13125. "asset": {
  13126. "__id__": 0
  13127. },
  13128. "fileId": "8cZBcamDZOtK8ZnhEnhNo9",
  13129. "sync": false
  13130. },
  13131. {
  13132. "__type__": "cc.Node",
  13133. "_name": "attrName",
  13134. "_objFlags": 0,
  13135. "_parent": {
  13136. "__id__": 362
  13137. },
  13138. "_children": [],
  13139. "_active": true,
  13140. "_components": [
  13141. {
  13142. "__id__": 370
  13143. },
  13144. {
  13145. "__id__": 371
  13146. },
  13147. {
  13148. "__id__": 372
  13149. }
  13150. ],
  13151. "_prefab": {
  13152. "__id__": 373
  13153. },
  13154. "_opacity": 255,
  13155. "_color": {
  13156. "__type__": "cc.Color",
  13157. "r": 255,
  13158. "g": 255,
  13159. "b": 255,
  13160. "a": 255
  13161. },
  13162. "_contentSize": {
  13163. "__type__": "cc.Size",
  13164. "width": 56.75,
  13165. "height": 53.88
  13166. },
  13167. "_anchorPoint": {
  13168. "__type__": "cc.Vec2",
  13169. "x": 0,
  13170. "y": 0.5
  13171. },
  13172. "_trs": {
  13173. "__type__": "TypedArray",
  13174. "ctor": "Float64Array",
  13175. "array": [
  13176. -248,
  13177. 0,
  13178. 0,
  13179. 0,
  13180. 0,
  13181. 0,
  13182. 1,
  13183. 1,
  13184. 1,
  13185. 1
  13186. ]
  13187. },
  13188. "_eulerAngles": {
  13189. "__type__": "cc.Vec3",
  13190. "x": 0,
  13191. "y": 0,
  13192. "z": 0
  13193. },
  13194. "_skewX": 0,
  13195. "_skewY": 0,
  13196. "_is3DNode": false,
  13197. "_groupIndex": 0,
  13198. "groupIndex": 0,
  13199. "_id": ""
  13200. },
  13201. {
  13202. "__type__": "cc.Label",
  13203. "_name": "",
  13204. "_objFlags": 0,
  13205. "node": {
  13206. "__id__": 369
  13207. },
  13208. "_enabled": true,
  13209. "_materials": [
  13210. {
  13211. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  13212. }
  13213. ],
  13214. "_srcBlendFactor": 770,
  13215. "_dstBlendFactor": 771,
  13216. "_string": "HP:",
  13217. "_N$string": "HP:",
  13218. "_fontSize": 36,
  13219. "_lineHeight": 38,
  13220. "_enableWrapText": true,
  13221. "_N$file": {
  13222. "__uuid__": "53fae5bd-72f8-48d5-9465-9798bf9bde5c"
  13223. },
  13224. "_isSystemFontUsed": false,
  13225. "_spacingX": 0,
  13226. "_batchAsBitmap": false,
  13227. "_styleFlags": 0,
  13228. "_underlineHeight": 0,
  13229. "_N$horizontalAlign": 1,
  13230. "_N$verticalAlign": 1,
  13231. "_N$fontFamily": "Arial",
  13232. "_N$overflow": 0,
  13233. "_N$cacheMode": 0,
  13234. "_id": ""
  13235. },
  13236. {
  13237. "__type__": "cc.LabelOutline",
  13238. "_name": "",
  13239. "_objFlags": 0,
  13240. "node": {
  13241. "__id__": 369
  13242. },
  13243. "_enabled": true,
  13244. "_color": {
  13245. "__type__": "cc.Color",
  13246. "r": 38,
  13247. "g": 17,
  13248. "b": 12,
  13249. "a": 255
  13250. },
  13251. "_width": 3,
  13252. "_id": ""
  13253. },
  13254. {
  13255. "__type__": "41ebaVoPpRA4Kp67XEdHfZn",
  13256. "_name": "",
  13257. "_objFlags": 0,
  13258. "node": {
  13259. "__id__": 369
  13260. },
  13261. "_enabled": true,
  13262. "_englishCase": 2,
  13263. "i18n_string": "t1001",
  13264. "i18n_params": [],
  13265. "_addColon": true,
  13266. "_id": ""
  13267. },
  13268. {
  13269. "__type__": "cc.PrefabInfo",
  13270. "root": {
  13271. "__id__": 1
  13272. },
  13273. "asset": {
  13274. "__id__": 0
  13275. },
  13276. "fileId": "53R97aS+tICKSCx/HPEfXS",
  13277. "sync": false
  13278. },
  13279. {
  13280. "__type__": "cc.Node",
  13281. "_name": "attrNum",
  13282. "_objFlags": 0,
  13283. "_parent": {
  13284. "__id__": 362
  13285. },
  13286. "_children": [],
  13287. "_active": true,
  13288. "_components": [
  13289. {
  13290. "__id__": 375
  13291. },
  13292. {
  13293. "__id__": 376
  13294. }
  13295. ],
  13296. "_prefab": {
  13297. "__id__": 377
  13298. },
  13299. "_opacity": 255,
  13300. "_color": {
  13301. "__type__": "cc.Color",
  13302. "r": 255,
  13303. "g": 255,
  13304. "b": 255,
  13305. "a": 255
  13306. },
  13307. "_contentSize": {
  13308. "__type__": "cc.Size",
  13309. "width": 131.3,
  13310. "height": 53.88
  13311. },
  13312. "_anchorPoint": {
  13313. "__type__": "cc.Vec2",
  13314. "x": 0.5,
  13315. "y": 0.5
  13316. },
  13317. "_trs": {
  13318. "__type__": "TypedArray",
  13319. "ctor": "Float64Array",
  13320. "array": [
  13321. -0.097,
  13322. 0,
  13323. 0,
  13324. 0,
  13325. 0,
  13326. 0,
  13327. 1,
  13328. 1,
  13329. 1,
  13330. 1
  13331. ]
  13332. },
  13333. "_eulerAngles": {
  13334. "__type__": "cc.Vec3",
  13335. "x": 0,
  13336. "y": 0,
  13337. "z": 0
  13338. },
  13339. "_skewX": 0,
  13340. "_skewY": 0,
  13341. "_is3DNode": false,
  13342. "_groupIndex": 0,
  13343. "groupIndex": 0,
  13344. "_id": ""
  13345. },
  13346. {
  13347. "__type__": "cc.Label",
  13348. "_name": "",
  13349. "_objFlags": 0,
  13350. "node": {
  13351. "__id__": 374
  13352. },
  13353. "_enabled": true,
  13354. "_materials": [
  13355. {
  13356. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  13357. }
  13358. ],
  13359. "_srcBlendFactor": 770,
  13360. "_dstBlendFactor": 771,
  13361. "_string": "5000k",
  13362. "_N$string": "5000k",
  13363. "_fontSize": 36,
  13364. "_lineHeight": 38,
  13365. "_enableWrapText": true,
  13366. "_N$file": {
  13367. "__uuid__": "53fae5bd-72f8-48d5-9465-9798bf9bde5c"
  13368. },
  13369. "_isSystemFontUsed": false,
  13370. "_spacingX": 0,
  13371. "_batchAsBitmap": false,
  13372. "_styleFlags": 0,
  13373. "_underlineHeight": 0,
  13374. "_N$horizontalAlign": 1,
  13375. "_N$verticalAlign": 1,
  13376. "_N$fontFamily": "Arial",
  13377. "_N$overflow": 0,
  13378. "_N$cacheMode": 0,
  13379. "_id": ""
  13380. },
  13381. {
  13382. "__type__": "cc.LabelOutline",
  13383. "_name": "",
  13384. "_objFlags": 0,
  13385. "node": {
  13386. "__id__": 374
  13387. },
  13388. "_enabled": true,
  13389. "_color": {
  13390. "__type__": "cc.Color",
  13391. "r": 38,
  13392. "g": 17,
  13393. "b": 12,
  13394. "a": 255
  13395. },
  13396. "_width": 3,
  13397. "_id": ""
  13398. },
  13399. {
  13400. "__type__": "cc.PrefabInfo",
  13401. "root": {
  13402. "__id__": 1
  13403. },
  13404. "asset": {
  13405. "__id__": 0
  13406. },
  13407. "fileId": "f6UY8sB6BEC5ER6x8D0I+I",
  13408. "sync": false
  13409. },
  13410. {
  13411. "__type__": "cc.Node",
  13412. "_name": "arrow_3",
  13413. "_objFlags": 0,
  13414. "_parent": {
  13415. "__id__": 362
  13416. },
  13417. "_children": [],
  13418. "_active": true,
  13419. "_components": [
  13420. {
  13421. "__id__": 379
  13422. }
  13423. ],
  13424. "_prefab": {
  13425. "__id__": 380
  13426. },
  13427. "_opacity": 255,
  13428. "_color": {
  13429. "__type__": "cc.Color",
  13430. "r": 186,
  13431. "g": 255,
  13432. "b": 39,
  13433. "a": 255
  13434. },
  13435. "_contentSize": {
  13436. "__type__": "cc.Size",
  13437. "width": 45,
  13438. "height": 28
  13439. },
  13440. "_anchorPoint": {
  13441. "__type__": "cc.Vec2",
  13442. "x": 0.5,
  13443. "y": 0.5
  13444. },
  13445. "_trs": {
  13446. "__type__": "TypedArray",
  13447. "ctor": "Float64Array",
  13448. "array": [
  13449. 93.928,
  13450. 0,
  13451. 0,
  13452. 0,
  13453. 0,
  13454. 0,
  13455. 1,
  13456. 1,
  13457. 1,
  13458. 1
  13459. ]
  13460. },
  13461. "_eulerAngles": {
  13462. "__type__": "cc.Vec3",
  13463. "x": 0,
  13464. "y": 0,
  13465. "z": 0
  13466. },
  13467. "_skewX": 0,
  13468. "_skewY": 0,
  13469. "_is3DNode": false,
  13470. "_groupIndex": 0,
  13471. "groupIndex": 0,
  13472. "_id": ""
  13473. },
  13474. {
  13475. "__type__": "cc.Sprite",
  13476. "_name": "",
  13477. "_objFlags": 0,
  13478. "node": {
  13479. "__id__": 378
  13480. },
  13481. "_enabled": true,
  13482. "_materials": [
  13483. {
  13484. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  13485. }
  13486. ],
  13487. "_srcBlendFactor": 770,
  13488. "_dstBlendFactor": 771,
  13489. "_spriteFrame": {
  13490. "__uuid__": "b236e179-24da-4d06-a2ee-8b3747be2fad"
  13491. },
  13492. "_type": 0,
  13493. "_sizeMode": 1,
  13494. "_fillType": 0,
  13495. "_fillCenter": {
  13496. "__type__": "cc.Vec2",
  13497. "x": 0,
  13498. "y": 0
  13499. },
  13500. "_fillStart": 0,
  13501. "_fillRange": 0,
  13502. "_isTrimmedMode": true,
  13503. "_atlas": null,
  13504. "_id": ""
  13505. },
  13506. {
  13507. "__type__": "cc.PrefabInfo",
  13508. "root": {
  13509. "__id__": 1
  13510. },
  13511. "asset": {
  13512. "__id__": 0
  13513. },
  13514. "fileId": "28grDAgupJO7yFsetluoqw",
  13515. "sync": false
  13516. },
  13517. {
  13518. "__type__": "cc.Node",
  13519. "_name": "nextNum",
  13520. "_objFlags": 0,
  13521. "_parent": {
  13522. "__id__": 362
  13523. },
  13524. "_children": [],
  13525. "_active": true,
  13526. "_components": [
  13527. {
  13528. "__id__": 382
  13529. },
  13530. {
  13531. "__id__": 383
  13532. }
  13533. ],
  13534. "_prefab": {
  13535. "__id__": 384
  13536. },
  13537. "_opacity": 255,
  13538. "_color": {
  13539. "__type__": "cc.Color",
  13540. "r": 186,
  13541. "g": 255,
  13542. "b": 39,
  13543. "a": 255
  13544. },
  13545. "_contentSize": {
  13546. "__type__": "cc.Size",
  13547. "width": 131.3,
  13548. "height": 53.88
  13549. },
  13550. "_anchorPoint": {
  13551. "__type__": "cc.Vec2",
  13552. "x": 0.5,
  13553. "y": 0.5
  13554. },
  13555. "_trs": {
  13556. "__type__": "TypedArray",
  13557. "ctor": "Float64Array",
  13558. "array": [
  13559. 187.301,
  13560. 0,
  13561. 0,
  13562. 0,
  13563. 0,
  13564. 0,
  13565. 1,
  13566. 1,
  13567. 1,
  13568. 1
  13569. ]
  13570. },
  13571. "_eulerAngles": {
  13572. "__type__": "cc.Vec3",
  13573. "x": 0,
  13574. "y": 0,
  13575. "z": 0
  13576. },
  13577. "_skewX": 0,
  13578. "_skewY": 0,
  13579. "_is3DNode": false,
  13580. "_groupIndex": 0,
  13581. "groupIndex": 0,
  13582. "_id": ""
  13583. },
  13584. {
  13585. "__type__": "cc.Label",
  13586. "_name": "",
  13587. "_objFlags": 0,
  13588. "node": {
  13589. "__id__": 381
  13590. },
  13591. "_enabled": true,
  13592. "_materials": [
  13593. {
  13594. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  13595. }
  13596. ],
  13597. "_srcBlendFactor": 770,
  13598. "_dstBlendFactor": 771,
  13599. "_string": "5000k",
  13600. "_N$string": "5000k",
  13601. "_fontSize": 36,
  13602. "_lineHeight": 38,
  13603. "_enableWrapText": true,
  13604. "_N$file": {
  13605. "__uuid__": "53fae5bd-72f8-48d5-9465-9798bf9bde5c"
  13606. },
  13607. "_isSystemFontUsed": false,
  13608. "_spacingX": 0,
  13609. "_batchAsBitmap": false,
  13610. "_styleFlags": 0,
  13611. "_underlineHeight": 0,
  13612. "_N$horizontalAlign": 1,
  13613. "_N$verticalAlign": 1,
  13614. "_N$fontFamily": "Arial",
  13615. "_N$overflow": 0,
  13616. "_N$cacheMode": 0,
  13617. "_id": ""
  13618. },
  13619. {
  13620. "__type__": "cc.LabelOutline",
  13621. "_name": "",
  13622. "_objFlags": 0,
  13623. "node": {
  13624. "__id__": 381
  13625. },
  13626. "_enabled": true,
  13627. "_color": {
  13628. "__type__": "cc.Color",
  13629. "r": 38,
  13630. "g": 17,
  13631. "b": 12,
  13632. "a": 255
  13633. },
  13634. "_width": 3,
  13635. "_id": ""
  13636. },
  13637. {
  13638. "__type__": "cc.PrefabInfo",
  13639. "root": {
  13640. "__id__": 1
  13641. },
  13642. "asset": {
  13643. "__id__": 0
  13644. },
  13645. "fileId": "23fbo1ieNLDJ60vXk4ydgY",
  13646. "sync": false
  13647. },
  13648. {
  13649. "__type__": "cc.PrefabInfo",
  13650. "root": {
  13651. "__id__": 1
  13652. },
  13653. "asset": {
  13654. "__id__": 0
  13655. },
  13656. "fileId": "cdOB6K1dZEYJGDwgMJWrZ8",
  13657. "sync": false
  13658. },
  13659. {
  13660. "__type__": "cc.Node",
  13661. "_name": "attr",
  13662. "_objFlags": 0,
  13663. "_parent": {
  13664. "__id__": 337
  13665. },
  13666. "_children": [
  13667. {
  13668. "__id__": 387
  13669. },
  13670. {
  13671. "__id__": 390
  13672. },
  13673. {
  13674. "__id__": 393
  13675. },
  13676. {
  13677. "__id__": 398
  13678. },
  13679. {
  13680. "__id__": 402
  13681. },
  13682. {
  13683. "__id__": 405
  13684. }
  13685. ],
  13686. "_active": true,
  13687. "_components": [],
  13688. "_prefab": {
  13689. "__id__": 409
  13690. },
  13691. "_opacity": 255,
  13692. "_color": {
  13693. "__type__": "cc.Color",
  13694. "r": 255,
  13695. "g": 255,
  13696. "b": 255,
  13697. "a": 255
  13698. },
  13699. "_contentSize": {
  13700. "__type__": "cc.Size",
  13701. "width": 520,
  13702. "height": 40
  13703. },
  13704. "_anchorPoint": {
  13705. "__type__": "cc.Vec2",
  13706. "x": 0.5,
  13707. "y": 0.5
  13708. },
  13709. "_trs": {
  13710. "__type__": "TypedArray",
  13711. "ctor": "Float64Array",
  13712. "array": [
  13713. 0,
  13714. -133,
  13715. 0,
  13716. 0,
  13717. 0,
  13718. 0,
  13719. 1,
  13720. 1,
  13721. 1,
  13722. 1
  13723. ]
  13724. },
  13725. "_eulerAngles": {
  13726. "__type__": "cc.Vec3",
  13727. "x": 0,
  13728. "y": 0,
  13729. "z": 0
  13730. },
  13731. "_skewX": 0,
  13732. "_skewY": 0,
  13733. "_is3DNode": false,
  13734. "_groupIndex": 0,
  13735. "groupIndex": 0,
  13736. "_id": ""
  13737. },
  13738. {
  13739. "__type__": "cc.Node",
  13740. "_name": "bg",
  13741. "_objFlags": 0,
  13742. "_parent": {
  13743. "__id__": 386
  13744. },
  13745. "_children": [],
  13746. "_active": true,
  13747. "_components": [
  13748. {
  13749. "__id__": 388
  13750. }
  13751. ],
  13752. "_prefab": {
  13753. "__id__": 389
  13754. },
  13755. "_opacity": 255,
  13756. "_color": {
  13757. "__type__": "cc.Color",
  13758. "r": 166,
  13759. "g": 143,
  13760. "b": 86,
  13761. "a": 255
  13762. },
  13763. "_contentSize": {
  13764. "__type__": "cc.Size",
  13765. "width": 520,
  13766. "height": 40
  13767. },
  13768. "_anchorPoint": {
  13769. "__type__": "cc.Vec2",
  13770. "x": 0.5,
  13771. "y": 0.5
  13772. },
  13773. "_trs": {
  13774. "__type__": "TypedArray",
  13775. "ctor": "Float64Array",
  13776. "array": [
  13777. -0.5,
  13778. 0,
  13779. 0,
  13780. 0,
  13781. 0,
  13782. 0,
  13783. 1,
  13784. 1,
  13785. 1,
  13786. 1
  13787. ]
  13788. },
  13789. "_eulerAngles": {
  13790. "__type__": "cc.Vec3",
  13791. "x": 0,
  13792. "y": 0,
  13793. "z": 0
  13794. },
  13795. "_skewX": 0,
  13796. "_skewY": 0,
  13797. "_is3DNode": false,
  13798. "_groupIndex": 0,
  13799. "groupIndex": 0,
  13800. "_id": ""
  13801. },
  13802. {
  13803. "__type__": "cc.Sprite",
  13804. "_name": "",
  13805. "_objFlags": 0,
  13806. "node": {
  13807. "__id__": 387
  13808. },
  13809. "_enabled": true,
  13810. "_materials": [
  13811. {
  13812. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  13813. }
  13814. ],
  13815. "_srcBlendFactor": 770,
  13816. "_dstBlendFactor": 771,
  13817. "_spriteFrame": {
  13818. "__uuid__": "b1f64ee3-dd78-476c-bb28-83d9997f558e"
  13819. },
  13820. "_type": 0,
  13821. "_sizeMode": 0,
  13822. "_fillType": 0,
  13823. "_fillCenter": {
  13824. "__type__": "cc.Vec2",
  13825. "x": 0,
  13826. "y": 0
  13827. },
  13828. "_fillStart": 0,
  13829. "_fillRange": 0,
  13830. "_isTrimmedMode": false,
  13831. "_atlas": null,
  13832. "_id": ""
  13833. },
  13834. {
  13835. "__type__": "cc.PrefabInfo",
  13836. "root": {
  13837. "__id__": 1
  13838. },
  13839. "asset": {
  13840. "__id__": 0
  13841. },
  13842. "fileId": "7cqFzaFqtPU719aJpglGGg",
  13843. "sync": false
  13844. },
  13845. {
  13846. "__type__": "cc.Node",
  13847. "_name": "icon",
  13848. "_objFlags": 0,
  13849. "_parent": {
  13850. "__id__": 386
  13851. },
  13852. "_children": [],
  13853. "_active": true,
  13854. "_components": [
  13855. {
  13856. "__id__": 391
  13857. }
  13858. ],
  13859. "_prefab": {
  13860. "__id__": 392
  13861. },
  13862. "_opacity": 255,
  13863. "_color": {
  13864. "__type__": "cc.Color",
  13865. "r": 255,
  13866. "g": 255,
  13867. "b": 255,
  13868. "a": 255
  13869. },
  13870. "_contentSize": {
  13871. "__type__": "cc.Size",
  13872. "width": 53,
  13873. "height": 47
  13874. },
  13875. "_anchorPoint": {
  13876. "__type__": "cc.Vec2",
  13877. "x": 0.5,
  13878. "y": 0.5
  13879. },
  13880. "_trs": {
  13881. "__type__": "TypedArray",
  13882. "ctor": "Float64Array",
  13883. "array": [
  13884. -235.95,
  13885. 0,
  13886. 0,
  13887. 0,
  13888. 0,
  13889. 0,
  13890. 1,
  13891. 1,
  13892. 1,
  13893. 1
  13894. ]
  13895. },
  13896. "_eulerAngles": {
  13897. "__type__": "cc.Vec3",
  13898. "x": 0,
  13899. "y": 0,
  13900. "z": 0
  13901. },
  13902. "_skewX": 0,
  13903. "_skewY": 0,
  13904. "_is3DNode": false,
  13905. "_groupIndex": 0,
  13906. "groupIndex": 0,
  13907. "_id": ""
  13908. },
  13909. {
  13910. "__type__": "cc.Sprite",
  13911. "_name": "",
  13912. "_objFlags": 0,
  13913. "node": {
  13914. "__id__": 390
  13915. },
  13916. "_enabled": true,
  13917. "_materials": [
  13918. {
  13919. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  13920. }
  13921. ],
  13922. "_srcBlendFactor": 770,
  13923. "_dstBlendFactor": 771,
  13924. "_spriteFrame": null,
  13925. "_type": 0,
  13926. "_sizeMode": 1,
  13927. "_fillType": 0,
  13928. "_fillCenter": {
  13929. "__type__": "cc.Vec2",
  13930. "x": 0,
  13931. "y": 0
  13932. },
  13933. "_fillStart": 0,
  13934. "_fillRange": 0,
  13935. "_isTrimmedMode": true,
  13936. "_atlas": null,
  13937. "_id": ""
  13938. },
  13939. {
  13940. "__type__": "cc.PrefabInfo",
  13941. "root": {
  13942. "__id__": 1
  13943. },
  13944. "asset": {
  13945. "__id__": 0
  13946. },
  13947. "fileId": "12P0AkcvBH6LlN4wwxq81c",
  13948. "sync": false
  13949. },
  13950. {
  13951. "__type__": "cc.Node",
  13952. "_name": "attrName",
  13953. "_objFlags": 0,
  13954. "_parent": {
  13955. "__id__": 386
  13956. },
  13957. "_children": [],
  13958. "_active": true,
  13959. "_components": [
  13960. {
  13961. "__id__": 394
  13962. },
  13963. {
  13964. "__id__": 395
  13965. },
  13966. {
  13967. "__id__": 396
  13968. }
  13969. ],
  13970. "_prefab": {
  13971. "__id__": 397
  13972. },
  13973. "_opacity": 255,
  13974. "_color": {
  13975. "__type__": "cc.Color",
  13976. "r": 255,
  13977. "g": 255,
  13978. "b": 255,
  13979. "a": 255
  13980. },
  13981. "_contentSize": {
  13982. "__type__": "cc.Size",
  13983. "width": 56.75,
  13984. "height": 53.88
  13985. },
  13986. "_anchorPoint": {
  13987. "__type__": "cc.Vec2",
  13988. "x": 0,
  13989. "y": 0.5
  13990. },
  13991. "_trs": {
  13992. "__type__": "TypedArray",
  13993. "ctor": "Float64Array",
  13994. "array": [
  13995. -248,
  13996. 0,
  13997. 0,
  13998. 0,
  13999. 0,
  14000. 0,
  14001. 1,
  14002. 1,
  14003. 1,
  14004. 1
  14005. ]
  14006. },
  14007. "_eulerAngles": {
  14008. "__type__": "cc.Vec3",
  14009. "x": 0,
  14010. "y": 0,
  14011. "z": 0
  14012. },
  14013. "_skewX": 0,
  14014. "_skewY": 0,
  14015. "_is3DNode": false,
  14016. "_groupIndex": 0,
  14017. "groupIndex": 0,
  14018. "_id": ""
  14019. },
  14020. {
  14021. "__type__": "cc.Label",
  14022. "_name": "",
  14023. "_objFlags": 0,
  14024. "node": {
  14025. "__id__": 393
  14026. },
  14027. "_enabled": true,
  14028. "_materials": [
  14029. {
  14030. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  14031. }
  14032. ],
  14033. "_srcBlendFactor": 770,
  14034. "_dstBlendFactor": 771,
  14035. "_string": "HP:",
  14036. "_N$string": "HP:",
  14037. "_fontSize": 36,
  14038. "_lineHeight": 38,
  14039. "_enableWrapText": true,
  14040. "_N$file": {
  14041. "__uuid__": "53fae5bd-72f8-48d5-9465-9798bf9bde5c"
  14042. },
  14043. "_isSystemFontUsed": false,
  14044. "_spacingX": 0,
  14045. "_batchAsBitmap": false,
  14046. "_styleFlags": 0,
  14047. "_underlineHeight": 0,
  14048. "_N$horizontalAlign": 1,
  14049. "_N$verticalAlign": 1,
  14050. "_N$fontFamily": "Arial",
  14051. "_N$overflow": 0,
  14052. "_N$cacheMode": 0,
  14053. "_id": ""
  14054. },
  14055. {
  14056. "__type__": "cc.LabelOutline",
  14057. "_name": "",
  14058. "_objFlags": 0,
  14059. "node": {
  14060. "__id__": 393
  14061. },
  14062. "_enabled": true,
  14063. "_color": {
  14064. "__type__": "cc.Color",
  14065. "r": 38,
  14066. "g": 17,
  14067. "b": 12,
  14068. "a": 255
  14069. },
  14070. "_width": 3,
  14071. "_id": ""
  14072. },
  14073. {
  14074. "__type__": "41ebaVoPpRA4Kp67XEdHfZn",
  14075. "_name": "",
  14076. "_objFlags": 0,
  14077. "node": {
  14078. "__id__": 393
  14079. },
  14080. "_enabled": true,
  14081. "_englishCase": 2,
  14082. "i18n_string": "t1001",
  14083. "i18n_params": [],
  14084. "_addColon": true,
  14085. "_id": ""
  14086. },
  14087. {
  14088. "__type__": "cc.PrefabInfo",
  14089. "root": {
  14090. "__id__": 1
  14091. },
  14092. "asset": {
  14093. "__id__": 0
  14094. },
  14095. "fileId": "cfKiz36pdFaZJZwt2Nk9U+",
  14096. "sync": false
  14097. },
  14098. {
  14099. "__type__": "cc.Node",
  14100. "_name": "attrNum",
  14101. "_objFlags": 0,
  14102. "_parent": {
  14103. "__id__": 386
  14104. },
  14105. "_children": [],
  14106. "_active": true,
  14107. "_components": [
  14108. {
  14109. "__id__": 399
  14110. },
  14111. {
  14112. "__id__": 400
  14113. }
  14114. ],
  14115. "_prefab": {
  14116. "__id__": 401
  14117. },
  14118. "_opacity": 255,
  14119. "_color": {
  14120. "__type__": "cc.Color",
  14121. "r": 255,
  14122. "g": 255,
  14123. "b": 255,
  14124. "a": 255
  14125. },
  14126. "_contentSize": {
  14127. "__type__": "cc.Size",
  14128. "width": 131.3,
  14129. "height": 53.88
  14130. },
  14131. "_anchorPoint": {
  14132. "__type__": "cc.Vec2",
  14133. "x": 0.5,
  14134. "y": 0.5
  14135. },
  14136. "_trs": {
  14137. "__type__": "TypedArray",
  14138. "ctor": "Float64Array",
  14139. "array": [
  14140. -0.097,
  14141. 0,
  14142. 0,
  14143. 0,
  14144. 0,
  14145. 0,
  14146. 1,
  14147. 1,
  14148. 1,
  14149. 1
  14150. ]
  14151. },
  14152. "_eulerAngles": {
  14153. "__type__": "cc.Vec3",
  14154. "x": 0,
  14155. "y": 0,
  14156. "z": 0
  14157. },
  14158. "_skewX": 0,
  14159. "_skewY": 0,
  14160. "_is3DNode": false,
  14161. "_groupIndex": 0,
  14162. "groupIndex": 0,
  14163. "_id": ""
  14164. },
  14165. {
  14166. "__type__": "cc.Label",
  14167. "_name": "",
  14168. "_objFlags": 0,
  14169. "node": {
  14170. "__id__": 398
  14171. },
  14172. "_enabled": true,
  14173. "_materials": [
  14174. {
  14175. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  14176. }
  14177. ],
  14178. "_srcBlendFactor": 770,
  14179. "_dstBlendFactor": 771,
  14180. "_string": "5000k",
  14181. "_N$string": "5000k",
  14182. "_fontSize": 36,
  14183. "_lineHeight": 38,
  14184. "_enableWrapText": true,
  14185. "_N$file": {
  14186. "__uuid__": "53fae5bd-72f8-48d5-9465-9798bf9bde5c"
  14187. },
  14188. "_isSystemFontUsed": false,
  14189. "_spacingX": 0,
  14190. "_batchAsBitmap": false,
  14191. "_styleFlags": 0,
  14192. "_underlineHeight": 0,
  14193. "_N$horizontalAlign": 1,
  14194. "_N$verticalAlign": 1,
  14195. "_N$fontFamily": "Arial",
  14196. "_N$overflow": 0,
  14197. "_N$cacheMode": 0,
  14198. "_id": ""
  14199. },
  14200. {
  14201. "__type__": "cc.LabelOutline",
  14202. "_name": "",
  14203. "_objFlags": 0,
  14204. "node": {
  14205. "__id__": 398
  14206. },
  14207. "_enabled": true,
  14208. "_color": {
  14209. "__type__": "cc.Color",
  14210. "r": 38,
  14211. "g": 17,
  14212. "b": 12,
  14213. "a": 255
  14214. },
  14215. "_width": 3,
  14216. "_id": ""
  14217. },
  14218. {
  14219. "__type__": "cc.PrefabInfo",
  14220. "root": {
  14221. "__id__": 1
  14222. },
  14223. "asset": {
  14224. "__id__": 0
  14225. },
  14226. "fileId": "75KMh1mVdLBr9UcfJvUKbs",
  14227. "sync": false
  14228. },
  14229. {
  14230. "__type__": "cc.Node",
  14231. "_name": "arrow_3",
  14232. "_objFlags": 0,
  14233. "_parent": {
  14234. "__id__": 386
  14235. },
  14236. "_children": [],
  14237. "_active": true,
  14238. "_components": [
  14239. {
  14240. "__id__": 403
  14241. }
  14242. ],
  14243. "_prefab": {
  14244. "__id__": 404
  14245. },
  14246. "_opacity": 255,
  14247. "_color": {
  14248. "__type__": "cc.Color",
  14249. "r": 186,
  14250. "g": 255,
  14251. "b": 39,
  14252. "a": 255
  14253. },
  14254. "_contentSize": {
  14255. "__type__": "cc.Size",
  14256. "width": 45,
  14257. "height": 28
  14258. },
  14259. "_anchorPoint": {
  14260. "__type__": "cc.Vec2",
  14261. "x": 0.5,
  14262. "y": 0.5
  14263. },
  14264. "_trs": {
  14265. "__type__": "TypedArray",
  14266. "ctor": "Float64Array",
  14267. "array": [
  14268. 93.928,
  14269. 0,
  14270. 0,
  14271. 0,
  14272. 0,
  14273. 0,
  14274. 1,
  14275. 1,
  14276. 1,
  14277. 1
  14278. ]
  14279. },
  14280. "_eulerAngles": {
  14281. "__type__": "cc.Vec3",
  14282. "x": 0,
  14283. "y": 0,
  14284. "z": 0
  14285. },
  14286. "_skewX": 0,
  14287. "_skewY": 0,
  14288. "_is3DNode": false,
  14289. "_groupIndex": 0,
  14290. "groupIndex": 0,
  14291. "_id": ""
  14292. },
  14293. {
  14294. "__type__": "cc.Sprite",
  14295. "_name": "",
  14296. "_objFlags": 0,
  14297. "node": {
  14298. "__id__": 402
  14299. },
  14300. "_enabled": true,
  14301. "_materials": [
  14302. {
  14303. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  14304. }
  14305. ],
  14306. "_srcBlendFactor": 770,
  14307. "_dstBlendFactor": 771,
  14308. "_spriteFrame": {
  14309. "__uuid__": "b236e179-24da-4d06-a2ee-8b3747be2fad"
  14310. },
  14311. "_type": 0,
  14312. "_sizeMode": 1,
  14313. "_fillType": 0,
  14314. "_fillCenter": {
  14315. "__type__": "cc.Vec2",
  14316. "x": 0,
  14317. "y": 0
  14318. },
  14319. "_fillStart": 0,
  14320. "_fillRange": 0,
  14321. "_isTrimmedMode": true,
  14322. "_atlas": null,
  14323. "_id": ""
  14324. },
  14325. {
  14326. "__type__": "cc.PrefabInfo",
  14327. "root": {
  14328. "__id__": 1
  14329. },
  14330. "asset": {
  14331. "__id__": 0
  14332. },
  14333. "fileId": "c9gAraJTJH97xCR9xfUbiI",
  14334. "sync": false
  14335. },
  14336. {
  14337. "__type__": "cc.Node",
  14338. "_name": "nextNum",
  14339. "_objFlags": 0,
  14340. "_parent": {
  14341. "__id__": 386
  14342. },
  14343. "_children": [],
  14344. "_active": true,
  14345. "_components": [
  14346. {
  14347. "__id__": 406
  14348. },
  14349. {
  14350. "__id__": 407
  14351. }
  14352. ],
  14353. "_prefab": {
  14354. "__id__": 408
  14355. },
  14356. "_opacity": 255,
  14357. "_color": {
  14358. "__type__": "cc.Color",
  14359. "r": 186,
  14360. "g": 255,
  14361. "b": 39,
  14362. "a": 255
  14363. },
  14364. "_contentSize": {
  14365. "__type__": "cc.Size",
  14366. "width": 131.3,
  14367. "height": 53.88
  14368. },
  14369. "_anchorPoint": {
  14370. "__type__": "cc.Vec2",
  14371. "x": 0.5,
  14372. "y": 0.5
  14373. },
  14374. "_trs": {
  14375. "__type__": "TypedArray",
  14376. "ctor": "Float64Array",
  14377. "array": [
  14378. 187.301,
  14379. 0,
  14380. 0,
  14381. 0,
  14382. 0,
  14383. 0,
  14384. 1,
  14385. 1,
  14386. 1,
  14387. 1
  14388. ]
  14389. },
  14390. "_eulerAngles": {
  14391. "__type__": "cc.Vec3",
  14392. "x": 0,
  14393. "y": 0,
  14394. "z": 0
  14395. },
  14396. "_skewX": 0,
  14397. "_skewY": 0,
  14398. "_is3DNode": false,
  14399. "_groupIndex": 0,
  14400. "groupIndex": 0,
  14401. "_id": ""
  14402. },
  14403. {
  14404. "__type__": "cc.Label",
  14405. "_name": "",
  14406. "_objFlags": 0,
  14407. "node": {
  14408. "__id__": 405
  14409. },
  14410. "_enabled": true,
  14411. "_materials": [
  14412. {
  14413. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  14414. }
  14415. ],
  14416. "_srcBlendFactor": 770,
  14417. "_dstBlendFactor": 771,
  14418. "_string": "5000k",
  14419. "_N$string": "5000k",
  14420. "_fontSize": 36,
  14421. "_lineHeight": 38,
  14422. "_enableWrapText": true,
  14423. "_N$file": {
  14424. "__uuid__": "53fae5bd-72f8-48d5-9465-9798bf9bde5c"
  14425. },
  14426. "_isSystemFontUsed": false,
  14427. "_spacingX": 0,
  14428. "_batchAsBitmap": false,
  14429. "_styleFlags": 0,
  14430. "_underlineHeight": 0,
  14431. "_N$horizontalAlign": 1,
  14432. "_N$verticalAlign": 1,
  14433. "_N$fontFamily": "Arial",
  14434. "_N$overflow": 0,
  14435. "_N$cacheMode": 0,
  14436. "_id": ""
  14437. },
  14438. {
  14439. "__type__": "cc.LabelOutline",
  14440. "_name": "",
  14441. "_objFlags": 0,
  14442. "node": {
  14443. "__id__": 405
  14444. },
  14445. "_enabled": true,
  14446. "_color": {
  14447. "__type__": "cc.Color",
  14448. "r": 38,
  14449. "g": 17,
  14450. "b": 12,
  14451. "a": 255
  14452. },
  14453. "_width": 3,
  14454. "_id": ""
  14455. },
  14456. {
  14457. "__type__": "cc.PrefabInfo",
  14458. "root": {
  14459. "__id__": 1
  14460. },
  14461. "asset": {
  14462. "__id__": 0
  14463. },
  14464. "fileId": "cfi2Qiv6ZLh7y6Nfi7AmW+",
  14465. "sync": false
  14466. },
  14467. {
  14468. "__type__": "cc.PrefabInfo",
  14469. "root": {
  14470. "__id__": 1
  14471. },
  14472. "asset": {
  14473. "__id__": 0
  14474. },
  14475. "fileId": "f8PD515SBOTZx72mqwcM7f",
  14476. "sync": false
  14477. },
  14478. {
  14479. "__type__": "cc.Node",
  14480. "_name": "attr",
  14481. "_objFlags": 0,
  14482. "_parent": {
  14483. "__id__": 337
  14484. },
  14485. "_children": [
  14486. {
  14487. "__id__": 411
  14488. },
  14489. {
  14490. "__id__": 414
  14491. },
  14492. {
  14493. "__id__": 417
  14494. },
  14495. {
  14496. "__id__": 422
  14497. },
  14498. {
  14499. "__id__": 426
  14500. },
  14501. {
  14502. "__id__": 429
  14503. }
  14504. ],
  14505. "_active": true,
  14506. "_components": [],
  14507. "_prefab": {
  14508. "__id__": 433
  14509. },
  14510. "_opacity": 255,
  14511. "_color": {
  14512. "__type__": "cc.Color",
  14513. "r": 255,
  14514. "g": 255,
  14515. "b": 255,
  14516. "a": 255
  14517. },
  14518. "_contentSize": {
  14519. "__type__": "cc.Size",
  14520. "width": 520,
  14521. "height": 40
  14522. },
  14523. "_anchorPoint": {
  14524. "__type__": "cc.Vec2",
  14525. "x": 0.5,
  14526. "y": 0.5
  14527. },
  14528. "_trs": {
  14529. "__type__": "TypedArray",
  14530. "ctor": "Float64Array",
  14531. "array": [
  14532. 0,
  14533. -183,
  14534. 0,
  14535. 0,
  14536. 0,
  14537. 0,
  14538. 1,
  14539. 1,
  14540. 1,
  14541. 1
  14542. ]
  14543. },
  14544. "_eulerAngles": {
  14545. "__type__": "cc.Vec3",
  14546. "x": 0,
  14547. "y": 0,
  14548. "z": 0
  14549. },
  14550. "_skewX": 0,
  14551. "_skewY": 0,
  14552. "_is3DNode": false,
  14553. "_groupIndex": 0,
  14554. "groupIndex": 0,
  14555. "_id": ""
  14556. },
  14557. {
  14558. "__type__": "cc.Node",
  14559. "_name": "bg",
  14560. "_objFlags": 0,
  14561. "_parent": {
  14562. "__id__": 410
  14563. },
  14564. "_children": [],
  14565. "_active": true,
  14566. "_components": [
  14567. {
  14568. "__id__": 412
  14569. }
  14570. ],
  14571. "_prefab": {
  14572. "__id__": 413
  14573. },
  14574. "_opacity": 255,
  14575. "_color": {
  14576. "__type__": "cc.Color",
  14577. "r": 166,
  14578. "g": 143,
  14579. "b": 86,
  14580. "a": 255
  14581. },
  14582. "_contentSize": {
  14583. "__type__": "cc.Size",
  14584. "width": 520,
  14585. "height": 40
  14586. },
  14587. "_anchorPoint": {
  14588. "__type__": "cc.Vec2",
  14589. "x": 0.5,
  14590. "y": 0.5
  14591. },
  14592. "_trs": {
  14593. "__type__": "TypedArray",
  14594. "ctor": "Float64Array",
  14595. "array": [
  14596. -0.5,
  14597. 0,
  14598. 0,
  14599. 0,
  14600. 0,
  14601. 0,
  14602. 1,
  14603. 1,
  14604. 1,
  14605. 1
  14606. ]
  14607. },
  14608. "_eulerAngles": {
  14609. "__type__": "cc.Vec3",
  14610. "x": 0,
  14611. "y": 0,
  14612. "z": 0
  14613. },
  14614. "_skewX": 0,
  14615. "_skewY": 0,
  14616. "_is3DNode": false,
  14617. "_groupIndex": 0,
  14618. "groupIndex": 0,
  14619. "_id": ""
  14620. },
  14621. {
  14622. "__type__": "cc.Sprite",
  14623. "_name": "",
  14624. "_objFlags": 0,
  14625. "node": {
  14626. "__id__": 411
  14627. },
  14628. "_enabled": true,
  14629. "_materials": [
  14630. {
  14631. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  14632. }
  14633. ],
  14634. "_srcBlendFactor": 770,
  14635. "_dstBlendFactor": 771,
  14636. "_spriteFrame": {
  14637. "__uuid__": "b1f64ee3-dd78-476c-bb28-83d9997f558e"
  14638. },
  14639. "_type": 0,
  14640. "_sizeMode": 0,
  14641. "_fillType": 0,
  14642. "_fillCenter": {
  14643. "__type__": "cc.Vec2",
  14644. "x": 0,
  14645. "y": 0
  14646. },
  14647. "_fillStart": 0,
  14648. "_fillRange": 0,
  14649. "_isTrimmedMode": false,
  14650. "_atlas": null,
  14651. "_id": ""
  14652. },
  14653. {
  14654. "__type__": "cc.PrefabInfo",
  14655. "root": {
  14656. "__id__": 1
  14657. },
  14658. "asset": {
  14659. "__id__": 0
  14660. },
  14661. "fileId": "d7ehgkpihBLKg35F9sVF5B",
  14662. "sync": false
  14663. },
  14664. {
  14665. "__type__": "cc.Node",
  14666. "_name": "icon",
  14667. "_objFlags": 0,
  14668. "_parent": {
  14669. "__id__": 410
  14670. },
  14671. "_children": [],
  14672. "_active": true,
  14673. "_components": [
  14674. {
  14675. "__id__": 415
  14676. }
  14677. ],
  14678. "_prefab": {
  14679. "__id__": 416
  14680. },
  14681. "_opacity": 255,
  14682. "_color": {
  14683. "__type__": "cc.Color",
  14684. "r": 255,
  14685. "g": 255,
  14686. "b": 255,
  14687. "a": 255
  14688. },
  14689. "_contentSize": {
  14690. "__type__": "cc.Size",
  14691. "width": 53,
  14692. "height": 47
  14693. },
  14694. "_anchorPoint": {
  14695. "__type__": "cc.Vec2",
  14696. "x": 0.5,
  14697. "y": 0.5
  14698. },
  14699. "_trs": {
  14700. "__type__": "TypedArray",
  14701. "ctor": "Float64Array",
  14702. "array": [
  14703. -235.95,
  14704. 0,
  14705. 0,
  14706. 0,
  14707. 0,
  14708. 0,
  14709. 1,
  14710. 1,
  14711. 1,
  14712. 1
  14713. ]
  14714. },
  14715. "_eulerAngles": {
  14716. "__type__": "cc.Vec3",
  14717. "x": 0,
  14718. "y": 0,
  14719. "z": 0
  14720. },
  14721. "_skewX": 0,
  14722. "_skewY": 0,
  14723. "_is3DNode": false,
  14724. "_groupIndex": 0,
  14725. "groupIndex": 0,
  14726. "_id": ""
  14727. },
  14728. {
  14729. "__type__": "cc.Sprite",
  14730. "_name": "",
  14731. "_objFlags": 0,
  14732. "node": {
  14733. "__id__": 414
  14734. },
  14735. "_enabled": true,
  14736. "_materials": [
  14737. {
  14738. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  14739. }
  14740. ],
  14741. "_srcBlendFactor": 770,
  14742. "_dstBlendFactor": 771,
  14743. "_spriteFrame": null,
  14744. "_type": 0,
  14745. "_sizeMode": 1,
  14746. "_fillType": 0,
  14747. "_fillCenter": {
  14748. "__type__": "cc.Vec2",
  14749. "x": 0,
  14750. "y": 0
  14751. },
  14752. "_fillStart": 0,
  14753. "_fillRange": 0,
  14754. "_isTrimmedMode": true,
  14755. "_atlas": null,
  14756. "_id": ""
  14757. },
  14758. {
  14759. "__type__": "cc.PrefabInfo",
  14760. "root": {
  14761. "__id__": 1
  14762. },
  14763. "asset": {
  14764. "__id__": 0
  14765. },
  14766. "fileId": "5fWzPIFItDkaX5MOXULB7N",
  14767. "sync": false
  14768. },
  14769. {
  14770. "__type__": "cc.Node",
  14771. "_name": "attrName",
  14772. "_objFlags": 0,
  14773. "_parent": {
  14774. "__id__": 410
  14775. },
  14776. "_children": [],
  14777. "_active": true,
  14778. "_components": [
  14779. {
  14780. "__id__": 418
  14781. },
  14782. {
  14783. "__id__": 419
  14784. },
  14785. {
  14786. "__id__": 420
  14787. }
  14788. ],
  14789. "_prefab": {
  14790. "__id__": 421
  14791. },
  14792. "_opacity": 255,
  14793. "_color": {
  14794. "__type__": "cc.Color",
  14795. "r": 255,
  14796. "g": 255,
  14797. "b": 255,
  14798. "a": 255
  14799. },
  14800. "_contentSize": {
  14801. "__type__": "cc.Size",
  14802. "width": 56.75,
  14803. "height": 53.88
  14804. },
  14805. "_anchorPoint": {
  14806. "__type__": "cc.Vec2",
  14807. "x": 0,
  14808. "y": 0.5
  14809. },
  14810. "_trs": {
  14811. "__type__": "TypedArray",
  14812. "ctor": "Float64Array",
  14813. "array": [
  14814. -248,
  14815. 0,
  14816. 0,
  14817. 0,
  14818. 0,
  14819. 0,
  14820. 1,
  14821. 1,
  14822. 1,
  14823. 1
  14824. ]
  14825. },
  14826. "_eulerAngles": {
  14827. "__type__": "cc.Vec3",
  14828. "x": 0,
  14829. "y": 0,
  14830. "z": 0
  14831. },
  14832. "_skewX": 0,
  14833. "_skewY": 0,
  14834. "_is3DNode": false,
  14835. "_groupIndex": 0,
  14836. "groupIndex": 0,
  14837. "_id": ""
  14838. },
  14839. {
  14840. "__type__": "cc.Label",
  14841. "_name": "",
  14842. "_objFlags": 0,
  14843. "node": {
  14844. "__id__": 417
  14845. },
  14846. "_enabled": true,
  14847. "_materials": [
  14848. {
  14849. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  14850. }
  14851. ],
  14852. "_srcBlendFactor": 770,
  14853. "_dstBlendFactor": 771,
  14854. "_string": "HP:",
  14855. "_N$string": "HP:",
  14856. "_fontSize": 36,
  14857. "_lineHeight": 38,
  14858. "_enableWrapText": true,
  14859. "_N$file": {
  14860. "__uuid__": "53fae5bd-72f8-48d5-9465-9798bf9bde5c"
  14861. },
  14862. "_isSystemFontUsed": false,
  14863. "_spacingX": 0,
  14864. "_batchAsBitmap": false,
  14865. "_styleFlags": 0,
  14866. "_underlineHeight": 0,
  14867. "_N$horizontalAlign": 1,
  14868. "_N$verticalAlign": 1,
  14869. "_N$fontFamily": "Arial",
  14870. "_N$overflow": 0,
  14871. "_N$cacheMode": 0,
  14872. "_id": ""
  14873. },
  14874. {
  14875. "__type__": "cc.LabelOutline",
  14876. "_name": "",
  14877. "_objFlags": 0,
  14878. "node": {
  14879. "__id__": 417
  14880. },
  14881. "_enabled": true,
  14882. "_color": {
  14883. "__type__": "cc.Color",
  14884. "r": 38,
  14885. "g": 17,
  14886. "b": 12,
  14887. "a": 255
  14888. },
  14889. "_width": 3,
  14890. "_id": ""
  14891. },
  14892. {
  14893. "__type__": "41ebaVoPpRA4Kp67XEdHfZn",
  14894. "_name": "",
  14895. "_objFlags": 0,
  14896. "node": {
  14897. "__id__": 417
  14898. },
  14899. "_enabled": true,
  14900. "_englishCase": 2,
  14901. "i18n_string": "t1001",
  14902. "i18n_params": [],
  14903. "_addColon": true,
  14904. "_id": ""
  14905. },
  14906. {
  14907. "__type__": "cc.PrefabInfo",
  14908. "root": {
  14909. "__id__": 1
  14910. },
  14911. "asset": {
  14912. "__id__": 0
  14913. },
  14914. "fileId": "a9gz7I+4xHYZpNfKSEwPPI",
  14915. "sync": false
  14916. },
  14917. {
  14918. "__type__": "cc.Node",
  14919. "_name": "attrNum",
  14920. "_objFlags": 0,
  14921. "_parent": {
  14922. "__id__": 410
  14923. },
  14924. "_children": [],
  14925. "_active": true,
  14926. "_components": [
  14927. {
  14928. "__id__": 423
  14929. },
  14930. {
  14931. "__id__": 424
  14932. }
  14933. ],
  14934. "_prefab": {
  14935. "__id__": 425
  14936. },
  14937. "_opacity": 255,
  14938. "_color": {
  14939. "__type__": "cc.Color",
  14940. "r": 255,
  14941. "g": 255,
  14942. "b": 255,
  14943. "a": 255
  14944. },
  14945. "_contentSize": {
  14946. "__type__": "cc.Size",
  14947. "width": 131.3,
  14948. "height": 53.88
  14949. },
  14950. "_anchorPoint": {
  14951. "__type__": "cc.Vec2",
  14952. "x": 0.5,
  14953. "y": 0.5
  14954. },
  14955. "_trs": {
  14956. "__type__": "TypedArray",
  14957. "ctor": "Float64Array",
  14958. "array": [
  14959. -0.097,
  14960. 0,
  14961. 0,
  14962. 0,
  14963. 0,
  14964. 0,
  14965. 1,
  14966. 1,
  14967. 1,
  14968. 1
  14969. ]
  14970. },
  14971. "_eulerAngles": {
  14972. "__type__": "cc.Vec3",
  14973. "x": 0,
  14974. "y": 0,
  14975. "z": 0
  14976. },
  14977. "_skewX": 0,
  14978. "_skewY": 0,
  14979. "_is3DNode": false,
  14980. "_groupIndex": 0,
  14981. "groupIndex": 0,
  14982. "_id": ""
  14983. },
  14984. {
  14985. "__type__": "cc.Label",
  14986. "_name": "",
  14987. "_objFlags": 0,
  14988. "node": {
  14989. "__id__": 422
  14990. },
  14991. "_enabled": true,
  14992. "_materials": [
  14993. {
  14994. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  14995. }
  14996. ],
  14997. "_srcBlendFactor": 770,
  14998. "_dstBlendFactor": 771,
  14999. "_string": "5000k",
  15000. "_N$string": "5000k",
  15001. "_fontSize": 36,
  15002. "_lineHeight": 38,
  15003. "_enableWrapText": true,
  15004. "_N$file": {
  15005. "__uuid__": "53fae5bd-72f8-48d5-9465-9798bf9bde5c"
  15006. },
  15007. "_isSystemFontUsed": false,
  15008. "_spacingX": 0,
  15009. "_batchAsBitmap": false,
  15010. "_styleFlags": 0,
  15011. "_underlineHeight": 0,
  15012. "_N$horizontalAlign": 1,
  15013. "_N$verticalAlign": 1,
  15014. "_N$fontFamily": "Arial",
  15015. "_N$overflow": 0,
  15016. "_N$cacheMode": 0,
  15017. "_id": ""
  15018. },
  15019. {
  15020. "__type__": "cc.LabelOutline",
  15021. "_name": "",
  15022. "_objFlags": 0,
  15023. "node": {
  15024. "__id__": 422
  15025. },
  15026. "_enabled": true,
  15027. "_color": {
  15028. "__type__": "cc.Color",
  15029. "r": 38,
  15030. "g": 17,
  15031. "b": 12,
  15032. "a": 255
  15033. },
  15034. "_width": 3,
  15035. "_id": ""
  15036. },
  15037. {
  15038. "__type__": "cc.PrefabInfo",
  15039. "root": {
  15040. "__id__": 1
  15041. },
  15042. "asset": {
  15043. "__id__": 0
  15044. },
  15045. "fileId": "9f2S7xyIpJyrz/K0G9ZweP",
  15046. "sync": false
  15047. },
  15048. {
  15049. "__type__": "cc.Node",
  15050. "_name": "arrow_3",
  15051. "_objFlags": 0,
  15052. "_parent": {
  15053. "__id__": 410
  15054. },
  15055. "_children": [],
  15056. "_active": true,
  15057. "_components": [
  15058. {
  15059. "__id__": 427
  15060. }
  15061. ],
  15062. "_prefab": {
  15063. "__id__": 428
  15064. },
  15065. "_opacity": 255,
  15066. "_color": {
  15067. "__type__": "cc.Color",
  15068. "r": 186,
  15069. "g": 255,
  15070. "b": 39,
  15071. "a": 255
  15072. },
  15073. "_contentSize": {
  15074. "__type__": "cc.Size",
  15075. "width": 45,
  15076. "height": 28
  15077. },
  15078. "_anchorPoint": {
  15079. "__type__": "cc.Vec2",
  15080. "x": 0.5,
  15081. "y": 0.5
  15082. },
  15083. "_trs": {
  15084. "__type__": "TypedArray",
  15085. "ctor": "Float64Array",
  15086. "array": [
  15087. 93.928,
  15088. 0,
  15089. 0,
  15090. 0,
  15091. 0,
  15092. 0,
  15093. 1,
  15094. 1,
  15095. 1,
  15096. 1
  15097. ]
  15098. },
  15099. "_eulerAngles": {
  15100. "__type__": "cc.Vec3",
  15101. "x": 0,
  15102. "y": 0,
  15103. "z": 0
  15104. },
  15105. "_skewX": 0,
  15106. "_skewY": 0,
  15107. "_is3DNode": false,
  15108. "_groupIndex": 0,
  15109. "groupIndex": 0,
  15110. "_id": ""
  15111. },
  15112. {
  15113. "__type__": "cc.Sprite",
  15114. "_name": "",
  15115. "_objFlags": 0,
  15116. "node": {
  15117. "__id__": 426
  15118. },
  15119. "_enabled": true,
  15120. "_materials": [
  15121. {
  15122. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  15123. }
  15124. ],
  15125. "_srcBlendFactor": 770,
  15126. "_dstBlendFactor": 771,
  15127. "_spriteFrame": {
  15128. "__uuid__": "b236e179-24da-4d06-a2ee-8b3747be2fad"
  15129. },
  15130. "_type": 0,
  15131. "_sizeMode": 1,
  15132. "_fillType": 0,
  15133. "_fillCenter": {
  15134. "__type__": "cc.Vec2",
  15135. "x": 0,
  15136. "y": 0
  15137. },
  15138. "_fillStart": 0,
  15139. "_fillRange": 0,
  15140. "_isTrimmedMode": true,
  15141. "_atlas": null,
  15142. "_id": ""
  15143. },
  15144. {
  15145. "__type__": "cc.PrefabInfo",
  15146. "root": {
  15147. "__id__": 1
  15148. },
  15149. "asset": {
  15150. "__id__": 0
  15151. },
  15152. "fileId": "07owGm6rlKA6IW549eT/62",
  15153. "sync": false
  15154. },
  15155. {
  15156. "__type__": "cc.Node",
  15157. "_name": "nextNum",
  15158. "_objFlags": 0,
  15159. "_parent": {
  15160. "__id__": 410
  15161. },
  15162. "_children": [],
  15163. "_active": true,
  15164. "_components": [
  15165. {
  15166. "__id__": 430
  15167. },
  15168. {
  15169. "__id__": 431
  15170. }
  15171. ],
  15172. "_prefab": {
  15173. "__id__": 432
  15174. },
  15175. "_opacity": 255,
  15176. "_color": {
  15177. "__type__": "cc.Color",
  15178. "r": 186,
  15179. "g": 255,
  15180. "b": 39,
  15181. "a": 255
  15182. },
  15183. "_contentSize": {
  15184. "__type__": "cc.Size",
  15185. "width": 131.3,
  15186. "height": 53.88
  15187. },
  15188. "_anchorPoint": {
  15189. "__type__": "cc.Vec2",
  15190. "x": 0.5,
  15191. "y": 0.5
  15192. },
  15193. "_trs": {
  15194. "__type__": "TypedArray",
  15195. "ctor": "Float64Array",
  15196. "array": [
  15197. 187.301,
  15198. 0,
  15199. 0,
  15200. 0,
  15201. 0,
  15202. 0,
  15203. 1,
  15204. 1,
  15205. 1,
  15206. 1
  15207. ]
  15208. },
  15209. "_eulerAngles": {
  15210. "__type__": "cc.Vec3",
  15211. "x": 0,
  15212. "y": 0,
  15213. "z": 0
  15214. },
  15215. "_skewX": 0,
  15216. "_skewY": 0,
  15217. "_is3DNode": false,
  15218. "_groupIndex": 0,
  15219. "groupIndex": 0,
  15220. "_id": ""
  15221. },
  15222. {
  15223. "__type__": "cc.Label",
  15224. "_name": "",
  15225. "_objFlags": 0,
  15226. "node": {
  15227. "__id__": 429
  15228. },
  15229. "_enabled": true,
  15230. "_materials": [
  15231. {
  15232. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  15233. }
  15234. ],
  15235. "_srcBlendFactor": 770,
  15236. "_dstBlendFactor": 771,
  15237. "_string": "5000k",
  15238. "_N$string": "5000k",
  15239. "_fontSize": 36,
  15240. "_lineHeight": 38,
  15241. "_enableWrapText": true,
  15242. "_N$file": {
  15243. "__uuid__": "53fae5bd-72f8-48d5-9465-9798bf9bde5c"
  15244. },
  15245. "_isSystemFontUsed": false,
  15246. "_spacingX": 0,
  15247. "_batchAsBitmap": false,
  15248. "_styleFlags": 0,
  15249. "_underlineHeight": 0,
  15250. "_N$horizontalAlign": 1,
  15251. "_N$verticalAlign": 1,
  15252. "_N$fontFamily": "Arial",
  15253. "_N$overflow": 0,
  15254. "_N$cacheMode": 0,
  15255. "_id": ""
  15256. },
  15257. {
  15258. "__type__": "cc.LabelOutline",
  15259. "_name": "",
  15260. "_objFlags": 0,
  15261. "node": {
  15262. "__id__": 429
  15263. },
  15264. "_enabled": true,
  15265. "_color": {
  15266. "__type__": "cc.Color",
  15267. "r": 38,
  15268. "g": 17,
  15269. "b": 12,
  15270. "a": 255
  15271. },
  15272. "_width": 3,
  15273. "_id": ""
  15274. },
  15275. {
  15276. "__type__": "cc.PrefabInfo",
  15277. "root": {
  15278. "__id__": 1
  15279. },
  15280. "asset": {
  15281. "__id__": 0
  15282. },
  15283. "fileId": "1eBab5knBBn7iO04xzXyvI",
  15284. "sync": false
  15285. },
  15286. {
  15287. "__type__": "cc.PrefabInfo",
  15288. "root": {
  15289. "__id__": 1
  15290. },
  15291. "asset": {
  15292. "__id__": 0
  15293. },
  15294. "fileId": "43dtB/hu9MsYbPidilNgWn",
  15295. "sync": false
  15296. },
  15297. {
  15298. "__type__": "cc.Layout",
  15299. "_name": "",
  15300. "_objFlags": 0,
  15301. "node": {
  15302. "__id__": 337
  15303. },
  15304. "_enabled": true,
  15305. "_layoutSize": {
  15306. "__type__": "cc.Size",
  15307. "width": 520,
  15308. "height": 203
  15309. },
  15310. "_resize": 1,
  15311. "_N$layoutType": 2,
  15312. "_N$cellSize": {
  15313. "__type__": "cc.Size",
  15314. "width": 40,
  15315. "height": 40
  15316. },
  15317. "_N$startAxis": 0,
  15318. "_N$paddingLeft": 0,
  15319. "_N$paddingRight": 0,
  15320. "_N$paddingTop": 13,
  15321. "_N$paddingBottom": 0,
  15322. "_N$spacingX": 0,
  15323. "_N$spacingY": 10,
  15324. "_N$verticalDirection": 1,
  15325. "_N$horizontalDirection": 0,
  15326. "_N$affectedByScale": false,
  15327. "_id": ""
  15328. },
  15329. {
  15330. "__type__": "cc.PrefabInfo",
  15331. "root": {
  15332. "__id__": 1
  15333. },
  15334. "asset": {
  15335. "__id__": 0
  15336. },
  15337. "fileId": "53Ppm3qadOUpzihfF73baV",
  15338. "sync": false
  15339. },
  15340. {
  15341. "__type__": "cc.Node",
  15342. "_name": "rtL",
  15343. "_objFlags": 0,
  15344. "_parent": {
  15345. "__id__": 336
  15346. },
  15347. "_children": [
  15348. {
  15349. "__id__": 437
  15350. }
  15351. ],
  15352. "_active": true,
  15353. "_components": [
  15354. {
  15355. "__id__": 441
  15356. }
  15357. ],
  15358. "_prefab": {
  15359. "__id__": 442
  15360. },
  15361. "_opacity": 255,
  15362. "_color": {
  15363. "__type__": "cc.Color",
  15364. "r": 255,
  15365. "g": 255,
  15366. "b": 255,
  15367. "a": 255
  15368. },
  15369. "_contentSize": {
  15370. "__type__": "cc.Size",
  15371. "width": 520,
  15372. "height": 63.4
  15373. },
  15374. "_anchorPoint": {
  15375. "__type__": "cc.Vec2",
  15376. "x": 0.5,
  15377. "y": 1
  15378. },
  15379. "_trs": {
  15380. "__type__": "TypedArray",
  15381. "ctor": "Float64Array",
  15382. "array": [
  15383. 0,
  15384. -198,
  15385. 0,
  15386. 0,
  15387. 0,
  15388. 0,
  15389. 1,
  15390. 1,
  15391. 1,
  15392. 1
  15393. ]
  15394. },
  15395. "_eulerAngles": {
  15396. "__type__": "cc.Vec3",
  15397. "x": 0,
  15398. "y": 0,
  15399. "z": 0
  15400. },
  15401. "_skewX": 0,
  15402. "_skewY": 0,
  15403. "_is3DNode": false,
  15404. "_groupIndex": 0,
  15405. "groupIndex": 0,
  15406. "_id": ""
  15407. },
  15408. {
  15409. "__type__": "cc.Node",
  15410. "_name": "rt",
  15411. "_objFlags": 0,
  15412. "_parent": {
  15413. "__id__": 436
  15414. },
  15415. "_children": [],
  15416. "_active": true,
  15417. "_components": [
  15418. {
  15419. "__id__": 438
  15420. },
  15421. {
  15422. "__id__": 439
  15423. }
  15424. ],
  15425. "_prefab": {
  15426. "__id__": 440
  15427. },
  15428. "_opacity": 255,
  15429. "_color": {
  15430. "__type__": "cc.Color",
  15431. "r": 255,
  15432. "g": 255,
  15433. "b": 255,
  15434. "a": 255
  15435. },
  15436. "_contentSize": {
  15437. "__type__": "cc.Size",
  15438. "width": 520,
  15439. "height": 50.4
  15440. },
  15441. "_anchorPoint": {
  15442. "__type__": "cc.Vec2",
  15443. "x": 0.5,
  15444. "y": 1
  15445. },
  15446. "_trs": {
  15447. "__type__": "TypedArray",
  15448. "ctor": "Float64Array",
  15449. "array": [
  15450. 0,
  15451. -13,
  15452. 0,
  15453. 0,
  15454. 0,
  15455. 0,
  15456. 1,
  15457. 1,
  15458. 1,
  15459. 1
  15460. ]
  15461. },
  15462. "_eulerAngles": {
  15463. "__type__": "cc.Vec3",
  15464. "x": 0,
  15465. "y": 0,
  15466. "z": 0
  15467. },
  15468. "_skewX": 0,
  15469. "_skewY": 0,
  15470. "_is3DNode": false,
  15471. "_groupIndex": 0,
  15472. "groupIndex": 0,
  15473. "_id": ""
  15474. },
  15475. {
  15476. "__type__": "cc.RichText",
  15477. "_name": "",
  15478. "_objFlags": 0,
  15479. "node": {
  15480. "__id__": 437
  15481. },
  15482. "_enabled": true,
  15483. "_fontFamily": "Arial",
  15484. "_isSystemFontUsed": false,
  15485. "_N$string": "tip",
  15486. "_N$horizontalAlign": 0,
  15487. "_N$fontSize": 36,
  15488. "_N$font": {
  15489. "__uuid__": "53fae5bd-72f8-48d5-9465-9798bf9bde5c"
  15490. },
  15491. "_N$cacheMode": 0,
  15492. "_N$maxWidth": 520,
  15493. "_N$lineHeight": 40,
  15494. "_N$imageAtlas": null,
  15495. "_N$handleTouchEvent": true,
  15496. "_id": ""
  15497. },
  15498. {
  15499. "__type__": "41ebaVoPpRA4Kp67XEdHfZn",
  15500. "_name": "",
  15501. "_objFlags": 0,
  15502. "node": {
  15503. "__id__": 437
  15504. },
  15505. "_enabled": true,
  15506. "_englishCase": 0,
  15507. "i18n_string": "",
  15508. "i18n_params": [],
  15509. "_addColon": false,
  15510. "_id": ""
  15511. },
  15512. {
  15513. "__type__": "cc.PrefabInfo",
  15514. "root": {
  15515. "__id__": 1
  15516. },
  15517. "asset": {
  15518. "__id__": 0
  15519. },
  15520. "fileId": "eanHr7URxM2LV78i0TxMLg",
  15521. "sync": false
  15522. },
  15523. {
  15524. "__type__": "cc.Layout",
  15525. "_name": "",
  15526. "_objFlags": 0,
  15527. "node": {
  15528. "__id__": 436
  15529. },
  15530. "_enabled": true,
  15531. "_layoutSize": {
  15532. "__type__": "cc.Size",
  15533. "width": 520,
  15534. "height": 63.4
  15535. },
  15536. "_resize": 1,
  15537. "_N$layoutType": 2,
  15538. "_N$cellSize": {
  15539. "__type__": "cc.Size",
  15540. "width": 40,
  15541. "height": 40
  15542. },
  15543. "_N$startAxis": 0,
  15544. "_N$paddingLeft": 0,
  15545. "_N$paddingRight": 0,
  15546. "_N$paddingTop": 13,
  15547. "_N$paddingBottom": 0,
  15548. "_N$spacingX": 0,
  15549. "_N$spacingY": 10,
  15550. "_N$verticalDirection": 1,
  15551. "_N$horizontalDirection": 0,
  15552. "_N$affectedByScale": false,
  15553. "_id": ""
  15554. },
  15555. {
  15556. "__type__": "cc.PrefabInfo",
  15557. "root": {
  15558. "__id__": 1
  15559. },
  15560. "asset": {
  15561. "__id__": 0
  15562. },
  15563. "fileId": "3cJs0jlF1EC4pmwJNO4rnc",
  15564. "sync": false
  15565. },
  15566. {
  15567. "__type__": "cc.Layout",
  15568. "_name": "",
  15569. "_objFlags": 0,
  15570. "node": {
  15571. "__id__": 336
  15572. },
  15573. "_enabled": true,
  15574. "_layoutSize": {
  15575. "__type__": "cc.Size",
  15576. "width": 550,
  15577. "height": 280
  15578. },
  15579. "_resize": 0,
  15580. "_N$layoutType": 2,
  15581. "_N$cellSize": {
  15582. "__type__": "cc.Size",
  15583. "width": 40,
  15584. "height": 40
  15585. },
  15586. "_N$startAxis": 0,
  15587. "_N$paddingLeft": 0,
  15588. "_N$paddingRight": 0,
  15589. "_N$paddingTop": 0,
  15590. "_N$paddingBottom": 20,
  15591. "_N$spacingX": 0,
  15592. "_N$spacingY": -5,
  15593. "_N$verticalDirection": 1,
  15594. "_N$horizontalDirection": 0,
  15595. "_N$affectedByScale": false,
  15596. "_id": ""
  15597. },
  15598. {
  15599. "__type__": "cc.PrefabInfo",
  15600. "root": {
  15601. "__id__": 1
  15602. },
  15603. "asset": {
  15604. "__id__": 0
  15605. },
  15606. "fileId": "149EGXK89Ea5tRBbHGf9t/",
  15607. "sync": false
  15608. },
  15609. {
  15610. "__type__": "cc.Mask",
  15611. "_name": "",
  15612. "_objFlags": 0,
  15613. "node": {
  15614. "__id__": 335
  15615. },
  15616. "_enabled": true,
  15617. "_materials": [
  15618. {
  15619. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  15620. }
  15621. ],
  15622. "_spriteFrame": null,
  15623. "_type": 0,
  15624. "_segments": 64,
  15625. "_N$alphaThreshold": 0,
  15626. "_N$inverted": false,
  15627. "_id": ""
  15628. },
  15629. {
  15630. "__type__": "cc.PrefabInfo",
  15631. "root": {
  15632. "__id__": 1
  15633. },
  15634. "asset": {
  15635. "__id__": 0
  15636. },
  15637. "fileId": "679UTTWJpJfpZ0iTjkcDXG",
  15638. "sync": false
  15639. },
  15640. {
  15641. "__type__": "cc.Sprite",
  15642. "_name": "",
  15643. "_objFlags": 0,
  15644. "node": {
  15645. "__id__": 334
  15646. },
  15647. "_enabled": true,
  15648. "_materials": [
  15649. {
  15650. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  15651. }
  15652. ],
  15653. "_srcBlendFactor": 770,
  15654. "_dstBlendFactor": 771,
  15655. "_spriteFrame": {
  15656. "__uuid__": "b1f64ee3-dd78-476c-bb28-83d9997f558e"
  15657. },
  15658. "_type": 0,
  15659. "_sizeMode": 0,
  15660. "_fillType": 0,
  15661. "_fillCenter": {
  15662. "__type__": "cc.Vec2",
  15663. "x": 0,
  15664. "y": 0
  15665. },
  15666. "_fillStart": 0,
  15667. "_fillRange": 0,
  15668. "_isTrimmedMode": true,
  15669. "_atlas": null,
  15670. "_id": ""
  15671. },
  15672. {
  15673. "__type__": "cc.ScrollView",
  15674. "_name": "",
  15675. "_objFlags": 0,
  15676. "node": {
  15677. "__id__": 334
  15678. },
  15679. "_enabled": true,
  15680. "horizontal": false,
  15681. "vertical": true,
  15682. "inertia": true,
  15683. "brake": 0.75,
  15684. "elastic": true,
  15685. "bounceDuration": 0.23,
  15686. "scrollEvents": [],
  15687. "cancelInnerEvents": true,
  15688. "_N$content": {
  15689. "__id__": 336
  15690. },
  15691. "content": {
  15692. "__id__": 336
  15693. },
  15694. "_N$horizontalScrollBar": null,
  15695. "_N$verticalScrollBar": null,
  15696. "_id": ""
  15697. },
  15698. {
  15699. "__type__": "cc.PrefabInfo",
  15700. "root": {
  15701. "__id__": 1
  15702. },
  15703. "asset": {
  15704. "__id__": 0
  15705. },
  15706. "fileId": "2bE3Ry9jNFWLyBILO27pLs",
  15707. "sync": false
  15708. },
  15709. {
  15710. "__type__": "cc.PrefabInfo",
  15711. "root": {
  15712. "__id__": 1
  15713. },
  15714. "asset": {
  15715. "__id__": 0
  15716. },
  15717. "fileId": "a5P5STMzRH/bKwVIjOlJOP",
  15718. "sync": false
  15719. },
  15720. {
  15721. "__type__": "ac1b6sIq7BFa5uPq8b8pdyl",
  15722. "_name": "",
  15723. "_objFlags": 0,
  15724. "node": {
  15725. "__id__": 1
  15726. },
  15727. "_enabled": true,
  15728. "quickClose": false,
  15729. "cache": false,
  15730. "showType": 0,
  15731. "prevent": true,
  15732. "_id": ""
  15733. },
  15734. {
  15735. "__type__": "cc.PrefabInfo",
  15736. "root": {
  15737. "__id__": 1
  15738. },
  15739. "asset": {
  15740. "__id__": 0
  15741. },
  15742. "fileId": "",
  15743. "sync": false
  15744. }
  15745. ]