good_Info.prefab 168 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438143914401441144214431444144514461447144814491450145114521453145414551456145714581459146014611462146314641465146614671468146914701471147214731474147514761477147814791480148114821483148414851486148714881489149014911492149314941495149614971498149915001501150215031504150515061507150815091510151115121513151415151516151715181519152015211522152315241525152615271528152915301531153215331534153515361537153815391540154115421543154415451546154715481549155015511552155315541555155615571558155915601561156215631564156515661567156815691570157115721573157415751576157715781579158015811582158315841585158615871588158915901591159215931594159515961597159815991600160116021603160416051606160716081609161016111612161316141615161616171618161916201621162216231624162516261627162816291630163116321633163416351636163716381639164016411642164316441645164616471648164916501651165216531654165516561657165816591660166116621663166416651666166716681669167016711672167316741675167616771678167916801681168216831684168516861687168816891690169116921693169416951696169716981699170017011702170317041705170617071708170917101711171217131714171517161717171817191720172117221723172417251726172717281729173017311732173317341735173617371738173917401741174217431744174517461747174817491750175117521753175417551756175717581759176017611762176317641765176617671768176917701771177217731774177517761777177817791780178117821783178417851786178717881789179017911792179317941795179617971798179918001801180218031804180518061807180818091810181118121813181418151816181718181819182018211822182318241825182618271828182918301831183218331834183518361837183818391840184118421843184418451846184718481849185018511852185318541855185618571858185918601861186218631864186518661867186818691870187118721873187418751876187718781879188018811882188318841885188618871888188918901891189218931894189518961897189818991900190119021903190419051906190719081909191019111912191319141915191619171918191919201921192219231924192519261927192819291930193119321933193419351936193719381939194019411942194319441945194619471948194919501951195219531954195519561957195819591960196119621963196419651966196719681969197019711972197319741975197619771978197919801981198219831984198519861987198819891990199119921993199419951996199719981999200020012002200320042005200620072008200920102011201220132014201520162017201820192020202120222023202420252026202720282029203020312032203320342035203620372038203920402041204220432044204520462047204820492050205120522053205420552056205720582059206020612062206320642065206620672068206920702071207220732074207520762077207820792080208120822083208420852086208720882089209020912092209320942095209620972098209921002101210221032104210521062107210821092110211121122113211421152116211721182119212021212122212321242125212621272128212921302131213221332134213521362137213821392140214121422143214421452146214721482149215021512152215321542155215621572158215921602161216221632164216521662167216821692170217121722173217421752176217721782179218021812182218321842185218621872188218921902191219221932194219521962197219821992200220122022203220422052206220722082209221022112212221322142215221622172218221922202221222222232224222522262227222822292230223122322233223422352236223722382239224022412242224322442245224622472248224922502251225222532254225522562257225822592260226122622263226422652266226722682269227022712272227322742275227622772278227922802281228222832284228522862287228822892290229122922293229422952296229722982299230023012302230323042305230623072308230923102311231223132314231523162317231823192320232123222323232423252326232723282329233023312332233323342335233623372338233923402341234223432344234523462347234823492350235123522353235423552356235723582359236023612362236323642365236623672368236923702371237223732374237523762377237823792380238123822383238423852386238723882389239023912392239323942395239623972398239924002401240224032404240524062407240824092410241124122413241424152416241724182419242024212422242324242425242624272428242924302431243224332434243524362437243824392440244124422443244424452446244724482449245024512452245324542455245624572458245924602461246224632464246524662467246824692470247124722473247424752476247724782479248024812482248324842485248624872488248924902491249224932494249524962497249824992500250125022503250425052506250725082509251025112512251325142515251625172518251925202521252225232524252525262527252825292530253125322533253425352536253725382539254025412542254325442545254625472548254925502551255225532554255525562557255825592560256125622563256425652566256725682569257025712572257325742575257625772578257925802581258225832584258525862587258825892590259125922593259425952596259725982599260026012602260326042605260626072608260926102611261226132614261526162617261826192620262126222623262426252626262726282629263026312632263326342635263626372638263926402641264226432644264526462647264826492650265126522653265426552656265726582659266026612662266326642665266626672668266926702671267226732674267526762677267826792680268126822683268426852686268726882689269026912692269326942695269626972698269927002701270227032704270527062707270827092710271127122713271427152716271727182719272027212722272327242725272627272728272927302731273227332734273527362737273827392740274127422743274427452746274727482749275027512752275327542755275627572758275927602761276227632764276527662767276827692770277127722773277427752776277727782779278027812782278327842785278627872788278927902791279227932794279527962797279827992800280128022803280428052806280728082809281028112812281328142815281628172818281928202821282228232824282528262827282828292830283128322833283428352836283728382839284028412842284328442845284628472848284928502851285228532854285528562857285828592860286128622863286428652866286728682869287028712872287328742875287628772878287928802881288228832884288528862887288828892890289128922893289428952896289728982899290029012902290329042905290629072908290929102911291229132914291529162917291829192920292129222923292429252926292729282929293029312932293329342935293629372938293929402941294229432944294529462947294829492950295129522953295429552956295729582959296029612962296329642965296629672968296929702971297229732974297529762977297829792980298129822983298429852986298729882989299029912992299329942995299629972998299930003001300230033004300530063007300830093010301130123013301430153016301730183019302030213022302330243025302630273028302930303031303230333034303530363037303830393040304130423043304430453046304730483049305030513052305330543055305630573058305930603061306230633064306530663067306830693070307130723073307430753076307730783079308030813082308330843085308630873088308930903091309230933094309530963097309830993100310131023103310431053106310731083109311031113112311331143115311631173118311931203121312231233124312531263127312831293130313131323133313431353136313731383139314031413142314331443145314631473148314931503151315231533154315531563157315831593160316131623163316431653166316731683169317031713172317331743175317631773178317931803181318231833184318531863187318831893190319131923193319431953196319731983199320032013202320332043205320632073208320932103211321232133214321532163217321832193220322132223223322432253226322732283229323032313232323332343235323632373238323932403241324232433244324532463247324832493250325132523253325432553256325732583259326032613262326332643265326632673268326932703271327232733274327532763277327832793280328132823283328432853286328732883289329032913292329332943295329632973298329933003301330233033304330533063307330833093310331133123313331433153316331733183319332033213322332333243325332633273328332933303331333233333334333533363337333833393340334133423343334433453346334733483349335033513352335333543355335633573358335933603361336233633364336533663367336833693370337133723373337433753376337733783379338033813382338333843385338633873388338933903391339233933394339533963397339833993400340134023403340434053406340734083409341034113412341334143415341634173418341934203421342234233424342534263427342834293430343134323433343434353436343734383439344034413442344334443445344634473448344934503451345234533454345534563457345834593460346134623463346434653466346734683469347034713472347334743475347634773478347934803481348234833484348534863487348834893490349134923493349434953496349734983499350035013502350335043505350635073508350935103511351235133514351535163517351835193520352135223523352435253526352735283529353035313532353335343535353635373538353935403541354235433544354535463547354835493550355135523553355435553556355735583559356035613562356335643565356635673568356935703571357235733574357535763577357835793580358135823583358435853586358735883589359035913592359335943595359635973598359936003601360236033604360536063607360836093610361136123613361436153616361736183619362036213622362336243625362636273628362936303631363236333634363536363637363836393640364136423643364436453646364736483649365036513652365336543655365636573658365936603661366236633664366536663667366836693670367136723673367436753676367736783679368036813682368336843685368636873688368936903691369236933694369536963697369836993700370137023703370437053706370737083709371037113712371337143715371637173718371937203721372237233724372537263727372837293730373137323733373437353736373737383739374037413742374337443745374637473748374937503751375237533754375537563757375837593760376137623763376437653766376737683769377037713772377337743775377637773778377937803781378237833784378537863787378837893790379137923793379437953796379737983799380038013802380338043805380638073808380938103811381238133814381538163817381838193820382138223823382438253826382738283829383038313832383338343835383638373838383938403841384238433844384538463847384838493850385138523853385438553856385738583859386038613862386338643865386638673868386938703871387238733874387538763877387838793880388138823883388438853886388738883889389038913892389338943895389638973898389939003901390239033904390539063907390839093910391139123913391439153916391739183919392039213922392339243925392639273928392939303931393239333934393539363937393839393940394139423943394439453946394739483949395039513952395339543955395639573958395939603961396239633964396539663967396839693970397139723973397439753976397739783979398039813982398339843985398639873988398939903991399239933994399539963997399839994000400140024003400440054006400740084009401040114012401340144015401640174018401940204021402240234024402540264027402840294030403140324033403440354036403740384039404040414042404340444045404640474048404940504051405240534054405540564057405840594060406140624063406440654066406740684069407040714072407340744075407640774078407940804081408240834084408540864087408840894090409140924093409440954096409740984099410041014102410341044105410641074108410941104111411241134114411541164117411841194120412141224123412441254126412741284129413041314132413341344135413641374138413941404141414241434144414541464147414841494150415141524153415441554156415741584159416041614162416341644165416641674168416941704171417241734174417541764177417841794180418141824183418441854186418741884189419041914192419341944195419641974198419942004201420242034204420542064207420842094210421142124213421442154216421742184219422042214222422342244225422642274228422942304231423242334234423542364237423842394240424142424243424442454246424742484249425042514252425342544255425642574258425942604261426242634264426542664267426842694270427142724273427442754276427742784279428042814282428342844285428642874288428942904291429242934294429542964297429842994300430143024303430443054306430743084309431043114312431343144315431643174318431943204321432243234324432543264327432843294330433143324333433443354336433743384339434043414342434343444345434643474348434943504351435243534354435543564357435843594360436143624363436443654366436743684369437043714372437343744375437643774378437943804381438243834384438543864387438843894390439143924393439443954396439743984399440044014402440344044405440644074408440944104411441244134414441544164417441844194420442144224423442444254426442744284429443044314432443344344435443644374438443944404441444244434444444544464447444844494450445144524453445444554456445744584459446044614462446344644465446644674468446944704471447244734474447544764477447844794480448144824483448444854486448744884489449044914492449344944495449644974498449945004501450245034504450545064507450845094510451145124513451445154516451745184519452045214522452345244525452645274528452945304531453245334534453545364537453845394540454145424543454445454546454745484549455045514552455345544555455645574558455945604561456245634564456545664567456845694570457145724573457445754576457745784579458045814582458345844585458645874588458945904591459245934594459545964597459845994600460146024603460446054606460746084609461046114612461346144615461646174618461946204621462246234624462546264627462846294630463146324633463446354636463746384639464046414642464346444645464646474648464946504651465246534654465546564657465846594660466146624663466446654666466746684669467046714672467346744675467646774678467946804681468246834684468546864687468846894690469146924693469446954696469746984699470047014702470347044705470647074708470947104711471247134714471547164717471847194720472147224723472447254726472747284729473047314732473347344735473647374738473947404741474247434744474547464747474847494750475147524753475447554756475747584759476047614762476347644765476647674768476947704771477247734774477547764777477847794780478147824783478447854786478747884789479047914792479347944795479647974798479948004801480248034804480548064807480848094810481148124813481448154816481748184819482048214822482348244825482648274828482948304831483248334834483548364837483848394840484148424843484448454846484748484849485048514852485348544855485648574858485948604861486248634864486548664867486848694870487148724873487448754876487748784879488048814882488348844885488648874888488948904891489248934894489548964897489848994900490149024903490449054906490749084909491049114912491349144915491649174918491949204921492249234924492549264927492849294930493149324933493449354936493749384939494049414942494349444945494649474948494949504951495249534954495549564957495849594960496149624963496449654966496749684969497049714972497349744975497649774978497949804981498249834984498549864987498849894990499149924993499449954996499749984999500050015002500350045005500650075008500950105011501250135014501550165017501850195020502150225023502450255026502750285029503050315032503350345035503650375038503950405041504250435044504550465047504850495050505150525053505450555056505750585059506050615062506350645065506650675068506950705071507250735074507550765077507850795080508150825083508450855086508750885089509050915092509350945095509650975098509951005101510251035104510551065107510851095110511151125113511451155116511751185119512051215122512351245125512651275128512951305131513251335134513551365137513851395140514151425143514451455146514751485149515051515152515351545155515651575158515951605161516251635164516551665167516851695170517151725173517451755176517751785179518051815182518351845185518651875188518951905191519251935194519551965197519851995200520152025203520452055206520752085209521052115212521352145215521652175218521952205221522252235224522552265227522852295230523152325233523452355236523752385239524052415242524352445245524652475248524952505251525252535254525552565257525852595260526152625263526452655266526752685269527052715272527352745275527652775278527952805281528252835284528552865287528852895290529152925293529452955296529752985299530053015302530353045305530653075308530953105311531253135314531553165317531853195320532153225323532453255326532753285329533053315332533353345335533653375338533953405341534253435344534553465347534853495350535153525353535453555356535753585359536053615362536353645365536653675368536953705371537253735374537553765377537853795380538153825383538453855386538753885389539053915392539353945395539653975398539954005401540254035404540554065407540854095410541154125413541454155416541754185419542054215422542354245425542654275428542954305431543254335434543554365437543854395440544154425443544454455446544754485449545054515452545354545455545654575458545954605461546254635464546554665467546854695470547154725473547454755476547754785479548054815482548354845485548654875488548954905491549254935494549554965497549854995500550155025503550455055506550755085509551055115512551355145515551655175518551955205521552255235524552555265527552855295530553155325533553455355536553755385539554055415542554355445545554655475548554955505551555255535554555555565557555855595560556155625563556455655566556755685569557055715572557355745575557655775578557955805581558255835584558555865587558855895590559155925593559455955596559755985599560056015602560356045605560656075608560956105611561256135614561556165617561856195620562156225623562456255626562756285629563056315632563356345635563656375638563956405641564256435644564556465647564856495650565156525653565456555656565756585659566056615662566356645665566656675668566956705671567256735674567556765677567856795680568156825683568456855686568756885689569056915692569356945695569656975698569957005701570257035704570557065707570857095710571157125713571457155716571757185719572057215722572357245725572657275728572957305731573257335734573557365737573857395740574157425743574457455746574757485749575057515752575357545755575657575758575957605761576257635764576557665767576857695770577157725773577457755776577757785779578057815782578357845785578657875788578957905791579257935794579557965797579857995800580158025803580458055806580758085809581058115812581358145815581658175818581958205821582258235824582558265827582858295830583158325833583458355836583758385839584058415842584358445845584658475848584958505851585258535854585558565857585858595860586158625863586458655866586758685869587058715872587358745875587658775878587958805881588258835884588558865887588858895890589158925893589458955896589758985899590059015902590359045905590659075908590959105911591259135914591559165917591859195920592159225923592459255926592759285929593059315932593359345935593659375938593959405941594259435944594559465947594859495950595159525953595459555956595759585959596059615962596359645965596659675968596959705971597259735974597559765977597859795980598159825983598459855986598759885989599059915992599359945995599659975998599960006001600260036004600560066007600860096010601160126013601460156016601760186019602060216022602360246025602660276028602960306031603260336034603560366037603860396040604160426043604460456046604760486049605060516052605360546055605660576058605960606061606260636064606560666067606860696070607160726073607460756076607760786079608060816082608360846085608660876088608960906091609260936094609560966097609860996100610161026103610461056106610761086109611061116112611361146115611661176118611961206121612261236124612561266127612861296130613161326133613461356136613761386139614061416142614361446145614661476148614961506151615261536154615561566157615861596160616161626163616461656166616761686169617061716172617361746175617661776178617961806181618261836184618561866187618861896190619161926193619461956196619761986199620062016202620362046205620662076208620962106211621262136214621562166217621862196220622162226223622462256226622762286229623062316232623362346235623662376238623962406241624262436244624562466247624862496250625162526253625462556256625762586259626062616262626362646265626662676268626962706271627262736274627562766277627862796280628162826283628462856286628762886289629062916292629362946295629662976298629963006301630263036304630563066307630863096310631163126313631463156316631763186319632063216322632363246325632663276328632963306331633263336334633563366337633863396340634163426343634463456346634763486349635063516352635363546355635663576358635963606361636263636364636563666367636863696370637163726373637463756376637763786379638063816382638363846385638663876388638963906391639263936394639563966397639863996400640164026403640464056406640764086409641064116412641364146415641664176418641964206421642264236424642564266427642864296430643164326433643464356436643764386439644064416442644364446445644664476448644964506451645264536454645564566457645864596460646164626463646464656466646764686469647064716472647364746475647664776478647964806481648264836484648564866487648864896490649164926493649464956496649764986499650065016502650365046505650665076508650965106511651265136514651565166517651865196520652165226523652465256526652765286529653065316532653365346535653665376538653965406541654265436544654565466547654865496550655165526553655465556556655765586559656065616562656365646565656665676568656965706571657265736574657565766577657865796580658165826583658465856586658765886589659065916592659365946595659665976598659966006601660266036604660566066607660866096610661166126613661466156616661766186619662066216622662366246625662666276628662966306631663266336634663566366637663866396640664166426643664466456646664766486649665066516652665366546655665666576658665966606661666266636664666566666667666866696670667166726673667466756676667766786679668066816682668366846685668666876688668966906691669266936694669566966697669866996700670167026703670467056706670767086709671067116712671367146715671667176718671967206721672267236724672567266727672867296730673167326733673467356736673767386739674067416742674367446745674667476748674967506751675267536754675567566757675867596760676167626763676467656766676767686769677067716772677367746775677667776778677967806781678267836784678567866787678867896790679167926793679467956796679767986799680068016802680368046805680668076808680968106811681268136814681568166817681868196820682168226823682468256826682768286829683068316832683368346835683668376838683968406841684268436844684568466847684868496850685168526853685468556856685768586859686068616862686368646865686668676868686968706871687268736874687568766877687868796880688168826883688468856886688768886889689068916892689368946895689668976898689969006901690269036904690569066907690869096910691169126913691469156916691769186919692069216922692369246925692669276928692969306931693269336934693569366937693869396940694169426943694469456946694769486949695069516952695369546955695669576958695969606961696269636964696569666967696869696970697169726973697469756976697769786979698069816982698369846985698669876988698969906991699269936994699569966997699869997000700170027003700470057006700770087009701070117012701370147015701670177018701970207021702270237024702570267027702870297030703170327033703470357036703770387039704070417042704370447045704670477048704970507051705270537054705570567057705870597060706170627063706470657066706770687069707070717072707370747075707670777078707970807081708270837084708570867087708870897090709170927093709470957096709770987099710071017102710371047105710671077108710971107111711271137114711571167117711871197120712171227123712471257126712771287129713071317132713371347135713671377138713971407141714271437144714571467147714871497150715171527153715471557156715771587159716071617162716371647165716671677168716971707171717271737174717571767177717871797180718171827183718471857186718771887189719071917192719371947195719671977198719972007201720272037204720572067207720872097210721172127213721472157216721772187219722072217222722372247225722672277228722972307231723272337234723572367237723872397240724172427243724472457246724772487249725072517252725372547255725672577258725972607261726272637264726572667267726872697270727172727273727472757276727772787279728072817282728372847285728672877288728972907291729272937294729572967297729872997300730173027303730473057306730773087309731073117312731373147315731673177318731973207321732273237324732573267327732873297330733173327333733473357336733773387339734073417342734373447345734673477348734973507351735273537354735573567357735873597360736173627363736473657366736773687369737073717372737373747375737673777378737973807381738273837384738573867387738873897390739173927393739473957396739773987399740074017402740374047405740674077408740974107411741274137414741574167417741874197420742174227423742474257426742774287429743074317432743374347435743674377438743974407441744274437444744574467447744874497450745174527453745474557456745774587459746074617462746374647465746674677468746974707471747274737474747574767477747874797480748174827483748474857486748774887489749074917492749374947495749674977498749975007501750275037504750575067507750875097510751175127513751475157516751775187519752075217522752375247525752675277528752975307531753275337534753575367537753875397540754175427543754475457546754775487549755075517552755375547555755675577558755975607561756275637564756575667567756875697570757175727573757475757576757775787579758075817582758375847585758675877588758975907591759275937594759575967597759875997600760176027603760476057606760776087609761076117612761376147615761676177618761976207621762276237624762576267627762876297630763176327633763476357636763776387639764076417642764376447645764676477648764976507651765276537654765576567657765876597660766176627663766476657666766776687669767076717672767376747675767676777678767976807681768276837684768576867687768876897690769176927693769476957696769776987699770077017702770377047705770677077708770977107711771277137714771577167717771877197720772177227723772477257726772777287729773077317732773377347735773677377738773977407741774277437744774577467747774877497750775177527753775477557756775777587759776077617762776377647765776677677768776977707771777277737774777577767777777877797780778177827783778477857786778777887789779077917792779377947795779677977798779978007801780278037804780578067807780878097810781178127813781478157816781778187819782078217822782378247825782678277828782978307831783278337834783578367837783878397840784178427843784478457846784778487849785078517852785378547855785678577858785978607861786278637864786578667867786878697870787178727873787478757876787778787879788078817882788378847885788678877888788978907891789278937894789578967897789878997900790179027903790479057906790779087909791079117912791379147915791679177918791979207921792279237924792579267927792879297930793179327933793479357936793779387939794079417942794379447945794679477948794979507951795279537954795579567957795879597960796179627963796479657966796779687969797079717972797379747975797679777978797979807981798279837984798579867987798879897990799179927993799479957996799779987999800080018002800380048005800680078008800980108011801280138014801580168017801880198020802180228023802480258026802780288029803080318032803380348035803680378038803980408041804280438044804580468047804880498050805180528053805480558056805780588059806080618062806380648065806680678068806980708071807280738074807580768077807880798080808180828083808480858086808780888089809080918092809380948095809680978098809981008101810281038104810581068107810881098110811181128113811481158116811781188119812081218122812381248125812681278128812981308131813281338134813581368137813881398140814181428143814481458146814781488149815081518152815381548155815681578158815981608161816281638164816581668167816881698170817181728173817481758176817781788179818081818182818381848185818681878188818981908191819281938194819581968197819881998200820182028203820482058206820782088209821082118212821382148215821682178218821982208221822282238224822582268227822882298230823182328233823482358236823782388239824082418242824382448245824682478248824982508251825282538254825582568257825882598260826182628263826482658266826782688269827082718272827382748275827682778278827982808281828282838284828582868287828882898290829182928293829482958296829782988299830083018302830383048305830683078308830983108311831283138314831583168317831883198320832183228323832483258326832783288329833083318332833383348335833683378338833983408341834283438344834583468347834883498350835183528353835483558356835783588359836083618362836383648365836683678368836983708371837283738374837583768377837883798380838183828383838483858386838783888389839083918392839383948395839683978398839984008401840284038404840584068407840884098410841184128413841484158416841784188419842084218422842384248425842684278428842984308431843284338434843584368437843884398440844184428443844484458446844784488449845084518452845384548455845684578458845984608461846284638464846584668467846884698470847184728473847484758476847784788479848084818482848384848485848684878488848984908491849284938494849584968497849884998500850185028503850485058506850785088509851085118512851385148515851685178518851985208521852285238524852585268527852885298530853185328533853485358536853785388539854085418542854385448545854685478548854985508551855285538554855585568557855885598560856185628563856485658566856785688569857085718572857385748575857685778578857985808581858285838584858585868587858885898590859185928593859485958596859785988599860086018602860386048605860686078608860986108611861286138614861586168617861886198620862186228623862486258626862786288629863086318632863386348635863686378638863986408641864286438644864586468647864886498650865186528653865486558656865786588659866086618662866386648665866686678668866986708671867286738674867586768677867886798680868186828683868486858686868786888689869086918692869386948695869686978698869987008701870287038704870587068707870887098710871187128713871487158716871787188719872087218722872387248725872687278728872987308731873287338734873587368737873887398740874187428743874487458746874787488749875087518752875387548755875687578758875987608761876287638764876587668767876887698770877187728773877487758776877787788779878087818782878387848785878687878788878987908791879287938794879587968797879887998800880188028803880488058806880788088809881088118812881388148815881688178818881988208821882288238824882588268827882888298830883188328833883488358836883788388839884088418842884388448845884688478848884988508851885288538854885588568857885888598860886188628863886488658866886788688869887088718872887388748875887688778878887988808881888288838884888588868887888888898890889188928893889488958896889788988899890089018902890389048905890689078908890989108911891289138914891589168917891889198920892189228923892489258926892789288929893089318932893389348935893689378938893989408941894289438944894589468947894889498950895189528953895489558956895789588959896089618962896389648965896689678968896989708971897289738974897589768977897889798980898189828983898489858986898789888989899089918992899389948995899689978998899990009001900290039004900590069007900890099010901190129013901490159016901790189019902090219022902390249025902690279028902990309031903290339034903590369037903890399040904190429043904490459046904790489049905090519052905390549055905690579058905990609061906290639064906590669067906890699070907190729073907490759076907790789079908090819082908390849085908690879088908990909091909290939094909590969097909890999100910191029103910491059106910791089109911091119112911391149115911691179118911991209121912291239124912591269127912891299130913191329133913491359136913791389139914091419142914391449145914691479148914991509151915291539154915591569157915891599160916191629163916491659166916791689169917091719172917391749175917691779178917991809181918291839184918591869187918891899190919191929193919491959196919791989199920092019202920392049205920692079208920992109211921292139214921592169217921892199220922192229223922492259226922792289229923092319232923392349235923692379238923992409241924292439244924592469247924892499250925192529253925492559256925792589259926092619262926392649265926692679268926992709271927292739274927592769277927892799280928192829283928492859286928792889289929092919292929392949295929692979298929993009301930293039304930593069307930893099310931193129313931493159316931793189319932093219322932393249325932693279328932993309331933293339334933593369337933893399340934193429343934493459346934793489349935093519352935393549355935693579358935993609361936293639364936593669367936893699370937193729373937493759376937793789379938093819382938393849385938693879388938993909391939293939394939593969397939893999400940194029403940494059406940794089409941094119412941394149415941694179418941994209421942294239424942594269427942894299430943194329433943494359436943794389439944094419442944394449445944694479448944994509451945294539454945594569457945894599460946194629463946494659466946794689469947094719472947394749475947694779478947994809481948294839484948594869487948894899490949194929493949494959496949794989499950095019502950395049505950695079508950995109511951295139514951595169517951895199520952195229523952495259526952795289529953095319532953395349535953695379538953995409541954295439544954595469547954895499550955195529553955495559556955795589559956095619562956395649565956695679568956995709571957295739574957595769577957895799580958195829583958495859586958795889589959095919592959395949595959695979598959996009601960296039604960596069607960896099610961196129613961496159616961796189619962096219622962396249625962696279628962996309631963296339634963596369637963896399640964196429643964496459646964796489649965096519652965396549655965696579658965996609661966296639664966596669667966896699670967196729673967496759676967796789679968096819682968396849685968696879688968996909691969296939694969596969697969896999700970197029703970497059706970797089709971097119712971397149715971697179718971997209721972297239724972597269727972897299730973197329733973497359736973797389739974097419742974397449745974697479748974997509751975297539754975597569757975897599760976197629763976497659766976797689769
  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": "equipInfo",
  17. "_objFlags": 0,
  18. "_parent": null,
  19. "_children": [
  20. {
  21. "__id__": 2
  22. },
  23. {
  24. "__id__": 8
  25. },
  26. {
  27. "__id__": 12
  28. },
  29. {
  30. "__id__": 17
  31. },
  32. {
  33. "__id__": 43
  34. },
  35. {
  36. "__id__": 205
  37. }
  38. ],
  39. "_active": true,
  40. "_components": [
  41. {
  42. "__id__": 259
  43. }
  44. ],
  45. "_prefab": {
  46. "__id__": 260
  47. },
  48. "_opacity": 255,
  49. "_color": {
  50. "__type__": "cc.Color",
  51. "r": 255,
  52. "g": 255,
  53. "b": 255,
  54. "a": 255
  55. },
  56. "_contentSize": {
  57. "__type__": "cc.Size",
  58. "width": 1334,
  59. "height": 750
  60. },
  61. "_anchorPoint": {
  62. "__type__": "cc.Vec2",
  63. "x": 0.5,
  64. "y": 0.5
  65. },
  66. "_trs": {
  67. "__type__": "TypedArray",
  68. "ctor": "Float64Array",
  69. "array": [
  70. 0,
  71. 0,
  72. 0,
  73. 0,
  74. 0,
  75. 0,
  76. 1,
  77. 1,
  78. 1,
  79. 1
  80. ]
  81. },
  82. "_eulerAngles": {
  83. "__type__": "cc.Vec3",
  84. "x": 0,
  85. "y": 0,
  86. "z": 0
  87. },
  88. "_skewX": 0,
  89. "_skewY": 0,
  90. "_is3DNode": false,
  91. "_groupIndex": 0,
  92. "groupIndex": 0,
  93. "_id": ""
  94. },
  95. {
  96. "__type__": "cc.Node",
  97. "_name": "New Sprite",
  98. "_objFlags": 0,
  99. "_parent": {
  100. "__id__": 1
  101. },
  102. "_children": [],
  103. "_active": true,
  104. "_components": [
  105. {
  106. "__id__": 3
  107. },
  108. {
  109. "__id__": 4
  110. },
  111. {
  112. "__id__": 5
  113. }
  114. ],
  115. "_prefab": {
  116. "__id__": 7
  117. },
  118. "_opacity": 255,
  119. "_color": {
  120. "__type__": "cc.Color",
  121. "r": 255,
  122. "g": 255,
  123. "b": 255,
  124. "a": 255
  125. },
  126. "_contentSize": {
  127. "__type__": "cc.Size",
  128. "width": 1334,
  129. "height": 750
  130. },
  131. "_anchorPoint": {
  132. "__type__": "cc.Vec2",
  133. "x": 0.5,
  134. "y": 0.5
  135. },
  136. "_trs": {
  137. "__type__": "TypedArray",
  138. "ctor": "Float64Array",
  139. "array": [
  140. 0,
  141. 0,
  142. 0,
  143. 0,
  144. 0,
  145. 0,
  146. 1,
  147. 1,
  148. 1,
  149. 1
  150. ]
  151. },
  152. "_eulerAngles": {
  153. "__type__": "cc.Vec3",
  154. "x": 0,
  155. "y": 0,
  156. "z": 0
  157. },
  158. "_skewX": 0,
  159. "_skewY": 0,
  160. "_is3DNode": false,
  161. "_groupIndex": 0,
  162. "groupIndex": 0,
  163. "_id": ""
  164. },
  165. {
  166. "__type__": "cc.Sprite",
  167. "_name": "",
  168. "_objFlags": 0,
  169. "node": {
  170. "__id__": 2
  171. },
  172. "_enabled": true,
  173. "_materials": [
  174. {
  175. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  176. }
  177. ],
  178. "_srcBlendFactor": 770,
  179. "_dstBlendFactor": 771,
  180. "_spriteFrame": {
  181. "__uuid__": "f4782997-3699-4675-9f7b-719c12c9fb8e"
  182. },
  183. "_type": 0,
  184. "_sizeMode": 0,
  185. "_fillType": 0,
  186. "_fillCenter": {
  187. "__type__": "cc.Vec2",
  188. "x": 0,
  189. "y": 0
  190. },
  191. "_fillStart": 0,
  192. "_fillRange": 0,
  193. "_isTrimmedMode": true,
  194. "_atlas": null,
  195. "_id": ""
  196. },
  197. {
  198. "__type__": "50926/BsyZKHYMN6tib9fNS",
  199. "_name": "",
  200. "_objFlags": 0,
  201. "node": {
  202. "__id__": 2
  203. },
  204. "_enabled": true,
  205. "_id": ""
  206. },
  207. {
  208. "__type__": "cc.Button",
  209. "_name": "",
  210. "_objFlags": 0,
  211. "node": {
  212. "__id__": 2
  213. },
  214. "_enabled": true,
  215. "_normalMaterial": null,
  216. "_grayMaterial": null,
  217. "duration": 0.1,
  218. "zoomScale": 1.2,
  219. "clickEvents": [
  220. {
  221. "__id__": 6
  222. }
  223. ],
  224. "_N$interactable": true,
  225. "_N$enableAutoGrayEffect": false,
  226. "_N$transition": 0,
  227. "transition": 0,
  228. "_N$normalColor": {
  229. "__type__": "cc.Color",
  230. "r": 255,
  231. "g": 255,
  232. "b": 255,
  233. "a": 255
  234. },
  235. "_N$pressedColor": {
  236. "__type__": "cc.Color",
  237. "r": 211,
  238. "g": 211,
  239. "b": 211,
  240. "a": 255
  241. },
  242. "pressedColor": {
  243. "__type__": "cc.Color",
  244. "r": 211,
  245. "g": 211,
  246. "b": 211,
  247. "a": 255
  248. },
  249. "_N$hoverColor": {
  250. "__type__": "cc.Color",
  251. "r": 255,
  252. "g": 255,
  253. "b": 255,
  254. "a": 255
  255. },
  256. "hoverColor": {
  257. "__type__": "cc.Color",
  258. "r": 255,
  259. "g": 255,
  260. "b": 255,
  261. "a": 255
  262. },
  263. "_N$disabledColor": {
  264. "__type__": "cc.Color",
  265. "r": 124,
  266. "g": 124,
  267. "b": 124,
  268. "a": 255
  269. },
  270. "_N$normalSprite": null,
  271. "_N$pressedSprite": null,
  272. "pressedSprite": null,
  273. "_N$hoverSprite": null,
  274. "hoverSprite": null,
  275. "_N$disabledSprite": null,
  276. "_N$target": null,
  277. "_id": ""
  278. },
  279. {
  280. "__type__": "cc.ClickEvent",
  281. "target": {
  282. "__id__": 1
  283. },
  284. "component": "",
  285. "_componentId": "53742kmpmROJIwt92PlbKBG",
  286. "handler": "exitDistroy",
  287. "customEventData": ""
  288. },
  289. {
  290. "__type__": "cc.PrefabInfo",
  291. "root": {
  292. "__id__": 1
  293. },
  294. "asset": {
  295. "__uuid__": "bead7d61-9e8e-4421-a54e-e260b141d73e"
  296. },
  297. "fileId": "17PAFXNYFM479r2tgsRVTl",
  298. "sync": false
  299. },
  300. {
  301. "__type__": "cc.Node",
  302. "_name": "New Node",
  303. "_objFlags": 0,
  304. "_parent": {
  305. "__id__": 1
  306. },
  307. "_children": [],
  308. "_active": true,
  309. "_components": [
  310. {
  311. "__id__": 9
  312. },
  313. {
  314. "__id__": 10
  315. }
  316. ],
  317. "_prefab": {
  318. "__id__": 11
  319. },
  320. "_opacity": 255,
  321. "_color": {
  322. "__type__": "cc.Color",
  323. "r": 255,
  324. "g": 255,
  325. "b": 255,
  326. "a": 255
  327. },
  328. "_contentSize": {
  329. "__type__": "cc.Size",
  330. "width": 450,
  331. "height": 600
  332. },
  333. "_anchorPoint": {
  334. "__type__": "cc.Vec2",
  335. "x": 0.5,
  336. "y": 0.5
  337. },
  338. "_trs": {
  339. "__type__": "TypedArray",
  340. "ctor": "Float64Array",
  341. "array": [
  342. 0,
  343. 0,
  344. 0,
  345. 0,
  346. 0,
  347. 0,
  348. 1,
  349. 1,
  350. 1,
  351. 1
  352. ]
  353. },
  354. "_eulerAngles": {
  355. "__type__": "cc.Vec3",
  356. "x": 0,
  357. "y": 0,
  358. "z": 0
  359. },
  360. "_skewX": 0,
  361. "_skewY": 0,
  362. "_is3DNode": false,
  363. "_groupIndex": 0,
  364. "groupIndex": 0,
  365. "_id": ""
  366. },
  367. {
  368. "__type__": "cc.Sprite",
  369. "_name": "",
  370. "_objFlags": 0,
  371. "node": {
  372. "__id__": 8
  373. },
  374. "_enabled": true,
  375. "_materials": [
  376. {
  377. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  378. }
  379. ],
  380. "_srcBlendFactor": 770,
  381. "_dstBlendFactor": 771,
  382. "_spriteFrame": {
  383. "__uuid__": "51c1dfa2-18bc-4746-805f-736b177daeec"
  384. },
  385. "_type": 1,
  386. "_sizeMode": 0,
  387. "_fillType": 0,
  388. "_fillCenter": {
  389. "__type__": "cc.Vec2",
  390. "x": 0,
  391. "y": 0
  392. },
  393. "_fillStart": 0,
  394. "_fillRange": 0,
  395. "_isTrimmedMode": true,
  396. "_atlas": null,
  397. "_id": ""
  398. },
  399. {
  400. "__type__": "cc.BlockInputEvents",
  401. "_name": "",
  402. "_objFlags": 0,
  403. "node": {
  404. "__id__": 8
  405. },
  406. "_enabled": true,
  407. "_id": ""
  408. },
  409. {
  410. "__type__": "cc.PrefabInfo",
  411. "root": {
  412. "__id__": 1
  413. },
  414. "asset": {
  415. "__uuid__": "bead7d61-9e8e-4421-a54e-e260b141d73e"
  416. },
  417. "fileId": "20x1Z/tqJE5ZRxM4DHjdha",
  418. "sync": false
  419. },
  420. {
  421. "__type__": "cc.Node",
  422. "_name": "New Sprite",
  423. "_objFlags": 0,
  424. "_parent": {
  425. "__id__": 1
  426. },
  427. "_children": [],
  428. "_active": true,
  429. "_components": [
  430. {
  431. "__id__": 13
  432. },
  433. {
  434. "__id__": 14
  435. }
  436. ],
  437. "_prefab": {
  438. "__id__": 16
  439. },
  440. "_opacity": 255,
  441. "_color": {
  442. "__type__": "cc.Color",
  443. "r": 255,
  444. "g": 255,
  445. "b": 255,
  446. "a": 255
  447. },
  448. "_contentSize": {
  449. "__type__": "cc.Size",
  450. "width": 56,
  451. "height": 62
  452. },
  453. "_anchorPoint": {
  454. "__type__": "cc.Vec2",
  455. "x": 0.5,
  456. "y": 0.5
  457. },
  458. "_trs": {
  459. "__type__": "TypedArray",
  460. "ctor": "Float64Array",
  461. "array": [
  462. 210.993,
  463. 255.219,
  464. 0,
  465. 0,
  466. 0,
  467. 0,
  468. 1,
  469. 1,
  470. 1,
  471. 0
  472. ]
  473. },
  474. "_eulerAngles": {
  475. "__type__": "cc.Vec3",
  476. "x": 0,
  477. "y": 0,
  478. "z": 0
  479. },
  480. "_skewX": 0,
  481. "_skewY": 0,
  482. "_is3DNode": false,
  483. "_groupIndex": 0,
  484. "groupIndex": 0,
  485. "_id": ""
  486. },
  487. {
  488. "__type__": "cc.Sprite",
  489. "_name": "",
  490. "_objFlags": 0,
  491. "node": {
  492. "__id__": 12
  493. },
  494. "_enabled": true,
  495. "_materials": [
  496. {
  497. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  498. }
  499. ],
  500. "_srcBlendFactor": 770,
  501. "_dstBlendFactor": 771,
  502. "_spriteFrame": {
  503. "__uuid__": "73f0dd9b-a546-4baf-8b4b-a062e4bdb4cc"
  504. },
  505. "_type": 0,
  506. "_sizeMode": 1,
  507. "_fillType": 0,
  508. "_fillCenter": {
  509. "__type__": "cc.Vec2",
  510. "x": 0,
  511. "y": 0
  512. },
  513. "_fillStart": 0,
  514. "_fillRange": 0,
  515. "_isTrimmedMode": true,
  516. "_atlas": null,
  517. "_id": ""
  518. },
  519. {
  520. "__type__": "cc.Button",
  521. "_name": "",
  522. "_objFlags": 0,
  523. "node": {
  524. "__id__": 12
  525. },
  526. "_enabled": true,
  527. "_normalMaterial": null,
  528. "_grayMaterial": null,
  529. "duration": 0.1,
  530. "zoomScale": 0.9,
  531. "clickEvents": [
  532. {
  533. "__id__": 15
  534. }
  535. ],
  536. "_N$interactable": true,
  537. "_N$enableAutoGrayEffect": false,
  538. "_N$transition": 3,
  539. "transition": 3,
  540. "_N$normalColor": {
  541. "__type__": "cc.Color",
  542. "r": 255,
  543. "g": 255,
  544. "b": 255,
  545. "a": 255
  546. },
  547. "_N$pressedColor": {
  548. "__type__": "cc.Color",
  549. "r": 211,
  550. "g": 211,
  551. "b": 211,
  552. "a": 255
  553. },
  554. "pressedColor": {
  555. "__type__": "cc.Color",
  556. "r": 211,
  557. "g": 211,
  558. "b": 211,
  559. "a": 255
  560. },
  561. "_N$hoverColor": {
  562. "__type__": "cc.Color",
  563. "r": 255,
  564. "g": 255,
  565. "b": 255,
  566. "a": 255
  567. },
  568. "hoverColor": {
  569. "__type__": "cc.Color",
  570. "r": 255,
  571. "g": 255,
  572. "b": 255,
  573. "a": 255
  574. },
  575. "_N$disabledColor": {
  576. "__type__": "cc.Color",
  577. "r": 124,
  578. "g": 124,
  579. "b": 124,
  580. "a": 255
  581. },
  582. "_N$normalSprite": null,
  583. "_N$pressedSprite": null,
  584. "pressedSprite": null,
  585. "_N$hoverSprite": null,
  586. "hoverSprite": null,
  587. "_N$disabledSprite": null,
  588. "_N$target": null,
  589. "_id": ""
  590. },
  591. {
  592. "__type__": "cc.ClickEvent",
  593. "target": {
  594. "__id__": 1
  595. },
  596. "component": "",
  597. "_componentId": "53742kmpmROJIwt92PlbKBG",
  598. "handler": "exitDistroy",
  599. "customEventData": ""
  600. },
  601. {
  602. "__type__": "cc.PrefabInfo",
  603. "root": {
  604. "__id__": 1
  605. },
  606. "asset": {
  607. "__uuid__": "bead7d61-9e8e-4421-a54e-e260b141d73e"
  608. },
  609. "fileId": "f0SqZxGDFE5YWKLl/7k83I",
  610. "sync": false
  611. },
  612. {
  613. "__type__": "cc.Node",
  614. "_name": "New Sprite",
  615. "_objFlags": 0,
  616. "_parent": {
  617. "__id__": 1
  618. },
  619. "_children": [
  620. {
  621. "__id__": 18
  622. },
  623. {
  624. "__id__": 21
  625. }
  626. ],
  627. "_active": true,
  628. "_components": [
  629. {
  630. "__id__": 41
  631. }
  632. ],
  633. "_prefab": {
  634. "__id__": 42
  635. },
  636. "_opacity": 255,
  637. "_color": {
  638. "__type__": "cc.Color",
  639. "r": 255,
  640. "g": 255,
  641. "b": 255,
  642. "a": 255
  643. },
  644. "_contentSize": {
  645. "__type__": "cc.Size",
  646. "width": 254,
  647. "height": 118
  648. },
  649. "_anchorPoint": {
  650. "__type__": "cc.Vec2",
  651. "x": 0.5,
  652. "y": 0.5
  653. },
  654. "_trs": {
  655. "__type__": "TypedArray",
  656. "ctor": "Float64Array",
  657. "array": [
  658. 0,
  659. 232.357,
  660. 0,
  661. 0,
  662. 0,
  663. 0,
  664. 1,
  665. 1,
  666. 1,
  667. 1
  668. ]
  669. },
  670. "_eulerAngles": {
  671. "__type__": "cc.Vec3",
  672. "x": 0,
  673. "y": 0,
  674. "z": 0
  675. },
  676. "_skewX": 0,
  677. "_skewY": 0,
  678. "_is3DNode": false,
  679. "_groupIndex": 0,
  680. "groupIndex": 0,
  681. "_id": ""
  682. },
  683. {
  684. "__type__": "cc.Node",
  685. "_name": "good_name",
  686. "_objFlags": 0,
  687. "_parent": {
  688. "__id__": 17
  689. },
  690. "_children": [],
  691. "_active": true,
  692. "_components": [
  693. {
  694. "__id__": 19
  695. }
  696. ],
  697. "_prefab": {
  698. "__id__": 20
  699. },
  700. "_opacity": 255,
  701. "_color": {
  702. "__type__": "cc.Color",
  703. "r": 75,
  704. "g": 43,
  705. "b": 0,
  706. "a": 255
  707. },
  708. "_contentSize": {
  709. "__type__": "cc.Size",
  710. "width": 100,
  711. "height": 31.5
  712. },
  713. "_anchorPoint": {
  714. "__type__": "cc.Vec2",
  715. "x": 0.5,
  716. "y": 0.5
  717. },
  718. "_trs": {
  719. "__type__": "TypedArray",
  720. "ctor": "Float64Array",
  721. "array": [
  722. 0,
  723. -65.08,
  724. 0,
  725. 0,
  726. 0,
  727. 0,
  728. 1,
  729. 1,
  730. 1,
  731. 1
  732. ]
  733. },
  734. "_eulerAngles": {
  735. "__type__": "cc.Vec3",
  736. "x": 0,
  737. "y": 0,
  738. "z": 0
  739. },
  740. "_skewX": 0,
  741. "_skewY": 0,
  742. "_is3DNode": false,
  743. "_groupIndex": 0,
  744. "groupIndex": 0,
  745. "_id": ""
  746. },
  747. {
  748. "__type__": "cc.Label",
  749. "_name": "",
  750. "_objFlags": 0,
  751. "node": {
  752. "__id__": 18
  753. },
  754. "_enabled": true,
  755. "_materials": [
  756. {
  757. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  758. }
  759. ],
  760. "_srcBlendFactor": 770,
  761. "_dstBlendFactor": 771,
  762. "_string": "装备名字",
  763. "_N$string": "装备名字",
  764. "_fontSize": 25,
  765. "_lineHeight": 0,
  766. "_enableWrapText": true,
  767. "_N$file": {
  768. "__uuid__": "1cdb5762-18d1-4d60-a364-c717229e08e9"
  769. },
  770. "_isSystemFontUsed": false,
  771. "_spacingX": 0,
  772. "_batchAsBitmap": false,
  773. "_styleFlags": 0,
  774. "_underlineHeight": 0,
  775. "_N$horizontalAlign": 1,
  776. "_N$verticalAlign": 1,
  777. "_N$fontFamily": "Arial",
  778. "_N$overflow": 0,
  779. "_N$cacheMode": 0,
  780. "_id": ""
  781. },
  782. {
  783. "__type__": "cc.PrefabInfo",
  784. "root": {
  785. "__id__": 1
  786. },
  787. "asset": {
  788. "__uuid__": "bead7d61-9e8e-4421-a54e-e260b141d73e"
  789. },
  790. "fileId": "4fZvv15DBK9YM/U9CQXqHr",
  791. "sync": false
  792. },
  793. {
  794. "__type__": "cc.Node",
  795. "_name": "equip_item",
  796. "_objFlags": 0,
  797. "_parent": {
  798. "__id__": 17
  799. },
  800. "_children": [
  801. {
  802. "__id__": 22
  803. },
  804. {
  805. "__id__": 25
  806. }
  807. ],
  808. "_active": true,
  809. "_components": [
  810. {
  811. "__id__": 39
  812. }
  813. ],
  814. "_prefab": {
  815. "__id__": 40
  816. },
  817. "_opacity": 255,
  818. "_color": {
  819. "__type__": "cc.Color",
  820. "r": 255,
  821. "g": 255,
  822. "b": 255,
  823. "a": 255
  824. },
  825. "_contentSize": {
  826. "__type__": "cc.Size",
  827. "width": 86,
  828. "height": 86
  829. },
  830. "_anchorPoint": {
  831. "__type__": "cc.Vec2",
  832. "x": 0.5,
  833. "y": 0.5
  834. },
  835. "_trs": {
  836. "__type__": "TypedArray",
  837. "ctor": "Float64Array",
  838. "array": [
  839. 0,
  840. -0.693,
  841. 0,
  842. 0,
  843. 0,
  844. 0,
  845. 1,
  846. 1,
  847. 1,
  848. 0
  849. ]
  850. },
  851. "_eulerAngles": {
  852. "__type__": "cc.Vec3",
  853. "x": 0,
  854. "y": 0,
  855. "z": 0
  856. },
  857. "_skewX": 0,
  858. "_skewY": 0,
  859. "_is3DNode": false,
  860. "_groupIndex": 0,
  861. "groupIndex": 0,
  862. "_id": ""
  863. },
  864. {
  865. "__type__": "cc.Node",
  866. "_name": "4",
  867. "_objFlags": 0,
  868. "_parent": {
  869. "__id__": 21
  870. },
  871. "_children": [],
  872. "_active": true,
  873. "_components": [
  874. {
  875. "__id__": 23
  876. }
  877. ],
  878. "_prefab": {
  879. "__id__": 24
  880. },
  881. "_opacity": 255,
  882. "_color": {
  883. "__type__": "cc.Color",
  884. "r": 255,
  885. "g": 255,
  886. "b": 255,
  887. "a": 255
  888. },
  889. "_contentSize": {
  890. "__type__": "cc.Size",
  891. "width": 86,
  892. "height": 86
  893. },
  894. "_anchorPoint": {
  895. "__type__": "cc.Vec2",
  896. "x": 0.5,
  897. "y": 0.5
  898. },
  899. "_trs": {
  900. "__type__": "TypedArray",
  901. "ctor": "Float64Array",
  902. "array": [
  903. 0,
  904. 0,
  905. 0,
  906. 0,
  907. 0,
  908. 0,
  909. 1,
  910. 1,
  911. 1,
  912. 1
  913. ]
  914. },
  915. "_eulerAngles": {
  916. "__type__": "cc.Vec3",
  917. "x": 0,
  918. "y": 0,
  919. "z": 0
  920. },
  921. "_skewX": 0,
  922. "_skewY": 0,
  923. "_is3DNode": false,
  924. "_groupIndex": 0,
  925. "groupIndex": 0,
  926. "_id": ""
  927. },
  928. {
  929. "__type__": "cc.Sprite",
  930. "_name": "",
  931. "_objFlags": 0,
  932. "node": {
  933. "__id__": 22
  934. },
  935. "_enabled": true,
  936. "_materials": [
  937. {
  938. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  939. }
  940. ],
  941. "_srcBlendFactor": 770,
  942. "_dstBlendFactor": 771,
  943. "_spriteFrame": {
  944. "__uuid__": "e9d93117-eecf-4225-87d1-c65f2ab1a757"
  945. },
  946. "_type": 0,
  947. "_sizeMode": 1,
  948. "_fillType": 0,
  949. "_fillCenter": {
  950. "__type__": "cc.Vec2",
  951. "x": 0,
  952. "y": 0
  953. },
  954. "_fillStart": 0,
  955. "_fillRange": 0,
  956. "_isTrimmedMode": true,
  957. "_atlas": null,
  958. "_id": ""
  959. },
  960. {
  961. "__type__": "cc.PrefabInfo",
  962. "root": {
  963. "__id__": 1
  964. },
  965. "asset": {
  966. "__uuid__": "bead7d61-9e8e-4421-a54e-e260b141d73e"
  967. },
  968. "fileId": "f7IYu85NJEvYY1JyoQ9D5G",
  969. "sync": false
  970. },
  971. {
  972. "__type__": "cc.Node",
  973. "_name": "New Node",
  974. "_objFlags": 0,
  975. "_parent": {
  976. "__id__": 21
  977. },
  978. "_children": [
  979. {
  980. "__id__": 26
  981. },
  982. {
  983. "__id__": 29
  984. },
  985. {
  986. "__id__": 35
  987. }
  988. ],
  989. "_active": true,
  990. "_components": [],
  991. "_prefab": {
  992. "__id__": 38
  993. },
  994. "_opacity": 255,
  995. "_color": {
  996. "__type__": "cc.Color",
  997. "r": 255,
  998. "g": 255,
  999. "b": 255,
  1000. "a": 255
  1001. },
  1002. "_contentSize": {
  1003. "__type__": "cc.Size",
  1004. "width": 0,
  1005. "height": 0
  1006. },
  1007. "_anchorPoint": {
  1008. "__type__": "cc.Vec2",
  1009. "x": 0.5,
  1010. "y": 0.5
  1011. },
  1012. "_trs": {
  1013. "__type__": "TypedArray",
  1014. "ctor": "Float64Array",
  1015. "array": [
  1016. 0,
  1017. 0,
  1018. 0,
  1019. 0,
  1020. 0,
  1021. 0,
  1022. 1,
  1023. 1,
  1024. 1,
  1025. 1
  1026. ]
  1027. },
  1028. "_eulerAngles": {
  1029. "__type__": "cc.Vec3",
  1030. "x": 0,
  1031. "y": 0,
  1032. "z": 0
  1033. },
  1034. "_skewX": 0,
  1035. "_skewY": 0,
  1036. "_is3DNode": false,
  1037. "_groupIndex": 0,
  1038. "groupIndex": 0,
  1039. "_id": ""
  1040. },
  1041. {
  1042. "__type__": "cc.Node",
  1043. "_name": "New Sprite",
  1044. "_objFlags": 0,
  1045. "_parent": {
  1046. "__id__": 25
  1047. },
  1048. "_children": [],
  1049. "_active": true,
  1050. "_components": [
  1051. {
  1052. "__id__": 27
  1053. }
  1054. ],
  1055. "_prefab": {
  1056. "__id__": 28
  1057. },
  1058. "_opacity": 255,
  1059. "_color": {
  1060. "__type__": "cc.Color",
  1061. "r": 255,
  1062. "g": 255,
  1063. "b": 255,
  1064. "a": 255
  1065. },
  1066. "_contentSize": {
  1067. "__type__": "cc.Size",
  1068. "width": 66,
  1069. "height": 66
  1070. },
  1071. "_anchorPoint": {
  1072. "__type__": "cc.Vec2",
  1073. "x": 0.5,
  1074. "y": 0.5
  1075. },
  1076. "_trs": {
  1077. "__type__": "TypedArray",
  1078. "ctor": "Float64Array",
  1079. "array": [
  1080. 0,
  1081. 0,
  1082. 0,
  1083. 0,
  1084. 0,
  1085. 0,
  1086. 1,
  1087. 1,
  1088. 1,
  1089. 1
  1090. ]
  1091. },
  1092. "_eulerAngles": {
  1093. "__type__": "cc.Vec3",
  1094. "x": 0,
  1095. "y": 0,
  1096. "z": 0
  1097. },
  1098. "_skewX": 0,
  1099. "_skewY": 0,
  1100. "_is3DNode": false,
  1101. "_groupIndex": 0,
  1102. "groupIndex": 0,
  1103. "_id": ""
  1104. },
  1105. {
  1106. "__type__": "cc.Sprite",
  1107. "_name": "",
  1108. "_objFlags": 0,
  1109. "node": {
  1110. "__id__": 26
  1111. },
  1112. "_enabled": true,
  1113. "_materials": [
  1114. {
  1115. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  1116. }
  1117. ],
  1118. "_srcBlendFactor": 770,
  1119. "_dstBlendFactor": 771,
  1120. "_spriteFrame": {
  1121. "__uuid__": "1498e8d8-7ec1-4e4a-bddb-2eba911eabf1"
  1122. },
  1123. "_type": 0,
  1124. "_sizeMode": 1,
  1125. "_fillType": 0,
  1126. "_fillCenter": {
  1127. "__type__": "cc.Vec2",
  1128. "x": 0,
  1129. "y": 0
  1130. },
  1131. "_fillStart": 0,
  1132. "_fillRange": 0,
  1133. "_isTrimmedMode": true,
  1134. "_atlas": null,
  1135. "_id": ""
  1136. },
  1137. {
  1138. "__type__": "cc.PrefabInfo",
  1139. "root": {
  1140. "__id__": 1
  1141. },
  1142. "asset": {
  1143. "__uuid__": "bead7d61-9e8e-4421-a54e-e260b141d73e"
  1144. },
  1145. "fileId": "44LFk5Y+BDFZJzZJf5piJL",
  1146. "sync": false
  1147. },
  1148. {
  1149. "__type__": "cc.Node",
  1150. "_name": "New Node",
  1151. "_objFlags": 0,
  1152. "_parent": {
  1153. "__id__": 25
  1154. },
  1155. "_children": [
  1156. {
  1157. "__id__": 30
  1158. }
  1159. ],
  1160. "_active": true,
  1161. "_components": [],
  1162. "_prefab": {
  1163. "__id__": 34
  1164. },
  1165. "_opacity": 255,
  1166. "_color": {
  1167. "__type__": "cc.Color",
  1168. "r": 255,
  1169. "g": 255,
  1170. "b": 255,
  1171. "a": 255
  1172. },
  1173. "_contentSize": {
  1174. "__type__": "cc.Size",
  1175. "width": 0,
  1176. "height": 0
  1177. },
  1178. "_anchorPoint": {
  1179. "__type__": "cc.Vec2",
  1180. "x": 0.5,
  1181. "y": 0.5
  1182. },
  1183. "_trs": {
  1184. "__type__": "TypedArray",
  1185. "ctor": "Float64Array",
  1186. "array": [
  1187. -31.492,
  1188. 40.79,
  1189. 0,
  1190. 0,
  1191. 0,
  1192. 0,
  1193. 1,
  1194. 1,
  1195. 1,
  1196. 1
  1197. ]
  1198. },
  1199. "_eulerAngles": {
  1200. "__type__": "cc.Vec3",
  1201. "x": 0,
  1202. "y": 0,
  1203. "z": 0
  1204. },
  1205. "_skewX": 0,
  1206. "_skewY": 0,
  1207. "_is3DNode": false,
  1208. "_groupIndex": 0,
  1209. "groupIndex": 0,
  1210. "_id": ""
  1211. },
  1212. {
  1213. "__type__": "cc.Node",
  1214. "_name": "New Label",
  1215. "_objFlags": 0,
  1216. "_parent": {
  1217. "__id__": 29
  1218. },
  1219. "_children": [],
  1220. "_active": true,
  1221. "_components": [
  1222. {
  1223. "__id__": 31
  1224. },
  1225. {
  1226. "__id__": 32
  1227. }
  1228. ],
  1229. "_prefab": {
  1230. "__id__": 33
  1231. },
  1232. "_opacity": 255,
  1233. "_color": {
  1234. "__type__": "cc.Color",
  1235. "r": 255,
  1236. "g": 255,
  1237. "b": 255,
  1238. "a": 255
  1239. },
  1240. "_contentSize": {
  1241. "__type__": "cc.Size",
  1242. "width": 37.74,
  1243. "height": 27.2
  1244. },
  1245. "_anchorPoint": {
  1246. "__type__": "cc.Vec2",
  1247. "x": 0,
  1248. "y": 0.5
  1249. },
  1250. "_trs": {
  1251. "__type__": "TypedArray",
  1252. "ctor": "Float64Array",
  1253. "array": [
  1254. -5.369,
  1255. -9.214,
  1256. 0,
  1257. 0,
  1258. 0,
  1259. 0,
  1260. 1,
  1261. 1,
  1262. 1,
  1263. 1
  1264. ]
  1265. },
  1266. "_eulerAngles": {
  1267. "__type__": "cc.Vec3",
  1268. "x": 0,
  1269. "y": 0,
  1270. "z": 0
  1271. },
  1272. "_skewX": 0,
  1273. "_skewY": 0,
  1274. "_is3DNode": false,
  1275. "_groupIndex": 0,
  1276. "groupIndex": 0,
  1277. "_id": ""
  1278. },
  1279. {
  1280. "__type__": "cc.Label",
  1281. "_name": "",
  1282. "_objFlags": 0,
  1283. "node": {
  1284. "__id__": 30
  1285. },
  1286. "_enabled": true,
  1287. "_materials": [
  1288. {
  1289. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  1290. }
  1291. ],
  1292. "_srcBlendFactor": 770,
  1293. "_dstBlendFactor": 771,
  1294. "_string": "lv.-",
  1295. "_N$string": "lv.-",
  1296. "_fontSize": 20,
  1297. "_lineHeight": 0,
  1298. "_enableWrapText": true,
  1299. "_N$file": {
  1300. "__uuid__": "1cdb5762-18d1-4d60-a364-c717229e08e9"
  1301. },
  1302. "_isSystemFontUsed": false,
  1303. "_spacingX": 0,
  1304. "_batchAsBitmap": false,
  1305. "_styleFlags": 0,
  1306. "_underlineHeight": 0,
  1307. "_N$horizontalAlign": 1,
  1308. "_N$verticalAlign": 1,
  1309. "_N$fontFamily": "Arial",
  1310. "_N$overflow": 0,
  1311. "_N$cacheMode": 0,
  1312. "_id": ""
  1313. },
  1314. {
  1315. "__type__": "cc.LabelOutline",
  1316. "_name": "",
  1317. "_objFlags": 0,
  1318. "node": {
  1319. "__id__": 30
  1320. },
  1321. "_enabled": true,
  1322. "_color": {
  1323. "__type__": "cc.Color",
  1324. "r": 0,
  1325. "g": 0,
  1326. "b": 0,
  1327. "a": 255
  1328. },
  1329. "_width": 1,
  1330. "_id": ""
  1331. },
  1332. {
  1333. "__type__": "cc.PrefabInfo",
  1334. "root": {
  1335. "__id__": 1
  1336. },
  1337. "asset": {
  1338. "__uuid__": "bead7d61-9e8e-4421-a54e-e260b141d73e"
  1339. },
  1340. "fileId": "70bUbBXSFIj7eslIqxy8aL",
  1341. "sync": false
  1342. },
  1343. {
  1344. "__type__": "cc.PrefabInfo",
  1345. "root": {
  1346. "__id__": 1
  1347. },
  1348. "asset": {
  1349. "__uuid__": "bead7d61-9e8e-4421-a54e-e260b141d73e"
  1350. },
  1351. "fileId": "61ZfMVBQdGlJ/Q/N9zZlHx",
  1352. "sync": false
  1353. },
  1354. {
  1355. "__type__": "cc.Node",
  1356. "_name": "New Node",
  1357. "_objFlags": 0,
  1358. "_parent": {
  1359. "__id__": 25
  1360. },
  1361. "_children": [],
  1362. "_active": true,
  1363. "_components": [
  1364. {
  1365. "__id__": 36
  1366. }
  1367. ],
  1368. "_prefab": {
  1369. "__id__": 37
  1370. },
  1371. "_opacity": 255,
  1372. "_color": {
  1373. "__type__": "cc.Color",
  1374. "r": 255,
  1375. "g": 255,
  1376. "b": 255,
  1377. "a": 255
  1378. },
  1379. "_contentSize": {
  1380. "__type__": "cc.Size",
  1381. "width": 28,
  1382. "height": 30
  1383. },
  1384. "_anchorPoint": {
  1385. "__type__": "cc.Vec2",
  1386. "x": 0.5,
  1387. "y": 0.5
  1388. },
  1389. "_trs": {
  1390. "__type__": "TypedArray",
  1391. "ctor": "Float64Array",
  1392. "array": [
  1393. 0,
  1394. -32.631,
  1395. 0,
  1396. 0,
  1397. 0,
  1398. 0,
  1399. 1,
  1400. 0.8,
  1401. 0.8,
  1402. 1
  1403. ]
  1404. },
  1405. "_eulerAngles": {
  1406. "__type__": "cc.Vec3",
  1407. "x": 0,
  1408. "y": 0,
  1409. "z": 0
  1410. },
  1411. "_skewX": 0,
  1412. "_skewY": 0,
  1413. "_is3DNode": false,
  1414. "_groupIndex": 0,
  1415. "groupIndex": 0,
  1416. "_id": ""
  1417. },
  1418. {
  1419. "__type__": "cc.Layout",
  1420. "_name": "",
  1421. "_objFlags": 0,
  1422. "node": {
  1423. "__id__": 35
  1424. },
  1425. "_enabled": true,
  1426. "_layoutSize": {
  1427. "__type__": "cc.Size",
  1428. "width": 28,
  1429. "height": 30
  1430. },
  1431. "_resize": 1,
  1432. "_N$layoutType": 1,
  1433. "_N$cellSize": {
  1434. "__type__": "cc.Size",
  1435. "width": 40,
  1436. "height": 40
  1437. },
  1438. "_N$startAxis": 0,
  1439. "_N$paddingLeft": 0,
  1440. "_N$paddingRight": 0,
  1441. "_N$paddingTop": 0,
  1442. "_N$paddingBottom": 0,
  1443. "_N$spacingX": -10,
  1444. "_N$spacingY": 0,
  1445. "_N$verticalDirection": 1,
  1446. "_N$horizontalDirection": 0,
  1447. "_N$affectedByScale": false,
  1448. "_id": ""
  1449. },
  1450. {
  1451. "__type__": "cc.PrefabInfo",
  1452. "root": {
  1453. "__id__": 1
  1454. },
  1455. "asset": {
  1456. "__uuid__": "bead7d61-9e8e-4421-a54e-e260b141d73e"
  1457. },
  1458. "fileId": "f6FrRmbP5BOpSz+Ruqpsz1",
  1459. "sync": false
  1460. },
  1461. {
  1462. "__type__": "cc.PrefabInfo",
  1463. "root": {
  1464. "__id__": 1
  1465. },
  1466. "asset": {
  1467. "__uuid__": "bead7d61-9e8e-4421-a54e-e260b141d73e"
  1468. },
  1469. "fileId": "c0LWG5cKlFv7uAp8K8EB/i",
  1470. "sync": false
  1471. },
  1472. {
  1473. "__type__": "151bdPsfBdMXbh/WAVcXBV2",
  1474. "_name": "",
  1475. "_objFlags": 0,
  1476. "node": {
  1477. "__id__": 21
  1478. },
  1479. "_enabled": true,
  1480. "mBG": {
  1481. "__id__": 23
  1482. },
  1483. "mIcon": {
  1484. "__id__": 27
  1485. },
  1486. "mNullIcon": {
  1487. "__uuid__": "ebd38a9a-1299-4bf1-be89-00a4b4abadaa"
  1488. },
  1489. "mBGs": [
  1490. {
  1491. "__uuid__": "398d12e8-d5aa-4d23-8322-d2f6cc12f71a"
  1492. },
  1493. {
  1494. "__uuid__": "e9d93117-eecf-4225-87d1-c65f2ab1a757"
  1495. },
  1496. {
  1497. "__uuid__": "947f2cb4-69c3-4ed6-97b1-35e22e263649"
  1498. },
  1499. {
  1500. "__uuid__": "1b48f361-8cb3-43e3-9bc3-1731ad9f6aa6"
  1501. },
  1502. {
  1503. "__uuid__": "e36b59c9-abab-49ea-ad4b-c20d73d6c2e9"
  1504. }
  1505. ],
  1506. "mNullNode": {
  1507. "__id__": 25
  1508. },
  1509. "mStarNode": {
  1510. "__id__": 35
  1511. },
  1512. "mStar": {
  1513. "__uuid__": "bbda706e-aa95-4e38-a4b2-74c3b9ec7c30"
  1514. },
  1515. "mLevel": {
  1516. "__id__": 31
  1517. },
  1518. "mContrast": null,
  1519. "_id": ""
  1520. },
  1521. {
  1522. "__type__": "cc.PrefabInfo",
  1523. "root": {
  1524. "__id__": 1
  1525. },
  1526. "asset": {
  1527. "__uuid__": "bead7d61-9e8e-4421-a54e-e260b141d73e"
  1528. },
  1529. "fileId": "e6wIC5S8dBVoRt7RHC6mLb",
  1530. "sync": false
  1531. },
  1532. {
  1533. "__type__": "cc.Sprite",
  1534. "_name": "",
  1535. "_objFlags": 0,
  1536. "node": {
  1537. "__id__": 17
  1538. },
  1539. "_enabled": true,
  1540. "_materials": [
  1541. {
  1542. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  1543. }
  1544. ],
  1545. "_srcBlendFactor": 770,
  1546. "_dstBlendFactor": 771,
  1547. "_spriteFrame": {
  1548. "__uuid__": "408792d0-16c0-4be3-a6fb-5414a8125b9c"
  1549. },
  1550. "_type": 0,
  1551. "_sizeMode": 1,
  1552. "_fillType": 0,
  1553. "_fillCenter": {
  1554. "__type__": "cc.Vec2",
  1555. "x": 0,
  1556. "y": 0
  1557. },
  1558. "_fillStart": 0,
  1559. "_fillRange": 0,
  1560. "_isTrimmedMode": true,
  1561. "_atlas": null,
  1562. "_id": ""
  1563. },
  1564. {
  1565. "__type__": "cc.PrefabInfo",
  1566. "root": {
  1567. "__id__": 1
  1568. },
  1569. "asset": {
  1570. "__uuid__": "bead7d61-9e8e-4421-a54e-e260b141d73e"
  1571. },
  1572. "fileId": "0b1MeDlR1Cv48+2rlVQTG7",
  1573. "sync": false
  1574. },
  1575. {
  1576. "__type__": "cc.Node",
  1577. "_name": "zbei",
  1578. "_objFlags": 0,
  1579. "_parent": {
  1580. "__id__": 1
  1581. },
  1582. "_children": [
  1583. {
  1584. "__id__": 44
  1585. },
  1586. {
  1587. "__id__": 186
  1588. },
  1589. {
  1590. "__id__": 195
  1591. }
  1592. ],
  1593. "_active": true,
  1594. "_components": [],
  1595. "_prefab": {
  1596. "__id__": 204
  1597. },
  1598. "_opacity": 255,
  1599. "_color": {
  1600. "__type__": "cc.Color",
  1601. "r": 255,
  1602. "g": 255,
  1603. "b": 255,
  1604. "a": 255
  1605. },
  1606. "_contentSize": {
  1607. "__type__": "cc.Size",
  1608. "width": 450,
  1609. "height": 600
  1610. },
  1611. "_anchorPoint": {
  1612. "__type__": "cc.Vec2",
  1613. "x": 0.5,
  1614. "y": 0.5
  1615. },
  1616. "_trs": {
  1617. "__type__": "TypedArray",
  1618. "ctor": "Float64Array",
  1619. "array": [
  1620. 0,
  1621. 0,
  1622. 0,
  1623. 0,
  1624. 0,
  1625. 0,
  1626. 1,
  1627. 1,
  1628. 1,
  1629. 1
  1630. ]
  1631. },
  1632. "_eulerAngles": {
  1633. "__type__": "cc.Vec3",
  1634. "x": 0,
  1635. "y": 0,
  1636. "z": 0
  1637. },
  1638. "_skewX": 0,
  1639. "_skewY": 0,
  1640. "_is3DNode": false,
  1641. "_groupIndex": 0,
  1642. "groupIndex": 0,
  1643. "_id": ""
  1644. },
  1645. {
  1646. "__type__": "cc.Node",
  1647. "_name": "equip_info",
  1648. "_objFlags": 0,
  1649. "_parent": {
  1650. "__id__": 43
  1651. },
  1652. "_children": [
  1653. {
  1654. "__id__": 45
  1655. },
  1656. {
  1657. "__id__": 49
  1658. }
  1659. ],
  1660. "_active": true,
  1661. "_components": [],
  1662. "_prefab": {
  1663. "__id__": 185
  1664. },
  1665. "_opacity": 255,
  1666. "_color": {
  1667. "__type__": "cc.Color",
  1668. "r": 255,
  1669. "g": 255,
  1670. "b": 255,
  1671. "a": 255
  1672. },
  1673. "_contentSize": {
  1674. "__type__": "cc.Size",
  1675. "width": 450,
  1676. "height": 600
  1677. },
  1678. "_anchorPoint": {
  1679. "__type__": "cc.Vec2",
  1680. "x": 0.5,
  1681. "y": 0.5
  1682. },
  1683. "_trs": {
  1684. "__type__": "TypedArray",
  1685. "ctor": "Float64Array",
  1686. "array": [
  1687. 0,
  1688. 0,
  1689. 0,
  1690. 0,
  1691. 0,
  1692. 0,
  1693. 1,
  1694. 1,
  1695. 1,
  1696. 1
  1697. ]
  1698. },
  1699. "_eulerAngles": {
  1700. "__type__": "cc.Vec3",
  1701. "x": 0,
  1702. "y": 0,
  1703. "z": 0
  1704. },
  1705. "_skewX": 0,
  1706. "_skewY": 0,
  1707. "_is3DNode": false,
  1708. "_groupIndex": 0,
  1709. "groupIndex": 0,
  1710. "_id": ""
  1711. },
  1712. {
  1713. "__type__": "cc.Node",
  1714. "_name": "New Sprite",
  1715. "_objFlags": 0,
  1716. "_parent": {
  1717. "__id__": 44
  1718. },
  1719. "_children": [],
  1720. "_active": true,
  1721. "_components": [
  1722. {
  1723. "__id__": 46
  1724. },
  1725. {
  1726. "__id__": 47
  1727. }
  1728. ],
  1729. "_prefab": {
  1730. "__id__": 48
  1731. },
  1732. "_opacity": 255,
  1733. "_color": {
  1734. "__type__": "cc.Color",
  1735. "r": 255,
  1736. "g": 255,
  1737. "b": 255,
  1738. "a": 255
  1739. },
  1740. "_contentSize": {
  1741. "__type__": "cc.Size",
  1742. "width": 86,
  1743. "height": 86
  1744. },
  1745. "_anchorPoint": {
  1746. "__type__": "cc.Vec2",
  1747. "x": 0.5,
  1748. "y": 0.5
  1749. },
  1750. "_trs": {
  1751. "__type__": "TypedArray",
  1752. "ctor": "Float64Array",
  1753. "array": [
  1754. 0,
  1755. 231.664,
  1756. 0,
  1757. 0,
  1758. 0,
  1759. 0,
  1760. 1,
  1761. 1,
  1762. 1,
  1763. 0
  1764. ]
  1765. },
  1766. "_eulerAngles": {
  1767. "__type__": "cc.Vec3",
  1768. "x": 0,
  1769. "y": 0,
  1770. "z": 0
  1771. },
  1772. "_skewX": 0,
  1773. "_skewY": 0,
  1774. "_is3DNode": false,
  1775. "_groupIndex": 0,
  1776. "groupIndex": 0,
  1777. "_id": ""
  1778. },
  1779. {
  1780. "__type__": "cc.Sprite",
  1781. "_name": "",
  1782. "_objFlags": 0,
  1783. "node": {
  1784. "__id__": 45
  1785. },
  1786. "_enabled": true,
  1787. "_materials": [
  1788. {
  1789. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  1790. }
  1791. ],
  1792. "_srcBlendFactor": 770,
  1793. "_dstBlendFactor": 771,
  1794. "_spriteFrame": null,
  1795. "_type": 0,
  1796. "_sizeMode": 0,
  1797. "_fillType": 0,
  1798. "_fillCenter": {
  1799. "__type__": "cc.Vec2",
  1800. "x": 0,
  1801. "y": 0
  1802. },
  1803. "_fillStart": 0,
  1804. "_fillRange": 0,
  1805. "_isTrimmedMode": true,
  1806. "_atlas": null,
  1807. "_id": ""
  1808. },
  1809. {
  1810. "__type__": "cc.Button",
  1811. "_name": "",
  1812. "_objFlags": 0,
  1813. "node": {
  1814. "__id__": 45
  1815. },
  1816. "_enabled": true,
  1817. "_normalMaterial": null,
  1818. "_grayMaterial": null,
  1819. "duration": 0.1,
  1820. "zoomScale": 0.9,
  1821. "clickEvents": [],
  1822. "_N$interactable": true,
  1823. "_N$enableAutoGrayEffect": false,
  1824. "_N$transition": 3,
  1825. "transition": 3,
  1826. "_N$normalColor": {
  1827. "__type__": "cc.Color",
  1828. "r": 255,
  1829. "g": 255,
  1830. "b": 255,
  1831. "a": 255
  1832. },
  1833. "_N$pressedColor": {
  1834. "__type__": "cc.Color",
  1835. "r": 211,
  1836. "g": 211,
  1837. "b": 211,
  1838. "a": 255
  1839. },
  1840. "pressedColor": {
  1841. "__type__": "cc.Color",
  1842. "r": 211,
  1843. "g": 211,
  1844. "b": 211,
  1845. "a": 255
  1846. },
  1847. "_N$hoverColor": {
  1848. "__type__": "cc.Color",
  1849. "r": 255,
  1850. "g": 255,
  1851. "b": 255,
  1852. "a": 255
  1853. },
  1854. "hoverColor": {
  1855. "__type__": "cc.Color",
  1856. "r": 255,
  1857. "g": 255,
  1858. "b": 255,
  1859. "a": 255
  1860. },
  1861. "_N$disabledColor": {
  1862. "__type__": "cc.Color",
  1863. "r": 124,
  1864. "g": 124,
  1865. "b": 124,
  1866. "a": 255
  1867. },
  1868. "_N$normalSprite": null,
  1869. "_N$pressedSprite": null,
  1870. "pressedSprite": null,
  1871. "_N$hoverSprite": null,
  1872. "hoverSprite": null,
  1873. "_N$disabledSprite": null,
  1874. "_N$target": null,
  1875. "_id": ""
  1876. },
  1877. {
  1878. "__type__": "cc.PrefabInfo",
  1879. "root": {
  1880. "__id__": 1
  1881. },
  1882. "asset": {
  1883. "__uuid__": "bead7d61-9e8e-4421-a54e-e260b141d73e"
  1884. },
  1885. "fileId": "d0wE52upZFsYfe3VCreJdk",
  1886. "sync": false
  1887. },
  1888. {
  1889. "__type__": "cc.Node",
  1890. "_name": "New Node",
  1891. "_objFlags": 0,
  1892. "_parent": {
  1893. "__id__": 44
  1894. },
  1895. "_children": [
  1896. {
  1897. "__id__": 50
  1898. },
  1899. {
  1900. "__id__": 53
  1901. }
  1902. ],
  1903. "_active": true,
  1904. "_components": [],
  1905. "_prefab": {
  1906. "__id__": 184
  1907. },
  1908. "_opacity": 255,
  1909. "_color": {
  1910. "__type__": "cc.Color",
  1911. "r": 255,
  1912. "g": 255,
  1913. "b": 255,
  1914. "a": 255
  1915. },
  1916. "_contentSize": {
  1917. "__type__": "cc.Size",
  1918. "width": 420,
  1919. "height": 360
  1920. },
  1921. "_anchorPoint": {
  1922. "__type__": "cc.Vec2",
  1923. "x": 0.5,
  1924. "y": 0.5
  1925. },
  1926. "_trs": {
  1927. "__type__": "TypedArray",
  1928. "ctor": "Float64Array",
  1929. "array": [
  1930. 0,
  1931. -37.245,
  1932. 0,
  1933. 0,
  1934. 0,
  1935. 0,
  1936. 1,
  1937. 1,
  1938. 1,
  1939. 1
  1940. ]
  1941. },
  1942. "_eulerAngles": {
  1943. "__type__": "cc.Vec3",
  1944. "x": 0,
  1945. "y": 0,
  1946. "z": 0
  1947. },
  1948. "_skewX": 0,
  1949. "_skewY": 0,
  1950. "_is3DNode": false,
  1951. "_groupIndex": 0,
  1952. "groupIndex": 0,
  1953. "_id": ""
  1954. },
  1955. {
  1956. "__type__": "cc.Node",
  1957. "_name": "New Sprite",
  1958. "_objFlags": 0,
  1959. "_parent": {
  1960. "__id__": 49
  1961. },
  1962. "_children": [],
  1963. "_active": true,
  1964. "_components": [
  1965. {
  1966. "__id__": 51
  1967. }
  1968. ],
  1969. "_prefab": {
  1970. "__id__": 52
  1971. },
  1972. "_opacity": 255,
  1973. "_color": {
  1974. "__type__": "cc.Color",
  1975. "r": 255,
  1976. "g": 255,
  1977. "b": 255,
  1978. "a": 255
  1979. },
  1980. "_contentSize": {
  1981. "__type__": "cc.Size",
  1982. "width": 400,
  1983. "height": 330
  1984. },
  1985. "_anchorPoint": {
  1986. "__type__": "cc.Vec2",
  1987. "x": 0.5,
  1988. "y": 0.5
  1989. },
  1990. "_trs": {
  1991. "__type__": "TypedArray",
  1992. "ctor": "Float64Array",
  1993. "array": [
  1994. 0,
  1995. 16.716,
  1996. 0,
  1997. 0,
  1998. 0,
  1999. 0,
  2000. 1,
  2001. 1,
  2002. 1,
  2003. 1
  2004. ]
  2005. },
  2006. "_eulerAngles": {
  2007. "__type__": "cc.Vec3",
  2008. "x": 0,
  2009. "y": 0,
  2010. "z": 0
  2011. },
  2012. "_skewX": 0,
  2013. "_skewY": 0,
  2014. "_is3DNode": false,
  2015. "_groupIndex": 0,
  2016. "groupIndex": 0,
  2017. "_id": ""
  2018. },
  2019. {
  2020. "__type__": "cc.Sprite",
  2021. "_name": "",
  2022. "_objFlags": 0,
  2023. "node": {
  2024. "__id__": 50
  2025. },
  2026. "_enabled": true,
  2027. "_materials": [
  2028. {
  2029. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  2030. }
  2031. ],
  2032. "_srcBlendFactor": 770,
  2033. "_dstBlendFactor": 771,
  2034. "_spriteFrame": {
  2035. "__uuid__": "5822059a-8a96-4510-b4de-7adf1113f361"
  2036. },
  2037. "_type": 1,
  2038. "_sizeMode": 0,
  2039. "_fillType": 0,
  2040. "_fillCenter": {
  2041. "__type__": "cc.Vec2",
  2042. "x": 0,
  2043. "y": 0
  2044. },
  2045. "_fillStart": 0,
  2046. "_fillRange": 0,
  2047. "_isTrimmedMode": true,
  2048. "_atlas": null,
  2049. "_id": ""
  2050. },
  2051. {
  2052. "__type__": "cc.PrefabInfo",
  2053. "root": {
  2054. "__id__": 1
  2055. },
  2056. "asset": {
  2057. "__uuid__": "bead7d61-9e8e-4421-a54e-e260b141d73e"
  2058. },
  2059. "fileId": "b3X1ZzaYNB0IdKe21jaBAQ",
  2060. "sync": false
  2061. },
  2062. {
  2063. "__type__": "cc.Node",
  2064. "_name": "New ScrollView",
  2065. "_objFlags": 0,
  2066. "_parent": {
  2067. "__id__": 49
  2068. },
  2069. "_children": [
  2070. {
  2071. "__id__": 54
  2072. }
  2073. ],
  2074. "_active": true,
  2075. "_components": [
  2076. {
  2077. "__id__": 181
  2078. },
  2079. {
  2080. "__id__": 182
  2081. }
  2082. ],
  2083. "_prefab": {
  2084. "__id__": 183
  2085. },
  2086. "_opacity": 255,
  2087. "_color": {
  2088. "__type__": "cc.Color",
  2089. "r": 255,
  2090. "g": 255,
  2091. "b": 255,
  2092. "a": 255
  2093. },
  2094. "_contentSize": {
  2095. "__type__": "cc.Size",
  2096. "width": 420,
  2097. "height": 320
  2098. },
  2099. "_anchorPoint": {
  2100. "__type__": "cc.Vec2",
  2101. "x": 0.5,
  2102. "y": 0.5
  2103. },
  2104. "_trs": {
  2105. "__type__": "TypedArray",
  2106. "ctor": "Float64Array",
  2107. "array": [
  2108. 0,
  2109. 15,
  2110. 0,
  2111. 0,
  2112. 0,
  2113. 0,
  2114. 1,
  2115. 1,
  2116. 1,
  2117. 1
  2118. ]
  2119. },
  2120. "_eulerAngles": {
  2121. "__type__": "cc.Vec3",
  2122. "x": 0,
  2123. "y": 0,
  2124. "z": 0
  2125. },
  2126. "_skewX": 0,
  2127. "_skewY": 0,
  2128. "_is3DNode": false,
  2129. "_groupIndex": 0,
  2130. "groupIndex": 0,
  2131. "_id": ""
  2132. },
  2133. {
  2134. "__type__": "cc.Node",
  2135. "_name": "view",
  2136. "_objFlags": 0,
  2137. "_parent": {
  2138. "__id__": 53
  2139. },
  2140. "_children": [
  2141. {
  2142. "__id__": 55
  2143. }
  2144. ],
  2145. "_active": true,
  2146. "_components": [
  2147. {
  2148. "__id__": 179
  2149. }
  2150. ],
  2151. "_prefab": {
  2152. "__id__": 180
  2153. },
  2154. "_opacity": 255,
  2155. "_color": {
  2156. "__type__": "cc.Color",
  2157. "r": 255,
  2158. "g": 255,
  2159. "b": 255,
  2160. "a": 255
  2161. },
  2162. "_contentSize": {
  2163. "__type__": "cc.Size",
  2164. "width": 420,
  2165. "height": 320
  2166. },
  2167. "_anchorPoint": {
  2168. "__type__": "cc.Vec2",
  2169. "x": 0.5,
  2170. "y": 0.5
  2171. },
  2172. "_trs": {
  2173. "__type__": "TypedArray",
  2174. "ctor": "Float64Array",
  2175. "array": [
  2176. 0,
  2177. 0,
  2178. 0,
  2179. 0,
  2180. 0,
  2181. 0,
  2182. 1,
  2183. 1,
  2184. 1,
  2185. 1
  2186. ]
  2187. },
  2188. "_eulerAngles": {
  2189. "__type__": "cc.Vec3",
  2190. "x": 0,
  2191. "y": 0,
  2192. "z": 0
  2193. },
  2194. "_skewX": 0,
  2195. "_skewY": 0,
  2196. "_is3DNode": false,
  2197. "_groupIndex": 0,
  2198. "groupIndex": 0,
  2199. "_id": ""
  2200. },
  2201. {
  2202. "__type__": "cc.Node",
  2203. "_name": "content",
  2204. "_objFlags": 0,
  2205. "_parent": {
  2206. "__id__": 54
  2207. },
  2208. "_children": [
  2209. {
  2210. "__id__": 56
  2211. },
  2212. {
  2213. "__id__": 128
  2214. },
  2215. {
  2216. "__id__": 140
  2217. },
  2218. {
  2219. "__id__": 162
  2220. }
  2221. ],
  2222. "_active": true,
  2223. "_components": [
  2224. {
  2225. "__id__": 177
  2226. }
  2227. ],
  2228. "_prefab": {
  2229. "__id__": 178
  2230. },
  2231. "_opacity": 255,
  2232. "_color": {
  2233. "__type__": "cc.Color",
  2234. "r": 255,
  2235. "g": 255,
  2236. "b": 255,
  2237. "a": 255
  2238. },
  2239. "_contentSize": {
  2240. "__type__": "cc.Size",
  2241. "width": 420,
  2242. "height": 765.2
  2243. },
  2244. "_anchorPoint": {
  2245. "__type__": "cc.Vec2",
  2246. "x": 0.5,
  2247. "y": 1
  2248. },
  2249. "_trs": {
  2250. "__type__": "TypedArray",
  2251. "ctor": "Float64Array",
  2252. "array": [
  2253. 0,
  2254. 159.728,
  2255. 0,
  2256. 0,
  2257. 0,
  2258. 0,
  2259. 1,
  2260. 1,
  2261. 1,
  2262. 1
  2263. ]
  2264. },
  2265. "_eulerAngles": {
  2266. "__type__": "cc.Vec3",
  2267. "x": 0,
  2268. "y": 0,
  2269. "z": 0
  2270. },
  2271. "_skewX": 0,
  2272. "_skewY": 0,
  2273. "_is3DNode": false,
  2274. "_groupIndex": 0,
  2275. "groupIndex": 0,
  2276. "_id": ""
  2277. },
  2278. {
  2279. "__type__": "cc.Node",
  2280. "_name": "baseAttNodfe",
  2281. "_objFlags": 0,
  2282. "_parent": {
  2283. "__id__": 55
  2284. },
  2285. "_children": [
  2286. {
  2287. "__id__": 57
  2288. }
  2289. ],
  2290. "_active": true,
  2291. "_components": [
  2292. {
  2293. "__id__": 126
  2294. }
  2295. ],
  2296. "_prefab": {
  2297. "__id__": 127
  2298. },
  2299. "_opacity": 255,
  2300. "_color": {
  2301. "__type__": "cc.Color",
  2302. "r": 255,
  2303. "g": 255,
  2304. "b": 255,
  2305. "a": 255
  2306. },
  2307. "_contentSize": {
  2308. "__type__": "cc.Size",
  2309. "width": 400,
  2310. "height": 260
  2311. },
  2312. "_anchorPoint": {
  2313. "__type__": "cc.Vec2",
  2314. "x": 0.5,
  2315. "y": 1
  2316. },
  2317. "_trs": {
  2318. "__type__": "TypedArray",
  2319. "ctor": "Float64Array",
  2320. "array": [
  2321. 0,
  2322. 0,
  2323. 0,
  2324. 0,
  2325. 0,
  2326. 0,
  2327. 1,
  2328. 1,
  2329. 1,
  2330. 1
  2331. ]
  2332. },
  2333. "_eulerAngles": {
  2334. "__type__": "cc.Vec3",
  2335. "x": 0,
  2336. "y": 0,
  2337. "z": 0
  2338. },
  2339. "_skewX": 0,
  2340. "_skewY": 0,
  2341. "_is3DNode": false,
  2342. "_groupIndex": 0,
  2343. "groupIndex": 0,
  2344. "_id": ""
  2345. },
  2346. {
  2347. "__type__": "cc.Node",
  2348. "_name": "New Node",
  2349. "_objFlags": 0,
  2350. "_parent": {
  2351. "__id__": 56
  2352. },
  2353. "_children": [
  2354. {
  2355. "__id__": 58
  2356. },
  2357. {
  2358. "__id__": 64
  2359. },
  2360. {
  2361. "__id__": 76
  2362. },
  2363. {
  2364. "__id__": 88
  2365. },
  2366. {
  2367. "__id__": 100
  2368. },
  2369. {
  2370. "__id__": 112
  2371. }
  2372. ],
  2373. "_active": true,
  2374. "_components": [
  2375. {
  2376. "__id__": 124
  2377. }
  2378. ],
  2379. "_prefab": {
  2380. "__id__": 125
  2381. },
  2382. "_opacity": 255,
  2383. "_color": {
  2384. "__type__": "cc.Color",
  2385. "r": 255,
  2386. "g": 255,
  2387. "b": 255,
  2388. "a": 255
  2389. },
  2390. "_contentSize": {
  2391. "__type__": "cc.Size",
  2392. "width": 400,
  2393. "height": 260
  2394. },
  2395. "_anchorPoint": {
  2396. "__type__": "cc.Vec2",
  2397. "x": 0.5,
  2398. "y": 1
  2399. },
  2400. "_trs": {
  2401. "__type__": "TypedArray",
  2402. "ctor": "Float64Array",
  2403. "array": [
  2404. 0,
  2405. 0,
  2406. 0,
  2407. 0,
  2408. 0,
  2409. 0,
  2410. 1,
  2411. 1,
  2412. 1,
  2413. 1
  2414. ]
  2415. },
  2416. "_eulerAngles": {
  2417. "__type__": "cc.Vec3",
  2418. "x": 0,
  2419. "y": 0,
  2420. "z": 0
  2421. },
  2422. "_skewX": 0,
  2423. "_skewY": 0,
  2424. "_is3DNode": false,
  2425. "_groupIndex": 0,
  2426. "groupIndex": 0,
  2427. "_id": ""
  2428. },
  2429. {
  2430. "__type__": "cc.Node",
  2431. "_name": "New Sprite",
  2432. "_objFlags": 0,
  2433. "_parent": {
  2434. "__id__": 57
  2435. },
  2436. "_children": [
  2437. {
  2438. "__id__": 59
  2439. }
  2440. ],
  2441. "_active": true,
  2442. "_components": [
  2443. {
  2444. "__id__": 62
  2445. }
  2446. ],
  2447. "_prefab": {
  2448. "__id__": 63
  2449. },
  2450. "_opacity": 255,
  2451. "_color": {
  2452. "__type__": "cc.Color",
  2453. "r": 255,
  2454. "g": 255,
  2455. "b": 255,
  2456. "a": 255
  2457. },
  2458. "_contentSize": {
  2459. "__type__": "cc.Size",
  2460. "width": 380,
  2461. "height": 35
  2462. },
  2463. "_anchorPoint": {
  2464. "__type__": "cc.Vec2",
  2465. "x": 0.5,
  2466. "y": 0.5
  2467. },
  2468. "_trs": {
  2469. "__type__": "TypedArray",
  2470. "ctor": "Float64Array",
  2471. "array": [
  2472. 0,
  2473. -17.5,
  2474. 0,
  2475. 0,
  2476. 0,
  2477. 0,
  2478. 1,
  2479. 1,
  2480. 1,
  2481. 1
  2482. ]
  2483. },
  2484. "_eulerAngles": {
  2485. "__type__": "cc.Vec3",
  2486. "x": 0,
  2487. "y": 0,
  2488. "z": 0
  2489. },
  2490. "_skewX": 0,
  2491. "_skewY": 0,
  2492. "_is3DNode": false,
  2493. "_groupIndex": 0,
  2494. "groupIndex": 0,
  2495. "_id": ""
  2496. },
  2497. {
  2498. "__type__": "cc.Node",
  2499. "_name": "New Label",
  2500. "_objFlags": 0,
  2501. "_parent": {
  2502. "__id__": 58
  2503. },
  2504. "_children": [],
  2505. "_active": true,
  2506. "_components": [
  2507. {
  2508. "__id__": 60
  2509. }
  2510. ],
  2511. "_prefab": {
  2512. "__id__": 61
  2513. },
  2514. "_opacity": 255,
  2515. "_color": {
  2516. "__type__": "cc.Color",
  2517. "r": 255,
  2518. "g": 255,
  2519. "b": 255,
  2520. "a": 255
  2521. },
  2522. "_contentSize": {
  2523. "__type__": "cc.Size",
  2524. "width": 80,
  2525. "height": 25.2
  2526. },
  2527. "_anchorPoint": {
  2528. "__type__": "cc.Vec2",
  2529. "x": 0.5,
  2530. "y": 0.5
  2531. },
  2532. "_trs": {
  2533. "__type__": "TypedArray",
  2534. "ctor": "Float64Array",
  2535. "array": [
  2536. 0,
  2537. 0,
  2538. 0,
  2539. 0,
  2540. 0,
  2541. 0,
  2542. 1,
  2543. 1,
  2544. 1,
  2545. 1
  2546. ]
  2547. },
  2548. "_eulerAngles": {
  2549. "__type__": "cc.Vec3",
  2550. "x": 0,
  2551. "y": 0,
  2552. "z": 0
  2553. },
  2554. "_skewX": 0,
  2555. "_skewY": 0,
  2556. "_is3DNode": false,
  2557. "_groupIndex": 0,
  2558. "groupIndex": 0,
  2559. "_id": ""
  2560. },
  2561. {
  2562. "__type__": "cc.Label",
  2563. "_name": "",
  2564. "_objFlags": 0,
  2565. "node": {
  2566. "__id__": 59
  2567. },
  2568. "_enabled": true,
  2569. "_materials": [
  2570. {
  2571. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  2572. }
  2573. ],
  2574. "_srcBlendFactor": 770,
  2575. "_dstBlendFactor": 771,
  2576. "_string": "基础属性",
  2577. "_N$string": "基础属性",
  2578. "_fontSize": 20,
  2579. "_lineHeight": 0,
  2580. "_enableWrapText": true,
  2581. "_N$file": {
  2582. "__uuid__": "1cdb5762-18d1-4d60-a364-c717229e08e9"
  2583. },
  2584. "_isSystemFontUsed": false,
  2585. "_spacingX": 0,
  2586. "_batchAsBitmap": false,
  2587. "_styleFlags": 0,
  2588. "_underlineHeight": 0,
  2589. "_N$horizontalAlign": 1,
  2590. "_N$verticalAlign": 1,
  2591. "_N$fontFamily": "Arial",
  2592. "_N$overflow": 0,
  2593. "_N$cacheMode": 0,
  2594. "_id": ""
  2595. },
  2596. {
  2597. "__type__": "cc.PrefabInfo",
  2598. "root": {
  2599. "__id__": 1
  2600. },
  2601. "asset": {
  2602. "__uuid__": "bead7d61-9e8e-4421-a54e-e260b141d73e"
  2603. },
  2604. "fileId": "7d0N6XUqxHlJyNMdz9mYts",
  2605. "sync": false
  2606. },
  2607. {
  2608. "__type__": "cc.Sprite",
  2609. "_name": "",
  2610. "_objFlags": 0,
  2611. "node": {
  2612. "__id__": 58
  2613. },
  2614. "_enabled": true,
  2615. "_materials": [
  2616. {
  2617. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  2618. }
  2619. ],
  2620. "_srcBlendFactor": 770,
  2621. "_dstBlendFactor": 771,
  2622. "_spriteFrame": {
  2623. "__uuid__": "dee9639b-a44a-4987-9154-65822906dbe1"
  2624. },
  2625. "_type": 1,
  2626. "_sizeMode": 0,
  2627. "_fillType": 0,
  2628. "_fillCenter": {
  2629. "__type__": "cc.Vec2",
  2630. "x": 0,
  2631. "y": 0
  2632. },
  2633. "_fillStart": 0,
  2634. "_fillRange": 0,
  2635. "_isTrimmedMode": true,
  2636. "_atlas": null,
  2637. "_id": ""
  2638. },
  2639. {
  2640. "__type__": "cc.PrefabInfo",
  2641. "root": {
  2642. "__id__": 1
  2643. },
  2644. "asset": {
  2645. "__uuid__": "bead7d61-9e8e-4421-a54e-e260b141d73e"
  2646. },
  2647. "fileId": "82bdyojO9C7IyCjAgoNQaM",
  2648. "sync": false
  2649. },
  2650. {
  2651. "__type__": "cc.Node",
  2652. "_name": "0",
  2653. "_objFlags": 0,
  2654. "_parent": {
  2655. "__id__": 57
  2656. },
  2657. "_children": [
  2658. {
  2659. "__id__": 65
  2660. },
  2661. {
  2662. "__id__": 68
  2663. }
  2664. ],
  2665. "_active": true,
  2666. "_components": [
  2667. {
  2668. "__id__": 74
  2669. }
  2670. ],
  2671. "_prefab": {
  2672. "__id__": 75
  2673. },
  2674. "_opacity": 255,
  2675. "_color": {
  2676. "__type__": "cc.Color",
  2677. "r": 255,
  2678. "g": 255,
  2679. "b": 255,
  2680. "a": 255
  2681. },
  2682. "_contentSize": {
  2683. "__type__": "cc.Size",
  2684. "width": 380,
  2685. "height": 40
  2686. },
  2687. "_anchorPoint": {
  2688. "__type__": "cc.Vec2",
  2689. "x": 0.5,
  2690. "y": 0.5
  2691. },
  2692. "_trs": {
  2693. "__type__": "TypedArray",
  2694. "ctor": "Float64Array",
  2695. "array": [
  2696. 0,
  2697. -60,
  2698. 0,
  2699. 0,
  2700. 0,
  2701. 0,
  2702. 1,
  2703. 1,
  2704. 1,
  2705. 1
  2706. ]
  2707. },
  2708. "_eulerAngles": {
  2709. "__type__": "cc.Vec3",
  2710. "x": 0,
  2711. "y": 0,
  2712. "z": 0
  2713. },
  2714. "_skewX": 0,
  2715. "_skewY": 0,
  2716. "_is3DNode": false,
  2717. "_groupIndex": 0,
  2718. "groupIndex": 0,
  2719. "_id": ""
  2720. },
  2721. {
  2722. "__type__": "cc.Node",
  2723. "_name": "zdl",
  2724. "_objFlags": 0,
  2725. "_parent": {
  2726. "__id__": 64
  2727. },
  2728. "_children": [],
  2729. "_active": true,
  2730. "_components": [
  2731. {
  2732. "__id__": 66
  2733. }
  2734. ],
  2735. "_prefab": {
  2736. "__id__": 67
  2737. },
  2738. "_opacity": 255,
  2739. "_color": {
  2740. "__type__": "cc.Color",
  2741. "r": 255,
  2742. "g": 255,
  2743. "b": 255,
  2744. "a": 255
  2745. },
  2746. "_contentSize": {
  2747. "__type__": "cc.Size",
  2748. "width": 40,
  2749. "height": 25.2
  2750. },
  2751. "_anchorPoint": {
  2752. "__type__": "cc.Vec2",
  2753. "x": 0.5,
  2754. "y": 0.5
  2755. },
  2756. "_trs": {
  2757. "__type__": "TypedArray",
  2758. "ctor": "Float64Array",
  2759. "array": [
  2760. -108.062,
  2761. 0,
  2762. 0,
  2763. 0,
  2764. 0,
  2765. 0,
  2766. 1,
  2767. 1,
  2768. 1,
  2769. 1
  2770. ]
  2771. },
  2772. "_eulerAngles": {
  2773. "__type__": "cc.Vec3",
  2774. "x": 0,
  2775. "y": 0,
  2776. "z": 0
  2777. },
  2778. "_skewX": 0,
  2779. "_skewY": 0,
  2780. "_is3DNode": false,
  2781. "_groupIndex": 0,
  2782. "groupIndex": 0,
  2783. "_id": ""
  2784. },
  2785. {
  2786. "__type__": "cc.Label",
  2787. "_name": "",
  2788. "_objFlags": 0,
  2789. "node": {
  2790. "__id__": 65
  2791. },
  2792. "_enabled": true,
  2793. "_materials": [
  2794. {
  2795. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  2796. }
  2797. ],
  2798. "_srcBlendFactor": 770,
  2799. "_dstBlendFactor": 771,
  2800. "_string": "实力",
  2801. "_N$string": "实力",
  2802. "_fontSize": 20,
  2803. "_lineHeight": 0,
  2804. "_enableWrapText": true,
  2805. "_N$file": {
  2806. "__uuid__": "1cdb5762-18d1-4d60-a364-c717229e08e9"
  2807. },
  2808. "_isSystemFontUsed": false,
  2809. "_spacingX": 0,
  2810. "_batchAsBitmap": false,
  2811. "_styleFlags": 0,
  2812. "_underlineHeight": 0,
  2813. "_N$horizontalAlign": 1,
  2814. "_N$verticalAlign": 1,
  2815. "_N$fontFamily": "Arial",
  2816. "_N$overflow": 0,
  2817. "_N$cacheMode": 0,
  2818. "_id": ""
  2819. },
  2820. {
  2821. "__type__": "cc.PrefabInfo",
  2822. "root": {
  2823. "__id__": 1
  2824. },
  2825. "asset": {
  2826. "__uuid__": "bead7d61-9e8e-4421-a54e-e260b141d73e"
  2827. },
  2828. "fileId": "cdBC1KT6tNe6YlX06pXepN",
  2829. "sync": false
  2830. },
  2831. {
  2832. "__type__": "cc.Node",
  2833. "_name": "New Sprite",
  2834. "_objFlags": 0,
  2835. "_parent": {
  2836. "__id__": 64
  2837. },
  2838. "_children": [
  2839. {
  2840. "__id__": 69
  2841. }
  2842. ],
  2843. "_active": true,
  2844. "_components": [
  2845. {
  2846. "__id__": 72
  2847. }
  2848. ],
  2849. "_prefab": {
  2850. "__id__": 73
  2851. },
  2852. "_opacity": 255,
  2853. "_color": {
  2854. "__type__": "cc.Color",
  2855. "r": 255,
  2856. "g": 255,
  2857. "b": 255,
  2858. "a": 255
  2859. },
  2860. "_contentSize": {
  2861. "__type__": "cc.Size",
  2862. "width": 18,
  2863. "height": 21
  2864. },
  2865. "_anchorPoint": {
  2866. "__type__": "cc.Vec2",
  2867. "x": 0.5,
  2868. "y": 0.5
  2869. },
  2870. "_trs": {
  2871. "__type__": "TypedArray",
  2872. "ctor": "Float64Array",
  2873. "array": [
  2874. -148.039,
  2875. 0,
  2876. 0,
  2877. 0,
  2878. 0,
  2879. 0,
  2880. 1,
  2881. 1,
  2882. 1,
  2883. 1
  2884. ]
  2885. },
  2886. "_eulerAngles": {
  2887. "__type__": "cc.Vec3",
  2888. "x": 0,
  2889. "y": 0,
  2890. "z": 0
  2891. },
  2892. "_skewX": 0,
  2893. "_skewY": 0,
  2894. "_is3DNode": false,
  2895. "_groupIndex": 0,
  2896. "groupIndex": 0,
  2897. "_id": ""
  2898. },
  2899. {
  2900. "__type__": "cc.Node",
  2901. "_name": "zdl",
  2902. "_objFlags": 0,
  2903. "_parent": {
  2904. "__id__": 68
  2905. },
  2906. "_children": [],
  2907. "_active": true,
  2908. "_components": [
  2909. {
  2910. "__id__": 70
  2911. }
  2912. ],
  2913. "_prefab": {
  2914. "__id__": 71
  2915. },
  2916. "_opacity": 255,
  2917. "_color": {
  2918. "__type__": "cc.Color",
  2919. "r": 0,
  2920. "g": 83,
  2921. "b": 0,
  2922. "a": 255
  2923. },
  2924. "_contentSize": {
  2925. "__type__": "cc.Size",
  2926. "width": 11.41,
  2927. "height": 25.2
  2928. },
  2929. "_anchorPoint": {
  2930. "__type__": "cc.Vec2",
  2931. "x": 0.5,
  2932. "y": 0.5
  2933. },
  2934. "_trs": {
  2935. "__type__": "TypedArray",
  2936. "ctor": "Float64Array",
  2937. "array": [
  2938. 220.056,
  2939. 0,
  2940. 0,
  2941. 0,
  2942. 0,
  2943. 0,
  2944. 1,
  2945. 1,
  2946. 1,
  2947. 1
  2948. ]
  2949. },
  2950. "_eulerAngles": {
  2951. "__type__": "cc.Vec3",
  2952. "x": 0,
  2953. "y": 0,
  2954. "z": 0
  2955. },
  2956. "_skewX": 0,
  2957. "_skewY": 0,
  2958. "_is3DNode": false,
  2959. "_groupIndex": 0,
  2960. "groupIndex": 0,
  2961. "_id": ""
  2962. },
  2963. {
  2964. "__type__": "cc.Label",
  2965. "_name": "",
  2966. "_objFlags": 0,
  2967. "node": {
  2968. "__id__": 69
  2969. },
  2970. "_enabled": true,
  2971. "_materials": [
  2972. {
  2973. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  2974. }
  2975. ],
  2976. "_srcBlendFactor": 770,
  2977. "_dstBlendFactor": 771,
  2978. "_string": "0",
  2979. "_N$string": "0",
  2980. "_fontSize": 20,
  2981. "_lineHeight": 0,
  2982. "_enableWrapText": true,
  2983. "_N$file": {
  2984. "__uuid__": "ab4a312d-4aea-4102-b816-a39640555ef4"
  2985. },
  2986. "_isSystemFontUsed": false,
  2987. "_spacingX": 0,
  2988. "_batchAsBitmap": false,
  2989. "_styleFlags": 0,
  2990. "_underlineHeight": 0,
  2991. "_N$horizontalAlign": 1,
  2992. "_N$verticalAlign": 1,
  2993. "_N$fontFamily": "Arial",
  2994. "_N$overflow": 0,
  2995. "_N$cacheMode": 0,
  2996. "_id": ""
  2997. },
  2998. {
  2999. "__type__": "cc.PrefabInfo",
  3000. "root": {
  3001. "__id__": 1
  3002. },
  3003. "asset": {
  3004. "__uuid__": "bead7d61-9e8e-4421-a54e-e260b141d73e"
  3005. },
  3006. "fileId": "4fID36seFCVoUvC45j6uvk",
  3007. "sync": false
  3008. },
  3009. {
  3010. "__type__": "cc.Sprite",
  3011. "_name": "",
  3012. "_objFlags": 0,
  3013. "node": {
  3014. "__id__": 68
  3015. },
  3016. "_enabled": true,
  3017. "_materials": [
  3018. {
  3019. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  3020. }
  3021. ],
  3022. "_srcBlendFactor": 770,
  3023. "_dstBlendFactor": 771,
  3024. "_spriteFrame": {
  3025. "__uuid__": "c0e5201d-1f17-421b-bcd4-0f51482ca6bd"
  3026. },
  3027. "_type": 0,
  3028. "_sizeMode": 0,
  3029. "_fillType": 0,
  3030. "_fillCenter": {
  3031. "__type__": "cc.Vec2",
  3032. "x": 0,
  3033. "y": 0
  3034. },
  3035. "_fillStart": 0,
  3036. "_fillRange": 0,
  3037. "_isTrimmedMode": true,
  3038. "_atlas": null,
  3039. "_id": ""
  3040. },
  3041. {
  3042. "__type__": "cc.PrefabInfo",
  3043. "root": {
  3044. "__id__": 1
  3045. },
  3046. "asset": {
  3047. "__uuid__": "bead7d61-9e8e-4421-a54e-e260b141d73e"
  3048. },
  3049. "fileId": "9alrKonDtPcpsSUABFZgyV",
  3050. "sync": false
  3051. },
  3052. {
  3053. "__type__": "cc.Sprite",
  3054. "_name": "",
  3055. "_objFlags": 0,
  3056. "node": {
  3057. "__id__": 64
  3058. },
  3059. "_enabled": true,
  3060. "_materials": [
  3061. {
  3062. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  3063. }
  3064. ],
  3065. "_srcBlendFactor": 770,
  3066. "_dstBlendFactor": 771,
  3067. "_spriteFrame": {
  3068. "__uuid__": "a6348c18-b6ec-49e7-b158-1e09dcc9c6e2"
  3069. },
  3070. "_type": 1,
  3071. "_sizeMode": 0,
  3072. "_fillType": 0,
  3073. "_fillCenter": {
  3074. "__type__": "cc.Vec2",
  3075. "x": 0,
  3076. "y": 0
  3077. },
  3078. "_fillStart": 0,
  3079. "_fillRange": 0,
  3080. "_isTrimmedMode": true,
  3081. "_atlas": null,
  3082. "_id": ""
  3083. },
  3084. {
  3085. "__type__": "cc.PrefabInfo",
  3086. "root": {
  3087. "__id__": 1
  3088. },
  3089. "asset": {
  3090. "__uuid__": "bead7d61-9e8e-4421-a54e-e260b141d73e"
  3091. },
  3092. "fileId": "50v9iEnwJD5KnjZD3zL5rg",
  3093. "sync": false
  3094. },
  3095. {
  3096. "__type__": "cc.Node",
  3097. "_name": "1",
  3098. "_objFlags": 0,
  3099. "_parent": {
  3100. "__id__": 57
  3101. },
  3102. "_children": [
  3103. {
  3104. "__id__": 77
  3105. },
  3106. {
  3107. "__id__": 83
  3108. }
  3109. ],
  3110. "_active": true,
  3111. "_components": [
  3112. {
  3113. "__id__": 86
  3114. }
  3115. ],
  3116. "_prefab": {
  3117. "__id__": 87
  3118. },
  3119. "_opacity": 255,
  3120. "_color": {
  3121. "__type__": "cc.Color",
  3122. "r": 255,
  3123. "g": 255,
  3124. "b": 255,
  3125. "a": 255
  3126. },
  3127. "_contentSize": {
  3128. "__type__": "cc.Size",
  3129. "width": 380,
  3130. "height": 40
  3131. },
  3132. "_anchorPoint": {
  3133. "__type__": "cc.Vec2",
  3134. "x": 0.5,
  3135. "y": 0.5
  3136. },
  3137. "_trs": {
  3138. "__type__": "TypedArray",
  3139. "ctor": "Float64Array",
  3140. "array": [
  3141. 0,
  3142. -105,
  3143. 0,
  3144. 0,
  3145. 0,
  3146. 0,
  3147. 1,
  3148. 1,
  3149. 1,
  3150. 1
  3151. ]
  3152. },
  3153. "_eulerAngles": {
  3154. "__type__": "cc.Vec3",
  3155. "x": 0,
  3156. "y": 0,
  3157. "z": 0
  3158. },
  3159. "_skewX": 0,
  3160. "_skewY": 0,
  3161. "_is3DNode": false,
  3162. "_groupIndex": 0,
  3163. "groupIndex": 0,
  3164. "_id": ""
  3165. },
  3166. {
  3167. "__type__": "cc.Node",
  3168. "_name": "New Sprite",
  3169. "_objFlags": 0,
  3170. "_parent": {
  3171. "__id__": 76
  3172. },
  3173. "_children": [
  3174. {
  3175. "__id__": 78
  3176. }
  3177. ],
  3178. "_active": true,
  3179. "_components": [
  3180. {
  3181. "__id__": 81
  3182. }
  3183. ],
  3184. "_prefab": {
  3185. "__id__": 82
  3186. },
  3187. "_opacity": 255,
  3188. "_color": {
  3189. "__type__": "cc.Color",
  3190. "r": 255,
  3191. "g": 255,
  3192. "b": 255,
  3193. "a": 255
  3194. },
  3195. "_contentSize": {
  3196. "__type__": "cc.Size",
  3197. "width": 26,
  3198. "height": 26
  3199. },
  3200. "_anchorPoint": {
  3201. "__type__": "cc.Vec2",
  3202. "x": 0.5,
  3203. "y": 0.5
  3204. },
  3205. "_trs": {
  3206. "__type__": "TypedArray",
  3207. "ctor": "Float64Array",
  3208. "array": [
  3209. -147,
  3210. 0,
  3211. 0,
  3212. 0,
  3213. 0,
  3214. 0,
  3215. 1,
  3216. 1,
  3217. 1,
  3218. 1
  3219. ]
  3220. },
  3221. "_eulerAngles": {
  3222. "__type__": "cc.Vec3",
  3223. "x": 0,
  3224. "y": 0,
  3225. "z": 0
  3226. },
  3227. "_skewX": 0,
  3228. "_skewY": 0,
  3229. "_is3DNode": false,
  3230. "_groupIndex": 0,
  3231. "groupIndex": 0,
  3232. "_id": ""
  3233. },
  3234. {
  3235. "__type__": "cc.Node",
  3236. "_name": "value",
  3237. "_objFlags": 0,
  3238. "_parent": {
  3239. "__id__": 77
  3240. },
  3241. "_children": [],
  3242. "_active": true,
  3243. "_components": [
  3244. {
  3245. "__id__": 79
  3246. }
  3247. ],
  3248. "_prefab": {
  3249. "__id__": 80
  3250. },
  3251. "_opacity": 255,
  3252. "_color": {
  3253. "__type__": "cc.Color",
  3254. "r": 75,
  3255. "g": 43,
  3256. "b": 0,
  3257. "a": 255
  3258. },
  3259. "_contentSize": {
  3260. "__type__": "cc.Size",
  3261. "width": 11.41,
  3262. "height": 25.2
  3263. },
  3264. "_anchorPoint": {
  3265. "__type__": "cc.Vec2",
  3266. "x": 0.5,
  3267. "y": 0.5
  3268. },
  3269. "_trs": {
  3270. "__type__": "TypedArray",
  3271. "ctor": "Float64Array",
  3272. "array": [
  3273. 220.056,
  3274. 0,
  3275. 0,
  3276. 0,
  3277. 0,
  3278. 0,
  3279. 1,
  3280. 1,
  3281. 1,
  3282. 1
  3283. ]
  3284. },
  3285. "_eulerAngles": {
  3286. "__type__": "cc.Vec3",
  3287. "x": 0,
  3288. "y": 0,
  3289. "z": 0
  3290. },
  3291. "_skewX": 0,
  3292. "_skewY": 0,
  3293. "_is3DNode": false,
  3294. "_groupIndex": 0,
  3295. "groupIndex": 0,
  3296. "_id": ""
  3297. },
  3298. {
  3299. "__type__": "cc.Label",
  3300. "_name": "",
  3301. "_objFlags": 0,
  3302. "node": {
  3303. "__id__": 78
  3304. },
  3305. "_enabled": true,
  3306. "_materials": [
  3307. {
  3308. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  3309. }
  3310. ],
  3311. "_srcBlendFactor": 770,
  3312. "_dstBlendFactor": 771,
  3313. "_string": "0",
  3314. "_N$string": "0",
  3315. "_fontSize": 20,
  3316. "_lineHeight": 0,
  3317. "_enableWrapText": true,
  3318. "_N$file": {
  3319. "__uuid__": "ab4a312d-4aea-4102-b816-a39640555ef4"
  3320. },
  3321. "_isSystemFontUsed": false,
  3322. "_spacingX": 0,
  3323. "_batchAsBitmap": false,
  3324. "_styleFlags": 0,
  3325. "_underlineHeight": 0,
  3326. "_N$horizontalAlign": 1,
  3327. "_N$verticalAlign": 1,
  3328. "_N$fontFamily": "Arial",
  3329. "_N$overflow": 0,
  3330. "_N$cacheMode": 0,
  3331. "_id": ""
  3332. },
  3333. {
  3334. "__type__": "cc.PrefabInfo",
  3335. "root": {
  3336. "__id__": 1
  3337. },
  3338. "asset": {
  3339. "__uuid__": "bead7d61-9e8e-4421-a54e-e260b141d73e"
  3340. },
  3341. "fileId": "9fAWd+ZY1MV5kOEW7/02Y/",
  3342. "sync": false
  3343. },
  3344. {
  3345. "__type__": "cc.Sprite",
  3346. "_name": "",
  3347. "_objFlags": 0,
  3348. "node": {
  3349. "__id__": 77
  3350. },
  3351. "_enabled": true,
  3352. "_materials": [
  3353. {
  3354. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  3355. }
  3356. ],
  3357. "_srcBlendFactor": 770,
  3358. "_dstBlendFactor": 771,
  3359. "_spriteFrame": {
  3360. "__uuid__": "134ec7bc-c1fc-4345-a699-65c21d87046d"
  3361. },
  3362. "_type": 0,
  3363. "_sizeMode": 0,
  3364. "_fillType": 0,
  3365. "_fillCenter": {
  3366. "__type__": "cc.Vec2",
  3367. "x": 0,
  3368. "y": 0
  3369. },
  3370. "_fillStart": 0,
  3371. "_fillRange": 0,
  3372. "_isTrimmedMode": true,
  3373. "_atlas": null,
  3374. "_id": ""
  3375. },
  3376. {
  3377. "__type__": "cc.PrefabInfo",
  3378. "root": {
  3379. "__id__": 1
  3380. },
  3381. "asset": {
  3382. "__uuid__": "bead7d61-9e8e-4421-a54e-e260b141d73e"
  3383. },
  3384. "fileId": "73g0vlHCZIYbWLhbL+Odd2",
  3385. "sync": false
  3386. },
  3387. {
  3388. "__type__": "cc.Node",
  3389. "_name": "zdl",
  3390. "_objFlags": 0,
  3391. "_parent": {
  3392. "__id__": 76
  3393. },
  3394. "_children": [],
  3395. "_active": true,
  3396. "_components": [
  3397. {
  3398. "__id__": 84
  3399. }
  3400. ],
  3401. "_prefab": {
  3402. "__id__": 85
  3403. },
  3404. "_opacity": 255,
  3405. "_color": {
  3406. "__type__": "cc.Color",
  3407. "r": 255,
  3408. "g": 255,
  3409. "b": 255,
  3410. "a": 255
  3411. },
  3412. "_contentSize": {
  3413. "__type__": "cc.Size",
  3414. "width": 40,
  3415. "height": 25.2
  3416. },
  3417. "_anchorPoint": {
  3418. "__type__": "cc.Vec2",
  3419. "x": 0.5,
  3420. "y": 0.5
  3421. },
  3422. "_trs": {
  3423. "__type__": "TypedArray",
  3424. "ctor": "Float64Array",
  3425. "array": [
  3426. -107.023,
  3427. 0,
  3428. 0,
  3429. 0,
  3430. 0,
  3431. 0,
  3432. 1,
  3433. 1,
  3434. 1,
  3435. 1
  3436. ]
  3437. },
  3438. "_eulerAngles": {
  3439. "__type__": "cc.Vec3",
  3440. "x": 0,
  3441. "y": 0,
  3442. "z": 0
  3443. },
  3444. "_skewX": 0,
  3445. "_skewY": 0,
  3446. "_is3DNode": false,
  3447. "_groupIndex": 0,
  3448. "groupIndex": 0,
  3449. "_id": ""
  3450. },
  3451. {
  3452. "__type__": "cc.Label",
  3453. "_name": "",
  3454. "_objFlags": 0,
  3455. "node": {
  3456. "__id__": 83
  3457. },
  3458. "_enabled": true,
  3459. "_materials": [
  3460. {
  3461. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  3462. }
  3463. ],
  3464. "_srcBlendFactor": 770,
  3465. "_dstBlendFactor": 771,
  3466. "_string": "攻击",
  3467. "_N$string": "攻击",
  3468. "_fontSize": 20,
  3469. "_lineHeight": 0,
  3470. "_enableWrapText": true,
  3471. "_N$file": {
  3472. "__uuid__": "1cdb5762-18d1-4d60-a364-c717229e08e9"
  3473. },
  3474. "_isSystemFontUsed": false,
  3475. "_spacingX": 0,
  3476. "_batchAsBitmap": false,
  3477. "_styleFlags": 0,
  3478. "_underlineHeight": 0,
  3479. "_N$horizontalAlign": 1,
  3480. "_N$verticalAlign": 1,
  3481. "_N$fontFamily": "Arial",
  3482. "_N$overflow": 0,
  3483. "_N$cacheMode": 0,
  3484. "_id": ""
  3485. },
  3486. {
  3487. "__type__": "cc.PrefabInfo",
  3488. "root": {
  3489. "__id__": 1
  3490. },
  3491. "asset": {
  3492. "__uuid__": "bead7d61-9e8e-4421-a54e-e260b141d73e"
  3493. },
  3494. "fileId": "0eV8FtSjdNsKwhWuGJWq9U",
  3495. "sync": false
  3496. },
  3497. {
  3498. "__type__": "cc.Sprite",
  3499. "_name": "",
  3500. "_objFlags": 0,
  3501. "node": {
  3502. "__id__": 76
  3503. },
  3504. "_enabled": true,
  3505. "_materials": [
  3506. {
  3507. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  3508. }
  3509. ],
  3510. "_srcBlendFactor": 770,
  3511. "_dstBlendFactor": 771,
  3512. "_spriteFrame": {
  3513. "__uuid__": "a6348c18-b6ec-49e7-b158-1e09dcc9c6e2"
  3514. },
  3515. "_type": 1,
  3516. "_sizeMode": 0,
  3517. "_fillType": 0,
  3518. "_fillCenter": {
  3519. "__type__": "cc.Vec2",
  3520. "x": 0,
  3521. "y": 0
  3522. },
  3523. "_fillStart": 0,
  3524. "_fillRange": 0,
  3525. "_isTrimmedMode": true,
  3526. "_atlas": null,
  3527. "_id": ""
  3528. },
  3529. {
  3530. "__type__": "cc.PrefabInfo",
  3531. "root": {
  3532. "__id__": 1
  3533. },
  3534. "asset": {
  3535. "__uuid__": "bead7d61-9e8e-4421-a54e-e260b141d73e"
  3536. },
  3537. "fileId": "066nq6eX1Fcat7APb/IEbp",
  3538. "sync": false
  3539. },
  3540. {
  3541. "__type__": "cc.Node",
  3542. "_name": "2",
  3543. "_objFlags": 0,
  3544. "_parent": {
  3545. "__id__": 57
  3546. },
  3547. "_children": [
  3548. {
  3549. "__id__": 89
  3550. },
  3551. {
  3552. "__id__": 95
  3553. }
  3554. ],
  3555. "_active": true,
  3556. "_components": [
  3557. {
  3558. "__id__": 98
  3559. }
  3560. ],
  3561. "_prefab": {
  3562. "__id__": 99
  3563. },
  3564. "_opacity": 255,
  3565. "_color": {
  3566. "__type__": "cc.Color",
  3567. "r": 255,
  3568. "g": 255,
  3569. "b": 255,
  3570. "a": 255
  3571. },
  3572. "_contentSize": {
  3573. "__type__": "cc.Size",
  3574. "width": 380,
  3575. "height": 40
  3576. },
  3577. "_anchorPoint": {
  3578. "__type__": "cc.Vec2",
  3579. "x": 0.5,
  3580. "y": 0.5
  3581. },
  3582. "_trs": {
  3583. "__type__": "TypedArray",
  3584. "ctor": "Float64Array",
  3585. "array": [
  3586. 0,
  3587. -150,
  3588. 0,
  3589. 0,
  3590. 0,
  3591. 0,
  3592. 1,
  3593. 1,
  3594. 1,
  3595. 1
  3596. ]
  3597. },
  3598. "_eulerAngles": {
  3599. "__type__": "cc.Vec3",
  3600. "x": 0,
  3601. "y": 0,
  3602. "z": 0
  3603. },
  3604. "_skewX": 0,
  3605. "_skewY": 0,
  3606. "_is3DNode": false,
  3607. "_groupIndex": 0,
  3608. "groupIndex": 0,
  3609. "_id": ""
  3610. },
  3611. {
  3612. "__type__": "cc.Node",
  3613. "_name": "New Sprite",
  3614. "_objFlags": 0,
  3615. "_parent": {
  3616. "__id__": 88
  3617. },
  3618. "_children": [
  3619. {
  3620. "__id__": 90
  3621. }
  3622. ],
  3623. "_active": true,
  3624. "_components": [
  3625. {
  3626. "__id__": 93
  3627. }
  3628. ],
  3629. "_prefab": {
  3630. "__id__": 94
  3631. },
  3632. "_opacity": 255,
  3633. "_color": {
  3634. "__type__": "cc.Color",
  3635. "r": 255,
  3636. "g": 255,
  3637. "b": 255,
  3638. "a": 255
  3639. },
  3640. "_contentSize": {
  3641. "__type__": "cc.Size",
  3642. "width": 22,
  3643. "height": 26
  3644. },
  3645. "_anchorPoint": {
  3646. "__type__": "cc.Vec2",
  3647. "x": 0.5,
  3648. "y": 0.5
  3649. },
  3650. "_trs": {
  3651. "__type__": "TypedArray",
  3652. "ctor": "Float64Array",
  3653. "array": [
  3654. -147,
  3655. 0,
  3656. 0,
  3657. 0,
  3658. 0,
  3659. 0,
  3660. 1,
  3661. 1,
  3662. 1,
  3663. 1
  3664. ]
  3665. },
  3666. "_eulerAngles": {
  3667. "__type__": "cc.Vec3",
  3668. "x": 0,
  3669. "y": 0,
  3670. "z": 0
  3671. },
  3672. "_skewX": 0,
  3673. "_skewY": 0,
  3674. "_is3DNode": false,
  3675. "_groupIndex": 0,
  3676. "groupIndex": 0,
  3677. "_id": ""
  3678. },
  3679. {
  3680. "__type__": "cc.Node",
  3681. "_name": "value",
  3682. "_objFlags": 0,
  3683. "_parent": {
  3684. "__id__": 89
  3685. },
  3686. "_children": [],
  3687. "_active": true,
  3688. "_components": [
  3689. {
  3690. "__id__": 91
  3691. }
  3692. ],
  3693. "_prefab": {
  3694. "__id__": 92
  3695. },
  3696. "_opacity": 255,
  3697. "_color": {
  3698. "__type__": "cc.Color",
  3699. "r": 75,
  3700. "g": 43,
  3701. "b": 0,
  3702. "a": 255
  3703. },
  3704. "_contentSize": {
  3705. "__type__": "cc.Size",
  3706. "width": 11.41,
  3707. "height": 25.2
  3708. },
  3709. "_anchorPoint": {
  3710. "__type__": "cc.Vec2",
  3711. "x": 0.5,
  3712. "y": 0.5
  3713. },
  3714. "_trs": {
  3715. "__type__": "TypedArray",
  3716. "ctor": "Float64Array",
  3717. "array": [
  3718. 220.056,
  3719. 0,
  3720. 0,
  3721. 0,
  3722. 0,
  3723. 0,
  3724. 1,
  3725. 1,
  3726. 1,
  3727. 1
  3728. ]
  3729. },
  3730. "_eulerAngles": {
  3731. "__type__": "cc.Vec3",
  3732. "x": 0,
  3733. "y": 0,
  3734. "z": 0
  3735. },
  3736. "_skewX": 0,
  3737. "_skewY": 0,
  3738. "_is3DNode": false,
  3739. "_groupIndex": 0,
  3740. "groupIndex": 0,
  3741. "_id": ""
  3742. },
  3743. {
  3744. "__type__": "cc.Label",
  3745. "_name": "",
  3746. "_objFlags": 0,
  3747. "node": {
  3748. "__id__": 90
  3749. },
  3750. "_enabled": true,
  3751. "_materials": [
  3752. {
  3753. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  3754. }
  3755. ],
  3756. "_srcBlendFactor": 770,
  3757. "_dstBlendFactor": 771,
  3758. "_string": "0",
  3759. "_N$string": "0",
  3760. "_fontSize": 20,
  3761. "_lineHeight": 0,
  3762. "_enableWrapText": true,
  3763. "_N$file": {
  3764. "__uuid__": "ab4a312d-4aea-4102-b816-a39640555ef4"
  3765. },
  3766. "_isSystemFontUsed": false,
  3767. "_spacingX": 0,
  3768. "_batchAsBitmap": false,
  3769. "_styleFlags": 0,
  3770. "_underlineHeight": 0,
  3771. "_N$horizontalAlign": 1,
  3772. "_N$verticalAlign": 1,
  3773. "_N$fontFamily": "Arial",
  3774. "_N$overflow": 0,
  3775. "_N$cacheMode": 0,
  3776. "_id": ""
  3777. },
  3778. {
  3779. "__type__": "cc.PrefabInfo",
  3780. "root": {
  3781. "__id__": 1
  3782. },
  3783. "asset": {
  3784. "__uuid__": "bead7d61-9e8e-4421-a54e-e260b141d73e"
  3785. },
  3786. "fileId": "2765NCVZlDkqk8i8qFF4H6",
  3787. "sync": false
  3788. },
  3789. {
  3790. "__type__": "cc.Sprite",
  3791. "_name": "",
  3792. "_objFlags": 0,
  3793. "node": {
  3794. "__id__": 89
  3795. },
  3796. "_enabled": true,
  3797. "_materials": [
  3798. {
  3799. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  3800. }
  3801. ],
  3802. "_srcBlendFactor": 770,
  3803. "_dstBlendFactor": 771,
  3804. "_spriteFrame": {
  3805. "__uuid__": "913b395b-9326-4237-859a-b0a4b221f37b"
  3806. },
  3807. "_type": 0,
  3808. "_sizeMode": 0,
  3809. "_fillType": 0,
  3810. "_fillCenter": {
  3811. "__type__": "cc.Vec2",
  3812. "x": 0,
  3813. "y": 0
  3814. },
  3815. "_fillStart": 0,
  3816. "_fillRange": 0,
  3817. "_isTrimmedMode": true,
  3818. "_atlas": null,
  3819. "_id": ""
  3820. },
  3821. {
  3822. "__type__": "cc.PrefabInfo",
  3823. "root": {
  3824. "__id__": 1
  3825. },
  3826. "asset": {
  3827. "__uuid__": "bead7d61-9e8e-4421-a54e-e260b141d73e"
  3828. },
  3829. "fileId": "d6mRdduq5GrZz/fZBk2Q9H",
  3830. "sync": false
  3831. },
  3832. {
  3833. "__type__": "cc.Node",
  3834. "_name": "zdl",
  3835. "_objFlags": 0,
  3836. "_parent": {
  3837. "__id__": 88
  3838. },
  3839. "_children": [],
  3840. "_active": true,
  3841. "_components": [
  3842. {
  3843. "__id__": 96
  3844. }
  3845. ],
  3846. "_prefab": {
  3847. "__id__": 97
  3848. },
  3849. "_opacity": 255,
  3850. "_color": {
  3851. "__type__": "cc.Color",
  3852. "r": 255,
  3853. "g": 255,
  3854. "b": 255,
  3855. "a": 255
  3856. },
  3857. "_contentSize": {
  3858. "__type__": "cc.Size",
  3859. "width": 40,
  3860. "height": 25.2
  3861. },
  3862. "_anchorPoint": {
  3863. "__type__": "cc.Vec2",
  3864. "x": 0.5,
  3865. "y": 0.5
  3866. },
  3867. "_trs": {
  3868. "__type__": "TypedArray",
  3869. "ctor": "Float64Array",
  3870. "array": [
  3871. -107.023,
  3872. 0,
  3873. 0,
  3874. 0,
  3875. 0,
  3876. 0,
  3877. 1,
  3878. 1,
  3879. 1,
  3880. 1
  3881. ]
  3882. },
  3883. "_eulerAngles": {
  3884. "__type__": "cc.Vec3",
  3885. "x": 0,
  3886. "y": 0,
  3887. "z": 0
  3888. },
  3889. "_skewX": 0,
  3890. "_skewY": 0,
  3891. "_is3DNode": false,
  3892. "_groupIndex": 0,
  3893. "groupIndex": 0,
  3894. "_id": ""
  3895. },
  3896. {
  3897. "__type__": "cc.Label",
  3898. "_name": "",
  3899. "_objFlags": 0,
  3900. "node": {
  3901. "__id__": 95
  3902. },
  3903. "_enabled": true,
  3904. "_materials": [
  3905. {
  3906. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  3907. }
  3908. ],
  3909. "_srcBlendFactor": 770,
  3910. "_dstBlendFactor": 771,
  3911. "_string": "防御",
  3912. "_N$string": "防御",
  3913. "_fontSize": 20,
  3914. "_lineHeight": 0,
  3915. "_enableWrapText": true,
  3916. "_N$file": {
  3917. "__uuid__": "1cdb5762-18d1-4d60-a364-c717229e08e9"
  3918. },
  3919. "_isSystemFontUsed": false,
  3920. "_spacingX": 0,
  3921. "_batchAsBitmap": false,
  3922. "_styleFlags": 0,
  3923. "_underlineHeight": 0,
  3924. "_N$horizontalAlign": 1,
  3925. "_N$verticalAlign": 1,
  3926. "_N$fontFamily": "Arial",
  3927. "_N$overflow": 0,
  3928. "_N$cacheMode": 0,
  3929. "_id": ""
  3930. },
  3931. {
  3932. "__type__": "cc.PrefabInfo",
  3933. "root": {
  3934. "__id__": 1
  3935. },
  3936. "asset": {
  3937. "__uuid__": "bead7d61-9e8e-4421-a54e-e260b141d73e"
  3938. },
  3939. "fileId": "72ERJfkJtIg4JIqwS+N3ea",
  3940. "sync": false
  3941. },
  3942. {
  3943. "__type__": "cc.Sprite",
  3944. "_name": "",
  3945. "_objFlags": 0,
  3946. "node": {
  3947. "__id__": 88
  3948. },
  3949. "_enabled": true,
  3950. "_materials": [
  3951. {
  3952. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  3953. }
  3954. ],
  3955. "_srcBlendFactor": 770,
  3956. "_dstBlendFactor": 771,
  3957. "_spriteFrame": {
  3958. "__uuid__": "a6348c18-b6ec-49e7-b158-1e09dcc9c6e2"
  3959. },
  3960. "_type": 1,
  3961. "_sizeMode": 0,
  3962. "_fillType": 0,
  3963. "_fillCenter": {
  3964. "__type__": "cc.Vec2",
  3965. "x": 0,
  3966. "y": 0
  3967. },
  3968. "_fillStart": 0,
  3969. "_fillRange": 0,
  3970. "_isTrimmedMode": true,
  3971. "_atlas": null,
  3972. "_id": ""
  3973. },
  3974. {
  3975. "__type__": "cc.PrefabInfo",
  3976. "root": {
  3977. "__id__": 1
  3978. },
  3979. "asset": {
  3980. "__uuid__": "bead7d61-9e8e-4421-a54e-e260b141d73e"
  3981. },
  3982. "fileId": "8aySkzUMFGOqYeGzyuDKm+",
  3983. "sync": false
  3984. },
  3985. {
  3986. "__type__": "cc.Node",
  3987. "_name": "3",
  3988. "_objFlags": 0,
  3989. "_parent": {
  3990. "__id__": 57
  3991. },
  3992. "_children": [
  3993. {
  3994. "__id__": 101
  3995. },
  3996. {
  3997. "__id__": 107
  3998. }
  3999. ],
  4000. "_active": true,
  4001. "_components": [
  4002. {
  4003. "__id__": 110
  4004. }
  4005. ],
  4006. "_prefab": {
  4007. "__id__": 111
  4008. },
  4009. "_opacity": 255,
  4010. "_color": {
  4011. "__type__": "cc.Color",
  4012. "r": 255,
  4013. "g": 255,
  4014. "b": 255,
  4015. "a": 255
  4016. },
  4017. "_contentSize": {
  4018. "__type__": "cc.Size",
  4019. "width": 380,
  4020. "height": 40
  4021. },
  4022. "_anchorPoint": {
  4023. "__type__": "cc.Vec2",
  4024. "x": 0.5,
  4025. "y": 0.5
  4026. },
  4027. "_trs": {
  4028. "__type__": "TypedArray",
  4029. "ctor": "Float64Array",
  4030. "array": [
  4031. 0,
  4032. -195,
  4033. 0,
  4034. 0,
  4035. 0,
  4036. 0,
  4037. 1,
  4038. 1,
  4039. 1,
  4040. 1
  4041. ]
  4042. },
  4043. "_eulerAngles": {
  4044. "__type__": "cc.Vec3",
  4045. "x": 0,
  4046. "y": 0,
  4047. "z": 0
  4048. },
  4049. "_skewX": 0,
  4050. "_skewY": 0,
  4051. "_is3DNode": false,
  4052. "_groupIndex": 0,
  4053. "groupIndex": 0,
  4054. "_id": ""
  4055. },
  4056. {
  4057. "__type__": "cc.Node",
  4058. "_name": "New Sprite",
  4059. "_objFlags": 0,
  4060. "_parent": {
  4061. "__id__": 100
  4062. },
  4063. "_children": [
  4064. {
  4065. "__id__": 102
  4066. }
  4067. ],
  4068. "_active": true,
  4069. "_components": [
  4070. {
  4071. "__id__": 105
  4072. }
  4073. ],
  4074. "_prefab": {
  4075. "__id__": 106
  4076. },
  4077. "_opacity": 255,
  4078. "_color": {
  4079. "__type__": "cc.Color",
  4080. "r": 255,
  4081. "g": 255,
  4082. "b": 255,
  4083. "a": 255
  4084. },
  4085. "_contentSize": {
  4086. "__type__": "cc.Size",
  4087. "width": 26,
  4088. "height": 24
  4089. },
  4090. "_anchorPoint": {
  4091. "__type__": "cc.Vec2",
  4092. "x": 0.5,
  4093. "y": 0.5
  4094. },
  4095. "_trs": {
  4096. "__type__": "TypedArray",
  4097. "ctor": "Float64Array",
  4098. "array": [
  4099. -147,
  4100. 0,
  4101. 0,
  4102. 0,
  4103. 0,
  4104. 0,
  4105. 1,
  4106. 1,
  4107. 1,
  4108. 1
  4109. ]
  4110. },
  4111. "_eulerAngles": {
  4112. "__type__": "cc.Vec3",
  4113. "x": 0,
  4114. "y": 0,
  4115. "z": 0
  4116. },
  4117. "_skewX": 0,
  4118. "_skewY": 0,
  4119. "_is3DNode": false,
  4120. "_groupIndex": 0,
  4121. "groupIndex": 0,
  4122. "_id": ""
  4123. },
  4124. {
  4125. "__type__": "cc.Node",
  4126. "_name": "value",
  4127. "_objFlags": 0,
  4128. "_parent": {
  4129. "__id__": 101
  4130. },
  4131. "_children": [],
  4132. "_active": true,
  4133. "_components": [
  4134. {
  4135. "__id__": 103
  4136. }
  4137. ],
  4138. "_prefab": {
  4139. "__id__": 104
  4140. },
  4141. "_opacity": 255,
  4142. "_color": {
  4143. "__type__": "cc.Color",
  4144. "r": 75,
  4145. "g": 43,
  4146. "b": 0,
  4147. "a": 255
  4148. },
  4149. "_contentSize": {
  4150. "__type__": "cc.Size",
  4151. "width": 11.41,
  4152. "height": 25.2
  4153. },
  4154. "_anchorPoint": {
  4155. "__type__": "cc.Vec2",
  4156. "x": 0.5,
  4157. "y": 0.5
  4158. },
  4159. "_trs": {
  4160. "__type__": "TypedArray",
  4161. "ctor": "Float64Array",
  4162. "array": [
  4163. 220.056,
  4164. 0,
  4165. 0,
  4166. 0,
  4167. 0,
  4168. 0,
  4169. 1,
  4170. 1,
  4171. 1,
  4172. 1
  4173. ]
  4174. },
  4175. "_eulerAngles": {
  4176. "__type__": "cc.Vec3",
  4177. "x": 0,
  4178. "y": 0,
  4179. "z": 0
  4180. },
  4181. "_skewX": 0,
  4182. "_skewY": 0,
  4183. "_is3DNode": false,
  4184. "_groupIndex": 0,
  4185. "groupIndex": 0,
  4186. "_id": ""
  4187. },
  4188. {
  4189. "__type__": "cc.Label",
  4190. "_name": "",
  4191. "_objFlags": 0,
  4192. "node": {
  4193. "__id__": 102
  4194. },
  4195. "_enabled": true,
  4196. "_materials": [
  4197. {
  4198. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  4199. }
  4200. ],
  4201. "_srcBlendFactor": 770,
  4202. "_dstBlendFactor": 771,
  4203. "_string": "0",
  4204. "_N$string": "0",
  4205. "_fontSize": 20,
  4206. "_lineHeight": 0,
  4207. "_enableWrapText": true,
  4208. "_N$file": {
  4209. "__uuid__": "ab4a312d-4aea-4102-b816-a39640555ef4"
  4210. },
  4211. "_isSystemFontUsed": false,
  4212. "_spacingX": 0,
  4213. "_batchAsBitmap": false,
  4214. "_styleFlags": 0,
  4215. "_underlineHeight": 0,
  4216. "_N$horizontalAlign": 1,
  4217. "_N$verticalAlign": 1,
  4218. "_N$fontFamily": "Arial",
  4219. "_N$overflow": 0,
  4220. "_N$cacheMode": 0,
  4221. "_id": ""
  4222. },
  4223. {
  4224. "__type__": "cc.PrefabInfo",
  4225. "root": {
  4226. "__id__": 1
  4227. },
  4228. "asset": {
  4229. "__uuid__": "bead7d61-9e8e-4421-a54e-e260b141d73e"
  4230. },
  4231. "fileId": "2az9bI2ZpCQILGpdw76P1H",
  4232. "sync": false
  4233. },
  4234. {
  4235. "__type__": "cc.Sprite",
  4236. "_name": "",
  4237. "_objFlags": 0,
  4238. "node": {
  4239. "__id__": 101
  4240. },
  4241. "_enabled": true,
  4242. "_materials": [
  4243. {
  4244. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  4245. }
  4246. ],
  4247. "_srcBlendFactor": 770,
  4248. "_dstBlendFactor": 771,
  4249. "_spriteFrame": {
  4250. "__uuid__": "2b879164-1ea6-47b4-aaa7-c9c98e2df1ce"
  4251. },
  4252. "_type": 0,
  4253. "_sizeMode": 0,
  4254. "_fillType": 0,
  4255. "_fillCenter": {
  4256. "__type__": "cc.Vec2",
  4257. "x": 0,
  4258. "y": 0
  4259. },
  4260. "_fillStart": 0,
  4261. "_fillRange": 0,
  4262. "_isTrimmedMode": true,
  4263. "_atlas": null,
  4264. "_id": ""
  4265. },
  4266. {
  4267. "__type__": "cc.PrefabInfo",
  4268. "root": {
  4269. "__id__": 1
  4270. },
  4271. "asset": {
  4272. "__uuid__": "bead7d61-9e8e-4421-a54e-e260b141d73e"
  4273. },
  4274. "fileId": "73vSWU02xMrqrzs2MloaWY",
  4275. "sync": false
  4276. },
  4277. {
  4278. "__type__": "cc.Node",
  4279. "_name": "zdl",
  4280. "_objFlags": 0,
  4281. "_parent": {
  4282. "__id__": 100
  4283. },
  4284. "_children": [],
  4285. "_active": true,
  4286. "_components": [
  4287. {
  4288. "__id__": 108
  4289. }
  4290. ],
  4291. "_prefab": {
  4292. "__id__": 109
  4293. },
  4294. "_opacity": 255,
  4295. "_color": {
  4296. "__type__": "cc.Color",
  4297. "r": 255,
  4298. "g": 255,
  4299. "b": 255,
  4300. "a": 255
  4301. },
  4302. "_contentSize": {
  4303. "__type__": "cc.Size",
  4304. "width": 40,
  4305. "height": 25.2
  4306. },
  4307. "_anchorPoint": {
  4308. "__type__": "cc.Vec2",
  4309. "x": 0.5,
  4310. "y": 0.5
  4311. },
  4312. "_trs": {
  4313. "__type__": "TypedArray",
  4314. "ctor": "Float64Array",
  4315. "array": [
  4316. -107.023,
  4317. 0,
  4318. 0,
  4319. 0,
  4320. 0,
  4321. 0,
  4322. 1,
  4323. 1,
  4324. 1,
  4325. 1
  4326. ]
  4327. },
  4328. "_eulerAngles": {
  4329. "__type__": "cc.Vec3",
  4330. "x": 0,
  4331. "y": 0,
  4332. "z": 0
  4333. },
  4334. "_skewX": 0,
  4335. "_skewY": 0,
  4336. "_is3DNode": false,
  4337. "_groupIndex": 0,
  4338. "groupIndex": 0,
  4339. "_id": ""
  4340. },
  4341. {
  4342. "__type__": "cc.Label",
  4343. "_name": "",
  4344. "_objFlags": 0,
  4345. "node": {
  4346. "__id__": 107
  4347. },
  4348. "_enabled": true,
  4349. "_materials": [
  4350. {
  4351. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  4352. }
  4353. ],
  4354. "_srcBlendFactor": 770,
  4355. "_dstBlendFactor": 771,
  4356. "_string": "生命",
  4357. "_N$string": "生命",
  4358. "_fontSize": 20,
  4359. "_lineHeight": 0,
  4360. "_enableWrapText": true,
  4361. "_N$file": {
  4362. "__uuid__": "1cdb5762-18d1-4d60-a364-c717229e08e9"
  4363. },
  4364. "_isSystemFontUsed": false,
  4365. "_spacingX": 0,
  4366. "_batchAsBitmap": false,
  4367. "_styleFlags": 0,
  4368. "_underlineHeight": 0,
  4369. "_N$horizontalAlign": 1,
  4370. "_N$verticalAlign": 1,
  4371. "_N$fontFamily": "Arial",
  4372. "_N$overflow": 0,
  4373. "_N$cacheMode": 0,
  4374. "_id": ""
  4375. },
  4376. {
  4377. "__type__": "cc.PrefabInfo",
  4378. "root": {
  4379. "__id__": 1
  4380. },
  4381. "asset": {
  4382. "__uuid__": "bead7d61-9e8e-4421-a54e-e260b141d73e"
  4383. },
  4384. "fileId": "2dQh1vAQFKipvvFDJFZ2z1",
  4385. "sync": false
  4386. },
  4387. {
  4388. "__type__": "cc.Sprite",
  4389. "_name": "",
  4390. "_objFlags": 0,
  4391. "node": {
  4392. "__id__": 100
  4393. },
  4394. "_enabled": true,
  4395. "_materials": [
  4396. {
  4397. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  4398. }
  4399. ],
  4400. "_srcBlendFactor": 770,
  4401. "_dstBlendFactor": 771,
  4402. "_spriteFrame": {
  4403. "__uuid__": "a6348c18-b6ec-49e7-b158-1e09dcc9c6e2"
  4404. },
  4405. "_type": 1,
  4406. "_sizeMode": 0,
  4407. "_fillType": 0,
  4408. "_fillCenter": {
  4409. "__type__": "cc.Vec2",
  4410. "x": 0,
  4411. "y": 0
  4412. },
  4413. "_fillStart": 0,
  4414. "_fillRange": 0,
  4415. "_isTrimmedMode": true,
  4416. "_atlas": null,
  4417. "_id": ""
  4418. },
  4419. {
  4420. "__type__": "cc.PrefabInfo",
  4421. "root": {
  4422. "__id__": 1
  4423. },
  4424. "asset": {
  4425. "__uuid__": "bead7d61-9e8e-4421-a54e-e260b141d73e"
  4426. },
  4427. "fileId": "c5JhTo7BRPBb98RAhxBsn7",
  4428. "sync": false
  4429. },
  4430. {
  4431. "__type__": "cc.Node",
  4432. "_name": "4",
  4433. "_objFlags": 0,
  4434. "_parent": {
  4435. "__id__": 57
  4436. },
  4437. "_children": [
  4438. {
  4439. "__id__": 113
  4440. },
  4441. {
  4442. "__id__": 119
  4443. }
  4444. ],
  4445. "_active": true,
  4446. "_components": [
  4447. {
  4448. "__id__": 122
  4449. }
  4450. ],
  4451. "_prefab": {
  4452. "__id__": 123
  4453. },
  4454. "_opacity": 255,
  4455. "_color": {
  4456. "__type__": "cc.Color",
  4457. "r": 255,
  4458. "g": 255,
  4459. "b": 255,
  4460. "a": 255
  4461. },
  4462. "_contentSize": {
  4463. "__type__": "cc.Size",
  4464. "width": 380,
  4465. "height": 40
  4466. },
  4467. "_anchorPoint": {
  4468. "__type__": "cc.Vec2",
  4469. "x": 0.5,
  4470. "y": 0.5
  4471. },
  4472. "_trs": {
  4473. "__type__": "TypedArray",
  4474. "ctor": "Float64Array",
  4475. "array": [
  4476. 0,
  4477. -240,
  4478. 0,
  4479. 0,
  4480. 0,
  4481. 0,
  4482. 1,
  4483. 1,
  4484. 1,
  4485. 1
  4486. ]
  4487. },
  4488. "_eulerAngles": {
  4489. "__type__": "cc.Vec3",
  4490. "x": 0,
  4491. "y": 0,
  4492. "z": 0
  4493. },
  4494. "_skewX": 0,
  4495. "_skewY": 0,
  4496. "_is3DNode": false,
  4497. "_groupIndex": 0,
  4498. "groupIndex": 0,
  4499. "_id": ""
  4500. },
  4501. {
  4502. "__type__": "cc.Node",
  4503. "_name": "New Sprite",
  4504. "_objFlags": 0,
  4505. "_parent": {
  4506. "__id__": 112
  4507. },
  4508. "_children": [
  4509. {
  4510. "__id__": 114
  4511. }
  4512. ],
  4513. "_active": true,
  4514. "_components": [
  4515. {
  4516. "__id__": 117
  4517. }
  4518. ],
  4519. "_prefab": {
  4520. "__id__": 118
  4521. },
  4522. "_opacity": 255,
  4523. "_color": {
  4524. "__type__": "cc.Color",
  4525. "r": 255,
  4526. "g": 255,
  4527. "b": 255,
  4528. "a": 255
  4529. },
  4530. "_contentSize": {
  4531. "__type__": "cc.Size",
  4532. "width": 22,
  4533. "height": 28
  4534. },
  4535. "_anchorPoint": {
  4536. "__type__": "cc.Vec2",
  4537. "x": 0.5,
  4538. "y": 0.5
  4539. },
  4540. "_trs": {
  4541. "__type__": "TypedArray",
  4542. "ctor": "Float64Array",
  4543. "array": [
  4544. -147,
  4545. 0,
  4546. 0,
  4547. 0,
  4548. 0,
  4549. 0,
  4550. 1,
  4551. 1,
  4552. 1,
  4553. 1
  4554. ]
  4555. },
  4556. "_eulerAngles": {
  4557. "__type__": "cc.Vec3",
  4558. "x": 0,
  4559. "y": 0,
  4560. "z": 0
  4561. },
  4562. "_skewX": 0,
  4563. "_skewY": 0,
  4564. "_is3DNode": false,
  4565. "_groupIndex": 0,
  4566. "groupIndex": 0,
  4567. "_id": ""
  4568. },
  4569. {
  4570. "__type__": "cc.Node",
  4571. "_name": "value",
  4572. "_objFlags": 0,
  4573. "_parent": {
  4574. "__id__": 113
  4575. },
  4576. "_children": [],
  4577. "_active": true,
  4578. "_components": [
  4579. {
  4580. "__id__": 115
  4581. }
  4582. ],
  4583. "_prefab": {
  4584. "__id__": 116
  4585. },
  4586. "_opacity": 255,
  4587. "_color": {
  4588. "__type__": "cc.Color",
  4589. "r": 75,
  4590. "g": 43,
  4591. "b": 0,
  4592. "a": 255
  4593. },
  4594. "_contentSize": {
  4595. "__type__": "cc.Size",
  4596. "width": 11.41,
  4597. "height": 25.2
  4598. },
  4599. "_anchorPoint": {
  4600. "__type__": "cc.Vec2",
  4601. "x": 0.5,
  4602. "y": 0.5
  4603. },
  4604. "_trs": {
  4605. "__type__": "TypedArray",
  4606. "ctor": "Float64Array",
  4607. "array": [
  4608. 220.056,
  4609. 0,
  4610. 0,
  4611. 0,
  4612. 0,
  4613. 0,
  4614. 1,
  4615. 1,
  4616. 1,
  4617. 1
  4618. ]
  4619. },
  4620. "_eulerAngles": {
  4621. "__type__": "cc.Vec3",
  4622. "x": 0,
  4623. "y": 0,
  4624. "z": 0
  4625. },
  4626. "_skewX": 0,
  4627. "_skewY": 0,
  4628. "_is3DNode": false,
  4629. "_groupIndex": 0,
  4630. "groupIndex": 0,
  4631. "_id": ""
  4632. },
  4633. {
  4634. "__type__": "cc.Label",
  4635. "_name": "",
  4636. "_objFlags": 0,
  4637. "node": {
  4638. "__id__": 114
  4639. },
  4640. "_enabled": true,
  4641. "_materials": [
  4642. {
  4643. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  4644. }
  4645. ],
  4646. "_srcBlendFactor": 770,
  4647. "_dstBlendFactor": 771,
  4648. "_string": "0",
  4649. "_N$string": "0",
  4650. "_fontSize": 20,
  4651. "_lineHeight": 0,
  4652. "_enableWrapText": true,
  4653. "_N$file": {
  4654. "__uuid__": "ab4a312d-4aea-4102-b816-a39640555ef4"
  4655. },
  4656. "_isSystemFontUsed": false,
  4657. "_spacingX": 0,
  4658. "_batchAsBitmap": false,
  4659. "_styleFlags": 0,
  4660. "_underlineHeight": 0,
  4661. "_N$horizontalAlign": 1,
  4662. "_N$verticalAlign": 1,
  4663. "_N$fontFamily": "Arial",
  4664. "_N$overflow": 0,
  4665. "_N$cacheMode": 0,
  4666. "_id": ""
  4667. },
  4668. {
  4669. "__type__": "cc.PrefabInfo",
  4670. "root": {
  4671. "__id__": 1
  4672. },
  4673. "asset": {
  4674. "__uuid__": "bead7d61-9e8e-4421-a54e-e260b141d73e"
  4675. },
  4676. "fileId": "706yYmPzpPpJatn6NuE5aO",
  4677. "sync": false
  4678. },
  4679. {
  4680. "__type__": "cc.Sprite",
  4681. "_name": "",
  4682. "_objFlags": 0,
  4683. "node": {
  4684. "__id__": 113
  4685. },
  4686. "_enabled": true,
  4687. "_materials": [
  4688. {
  4689. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  4690. }
  4691. ],
  4692. "_srcBlendFactor": 770,
  4693. "_dstBlendFactor": 771,
  4694. "_spriteFrame": {
  4695. "__uuid__": "3bde58e1-99b1-46b8-b06e-7d5f01be4b95"
  4696. },
  4697. "_type": 0,
  4698. "_sizeMode": 0,
  4699. "_fillType": 0,
  4700. "_fillCenter": {
  4701. "__type__": "cc.Vec2",
  4702. "x": 0,
  4703. "y": 0
  4704. },
  4705. "_fillStart": 0,
  4706. "_fillRange": 0,
  4707. "_isTrimmedMode": true,
  4708. "_atlas": null,
  4709. "_id": ""
  4710. },
  4711. {
  4712. "__type__": "cc.PrefabInfo",
  4713. "root": {
  4714. "__id__": 1
  4715. },
  4716. "asset": {
  4717. "__uuid__": "bead7d61-9e8e-4421-a54e-e260b141d73e"
  4718. },
  4719. "fileId": "deUWpVX3dL1JeJE4KEjhbM",
  4720. "sync": false
  4721. },
  4722. {
  4723. "__type__": "cc.Node",
  4724. "_name": "zdl",
  4725. "_objFlags": 0,
  4726. "_parent": {
  4727. "__id__": 112
  4728. },
  4729. "_children": [],
  4730. "_active": true,
  4731. "_components": [
  4732. {
  4733. "__id__": 120
  4734. }
  4735. ],
  4736. "_prefab": {
  4737. "__id__": 121
  4738. },
  4739. "_opacity": 255,
  4740. "_color": {
  4741. "__type__": "cc.Color",
  4742. "r": 255,
  4743. "g": 255,
  4744. "b": 255,
  4745. "a": 255
  4746. },
  4747. "_contentSize": {
  4748. "__type__": "cc.Size",
  4749. "width": 40,
  4750. "height": 25.2
  4751. },
  4752. "_anchorPoint": {
  4753. "__type__": "cc.Vec2",
  4754. "x": 0.5,
  4755. "y": 0.5
  4756. },
  4757. "_trs": {
  4758. "__type__": "TypedArray",
  4759. "ctor": "Float64Array",
  4760. "array": [
  4761. -107.023,
  4762. 0,
  4763. 0,
  4764. 0,
  4765. 0,
  4766. 0,
  4767. 1,
  4768. 1,
  4769. 1,
  4770. 1
  4771. ]
  4772. },
  4773. "_eulerAngles": {
  4774. "__type__": "cc.Vec3",
  4775. "x": 0,
  4776. "y": 0,
  4777. "z": 0
  4778. },
  4779. "_skewX": 0,
  4780. "_skewY": 0,
  4781. "_is3DNode": false,
  4782. "_groupIndex": 0,
  4783. "groupIndex": 0,
  4784. "_id": ""
  4785. },
  4786. {
  4787. "__type__": "cc.Label",
  4788. "_name": "",
  4789. "_objFlags": 0,
  4790. "node": {
  4791. "__id__": 119
  4792. },
  4793. "_enabled": true,
  4794. "_materials": [
  4795. {
  4796. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  4797. }
  4798. ],
  4799. "_srcBlendFactor": 770,
  4800. "_dstBlendFactor": 771,
  4801. "_string": "敏捷",
  4802. "_N$string": "敏捷",
  4803. "_fontSize": 20,
  4804. "_lineHeight": 0,
  4805. "_enableWrapText": true,
  4806. "_N$file": {
  4807. "__uuid__": "1cdb5762-18d1-4d60-a364-c717229e08e9"
  4808. },
  4809. "_isSystemFontUsed": false,
  4810. "_spacingX": 0,
  4811. "_batchAsBitmap": false,
  4812. "_styleFlags": 0,
  4813. "_underlineHeight": 0,
  4814. "_N$horizontalAlign": 1,
  4815. "_N$verticalAlign": 1,
  4816. "_N$fontFamily": "Arial",
  4817. "_N$overflow": 0,
  4818. "_N$cacheMode": 0,
  4819. "_id": ""
  4820. },
  4821. {
  4822. "__type__": "cc.PrefabInfo",
  4823. "root": {
  4824. "__id__": 1
  4825. },
  4826. "asset": {
  4827. "__uuid__": "bead7d61-9e8e-4421-a54e-e260b141d73e"
  4828. },
  4829. "fileId": "e0A7BbJEdO35A9h6P534Df",
  4830. "sync": false
  4831. },
  4832. {
  4833. "__type__": "cc.Sprite",
  4834. "_name": "",
  4835. "_objFlags": 0,
  4836. "node": {
  4837. "__id__": 112
  4838. },
  4839. "_enabled": true,
  4840. "_materials": [
  4841. {
  4842. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  4843. }
  4844. ],
  4845. "_srcBlendFactor": 770,
  4846. "_dstBlendFactor": 771,
  4847. "_spriteFrame": {
  4848. "__uuid__": "a6348c18-b6ec-49e7-b158-1e09dcc9c6e2"
  4849. },
  4850. "_type": 1,
  4851. "_sizeMode": 0,
  4852. "_fillType": 0,
  4853. "_fillCenter": {
  4854. "__type__": "cc.Vec2",
  4855. "x": 0,
  4856. "y": 0
  4857. },
  4858. "_fillStart": 0,
  4859. "_fillRange": 0,
  4860. "_isTrimmedMode": true,
  4861. "_atlas": null,
  4862. "_id": ""
  4863. },
  4864. {
  4865. "__type__": "cc.PrefabInfo",
  4866. "root": {
  4867. "__id__": 1
  4868. },
  4869. "asset": {
  4870. "__uuid__": "bead7d61-9e8e-4421-a54e-e260b141d73e"
  4871. },
  4872. "fileId": "4d/XYIY1FDeLeY8Dst1d+g",
  4873. "sync": false
  4874. },
  4875. {
  4876. "__type__": "cc.Layout",
  4877. "_name": "",
  4878. "_objFlags": 0,
  4879. "node": {
  4880. "__id__": 57
  4881. },
  4882. "_enabled": true,
  4883. "_layoutSize": {
  4884. "__type__": "cc.Size",
  4885. "width": 400,
  4886. "height": 260
  4887. },
  4888. "_resize": 1,
  4889. "_N$layoutType": 2,
  4890. "_N$cellSize": {
  4891. "__type__": "cc.Size",
  4892. "width": 40,
  4893. "height": 40
  4894. },
  4895. "_N$startAxis": 0,
  4896. "_N$paddingLeft": 0,
  4897. "_N$paddingRight": 0,
  4898. "_N$paddingTop": 0,
  4899. "_N$paddingBottom": 0,
  4900. "_N$spacingX": 0,
  4901. "_N$spacingY": 5,
  4902. "_N$verticalDirection": 1,
  4903. "_N$horizontalDirection": 0,
  4904. "_N$affectedByScale": false,
  4905. "_id": ""
  4906. },
  4907. {
  4908. "__type__": "cc.PrefabInfo",
  4909. "root": {
  4910. "__id__": 1
  4911. },
  4912. "asset": {
  4913. "__uuid__": "bead7d61-9e8e-4421-a54e-e260b141d73e"
  4914. },
  4915. "fileId": "780X2MqlVOR59NrsvHUJxb",
  4916. "sync": false
  4917. },
  4918. {
  4919. "__type__": "cc.Layout",
  4920. "_name": "",
  4921. "_objFlags": 0,
  4922. "node": {
  4923. "__id__": 56
  4924. },
  4925. "_enabled": true,
  4926. "_layoutSize": {
  4927. "__type__": "cc.Size",
  4928. "width": 400,
  4929. "height": 260
  4930. },
  4931. "_resize": 1,
  4932. "_N$layoutType": 2,
  4933. "_N$cellSize": {
  4934. "__type__": "cc.Size",
  4935. "width": 40,
  4936. "height": 40
  4937. },
  4938. "_N$startAxis": 0,
  4939. "_N$paddingLeft": 0,
  4940. "_N$paddingRight": 0,
  4941. "_N$paddingTop": 0,
  4942. "_N$paddingBottom": 0,
  4943. "_N$spacingX": 0,
  4944. "_N$spacingY": 5,
  4945. "_N$verticalDirection": 1,
  4946. "_N$horizontalDirection": 0,
  4947. "_N$affectedByScale": false,
  4948. "_id": ""
  4949. },
  4950. {
  4951. "__type__": "cc.PrefabInfo",
  4952. "root": {
  4953. "__id__": 1
  4954. },
  4955. "asset": {
  4956. "__uuid__": "bead7d61-9e8e-4421-a54e-e260b141d73e"
  4957. },
  4958. "fileId": "1csByC959BIIaDaywkUWB3",
  4959. "sync": false
  4960. },
  4961. {
  4962. "__type__": "cc.Node",
  4963. "_name": "addAttNode",
  4964. "_objFlags": 0,
  4965. "_parent": {
  4966. "__id__": 55
  4967. },
  4968. "_children": [
  4969. {
  4970. "__id__": 129
  4971. },
  4972. {
  4973. "__id__": 135
  4974. }
  4975. ],
  4976. "_active": true,
  4977. "_components": [
  4978. {
  4979. "__id__": 138
  4980. }
  4981. ],
  4982. "_prefab": {
  4983. "__id__": 139
  4984. },
  4985. "_opacity": 255,
  4986. "_color": {
  4987. "__type__": "cc.Color",
  4988. "r": 255,
  4989. "g": 255,
  4990. "b": 255,
  4991. "a": 255
  4992. },
  4993. "_contentSize": {
  4994. "__type__": "cc.Size",
  4995. "width": 400,
  4996. "height": 65.2
  4997. },
  4998. "_anchorPoint": {
  4999. "__type__": "cc.Vec2",
  5000. "x": 0.5,
  5001. "y": 1
  5002. },
  5003. "_trs": {
  5004. "__type__": "TypedArray",
  5005. "ctor": "Float64Array",
  5006. "array": [
  5007. 0,
  5008. -280,
  5009. 0,
  5010. 0,
  5011. 0,
  5012. 0,
  5013. 1,
  5014. 1,
  5015. 1,
  5016. 1
  5017. ]
  5018. },
  5019. "_eulerAngles": {
  5020. "__type__": "cc.Vec3",
  5021. "x": 0,
  5022. "y": 0,
  5023. "z": 0
  5024. },
  5025. "_skewX": 0,
  5026. "_skewY": 0,
  5027. "_is3DNode": false,
  5028. "_groupIndex": 0,
  5029. "groupIndex": 0,
  5030. "_id": ""
  5031. },
  5032. {
  5033. "__type__": "cc.Node",
  5034. "_name": "New Sprite",
  5035. "_objFlags": 0,
  5036. "_parent": {
  5037. "__id__": 128
  5038. },
  5039. "_children": [
  5040. {
  5041. "__id__": 130
  5042. }
  5043. ],
  5044. "_active": true,
  5045. "_components": [
  5046. {
  5047. "__id__": 133
  5048. }
  5049. ],
  5050. "_prefab": {
  5051. "__id__": 134
  5052. },
  5053. "_opacity": 255,
  5054. "_color": {
  5055. "__type__": "cc.Color",
  5056. "r": 255,
  5057. "g": 255,
  5058. "b": 255,
  5059. "a": 255
  5060. },
  5061. "_contentSize": {
  5062. "__type__": "cc.Size",
  5063. "width": 380,
  5064. "height": 35
  5065. },
  5066. "_anchorPoint": {
  5067. "__type__": "cc.Vec2",
  5068. "x": 0.5,
  5069. "y": 0.5
  5070. },
  5071. "_trs": {
  5072. "__type__": "TypedArray",
  5073. "ctor": "Float64Array",
  5074. "array": [
  5075. 0,
  5076. -17.5,
  5077. 0,
  5078. 0,
  5079. 0,
  5080. 0,
  5081. 1,
  5082. 1,
  5083. 1,
  5084. 1
  5085. ]
  5086. },
  5087. "_eulerAngles": {
  5088. "__type__": "cc.Vec3",
  5089. "x": 0,
  5090. "y": 0,
  5091. "z": 0
  5092. },
  5093. "_skewX": 0,
  5094. "_skewY": 0,
  5095. "_is3DNode": false,
  5096. "_groupIndex": 0,
  5097. "groupIndex": 0,
  5098. "_id": ""
  5099. },
  5100. {
  5101. "__type__": "cc.Node",
  5102. "_name": "New Label",
  5103. "_objFlags": 0,
  5104. "_parent": {
  5105. "__id__": 129
  5106. },
  5107. "_children": [],
  5108. "_active": true,
  5109. "_components": [
  5110. {
  5111. "__id__": 131
  5112. }
  5113. ],
  5114. "_prefab": {
  5115. "__id__": 132
  5116. },
  5117. "_opacity": 255,
  5118. "_color": {
  5119. "__type__": "cc.Color",
  5120. "r": 255,
  5121. "g": 255,
  5122. "b": 255,
  5123. "a": 255
  5124. },
  5125. "_contentSize": {
  5126. "__type__": "cc.Size",
  5127. "width": 60,
  5128. "height": 25.2
  5129. },
  5130. "_anchorPoint": {
  5131. "__type__": "cc.Vec2",
  5132. "x": 0.5,
  5133. "y": 0.5
  5134. },
  5135. "_trs": {
  5136. "__type__": "TypedArray",
  5137. "ctor": "Float64Array",
  5138. "array": [
  5139. 0,
  5140. 0,
  5141. 0,
  5142. 0,
  5143. 0,
  5144. 0,
  5145. 1,
  5146. 1,
  5147. 1,
  5148. 1
  5149. ]
  5150. },
  5151. "_eulerAngles": {
  5152. "__type__": "cc.Vec3",
  5153. "x": 0,
  5154. "y": 0,
  5155. "z": 0
  5156. },
  5157. "_skewX": 0,
  5158. "_skewY": 0,
  5159. "_is3DNode": false,
  5160. "_groupIndex": 0,
  5161. "groupIndex": 0,
  5162. "_id": ""
  5163. },
  5164. {
  5165. "__type__": "cc.Label",
  5166. "_name": "",
  5167. "_objFlags": 0,
  5168. "node": {
  5169. "__id__": 130
  5170. },
  5171. "_enabled": true,
  5172. "_materials": [
  5173. {
  5174. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  5175. }
  5176. ],
  5177. "_srcBlendFactor": 770,
  5178. "_dstBlendFactor": 771,
  5179. "_string": "副属性",
  5180. "_N$string": "副属性",
  5181. "_fontSize": 20,
  5182. "_lineHeight": 0,
  5183. "_enableWrapText": true,
  5184. "_N$file": {
  5185. "__uuid__": "1cdb5762-18d1-4d60-a364-c717229e08e9"
  5186. },
  5187. "_isSystemFontUsed": false,
  5188. "_spacingX": 0,
  5189. "_batchAsBitmap": false,
  5190. "_styleFlags": 0,
  5191. "_underlineHeight": 0,
  5192. "_N$horizontalAlign": 1,
  5193. "_N$verticalAlign": 1,
  5194. "_N$fontFamily": "Arial",
  5195. "_N$overflow": 0,
  5196. "_N$cacheMode": 0,
  5197. "_id": ""
  5198. },
  5199. {
  5200. "__type__": "cc.PrefabInfo",
  5201. "root": {
  5202. "__id__": 1
  5203. },
  5204. "asset": {
  5205. "__uuid__": "bead7d61-9e8e-4421-a54e-e260b141d73e"
  5206. },
  5207. "fileId": "69Xi/IWjdJNaBJ4mlzICZe",
  5208. "sync": false
  5209. },
  5210. {
  5211. "__type__": "cc.Sprite",
  5212. "_name": "",
  5213. "_objFlags": 0,
  5214. "node": {
  5215. "__id__": 129
  5216. },
  5217. "_enabled": true,
  5218. "_materials": [
  5219. {
  5220. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  5221. }
  5222. ],
  5223. "_srcBlendFactor": 770,
  5224. "_dstBlendFactor": 771,
  5225. "_spriteFrame": {
  5226. "__uuid__": "dee9639b-a44a-4987-9154-65822906dbe1"
  5227. },
  5228. "_type": 1,
  5229. "_sizeMode": 0,
  5230. "_fillType": 0,
  5231. "_fillCenter": {
  5232. "__type__": "cc.Vec2",
  5233. "x": 0,
  5234. "y": 0
  5235. },
  5236. "_fillStart": 0,
  5237. "_fillRange": 0,
  5238. "_isTrimmedMode": true,
  5239. "_atlas": null,
  5240. "_id": ""
  5241. },
  5242. {
  5243. "__type__": "cc.PrefabInfo",
  5244. "root": {
  5245. "__id__": 1
  5246. },
  5247. "asset": {
  5248. "__uuid__": "bead7d61-9e8e-4421-a54e-e260b141d73e"
  5249. },
  5250. "fileId": "74z/P7uVlHWKsVPMIn/gSX",
  5251. "sync": false
  5252. },
  5253. {
  5254. "__type__": "cc.Node",
  5255. "_name": "New Node",
  5256. "_objFlags": 0,
  5257. "_parent": {
  5258. "__id__": 128
  5259. },
  5260. "_children": [],
  5261. "_active": true,
  5262. "_components": [
  5263. {
  5264. "__id__": 136
  5265. }
  5266. ],
  5267. "_prefab": {
  5268. "__id__": 137
  5269. },
  5270. "_opacity": 255,
  5271. "_color": {
  5272. "__type__": "cc.Color",
  5273. "r": 255,
  5274. "g": 255,
  5275. "b": 255,
  5276. "a": 255
  5277. },
  5278. "_contentSize": {
  5279. "__type__": "cc.Size",
  5280. "width": 380,
  5281. "height": 25.2
  5282. },
  5283. "_anchorPoint": {
  5284. "__type__": "cc.Vec2",
  5285. "x": 0.5,
  5286. "y": 1
  5287. },
  5288. "_trs": {
  5289. "__type__": "TypedArray",
  5290. "ctor": "Float64Array",
  5291. "array": [
  5292. 0,
  5293. -40,
  5294. 0,
  5295. 0,
  5296. 0,
  5297. 0,
  5298. 1,
  5299. 1,
  5300. 1,
  5301. 1
  5302. ]
  5303. },
  5304. "_eulerAngles": {
  5305. "__type__": "cc.Vec3",
  5306. "x": 0,
  5307. "y": 0,
  5308. "z": 0
  5309. },
  5310. "_skewX": 0,
  5311. "_skewY": 0,
  5312. "_is3DNode": false,
  5313. "_groupIndex": 0,
  5314. "groupIndex": 0,
  5315. "_id": ""
  5316. },
  5317. {
  5318. "__type__": "cc.Layout",
  5319. "_name": "",
  5320. "_objFlags": 0,
  5321. "node": {
  5322. "__id__": 135
  5323. },
  5324. "_enabled": true,
  5325. "_layoutSize": {
  5326. "__type__": "cc.Size",
  5327. "width": 380,
  5328. "height": 25.2
  5329. },
  5330. "_resize": 1,
  5331. "_N$layoutType": 2,
  5332. "_N$cellSize": {
  5333. "__type__": "cc.Size",
  5334. "width": 40,
  5335. "height": 40
  5336. },
  5337. "_N$startAxis": 0,
  5338. "_N$paddingLeft": 0,
  5339. "_N$paddingRight": 0,
  5340. "_N$paddingTop": 0,
  5341. "_N$paddingBottom": 0,
  5342. "_N$spacingX": 0,
  5343. "_N$spacingY": 5,
  5344. "_N$verticalDirection": 1,
  5345. "_N$horizontalDirection": 0,
  5346. "_N$affectedByScale": false,
  5347. "_id": ""
  5348. },
  5349. {
  5350. "__type__": "cc.PrefabInfo",
  5351. "root": {
  5352. "__id__": 1
  5353. },
  5354. "asset": {
  5355. "__uuid__": "bead7d61-9e8e-4421-a54e-e260b141d73e"
  5356. },
  5357. "fileId": "8coNAan1BJ7ryGNIRUTaXK",
  5358. "sync": false
  5359. },
  5360. {
  5361. "__type__": "cc.Layout",
  5362. "_name": "",
  5363. "_objFlags": 0,
  5364. "node": {
  5365. "__id__": 128
  5366. },
  5367. "_enabled": true,
  5368. "_layoutSize": {
  5369. "__type__": "cc.Size",
  5370. "width": 400,
  5371. "height": 65.2
  5372. },
  5373. "_resize": 1,
  5374. "_N$layoutType": 2,
  5375. "_N$cellSize": {
  5376. "__type__": "cc.Size",
  5377. "width": 40,
  5378. "height": 40
  5379. },
  5380. "_N$startAxis": 0,
  5381. "_N$paddingLeft": 0,
  5382. "_N$paddingRight": 0,
  5383. "_N$paddingTop": 0,
  5384. "_N$paddingBottom": 0,
  5385. "_N$spacingX": 0,
  5386. "_N$spacingY": 5,
  5387. "_N$verticalDirection": 1,
  5388. "_N$horizontalDirection": 0,
  5389. "_N$affectedByScale": false,
  5390. "_id": ""
  5391. },
  5392. {
  5393. "__type__": "cc.PrefabInfo",
  5394. "root": {
  5395. "__id__": 1
  5396. },
  5397. "asset": {
  5398. "__uuid__": "bead7d61-9e8e-4421-a54e-e260b141d73e"
  5399. },
  5400. "fileId": "dcwovwvpJAGZv3dgIcT/hU",
  5401. "sync": false
  5402. },
  5403. {
  5404. "__type__": "cc.Node",
  5405. "_name": "skillNode",
  5406. "_objFlags": 0,
  5407. "_parent": {
  5408. "__id__": 55
  5409. },
  5410. "_children": [
  5411. {
  5412. "__id__": 141
  5413. },
  5414. {
  5415. "__id__": 147
  5416. }
  5417. ],
  5418. "_active": true,
  5419. "_components": [
  5420. {
  5421. "__id__": 160
  5422. }
  5423. ],
  5424. "_prefab": {
  5425. "__id__": 161
  5426. },
  5427. "_opacity": 255,
  5428. "_color": {
  5429. "__type__": "cc.Color",
  5430. "r": 255,
  5431. "g": 255,
  5432. "b": 255,
  5433. "a": 255
  5434. },
  5435. "_contentSize": {
  5436. "__type__": "cc.Size",
  5437. "width": 400,
  5438. "height": 220
  5439. },
  5440. "_anchorPoint": {
  5441. "__type__": "cc.Vec2",
  5442. "x": 0.5,
  5443. "y": 1
  5444. },
  5445. "_trs": {
  5446. "__type__": "TypedArray",
  5447. "ctor": "Float64Array",
  5448. "array": [
  5449. 0,
  5450. -365.2,
  5451. 0,
  5452. 0,
  5453. 0,
  5454. 0,
  5455. 1,
  5456. 1,
  5457. 1,
  5458. 1
  5459. ]
  5460. },
  5461. "_eulerAngles": {
  5462. "__type__": "cc.Vec3",
  5463. "x": 0,
  5464. "y": 0,
  5465. "z": 0
  5466. },
  5467. "_skewX": 0,
  5468. "_skewY": 0,
  5469. "_is3DNode": false,
  5470. "_groupIndex": 0,
  5471. "groupIndex": 0,
  5472. "_id": ""
  5473. },
  5474. {
  5475. "__type__": "cc.Node",
  5476. "_name": "New Sprite",
  5477. "_objFlags": 0,
  5478. "_parent": {
  5479. "__id__": 140
  5480. },
  5481. "_children": [
  5482. {
  5483. "__id__": 142
  5484. }
  5485. ],
  5486. "_active": true,
  5487. "_components": [
  5488. {
  5489. "__id__": 145
  5490. }
  5491. ],
  5492. "_prefab": {
  5493. "__id__": 146
  5494. },
  5495. "_opacity": 255,
  5496. "_color": {
  5497. "__type__": "cc.Color",
  5498. "r": 255,
  5499. "g": 255,
  5500. "b": 255,
  5501. "a": 255
  5502. },
  5503. "_contentSize": {
  5504. "__type__": "cc.Size",
  5505. "width": 380,
  5506. "height": 35
  5507. },
  5508. "_anchorPoint": {
  5509. "__type__": "cc.Vec2",
  5510. "x": 0.5,
  5511. "y": 0.5
  5512. },
  5513. "_trs": {
  5514. "__type__": "TypedArray",
  5515. "ctor": "Float64Array",
  5516. "array": [
  5517. 0,
  5518. -17.5,
  5519. 0,
  5520. 0,
  5521. 0,
  5522. 0,
  5523. 1,
  5524. 1,
  5525. 1,
  5526. 1
  5527. ]
  5528. },
  5529. "_eulerAngles": {
  5530. "__type__": "cc.Vec3",
  5531. "x": 0,
  5532. "y": 0,
  5533. "z": 0
  5534. },
  5535. "_skewX": 0,
  5536. "_skewY": 0,
  5537. "_is3DNode": false,
  5538. "_groupIndex": 0,
  5539. "groupIndex": 0,
  5540. "_id": ""
  5541. },
  5542. {
  5543. "__type__": "cc.Node",
  5544. "_name": "New Label",
  5545. "_objFlags": 0,
  5546. "_parent": {
  5547. "__id__": 141
  5548. },
  5549. "_children": [],
  5550. "_active": true,
  5551. "_components": [
  5552. {
  5553. "__id__": 143
  5554. }
  5555. ],
  5556. "_prefab": {
  5557. "__id__": 144
  5558. },
  5559. "_opacity": 255,
  5560. "_color": {
  5561. "__type__": "cc.Color",
  5562. "r": 255,
  5563. "g": 255,
  5564. "b": 255,
  5565. "a": 255
  5566. },
  5567. "_contentSize": {
  5568. "__type__": "cc.Size",
  5569. "width": 80,
  5570. "height": 25.2
  5571. },
  5572. "_anchorPoint": {
  5573. "__type__": "cc.Vec2",
  5574. "x": 0.5,
  5575. "y": 0.5
  5576. },
  5577. "_trs": {
  5578. "__type__": "TypedArray",
  5579. "ctor": "Float64Array",
  5580. "array": [
  5581. 0,
  5582. 0,
  5583. 0,
  5584. 0,
  5585. 0,
  5586. 0,
  5587. 1,
  5588. 1,
  5589. 1,
  5590. 1
  5591. ]
  5592. },
  5593. "_eulerAngles": {
  5594. "__type__": "cc.Vec3",
  5595. "x": 0,
  5596. "y": 0,
  5597. "z": 0
  5598. },
  5599. "_skewX": 0,
  5600. "_skewY": 0,
  5601. "_is3DNode": false,
  5602. "_groupIndex": 0,
  5603. "groupIndex": 0,
  5604. "_id": ""
  5605. },
  5606. {
  5607. "__type__": "cc.Label",
  5608. "_name": "",
  5609. "_objFlags": 0,
  5610. "node": {
  5611. "__id__": 142
  5612. },
  5613. "_enabled": true,
  5614. "_materials": [
  5615. {
  5616. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  5617. }
  5618. ],
  5619. "_srcBlendFactor": 770,
  5620. "_dstBlendFactor": 771,
  5621. "_string": "武器技能",
  5622. "_N$string": "武器技能",
  5623. "_fontSize": 20,
  5624. "_lineHeight": 0,
  5625. "_enableWrapText": true,
  5626. "_N$file": {
  5627. "__uuid__": "1cdb5762-18d1-4d60-a364-c717229e08e9"
  5628. },
  5629. "_isSystemFontUsed": false,
  5630. "_spacingX": 0,
  5631. "_batchAsBitmap": false,
  5632. "_styleFlags": 0,
  5633. "_underlineHeight": 0,
  5634. "_N$horizontalAlign": 1,
  5635. "_N$verticalAlign": 1,
  5636. "_N$fontFamily": "Arial",
  5637. "_N$overflow": 0,
  5638. "_N$cacheMode": 0,
  5639. "_id": ""
  5640. },
  5641. {
  5642. "__type__": "cc.PrefabInfo",
  5643. "root": {
  5644. "__id__": 1
  5645. },
  5646. "asset": {
  5647. "__uuid__": "bead7d61-9e8e-4421-a54e-e260b141d73e"
  5648. },
  5649. "fileId": "7a9iNSnfRMqZSsu2YeI6zw",
  5650. "sync": false
  5651. },
  5652. {
  5653. "__type__": "cc.Sprite",
  5654. "_name": "",
  5655. "_objFlags": 0,
  5656. "node": {
  5657. "__id__": 141
  5658. },
  5659. "_enabled": true,
  5660. "_materials": [
  5661. {
  5662. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  5663. }
  5664. ],
  5665. "_srcBlendFactor": 770,
  5666. "_dstBlendFactor": 771,
  5667. "_spriteFrame": {
  5668. "__uuid__": "dee9639b-a44a-4987-9154-65822906dbe1"
  5669. },
  5670. "_type": 1,
  5671. "_sizeMode": 0,
  5672. "_fillType": 0,
  5673. "_fillCenter": {
  5674. "__type__": "cc.Vec2",
  5675. "x": 0,
  5676. "y": 0
  5677. },
  5678. "_fillStart": 0,
  5679. "_fillRange": 0,
  5680. "_isTrimmedMode": true,
  5681. "_atlas": null,
  5682. "_id": ""
  5683. },
  5684. {
  5685. "__type__": "cc.PrefabInfo",
  5686. "root": {
  5687. "__id__": 1
  5688. },
  5689. "asset": {
  5690. "__uuid__": "bead7d61-9e8e-4421-a54e-e260b141d73e"
  5691. },
  5692. "fileId": "c4DhK4lC5NGafZ/BUBOpTC",
  5693. "sync": false
  5694. },
  5695. {
  5696. "__type__": "cc.Node",
  5697. "_name": "4",
  5698. "_objFlags": 0,
  5699. "_parent": {
  5700. "__id__": 140
  5701. },
  5702. "_children": [
  5703. {
  5704. "__id__": 148
  5705. },
  5706. {
  5707. "__id__": 155
  5708. }
  5709. ],
  5710. "_active": true,
  5711. "_components": [
  5712. {
  5713. "__id__": 158
  5714. }
  5715. ],
  5716. "_prefab": {
  5717. "__id__": 159
  5718. },
  5719. "_opacity": 255,
  5720. "_color": {
  5721. "__type__": "cc.Color",
  5722. "r": 255,
  5723. "g": 255,
  5724. "b": 255,
  5725. "a": 255
  5726. },
  5727. "_contentSize": {
  5728. "__type__": "cc.Size",
  5729. "width": 380,
  5730. "height": 180
  5731. },
  5732. "_anchorPoint": {
  5733. "__type__": "cc.Vec2",
  5734. "x": 0.5,
  5735. "y": 0.5
  5736. },
  5737. "_trs": {
  5738. "__type__": "TypedArray",
  5739. "ctor": "Float64Array",
  5740. "array": [
  5741. 0,
  5742. -130,
  5743. 0,
  5744. 0,
  5745. 0,
  5746. 0,
  5747. 1,
  5748. 1,
  5749. 1,
  5750. 1
  5751. ]
  5752. },
  5753. "_eulerAngles": {
  5754. "__type__": "cc.Vec3",
  5755. "x": 0,
  5756. "y": 0,
  5757. "z": 0
  5758. },
  5759. "_skewX": 0,
  5760. "_skewY": 0,
  5761. "_is3DNode": false,
  5762. "_groupIndex": 0,
  5763. "groupIndex": 0,
  5764. "_id": ""
  5765. },
  5766. {
  5767. "__type__": "cc.Node",
  5768. "_name": "New Sprite",
  5769. "_objFlags": 0,
  5770. "_parent": {
  5771. "__id__": 147
  5772. },
  5773. "_children": [
  5774. {
  5775. "__id__": 149
  5776. }
  5777. ],
  5778. "_active": true,
  5779. "_components": [
  5780. {
  5781. "__id__": 153
  5782. }
  5783. ],
  5784. "_prefab": {
  5785. "__id__": 154
  5786. },
  5787. "_opacity": 255,
  5788. "_color": {
  5789. "__type__": "cc.Color",
  5790. "r": 255,
  5791. "g": 255,
  5792. "b": 255,
  5793. "a": 255
  5794. },
  5795. "_contentSize": {
  5796. "__type__": "cc.Size",
  5797. "width": 40,
  5798. "height": 40
  5799. },
  5800. "_anchorPoint": {
  5801. "__type__": "cc.Vec2",
  5802. "x": 0.5,
  5803. "y": 0.5
  5804. },
  5805. "_trs": {
  5806. "__type__": "TypedArray",
  5807. "ctor": "Float64Array",
  5808. "array": [
  5809. -117,
  5810. 16,
  5811. 0,
  5812. 0,
  5813. 0,
  5814. 0,
  5815. 1,
  5816. 1,
  5817. 1,
  5818. 1
  5819. ]
  5820. },
  5821. "_eulerAngles": {
  5822. "__type__": "cc.Vec3",
  5823. "x": 0,
  5824. "y": 0,
  5825. "z": 0
  5826. },
  5827. "_skewX": 0,
  5828. "_skewY": 0,
  5829. "_is3DNode": false,
  5830. "_groupIndex": 0,
  5831. "groupIndex": 0,
  5832. "_id": ""
  5833. },
  5834. {
  5835. "__type__": "cc.Node",
  5836. "_name": "New Label",
  5837. "_objFlags": 0,
  5838. "_parent": {
  5839. "__id__": 148
  5840. },
  5841. "_children": [],
  5842. "_active": true,
  5843. "_components": [
  5844. {
  5845. "__id__": 150
  5846. },
  5847. {
  5848. "__id__": 151
  5849. }
  5850. ],
  5851. "_prefab": {
  5852. "__id__": 152
  5853. },
  5854. "_opacity": 255,
  5855. "_color": {
  5856. "__type__": "cc.Color",
  5857. "r": 255,
  5858. "g": 255,
  5859. "b": 255,
  5860. "a": 255
  5861. },
  5862. "_contentSize": {
  5863. "__type__": "cc.Size",
  5864. "width": 82,
  5865. "height": 27.2
  5866. },
  5867. "_anchorPoint": {
  5868. "__type__": "cc.Vec2",
  5869. "x": 0.5,
  5870. "y": 0.5
  5871. },
  5872. "_trs": {
  5873. "__type__": "TypedArray",
  5874. "ctor": "Float64Array",
  5875. "array": [
  5876. 0,
  5877. -39.417,
  5878. 0,
  5879. 0,
  5880. 0,
  5881. 0,
  5882. 1,
  5883. 1,
  5884. 1,
  5885. 1
  5886. ]
  5887. },
  5888. "_eulerAngles": {
  5889. "__type__": "cc.Vec3",
  5890. "x": 0,
  5891. "y": 0,
  5892. "z": 0
  5893. },
  5894. "_skewX": 0,
  5895. "_skewY": 0,
  5896. "_is3DNode": false,
  5897. "_groupIndex": 0,
  5898. "groupIndex": 0,
  5899. "_id": ""
  5900. },
  5901. {
  5902. "__type__": "cc.Label",
  5903. "_name": "",
  5904. "_objFlags": 0,
  5905. "node": {
  5906. "__id__": 149
  5907. },
  5908. "_enabled": true,
  5909. "_materials": [
  5910. {
  5911. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  5912. }
  5913. ],
  5914. "_srcBlendFactor": 770,
  5915. "_dstBlendFactor": 771,
  5916. "_string": "技能名称",
  5917. "_N$string": "技能名称",
  5918. "_fontSize": 20,
  5919. "_lineHeight": 0,
  5920. "_enableWrapText": true,
  5921. "_N$file": {
  5922. "__uuid__": "1cdb5762-18d1-4d60-a364-c717229e08e9"
  5923. },
  5924. "_isSystemFontUsed": false,
  5925. "_spacingX": 0,
  5926. "_batchAsBitmap": false,
  5927. "_styleFlags": 0,
  5928. "_underlineHeight": 0,
  5929. "_N$horizontalAlign": 1,
  5930. "_N$verticalAlign": 1,
  5931. "_N$fontFamily": "Arial",
  5932. "_N$overflow": 0,
  5933. "_N$cacheMode": 0,
  5934. "_id": ""
  5935. },
  5936. {
  5937. "__type__": "cc.LabelOutline",
  5938. "_name": "",
  5939. "_objFlags": 0,
  5940. "node": {
  5941. "__id__": 149
  5942. },
  5943. "_enabled": true,
  5944. "_color": {
  5945. "__type__": "cc.Color",
  5946. "r": 75,
  5947. "g": 43,
  5948. "b": 0,
  5949. "a": 255
  5950. },
  5951. "_width": 1,
  5952. "_id": ""
  5953. },
  5954. {
  5955. "__type__": "cc.PrefabInfo",
  5956. "root": {
  5957. "__id__": 1
  5958. },
  5959. "asset": {
  5960. "__uuid__": "bead7d61-9e8e-4421-a54e-e260b141d73e"
  5961. },
  5962. "fileId": "9dlOCBRsNP0rl1JzrqnMyi",
  5963. "sync": false
  5964. },
  5965. {
  5966. "__type__": "cc.Sprite",
  5967. "_name": "",
  5968. "_objFlags": 0,
  5969. "node": {
  5970. "__id__": 148
  5971. },
  5972. "_enabled": true,
  5973. "_materials": [
  5974. {
  5975. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  5976. }
  5977. ],
  5978. "_srcBlendFactor": 770,
  5979. "_dstBlendFactor": 771,
  5980. "_spriteFrame": {
  5981. "__uuid__": "0fad6e36-9569-4712-94a0-1b425a5ea60b"
  5982. },
  5983. "_type": 0,
  5984. "_sizeMode": 0,
  5985. "_fillType": 0,
  5986. "_fillCenter": {
  5987. "__type__": "cc.Vec2",
  5988. "x": 0,
  5989. "y": 0
  5990. },
  5991. "_fillStart": 0,
  5992. "_fillRange": 0,
  5993. "_isTrimmedMode": true,
  5994. "_atlas": null,
  5995. "_id": ""
  5996. },
  5997. {
  5998. "__type__": "cc.PrefabInfo",
  5999. "root": {
  6000. "__id__": 1
  6001. },
  6002. "asset": {
  6003. "__uuid__": "bead7d61-9e8e-4421-a54e-e260b141d73e"
  6004. },
  6005. "fileId": "1c7XJA3VtH6JhPjmvGll8e",
  6006. "sync": false
  6007. },
  6008. {
  6009. "__type__": "cc.Node",
  6010. "_name": "New Label",
  6011. "_objFlags": 0,
  6012. "_parent": {
  6013. "__id__": 147
  6014. },
  6015. "_children": [],
  6016. "_active": true,
  6017. "_components": [
  6018. {
  6019. "__id__": 156
  6020. }
  6021. ],
  6022. "_prefab": {
  6023. "__id__": 157
  6024. },
  6025. "_opacity": 255,
  6026. "_color": {
  6027. "__type__": "cc.Color",
  6028. "r": 75,
  6029. "g": 43,
  6030. "b": 0,
  6031. "a": 255
  6032. },
  6033. "_contentSize": {
  6034. "__type__": "cc.Size",
  6035. "width": 220,
  6036. "height": 27.72
  6037. },
  6038. "_anchorPoint": {
  6039. "__type__": "cc.Vec2",
  6040. "x": 0,
  6041. "y": 0.5
  6042. },
  6043. "_trs": {
  6044. "__type__": "TypedArray",
  6045. "ctor": "Float64Array",
  6046. "array": [
  6047. -38,
  6048. 0,
  6049. 0,
  6050. 0,
  6051. 0,
  6052. 0,
  6053. 1,
  6054. 1,
  6055. 1,
  6056. 1
  6057. ]
  6058. },
  6059. "_eulerAngles": {
  6060. "__type__": "cc.Vec3",
  6061. "x": 0,
  6062. "y": 0,
  6063. "z": 0
  6064. },
  6065. "_skewX": 0,
  6066. "_skewY": 0,
  6067. "_is3DNode": false,
  6068. "_groupIndex": 0,
  6069. "groupIndex": 0,
  6070. "_id": ""
  6071. },
  6072. {
  6073. "__type__": "cc.Label",
  6074. "_name": "",
  6075. "_objFlags": 0,
  6076. "node": {
  6077. "__id__": 155
  6078. },
  6079. "_enabled": true,
  6080. "_materials": [
  6081. {
  6082. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  6083. }
  6084. ],
  6085. "_srcBlendFactor": 770,
  6086. "_dstBlendFactor": 771,
  6087. "_string": "需要佩戴武器",
  6088. "_N$string": "需要佩戴武器",
  6089. "_fontSize": 20,
  6090. "_lineHeight": 22,
  6091. "_enableWrapText": true,
  6092. "_N$file": {
  6093. "__uuid__": "1cdb5762-18d1-4d60-a364-c717229e08e9"
  6094. },
  6095. "_isSystemFontUsed": false,
  6096. "_spacingX": 0,
  6097. "_batchAsBitmap": false,
  6098. "_styleFlags": 0,
  6099. "_underlineHeight": 0,
  6100. "_N$horizontalAlign": 0,
  6101. "_N$verticalAlign": 1,
  6102. "_N$fontFamily": "Arial",
  6103. "_N$overflow": 3,
  6104. "_N$cacheMode": 0,
  6105. "_id": ""
  6106. },
  6107. {
  6108. "__type__": "cc.PrefabInfo",
  6109. "root": {
  6110. "__id__": 1
  6111. },
  6112. "asset": {
  6113. "__uuid__": "bead7d61-9e8e-4421-a54e-e260b141d73e"
  6114. },
  6115. "fileId": "86zDVt+aBLFJt1BpeNHRNK",
  6116. "sync": false
  6117. },
  6118. {
  6119. "__type__": "cc.Sprite",
  6120. "_name": "",
  6121. "_objFlags": 0,
  6122. "node": {
  6123. "__id__": 147
  6124. },
  6125. "_enabled": true,
  6126. "_materials": [
  6127. {
  6128. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  6129. }
  6130. ],
  6131. "_srcBlendFactor": 770,
  6132. "_dstBlendFactor": 771,
  6133. "_spriteFrame": {
  6134. "__uuid__": "a6348c18-b6ec-49e7-b158-1e09dcc9c6e2"
  6135. },
  6136. "_type": 1,
  6137. "_sizeMode": 0,
  6138. "_fillType": 0,
  6139. "_fillCenter": {
  6140. "__type__": "cc.Vec2",
  6141. "x": 0,
  6142. "y": 0
  6143. },
  6144. "_fillStart": 0,
  6145. "_fillRange": 0,
  6146. "_isTrimmedMode": true,
  6147. "_atlas": null,
  6148. "_id": ""
  6149. },
  6150. {
  6151. "__type__": "cc.PrefabInfo",
  6152. "root": {
  6153. "__id__": 1
  6154. },
  6155. "asset": {
  6156. "__uuid__": "bead7d61-9e8e-4421-a54e-e260b141d73e"
  6157. },
  6158. "fileId": "49Xsc/AGNDsbax0hpmOQW8",
  6159. "sync": false
  6160. },
  6161. {
  6162. "__type__": "cc.Layout",
  6163. "_name": "",
  6164. "_objFlags": 0,
  6165. "node": {
  6166. "__id__": 140
  6167. },
  6168. "_enabled": true,
  6169. "_layoutSize": {
  6170. "__type__": "cc.Size",
  6171. "width": 400,
  6172. "height": 220
  6173. },
  6174. "_resize": 1,
  6175. "_N$layoutType": 2,
  6176. "_N$cellSize": {
  6177. "__type__": "cc.Size",
  6178. "width": 40,
  6179. "height": 40
  6180. },
  6181. "_N$startAxis": 0,
  6182. "_N$paddingLeft": 0,
  6183. "_N$paddingRight": 0,
  6184. "_N$paddingTop": 0,
  6185. "_N$paddingBottom": 0,
  6186. "_N$spacingX": 0,
  6187. "_N$spacingY": 5,
  6188. "_N$verticalDirection": 1,
  6189. "_N$horizontalDirection": 0,
  6190. "_N$affectedByScale": false,
  6191. "_id": ""
  6192. },
  6193. {
  6194. "__type__": "cc.PrefabInfo",
  6195. "root": {
  6196. "__id__": 1
  6197. },
  6198. "asset": {
  6199. "__uuid__": "bead7d61-9e8e-4421-a54e-e260b141d73e"
  6200. },
  6201. "fileId": "d0Tq8IanhKUYkOIqMICRT9",
  6202. "sync": false
  6203. },
  6204. {
  6205. "__type__": "cc.Node",
  6206. "_name": "descNode",
  6207. "_objFlags": 0,
  6208. "_parent": {
  6209. "__id__": 55
  6210. },
  6211. "_children": [
  6212. {
  6213. "__id__": 163
  6214. },
  6215. {
  6216. "__id__": 169
  6217. }
  6218. ],
  6219. "_active": true,
  6220. "_components": [
  6221. {
  6222. "__id__": 175
  6223. }
  6224. ],
  6225. "_prefab": {
  6226. "__id__": 176
  6227. },
  6228. "_opacity": 255,
  6229. "_color": {
  6230. "__type__": "cc.Color",
  6231. "r": 255,
  6232. "g": 255,
  6233. "b": 255,
  6234. "a": 255
  6235. },
  6236. "_contentSize": {
  6237. "__type__": "cc.Size",
  6238. "width": 400,
  6239. "height": 140
  6240. },
  6241. "_anchorPoint": {
  6242. "__type__": "cc.Vec2",
  6243. "x": 0.5,
  6244. "y": 1
  6245. },
  6246. "_trs": {
  6247. "__type__": "TypedArray",
  6248. "ctor": "Float64Array",
  6249. "array": [
  6250. 0,
  6251. -605.2,
  6252. 0,
  6253. 0,
  6254. 0,
  6255. 0,
  6256. 1,
  6257. 1,
  6258. 1,
  6259. 1
  6260. ]
  6261. },
  6262. "_eulerAngles": {
  6263. "__type__": "cc.Vec3",
  6264. "x": 0,
  6265. "y": 0,
  6266. "z": 0
  6267. },
  6268. "_skewX": 0,
  6269. "_skewY": 0,
  6270. "_is3DNode": false,
  6271. "_groupIndex": 0,
  6272. "groupIndex": 0,
  6273. "_id": ""
  6274. },
  6275. {
  6276. "__type__": "cc.Node",
  6277. "_name": "New Sprite",
  6278. "_objFlags": 0,
  6279. "_parent": {
  6280. "__id__": 162
  6281. },
  6282. "_children": [
  6283. {
  6284. "__id__": 164
  6285. }
  6286. ],
  6287. "_active": true,
  6288. "_components": [
  6289. {
  6290. "__id__": 167
  6291. }
  6292. ],
  6293. "_prefab": {
  6294. "__id__": 168
  6295. },
  6296. "_opacity": 255,
  6297. "_color": {
  6298. "__type__": "cc.Color",
  6299. "r": 255,
  6300. "g": 255,
  6301. "b": 255,
  6302. "a": 255
  6303. },
  6304. "_contentSize": {
  6305. "__type__": "cc.Size",
  6306. "width": 380,
  6307. "height": 35
  6308. },
  6309. "_anchorPoint": {
  6310. "__type__": "cc.Vec2",
  6311. "x": 0.5,
  6312. "y": 0.5
  6313. },
  6314. "_trs": {
  6315. "__type__": "TypedArray",
  6316. "ctor": "Float64Array",
  6317. "array": [
  6318. 0,
  6319. -17.5,
  6320. 0,
  6321. 0,
  6322. 0,
  6323. 0,
  6324. 1,
  6325. 1,
  6326. 1,
  6327. 1
  6328. ]
  6329. },
  6330. "_eulerAngles": {
  6331. "__type__": "cc.Vec3",
  6332. "x": 0,
  6333. "y": 0,
  6334. "z": 0
  6335. },
  6336. "_skewX": 0,
  6337. "_skewY": 0,
  6338. "_is3DNode": false,
  6339. "_groupIndex": 0,
  6340. "groupIndex": 0,
  6341. "_id": ""
  6342. },
  6343. {
  6344. "__type__": "cc.Node",
  6345. "_name": "New Label",
  6346. "_objFlags": 0,
  6347. "_parent": {
  6348. "__id__": 163
  6349. },
  6350. "_children": [],
  6351. "_active": true,
  6352. "_components": [
  6353. {
  6354. "__id__": 165
  6355. }
  6356. ],
  6357. "_prefab": {
  6358. "__id__": 166
  6359. },
  6360. "_opacity": 255,
  6361. "_color": {
  6362. "__type__": "cc.Color",
  6363. "r": 255,
  6364. "g": 255,
  6365. "b": 255,
  6366. "a": 255
  6367. },
  6368. "_contentSize": {
  6369. "__type__": "cc.Size",
  6370. "width": 40,
  6371. "height": 25.2
  6372. },
  6373. "_anchorPoint": {
  6374. "__type__": "cc.Vec2",
  6375. "x": 0.5,
  6376. "y": 0.5
  6377. },
  6378. "_trs": {
  6379. "__type__": "TypedArray",
  6380. "ctor": "Float64Array",
  6381. "array": [
  6382. 0,
  6383. 0,
  6384. 0,
  6385. 0,
  6386. 0,
  6387. 0,
  6388. 1,
  6389. 1,
  6390. 1,
  6391. 1
  6392. ]
  6393. },
  6394. "_eulerAngles": {
  6395. "__type__": "cc.Vec3",
  6396. "x": 0,
  6397. "y": 0,
  6398. "z": 0
  6399. },
  6400. "_skewX": 0,
  6401. "_skewY": 0,
  6402. "_is3DNode": false,
  6403. "_groupIndex": 0,
  6404. "groupIndex": 0,
  6405. "_id": ""
  6406. },
  6407. {
  6408. "__type__": "cc.Label",
  6409. "_name": "",
  6410. "_objFlags": 0,
  6411. "node": {
  6412. "__id__": 164
  6413. },
  6414. "_enabled": true,
  6415. "_materials": [
  6416. {
  6417. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  6418. }
  6419. ],
  6420. "_srcBlendFactor": 770,
  6421. "_dstBlendFactor": 771,
  6422. "_string": "说明",
  6423. "_N$string": "说明",
  6424. "_fontSize": 20,
  6425. "_lineHeight": 0,
  6426. "_enableWrapText": true,
  6427. "_N$file": {
  6428. "__uuid__": "1cdb5762-18d1-4d60-a364-c717229e08e9"
  6429. },
  6430. "_isSystemFontUsed": false,
  6431. "_spacingX": 0,
  6432. "_batchAsBitmap": false,
  6433. "_styleFlags": 0,
  6434. "_underlineHeight": 0,
  6435. "_N$horizontalAlign": 1,
  6436. "_N$verticalAlign": 1,
  6437. "_N$fontFamily": "Arial",
  6438. "_N$overflow": 0,
  6439. "_N$cacheMode": 0,
  6440. "_id": ""
  6441. },
  6442. {
  6443. "__type__": "cc.PrefabInfo",
  6444. "root": {
  6445. "__id__": 1
  6446. },
  6447. "asset": {
  6448. "__uuid__": "bead7d61-9e8e-4421-a54e-e260b141d73e"
  6449. },
  6450. "fileId": "1eBsn8ZBRHzYbn/DUlfUBK",
  6451. "sync": false
  6452. },
  6453. {
  6454. "__type__": "cc.Sprite",
  6455. "_name": "",
  6456. "_objFlags": 0,
  6457. "node": {
  6458. "__id__": 163
  6459. },
  6460. "_enabled": true,
  6461. "_materials": [
  6462. {
  6463. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  6464. }
  6465. ],
  6466. "_srcBlendFactor": 770,
  6467. "_dstBlendFactor": 771,
  6468. "_spriteFrame": {
  6469. "__uuid__": "dee9639b-a44a-4987-9154-65822906dbe1"
  6470. },
  6471. "_type": 1,
  6472. "_sizeMode": 0,
  6473. "_fillType": 0,
  6474. "_fillCenter": {
  6475. "__type__": "cc.Vec2",
  6476. "x": 0,
  6477. "y": 0
  6478. },
  6479. "_fillStart": 0,
  6480. "_fillRange": 0,
  6481. "_isTrimmedMode": true,
  6482. "_atlas": null,
  6483. "_id": ""
  6484. },
  6485. {
  6486. "__type__": "cc.PrefabInfo",
  6487. "root": {
  6488. "__id__": 1
  6489. },
  6490. "asset": {
  6491. "__uuid__": "bead7d61-9e8e-4421-a54e-e260b141d73e"
  6492. },
  6493. "fileId": "619VD/95lMRIpRSJwLt8R6",
  6494. "sync": false
  6495. },
  6496. {
  6497. "__type__": "cc.Node",
  6498. "_name": "New Sprite",
  6499. "_objFlags": 0,
  6500. "_parent": {
  6501. "__id__": 162
  6502. },
  6503. "_children": [
  6504. {
  6505. "__id__": 170
  6506. }
  6507. ],
  6508. "_active": true,
  6509. "_components": [
  6510. {
  6511. "__id__": 173
  6512. }
  6513. ],
  6514. "_prefab": {
  6515. "__id__": 174
  6516. },
  6517. "_opacity": 255,
  6518. "_color": {
  6519. "__type__": "cc.Color",
  6520. "r": 255,
  6521. "g": 255,
  6522. "b": 255,
  6523. "a": 255
  6524. },
  6525. "_contentSize": {
  6526. "__type__": "cc.Size",
  6527. "width": 380,
  6528. "height": 100
  6529. },
  6530. "_anchorPoint": {
  6531. "__type__": "cc.Vec2",
  6532. "x": 0.5,
  6533. "y": 0.5
  6534. },
  6535. "_trs": {
  6536. "__type__": "TypedArray",
  6537. "ctor": "Float64Array",
  6538. "array": [
  6539. 0,
  6540. -90,
  6541. 0,
  6542. 0,
  6543. 0,
  6544. 0,
  6545. 1,
  6546. 1,
  6547. 1,
  6548. 1
  6549. ]
  6550. },
  6551. "_eulerAngles": {
  6552. "__type__": "cc.Vec3",
  6553. "x": 0,
  6554. "y": 0,
  6555. "z": 0
  6556. },
  6557. "_skewX": 0,
  6558. "_skewY": 0,
  6559. "_is3DNode": false,
  6560. "_groupIndex": 0,
  6561. "groupIndex": 0,
  6562. "_id": ""
  6563. },
  6564. {
  6565. "__type__": "cc.Node",
  6566. "_name": "lbdesc",
  6567. "_objFlags": 0,
  6568. "_parent": {
  6569. "__id__": 169
  6570. },
  6571. "_children": [],
  6572. "_active": true,
  6573. "_components": [
  6574. {
  6575. "__id__": 171
  6576. }
  6577. ],
  6578. "_prefab": {
  6579. "__id__": 172
  6580. },
  6581. "_opacity": 255,
  6582. "_color": {
  6583. "__type__": "cc.Color",
  6584. "r": 75,
  6585. "g": 43,
  6586. "b": 0,
  6587. "a": 255
  6588. },
  6589. "_contentSize": {
  6590. "__type__": "cc.Size",
  6591. "width": 320,
  6592. "height": 49.72
  6593. },
  6594. "_anchorPoint": {
  6595. "__type__": "cc.Vec2",
  6596. "x": 0,
  6597. "y": 0.5
  6598. },
  6599. "_trs": {
  6600. "__type__": "TypedArray",
  6601. "ctor": "Float64Array",
  6602. "array": [
  6603. -160.096,
  6604. 0,
  6605. 0,
  6606. 0,
  6607. 0,
  6608. 0,
  6609. 1,
  6610. 1,
  6611. 1,
  6612. 1
  6613. ]
  6614. },
  6615. "_eulerAngles": {
  6616. "__type__": "cc.Vec3",
  6617. "x": 0,
  6618. "y": 0,
  6619. "z": 0
  6620. },
  6621. "_skewX": 0,
  6622. "_skewY": 0,
  6623. "_is3DNode": false,
  6624. "_groupIndex": 0,
  6625. "groupIndex": 0,
  6626. "_id": ""
  6627. },
  6628. {
  6629. "__type__": "cc.Label",
  6630. "_name": "",
  6631. "_objFlags": 0,
  6632. "node": {
  6633. "__id__": 170
  6634. },
  6635. "_enabled": true,
  6636. "_materials": [
  6637. {
  6638. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  6639. }
  6640. ],
  6641. "_srcBlendFactor": 770,
  6642. "_dstBlendFactor": 771,
  6643. "_string": "灰袍法师用于实验的法杖,可以召唤闪电",
  6644. "_N$string": "灰袍法师用于实验的法杖,可以召唤闪电",
  6645. "_fontSize": 20,
  6646. "_lineHeight": 22,
  6647. "_enableWrapText": true,
  6648. "_N$file": {
  6649. "__uuid__": "1cdb5762-18d1-4d60-a364-c717229e08e9"
  6650. },
  6651. "_isSystemFontUsed": false,
  6652. "_spacingX": 0,
  6653. "_batchAsBitmap": false,
  6654. "_styleFlags": 0,
  6655. "_underlineHeight": 0,
  6656. "_N$horizontalAlign": 0,
  6657. "_N$verticalAlign": 1,
  6658. "_N$fontFamily": "Arial",
  6659. "_N$overflow": 3,
  6660. "_N$cacheMode": 0,
  6661. "_id": ""
  6662. },
  6663. {
  6664. "__type__": "cc.PrefabInfo",
  6665. "root": {
  6666. "__id__": 1
  6667. },
  6668. "asset": {
  6669. "__uuid__": "bead7d61-9e8e-4421-a54e-e260b141d73e"
  6670. },
  6671. "fileId": "aaDRAGiNlJwokBVK14Z4B0",
  6672. "sync": false
  6673. },
  6674. {
  6675. "__type__": "cc.Sprite",
  6676. "_name": "",
  6677. "_objFlags": 0,
  6678. "node": {
  6679. "__id__": 169
  6680. },
  6681. "_enabled": true,
  6682. "_materials": [
  6683. {
  6684. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  6685. }
  6686. ],
  6687. "_srcBlendFactor": 770,
  6688. "_dstBlendFactor": 771,
  6689. "_spriteFrame": {
  6690. "__uuid__": "cdf64fa5-6d7e-495b-9c86-18fb5e4f5340"
  6691. },
  6692. "_type": 1,
  6693. "_sizeMode": 0,
  6694. "_fillType": 0,
  6695. "_fillCenter": {
  6696. "__type__": "cc.Vec2",
  6697. "x": 0,
  6698. "y": 0
  6699. },
  6700. "_fillStart": 0,
  6701. "_fillRange": 0,
  6702. "_isTrimmedMode": true,
  6703. "_atlas": null,
  6704. "_id": ""
  6705. },
  6706. {
  6707. "__type__": "cc.PrefabInfo",
  6708. "root": {
  6709. "__id__": 1
  6710. },
  6711. "asset": {
  6712. "__uuid__": "bead7d61-9e8e-4421-a54e-e260b141d73e"
  6713. },
  6714. "fileId": "75pkzU6SFBsK/6E0Ei0jDx",
  6715. "sync": false
  6716. },
  6717. {
  6718. "__type__": "cc.Layout",
  6719. "_name": "",
  6720. "_objFlags": 0,
  6721. "node": {
  6722. "__id__": 162
  6723. },
  6724. "_enabled": true,
  6725. "_layoutSize": {
  6726. "__type__": "cc.Size",
  6727. "width": 400,
  6728. "height": 140
  6729. },
  6730. "_resize": 1,
  6731. "_N$layoutType": 2,
  6732. "_N$cellSize": {
  6733. "__type__": "cc.Size",
  6734. "width": 40,
  6735. "height": 40
  6736. },
  6737. "_N$startAxis": 0,
  6738. "_N$paddingLeft": 0,
  6739. "_N$paddingRight": 0,
  6740. "_N$paddingTop": 0,
  6741. "_N$paddingBottom": 0,
  6742. "_N$spacingX": 0,
  6743. "_N$spacingY": 5,
  6744. "_N$verticalDirection": 1,
  6745. "_N$horizontalDirection": 0,
  6746. "_N$affectedByScale": false,
  6747. "_id": ""
  6748. },
  6749. {
  6750. "__type__": "cc.PrefabInfo",
  6751. "root": {
  6752. "__id__": 1
  6753. },
  6754. "asset": {
  6755. "__uuid__": "bead7d61-9e8e-4421-a54e-e260b141d73e"
  6756. },
  6757. "fileId": "fc36sHr+ZB6aHihnkvj6cw",
  6758. "sync": false
  6759. },
  6760. {
  6761. "__type__": "cc.Layout",
  6762. "_name": "",
  6763. "_objFlags": 0,
  6764. "node": {
  6765. "__id__": 55
  6766. },
  6767. "_enabled": true,
  6768. "_layoutSize": {
  6769. "__type__": "cc.Size",
  6770. "width": 420,
  6771. "height": 765.2
  6772. },
  6773. "_resize": 1,
  6774. "_N$layoutType": 2,
  6775. "_N$cellSize": {
  6776. "__type__": "cc.Size",
  6777. "width": 40,
  6778. "height": 40
  6779. },
  6780. "_N$startAxis": 0,
  6781. "_N$paddingLeft": 20,
  6782. "_N$paddingRight": 0,
  6783. "_N$paddingTop": 0,
  6784. "_N$paddingBottom": 20,
  6785. "_N$spacingX": 25,
  6786. "_N$spacingY": 20,
  6787. "_N$verticalDirection": 1,
  6788. "_N$horizontalDirection": 0,
  6789. "_N$affectedByScale": false,
  6790. "_id": ""
  6791. },
  6792. {
  6793. "__type__": "cc.PrefabInfo",
  6794. "root": {
  6795. "__id__": 1
  6796. },
  6797. "asset": {
  6798. "__uuid__": "bead7d61-9e8e-4421-a54e-e260b141d73e"
  6799. },
  6800. "fileId": "38U7Gpw7NHfoBxsqs8sEan",
  6801. "sync": false
  6802. },
  6803. {
  6804. "__type__": "cc.Mask",
  6805. "_name": "",
  6806. "_objFlags": 0,
  6807. "node": {
  6808. "__id__": 54
  6809. },
  6810. "_enabled": true,
  6811. "_materials": [
  6812. {
  6813. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  6814. }
  6815. ],
  6816. "_spriteFrame": null,
  6817. "_type": 0,
  6818. "_segments": 64,
  6819. "_N$alphaThreshold": 0,
  6820. "_N$inverted": false,
  6821. "_id": ""
  6822. },
  6823. {
  6824. "__type__": "cc.PrefabInfo",
  6825. "root": {
  6826. "__id__": 1
  6827. },
  6828. "asset": {
  6829. "__uuid__": "bead7d61-9e8e-4421-a54e-e260b141d73e"
  6830. },
  6831. "fileId": "06KdwyWDhI5Y5gqWMwm7Hr",
  6832. "sync": false
  6833. },
  6834. {
  6835. "__type__": "cc.Sprite",
  6836. "_name": "",
  6837. "_objFlags": 0,
  6838. "node": {
  6839. "__id__": 53
  6840. },
  6841. "_enabled": true,
  6842. "_materials": [
  6843. {
  6844. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  6845. }
  6846. ],
  6847. "_srcBlendFactor": 770,
  6848. "_dstBlendFactor": 771,
  6849. "_spriteFrame": null,
  6850. "_type": 1,
  6851. "_sizeMode": 0,
  6852. "_fillType": 0,
  6853. "_fillCenter": {
  6854. "__type__": "cc.Vec2",
  6855. "x": 0,
  6856. "y": 0
  6857. },
  6858. "_fillStart": 0,
  6859. "_fillRange": 0,
  6860. "_isTrimmedMode": true,
  6861. "_atlas": null,
  6862. "_id": ""
  6863. },
  6864. {
  6865. "__type__": "cc.ScrollView",
  6866. "_name": "",
  6867. "_objFlags": 0,
  6868. "node": {
  6869. "__id__": 53
  6870. },
  6871. "_enabled": true,
  6872. "horizontal": false,
  6873. "vertical": true,
  6874. "inertia": true,
  6875. "brake": 0.75,
  6876. "elastic": true,
  6877. "bounceDuration": 0.23,
  6878. "scrollEvents": [],
  6879. "cancelInnerEvents": true,
  6880. "_N$content": {
  6881. "__id__": 55
  6882. },
  6883. "content": {
  6884. "__id__": 55
  6885. },
  6886. "_N$horizontalScrollBar": null,
  6887. "_N$verticalScrollBar": null,
  6888. "_id": ""
  6889. },
  6890. {
  6891. "__type__": "cc.PrefabInfo",
  6892. "root": {
  6893. "__id__": 1
  6894. },
  6895. "asset": {
  6896. "__uuid__": "bead7d61-9e8e-4421-a54e-e260b141d73e"
  6897. },
  6898. "fileId": "68vQPCQjVBxolKvJrXsafS",
  6899. "sync": false
  6900. },
  6901. {
  6902. "__type__": "cc.PrefabInfo",
  6903. "root": {
  6904. "__id__": 1
  6905. },
  6906. "asset": {
  6907. "__uuid__": "bead7d61-9e8e-4421-a54e-e260b141d73e"
  6908. },
  6909. "fileId": "92qajtXP5BUaDSZf2/PFoC",
  6910. "sync": false
  6911. },
  6912. {
  6913. "__type__": "cc.PrefabInfo",
  6914. "root": {
  6915. "__id__": 1
  6916. },
  6917. "asset": {
  6918. "__uuid__": "bead7d61-9e8e-4421-a54e-e260b141d73e"
  6919. },
  6920. "fileId": "aaFbIt7opHbaHG5+P/FszT",
  6921. "sync": false
  6922. },
  6923. {
  6924. "__type__": "cc.Node",
  6925. "_name": "qh",
  6926. "_objFlags": 0,
  6927. "_parent": {
  6928. "__id__": 43
  6929. },
  6930. "_children": [
  6931. {
  6932. "__id__": 187
  6933. }
  6934. ],
  6935. "_active": false,
  6936. "_components": [
  6937. {
  6938. "__id__": 191
  6939. },
  6940. {
  6941. "__id__": 192
  6942. }
  6943. ],
  6944. "_prefab": {
  6945. "__id__": 194
  6946. },
  6947. "_opacity": 255,
  6948. "_color": {
  6949. "__type__": "cc.Color",
  6950. "r": 255,
  6951. "g": 255,
  6952. "b": 255,
  6953. "a": 255
  6954. },
  6955. "_contentSize": {
  6956. "__type__": "cc.Size",
  6957. "width": 190,
  6958. "height": 76
  6959. },
  6960. "_anchorPoint": {
  6961. "__type__": "cc.Vec2",
  6962. "x": 0.5,
  6963. "y": 0.5
  6964. },
  6965. "_trs": {
  6966. "__type__": "TypedArray",
  6967. "ctor": "Float64Array",
  6968. "array": [
  6969. 0,
  6970. -233.897,
  6971. 0,
  6972. 0,
  6973. 0,
  6974. 0,
  6975. 1,
  6976. 1,
  6977. 1,
  6978. 0
  6979. ]
  6980. },
  6981. "_eulerAngles": {
  6982. "__type__": "cc.Vec3",
  6983. "x": 0,
  6984. "y": 0,
  6985. "z": 0
  6986. },
  6987. "_skewX": 0,
  6988. "_skewY": 0,
  6989. "_is3DNode": false,
  6990. "_groupIndex": 0,
  6991. "groupIndex": 0,
  6992. "_id": ""
  6993. },
  6994. {
  6995. "__type__": "cc.Node",
  6996. "_name": "New Label",
  6997. "_objFlags": 0,
  6998. "_parent": {
  6999. "__id__": 186
  7000. },
  7001. "_children": [],
  7002. "_active": true,
  7003. "_components": [
  7004. {
  7005. "__id__": 188
  7006. },
  7007. {
  7008. "__id__": 189
  7009. }
  7010. ],
  7011. "_prefab": {
  7012. "__id__": 190
  7013. },
  7014. "_opacity": 255,
  7015. "_color": {
  7016. "__type__": "cc.Color",
  7017. "r": 255,
  7018. "g": 255,
  7019. "b": 255,
  7020. "a": 255
  7021. },
  7022. "_contentSize": {
  7023. "__type__": "cc.Size",
  7024. "width": 66.5,
  7025. "height": 54.4
  7026. },
  7027. "_anchorPoint": {
  7028. "__type__": "cc.Vec2",
  7029. "x": 0.5,
  7030. "y": 0.5
  7031. },
  7032. "_trs": {
  7033. "__type__": "TypedArray",
  7034. "ctor": "Float64Array",
  7035. "array": [
  7036. 0,
  7037. 0,
  7038. 0,
  7039. 0,
  7040. 0,
  7041. 0,
  7042. 1,
  7043. 1,
  7044. 1,
  7045. 1
  7046. ]
  7047. },
  7048. "_eulerAngles": {
  7049. "__type__": "cc.Vec3",
  7050. "x": 0,
  7051. "y": 0,
  7052. "z": 0
  7053. },
  7054. "_skewX": 0,
  7055. "_skewY": 0,
  7056. "_is3DNode": false,
  7057. "_groupIndex": 0,
  7058. "groupIndex": 0,
  7059. "_id": ""
  7060. },
  7061. {
  7062. "__type__": "cc.Label",
  7063. "_name": "",
  7064. "_objFlags": 0,
  7065. "node": {
  7066. "__id__": 187
  7067. },
  7068. "_enabled": true,
  7069. "_materials": [
  7070. {
  7071. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  7072. }
  7073. ],
  7074. "_srcBlendFactor": 770,
  7075. "_dstBlendFactor": 771,
  7076. "_string": "强 化",
  7077. "_N$string": "强 化",
  7078. "_fontSize": 25,
  7079. "_lineHeight": 40,
  7080. "_enableWrapText": true,
  7081. "_N$file": {
  7082. "__uuid__": "1cdb5762-18d1-4d60-a364-c717229e08e9"
  7083. },
  7084. "_isSystemFontUsed": false,
  7085. "_spacingX": 0,
  7086. "_batchAsBitmap": false,
  7087. "_styleFlags": 0,
  7088. "_underlineHeight": 0,
  7089. "_N$horizontalAlign": 1,
  7090. "_N$verticalAlign": 1,
  7091. "_N$fontFamily": "Arial",
  7092. "_N$overflow": 0,
  7093. "_N$cacheMode": 0,
  7094. "_id": ""
  7095. },
  7096. {
  7097. "__type__": "cc.LabelOutline",
  7098. "_name": "",
  7099. "_objFlags": 0,
  7100. "node": {
  7101. "__id__": 187
  7102. },
  7103. "_enabled": true,
  7104. "_color": {
  7105. "__type__": "cc.Color",
  7106. "r": 0,
  7107. "g": 0,
  7108. "b": 0,
  7109. "a": 255
  7110. },
  7111. "_width": 2,
  7112. "_id": ""
  7113. },
  7114. {
  7115. "__type__": "cc.PrefabInfo",
  7116. "root": {
  7117. "__id__": 1
  7118. },
  7119. "asset": {
  7120. "__uuid__": "bead7d61-9e8e-4421-a54e-e260b141d73e"
  7121. },
  7122. "fileId": "02MupehFZDKqhdRahploYp",
  7123. "sync": false
  7124. },
  7125. {
  7126. "__type__": "cc.Sprite",
  7127. "_name": "",
  7128. "_objFlags": 0,
  7129. "node": {
  7130. "__id__": 186
  7131. },
  7132. "_enabled": true,
  7133. "_materials": [
  7134. {
  7135. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  7136. }
  7137. ],
  7138. "_srcBlendFactor": 770,
  7139. "_dstBlendFactor": 771,
  7140. "_spriteFrame": {
  7141. "__uuid__": "a5f6605f-0689-4bfb-8123-1b1721445855"
  7142. },
  7143. "_type": 1,
  7144. "_sizeMode": 1,
  7145. "_fillType": 0,
  7146. "_fillCenter": {
  7147. "__type__": "cc.Vec2",
  7148. "x": 0,
  7149. "y": 0
  7150. },
  7151. "_fillStart": 0,
  7152. "_fillRange": 0,
  7153. "_isTrimmedMode": true,
  7154. "_atlas": null,
  7155. "_id": ""
  7156. },
  7157. {
  7158. "__type__": "cc.Button",
  7159. "_name": "",
  7160. "_objFlags": 0,
  7161. "node": {
  7162. "__id__": 186
  7163. },
  7164. "_enabled": true,
  7165. "_normalMaterial": null,
  7166. "_grayMaterial": null,
  7167. "duration": 0.1,
  7168. "zoomScale": 0.9,
  7169. "clickEvents": [
  7170. {
  7171. "__id__": 193
  7172. }
  7173. ],
  7174. "_N$interactable": true,
  7175. "_N$enableAutoGrayEffect": false,
  7176. "_N$transition": 3,
  7177. "transition": 3,
  7178. "_N$normalColor": {
  7179. "__type__": "cc.Color",
  7180. "r": 255,
  7181. "g": 255,
  7182. "b": 255,
  7183. "a": 255
  7184. },
  7185. "_N$pressedColor": {
  7186. "__type__": "cc.Color",
  7187. "r": 211,
  7188. "g": 211,
  7189. "b": 211,
  7190. "a": 255
  7191. },
  7192. "pressedColor": {
  7193. "__type__": "cc.Color",
  7194. "r": 211,
  7195. "g": 211,
  7196. "b": 211,
  7197. "a": 255
  7198. },
  7199. "_N$hoverColor": {
  7200. "__type__": "cc.Color",
  7201. "r": 255,
  7202. "g": 255,
  7203. "b": 255,
  7204. "a": 255
  7205. },
  7206. "hoverColor": {
  7207. "__type__": "cc.Color",
  7208. "r": 255,
  7209. "g": 255,
  7210. "b": 255,
  7211. "a": 255
  7212. },
  7213. "_N$disabledColor": {
  7214. "__type__": "cc.Color",
  7215. "r": 124,
  7216. "g": 124,
  7217. "b": 124,
  7218. "a": 255
  7219. },
  7220. "_N$normalSprite": null,
  7221. "_N$pressedSprite": null,
  7222. "pressedSprite": null,
  7223. "_N$hoverSprite": null,
  7224. "hoverSprite": null,
  7225. "_N$disabledSprite": null,
  7226. "_N$target": null,
  7227. "_id": ""
  7228. },
  7229. {
  7230. "__type__": "cc.ClickEvent",
  7231. "target": {
  7232. "__id__": 1
  7233. },
  7234. "component": "",
  7235. "_componentId": "53742kmpmROJIwt92PlbKBG",
  7236. "handler": "onclickQH",
  7237. "customEventData": ""
  7238. },
  7239. {
  7240. "__type__": "cc.PrefabInfo",
  7241. "root": {
  7242. "__id__": 1
  7243. },
  7244. "asset": {
  7245. "__uuid__": "bead7d61-9e8e-4421-a54e-e260b141d73e"
  7246. },
  7247. "fileId": "25akBRrGtIkIn6XS9+nBC/",
  7248. "sync": false
  7249. },
  7250. {
  7251. "__type__": "cc.Node",
  7252. "_name": "uninstall",
  7253. "_objFlags": 0,
  7254. "_parent": {
  7255. "__id__": 43
  7256. },
  7257. "_children": [
  7258. {
  7259. "__id__": 196
  7260. }
  7261. ],
  7262. "_active": false,
  7263. "_components": [
  7264. {
  7265. "__id__": 200
  7266. },
  7267. {
  7268. "__id__": 201
  7269. }
  7270. ],
  7271. "_prefab": {
  7272. "__id__": 203
  7273. },
  7274. "_opacity": 255,
  7275. "_color": {
  7276. "__type__": "cc.Color",
  7277. "r": 255,
  7278. "g": 255,
  7279. "b": 255,
  7280. "a": 255
  7281. },
  7282. "_contentSize": {
  7283. "__type__": "cc.Size",
  7284. "width": 190,
  7285. "height": 76
  7286. },
  7287. "_anchorPoint": {
  7288. "__type__": "cc.Vec2",
  7289. "x": 0.5,
  7290. "y": 0.5
  7291. },
  7292. "_trs": {
  7293. "__type__": "TypedArray",
  7294. "ctor": "Float64Array",
  7295. "array": [
  7296. 0,
  7297. -233.897,
  7298. 0,
  7299. 0,
  7300. 0,
  7301. 0,
  7302. 1,
  7303. 1,
  7304. 1,
  7305. 0
  7306. ]
  7307. },
  7308. "_eulerAngles": {
  7309. "__type__": "cc.Vec3",
  7310. "x": 0,
  7311. "y": 0,
  7312. "z": 0
  7313. },
  7314. "_skewX": 0,
  7315. "_skewY": 0,
  7316. "_is3DNode": false,
  7317. "_groupIndex": 0,
  7318. "groupIndex": 0,
  7319. "_id": ""
  7320. },
  7321. {
  7322. "__type__": "cc.Node",
  7323. "_name": "New Label",
  7324. "_objFlags": 0,
  7325. "_parent": {
  7326. "__id__": 195
  7327. },
  7328. "_children": [],
  7329. "_active": true,
  7330. "_components": [
  7331. {
  7332. "__id__": 197
  7333. },
  7334. {
  7335. "__id__": 198
  7336. }
  7337. ],
  7338. "_prefab": {
  7339. "__id__": 199
  7340. },
  7341. "_opacity": 255,
  7342. "_color": {
  7343. "__type__": "cc.Color",
  7344. "r": 255,
  7345. "g": 255,
  7346. "b": 255,
  7347. "a": 255
  7348. },
  7349. "_contentSize": {
  7350. "__type__": "cc.Size",
  7351. "width": 66.5,
  7352. "height": 54.4
  7353. },
  7354. "_anchorPoint": {
  7355. "__type__": "cc.Vec2",
  7356. "x": 0.5,
  7357. "y": 0.5
  7358. },
  7359. "_trs": {
  7360. "__type__": "TypedArray",
  7361. "ctor": "Float64Array",
  7362. "array": [
  7363. 0,
  7364. 0,
  7365. 0,
  7366. 0,
  7367. 0,
  7368. 0,
  7369. 1,
  7370. 1,
  7371. 1,
  7372. 1
  7373. ]
  7374. },
  7375. "_eulerAngles": {
  7376. "__type__": "cc.Vec3",
  7377. "x": 0,
  7378. "y": 0,
  7379. "z": 0
  7380. },
  7381. "_skewX": 0,
  7382. "_skewY": 0,
  7383. "_is3DNode": false,
  7384. "_groupIndex": 0,
  7385. "groupIndex": 0,
  7386. "_id": ""
  7387. },
  7388. {
  7389. "__type__": "cc.Label",
  7390. "_name": "",
  7391. "_objFlags": 0,
  7392. "node": {
  7393. "__id__": 196
  7394. },
  7395. "_enabled": true,
  7396. "_materials": [
  7397. {
  7398. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  7399. }
  7400. ],
  7401. "_srcBlendFactor": 770,
  7402. "_dstBlendFactor": 771,
  7403. "_string": "卸 下",
  7404. "_N$string": "卸 下",
  7405. "_fontSize": 25,
  7406. "_lineHeight": 40,
  7407. "_enableWrapText": true,
  7408. "_N$file": {
  7409. "__uuid__": "1cdb5762-18d1-4d60-a364-c717229e08e9"
  7410. },
  7411. "_isSystemFontUsed": false,
  7412. "_spacingX": 0,
  7413. "_batchAsBitmap": false,
  7414. "_styleFlags": 0,
  7415. "_underlineHeight": 0,
  7416. "_N$horizontalAlign": 1,
  7417. "_N$verticalAlign": 1,
  7418. "_N$fontFamily": "Arial",
  7419. "_N$overflow": 0,
  7420. "_N$cacheMode": 0,
  7421. "_id": ""
  7422. },
  7423. {
  7424. "__type__": "cc.LabelOutline",
  7425. "_name": "",
  7426. "_objFlags": 0,
  7427. "node": {
  7428. "__id__": 196
  7429. },
  7430. "_enabled": true,
  7431. "_color": {
  7432. "__type__": "cc.Color",
  7433. "r": 0,
  7434. "g": 0,
  7435. "b": 0,
  7436. "a": 255
  7437. },
  7438. "_width": 2,
  7439. "_id": ""
  7440. },
  7441. {
  7442. "__type__": "cc.PrefabInfo",
  7443. "root": {
  7444. "__id__": 1
  7445. },
  7446. "asset": {
  7447. "__uuid__": "bead7d61-9e8e-4421-a54e-e260b141d73e"
  7448. },
  7449. "fileId": "f6SbHBrStKUrmbadaC1qm9",
  7450. "sync": false
  7451. },
  7452. {
  7453. "__type__": "cc.Sprite",
  7454. "_name": "",
  7455. "_objFlags": 0,
  7456. "node": {
  7457. "__id__": 195
  7458. },
  7459. "_enabled": true,
  7460. "_materials": [
  7461. {
  7462. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  7463. }
  7464. ],
  7465. "_srcBlendFactor": 770,
  7466. "_dstBlendFactor": 771,
  7467. "_spriteFrame": {
  7468. "__uuid__": "a5f6605f-0689-4bfb-8123-1b1721445855"
  7469. },
  7470. "_type": 1,
  7471. "_sizeMode": 1,
  7472. "_fillType": 0,
  7473. "_fillCenter": {
  7474. "__type__": "cc.Vec2",
  7475. "x": 0,
  7476. "y": 0
  7477. },
  7478. "_fillStart": 0,
  7479. "_fillRange": 0,
  7480. "_isTrimmedMode": true,
  7481. "_atlas": null,
  7482. "_id": ""
  7483. },
  7484. {
  7485. "__type__": "cc.Button",
  7486. "_name": "",
  7487. "_objFlags": 0,
  7488. "node": {
  7489. "__id__": 195
  7490. },
  7491. "_enabled": true,
  7492. "_normalMaterial": null,
  7493. "_grayMaterial": null,
  7494. "duration": 0.1,
  7495. "zoomScale": 0.9,
  7496. "clickEvents": [
  7497. {
  7498. "__id__": 202
  7499. }
  7500. ],
  7501. "_N$interactable": true,
  7502. "_N$enableAutoGrayEffect": false,
  7503. "_N$transition": 3,
  7504. "transition": 3,
  7505. "_N$normalColor": {
  7506. "__type__": "cc.Color",
  7507. "r": 255,
  7508. "g": 255,
  7509. "b": 255,
  7510. "a": 255
  7511. },
  7512. "_N$pressedColor": {
  7513. "__type__": "cc.Color",
  7514. "r": 211,
  7515. "g": 211,
  7516. "b": 211,
  7517. "a": 255
  7518. },
  7519. "pressedColor": {
  7520. "__type__": "cc.Color",
  7521. "r": 211,
  7522. "g": 211,
  7523. "b": 211,
  7524. "a": 255
  7525. },
  7526. "_N$hoverColor": {
  7527. "__type__": "cc.Color",
  7528. "r": 255,
  7529. "g": 255,
  7530. "b": 255,
  7531. "a": 255
  7532. },
  7533. "hoverColor": {
  7534. "__type__": "cc.Color",
  7535. "r": 255,
  7536. "g": 255,
  7537. "b": 255,
  7538. "a": 255
  7539. },
  7540. "_N$disabledColor": {
  7541. "__type__": "cc.Color",
  7542. "r": 124,
  7543. "g": 124,
  7544. "b": 124,
  7545. "a": 255
  7546. },
  7547. "_N$normalSprite": null,
  7548. "_N$pressedSprite": null,
  7549. "pressedSprite": null,
  7550. "_N$hoverSprite": null,
  7551. "hoverSprite": null,
  7552. "_N$disabledSprite": null,
  7553. "_N$target": null,
  7554. "_id": ""
  7555. },
  7556. {
  7557. "__type__": "cc.ClickEvent",
  7558. "target": {
  7559. "__id__": 1
  7560. },
  7561. "component": "",
  7562. "_componentId": "53742kmpmROJIwt92PlbKBG",
  7563. "handler": "onclickUn",
  7564. "customEventData": ""
  7565. },
  7566. {
  7567. "__type__": "cc.PrefabInfo",
  7568. "root": {
  7569. "__id__": 1
  7570. },
  7571. "asset": {
  7572. "__uuid__": "bead7d61-9e8e-4421-a54e-e260b141d73e"
  7573. },
  7574. "fileId": "da3Mknh1dD9LPXGs+dZtrp",
  7575. "sync": false
  7576. },
  7577. {
  7578. "__type__": "cc.PrefabInfo",
  7579. "root": {
  7580. "__id__": 1
  7581. },
  7582. "asset": {
  7583. "__uuid__": "bead7d61-9e8e-4421-a54e-e260b141d73e"
  7584. },
  7585. "fileId": "60i26SuZhEqZdaj8R+SNPz",
  7586. "sync": false
  7587. },
  7588. {
  7589. "__type__": "cc.Node",
  7590. "_name": "daoju",
  7591. "_objFlags": 0,
  7592. "_parent": {
  7593. "__id__": 1
  7594. },
  7595. "_children": [
  7596. {
  7597. "__id__": 206
  7598. },
  7599. {
  7600. "__id__": 220
  7601. }
  7602. ],
  7603. "_active": false,
  7604. "_components": [],
  7605. "_prefab": {
  7606. "__id__": 258
  7607. },
  7608. "_opacity": 255,
  7609. "_color": {
  7610. "__type__": "cc.Color",
  7611. "r": 255,
  7612. "g": 255,
  7613. "b": 255,
  7614. "a": 255
  7615. },
  7616. "_contentSize": {
  7617. "__type__": "cc.Size",
  7618. "width": 450,
  7619. "height": 600
  7620. },
  7621. "_anchorPoint": {
  7622. "__type__": "cc.Vec2",
  7623. "x": 0.5,
  7624. "y": 0.5
  7625. },
  7626. "_trs": {
  7627. "__type__": "TypedArray",
  7628. "ctor": "Float64Array",
  7629. "array": [
  7630. 0,
  7631. 0,
  7632. 0,
  7633. 0,
  7634. 0,
  7635. 0,
  7636. 1,
  7637. 1,
  7638. 1,
  7639. 1
  7640. ]
  7641. },
  7642. "_eulerAngles": {
  7643. "__type__": "cc.Vec3",
  7644. "x": 0,
  7645. "y": 0,
  7646. "z": 0
  7647. },
  7648. "_skewX": 0,
  7649. "_skewY": 0,
  7650. "_is3DNode": false,
  7651. "_groupIndex": 0,
  7652. "groupIndex": 0,
  7653. "_id": ""
  7654. },
  7655. {
  7656. "__type__": "cc.Node",
  7657. "_name": "equip_info",
  7658. "_objFlags": 0,
  7659. "_parent": {
  7660. "__id__": 205
  7661. },
  7662. "_children": [
  7663. {
  7664. "__id__": 207
  7665. },
  7666. {
  7667. "__id__": 211
  7668. }
  7669. ],
  7670. "_active": true,
  7671. "_components": [],
  7672. "_prefab": {
  7673. "__id__": 219
  7674. },
  7675. "_opacity": 255,
  7676. "_color": {
  7677. "__type__": "cc.Color",
  7678. "r": 255,
  7679. "g": 255,
  7680. "b": 255,
  7681. "a": 255
  7682. },
  7683. "_contentSize": {
  7684. "__type__": "cc.Size",
  7685. "width": 450,
  7686. "height": 600
  7687. },
  7688. "_anchorPoint": {
  7689. "__type__": "cc.Vec2",
  7690. "x": 0.5,
  7691. "y": 0.5
  7692. },
  7693. "_trs": {
  7694. "__type__": "TypedArray",
  7695. "ctor": "Float64Array",
  7696. "array": [
  7697. 0,
  7698. 0,
  7699. 0,
  7700. 0,
  7701. 0,
  7702. 0,
  7703. 1,
  7704. 1,
  7705. 1,
  7706. 1
  7707. ]
  7708. },
  7709. "_eulerAngles": {
  7710. "__type__": "cc.Vec3",
  7711. "x": 0,
  7712. "y": 0,
  7713. "z": 0
  7714. },
  7715. "_skewX": 0,
  7716. "_skewY": 0,
  7717. "_is3DNode": false,
  7718. "_groupIndex": 0,
  7719. "groupIndex": 0,
  7720. "_id": ""
  7721. },
  7722. {
  7723. "__type__": "cc.Node",
  7724. "_name": "New Sprite",
  7725. "_objFlags": 0,
  7726. "_parent": {
  7727. "__id__": 206
  7728. },
  7729. "_children": [],
  7730. "_active": true,
  7731. "_components": [
  7732. {
  7733. "__id__": 208
  7734. },
  7735. {
  7736. "__id__": 209
  7737. }
  7738. ],
  7739. "_prefab": {
  7740. "__id__": 210
  7741. },
  7742. "_opacity": 255,
  7743. "_color": {
  7744. "__type__": "cc.Color",
  7745. "r": 255,
  7746. "g": 255,
  7747. "b": 255,
  7748. "a": 255
  7749. },
  7750. "_contentSize": {
  7751. "__type__": "cc.Size",
  7752. "width": 86,
  7753. "height": 86
  7754. },
  7755. "_anchorPoint": {
  7756. "__type__": "cc.Vec2",
  7757. "x": 0.5,
  7758. "y": 0.5
  7759. },
  7760. "_trs": {
  7761. "__type__": "TypedArray",
  7762. "ctor": "Float64Array",
  7763. "array": [
  7764. 0,
  7765. 231.664,
  7766. 0,
  7767. 0,
  7768. 0,
  7769. 0,
  7770. 1,
  7771. 1,
  7772. 1,
  7773. 0
  7774. ]
  7775. },
  7776. "_eulerAngles": {
  7777. "__type__": "cc.Vec3",
  7778. "x": 0,
  7779. "y": 0,
  7780. "z": 0
  7781. },
  7782. "_skewX": 0,
  7783. "_skewY": 0,
  7784. "_is3DNode": false,
  7785. "_groupIndex": 0,
  7786. "groupIndex": 0,
  7787. "_id": ""
  7788. },
  7789. {
  7790. "__type__": "cc.Sprite",
  7791. "_name": "",
  7792. "_objFlags": 0,
  7793. "node": {
  7794. "__id__": 207
  7795. },
  7796. "_enabled": true,
  7797. "_materials": [
  7798. {
  7799. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  7800. }
  7801. ],
  7802. "_srcBlendFactor": 770,
  7803. "_dstBlendFactor": 771,
  7804. "_spriteFrame": null,
  7805. "_type": 0,
  7806. "_sizeMode": 0,
  7807. "_fillType": 0,
  7808. "_fillCenter": {
  7809. "__type__": "cc.Vec2",
  7810. "x": 0,
  7811. "y": 0
  7812. },
  7813. "_fillStart": 0,
  7814. "_fillRange": 0,
  7815. "_isTrimmedMode": true,
  7816. "_atlas": null,
  7817. "_id": ""
  7818. },
  7819. {
  7820. "__type__": "cc.Button",
  7821. "_name": "",
  7822. "_objFlags": 0,
  7823. "node": {
  7824. "__id__": 207
  7825. },
  7826. "_enabled": true,
  7827. "_normalMaterial": null,
  7828. "_grayMaterial": null,
  7829. "duration": 0.1,
  7830. "zoomScale": 0.9,
  7831. "clickEvents": [],
  7832. "_N$interactable": true,
  7833. "_N$enableAutoGrayEffect": false,
  7834. "_N$transition": 3,
  7835. "transition": 3,
  7836. "_N$normalColor": {
  7837. "__type__": "cc.Color",
  7838. "r": 255,
  7839. "g": 255,
  7840. "b": 255,
  7841. "a": 255
  7842. },
  7843. "_N$pressedColor": {
  7844. "__type__": "cc.Color",
  7845. "r": 211,
  7846. "g": 211,
  7847. "b": 211,
  7848. "a": 255
  7849. },
  7850. "pressedColor": {
  7851. "__type__": "cc.Color",
  7852. "r": 211,
  7853. "g": 211,
  7854. "b": 211,
  7855. "a": 255
  7856. },
  7857. "_N$hoverColor": {
  7858. "__type__": "cc.Color",
  7859. "r": 255,
  7860. "g": 255,
  7861. "b": 255,
  7862. "a": 255
  7863. },
  7864. "hoverColor": {
  7865. "__type__": "cc.Color",
  7866. "r": 255,
  7867. "g": 255,
  7868. "b": 255,
  7869. "a": 255
  7870. },
  7871. "_N$disabledColor": {
  7872. "__type__": "cc.Color",
  7873. "r": 124,
  7874. "g": 124,
  7875. "b": 124,
  7876. "a": 255
  7877. },
  7878. "_N$normalSprite": null,
  7879. "_N$pressedSprite": null,
  7880. "pressedSprite": null,
  7881. "_N$hoverSprite": null,
  7882. "hoverSprite": null,
  7883. "_N$disabledSprite": null,
  7884. "_N$target": null,
  7885. "_id": ""
  7886. },
  7887. {
  7888. "__type__": "cc.PrefabInfo",
  7889. "root": {
  7890. "__id__": 1
  7891. },
  7892. "asset": {
  7893. "__uuid__": "bead7d61-9e8e-4421-a54e-e260b141d73e"
  7894. },
  7895. "fileId": "6aa6K0pZZALrKbI4I6yI/Y",
  7896. "sync": false
  7897. },
  7898. {
  7899. "__type__": "cc.Node",
  7900. "_name": "New Node",
  7901. "_objFlags": 0,
  7902. "_parent": {
  7903. "__id__": 206
  7904. },
  7905. "_children": [
  7906. {
  7907. "__id__": 212
  7908. },
  7909. {
  7910. "__id__": 215
  7911. }
  7912. ],
  7913. "_active": true,
  7914. "_components": [],
  7915. "_prefab": {
  7916. "__id__": 218
  7917. },
  7918. "_opacity": 255,
  7919. "_color": {
  7920. "__type__": "cc.Color",
  7921. "r": 255,
  7922. "g": 255,
  7923. "b": 255,
  7924. "a": 255
  7925. },
  7926. "_contentSize": {
  7927. "__type__": "cc.Size",
  7928. "width": 420,
  7929. "height": 300
  7930. },
  7931. "_anchorPoint": {
  7932. "__type__": "cc.Vec2",
  7933. "x": 0.5,
  7934. "y": 0.5
  7935. },
  7936. "_trs": {
  7937. "__type__": "TypedArray",
  7938. "ctor": "Float64Array",
  7939. "array": [
  7940. 0,
  7941. -17.483,
  7942. 0,
  7943. 0,
  7944. 0,
  7945. 0,
  7946. 1,
  7947. 1,
  7948. 1,
  7949. 1
  7950. ]
  7951. },
  7952. "_eulerAngles": {
  7953. "__type__": "cc.Vec3",
  7954. "x": 0,
  7955. "y": 0,
  7956. "z": 0
  7957. },
  7958. "_skewX": 0,
  7959. "_skewY": 0,
  7960. "_is3DNode": false,
  7961. "_groupIndex": 0,
  7962. "groupIndex": 0,
  7963. "_id": ""
  7964. },
  7965. {
  7966. "__type__": "cc.Node",
  7967. "_name": "New Sprite",
  7968. "_objFlags": 0,
  7969. "_parent": {
  7970. "__id__": 211
  7971. },
  7972. "_children": [],
  7973. "_active": true,
  7974. "_components": [
  7975. {
  7976. "__id__": 213
  7977. }
  7978. ],
  7979. "_prefab": {
  7980. "__id__": 214
  7981. },
  7982. "_opacity": 255,
  7983. "_color": {
  7984. "__type__": "cc.Color",
  7985. "r": 255,
  7986. "g": 255,
  7987. "b": 255,
  7988. "a": 255
  7989. },
  7990. "_contentSize": {
  7991. "__type__": "cc.Size",
  7992. "width": 400,
  7993. "height": 150
  7994. },
  7995. "_anchorPoint": {
  7996. "__type__": "cc.Vec2",
  7997. "x": 0.5,
  7998. "y": 0.5
  7999. },
  8000. "_trs": {
  8001. "__type__": "TypedArray",
  8002. "ctor": "Float64Array",
  8003. "array": [
  8004. 0,
  8005. 76.909,
  8006. 0,
  8007. 0,
  8008. 0,
  8009. 0,
  8010. 1,
  8011. 1,
  8012. 1,
  8013. 1
  8014. ]
  8015. },
  8016. "_eulerAngles": {
  8017. "__type__": "cc.Vec3",
  8018. "x": 0,
  8019. "y": 0,
  8020. "z": 0
  8021. },
  8022. "_skewX": 0,
  8023. "_skewY": 0,
  8024. "_is3DNode": false,
  8025. "_groupIndex": 0,
  8026. "groupIndex": 0,
  8027. "_id": ""
  8028. },
  8029. {
  8030. "__type__": "cc.Sprite",
  8031. "_name": "",
  8032. "_objFlags": 0,
  8033. "node": {
  8034. "__id__": 212
  8035. },
  8036. "_enabled": true,
  8037. "_materials": [
  8038. {
  8039. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  8040. }
  8041. ],
  8042. "_srcBlendFactor": 770,
  8043. "_dstBlendFactor": 771,
  8044. "_spriteFrame": {
  8045. "__uuid__": "5822059a-8a96-4510-b4de-7adf1113f361"
  8046. },
  8047. "_type": 1,
  8048. "_sizeMode": 0,
  8049. "_fillType": 0,
  8050. "_fillCenter": {
  8051. "__type__": "cc.Vec2",
  8052. "x": 0,
  8053. "y": 0
  8054. },
  8055. "_fillStart": 0,
  8056. "_fillRange": 0,
  8057. "_isTrimmedMode": true,
  8058. "_atlas": null,
  8059. "_id": ""
  8060. },
  8061. {
  8062. "__type__": "cc.PrefabInfo",
  8063. "root": {
  8064. "__id__": 1
  8065. },
  8066. "asset": {
  8067. "__uuid__": "bead7d61-9e8e-4421-a54e-e260b141d73e"
  8068. },
  8069. "fileId": "823vi4KslLBoPn6y3AVLK+",
  8070. "sync": false
  8071. },
  8072. {
  8073. "__type__": "cc.Node",
  8074. "_name": "good_about",
  8075. "_objFlags": 0,
  8076. "_parent": {
  8077. "__id__": 211
  8078. },
  8079. "_children": [],
  8080. "_active": true,
  8081. "_components": [
  8082. {
  8083. "__id__": 216
  8084. }
  8085. ],
  8086. "_prefab": {
  8087. "__id__": 217
  8088. },
  8089. "_opacity": 255,
  8090. "_color": {
  8091. "__type__": "cc.Color",
  8092. "r": 75,
  8093. "g": 43,
  8094. "b": 0,
  8095. "a": 255
  8096. },
  8097. "_contentSize": {
  8098. "__type__": "cc.Size",
  8099. "width": 380,
  8100. "height": 31.5
  8101. },
  8102. "_anchorPoint": {
  8103. "__type__": "cc.Vec2",
  8104. "x": 0.5,
  8105. "y": 1
  8106. },
  8107. "_trs": {
  8108. "__type__": "TypedArray",
  8109. "ctor": "Float64Array",
  8110. "array": [
  8111. 0,
  8112. 142.694,
  8113. 0,
  8114. 0,
  8115. 0,
  8116. 0,
  8117. 1,
  8118. 1,
  8119. 1,
  8120. 1
  8121. ]
  8122. },
  8123. "_eulerAngles": {
  8124. "__type__": "cc.Vec3",
  8125. "x": 0,
  8126. "y": 0,
  8127. "z": 0
  8128. },
  8129. "_skewX": 0,
  8130. "_skewY": 0,
  8131. "_is3DNode": false,
  8132. "_groupIndex": 0,
  8133. "groupIndex": 0,
  8134. "_id": ""
  8135. },
  8136. {
  8137. "__type__": "cc.Label",
  8138. "_name": "",
  8139. "_objFlags": 0,
  8140. "node": {
  8141. "__id__": 215
  8142. },
  8143. "_enabled": true,
  8144. "_materials": [
  8145. {
  8146. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  8147. }
  8148. ],
  8149. "_srcBlendFactor": 770,
  8150. "_dstBlendFactor": 771,
  8151. "_string": "可用于装备强化",
  8152. "_N$string": "可用于装备强化",
  8153. "_fontSize": 25,
  8154. "_lineHeight": 0,
  8155. "_enableWrapText": true,
  8156. "_N$file": {
  8157. "__uuid__": "1cdb5762-18d1-4d60-a364-c717229e08e9"
  8158. },
  8159. "_isSystemFontUsed": false,
  8160. "_spacingX": 0,
  8161. "_batchAsBitmap": false,
  8162. "_styleFlags": 0,
  8163. "_underlineHeight": 0,
  8164. "_N$horizontalAlign": 1,
  8165. "_N$verticalAlign": 1,
  8166. "_N$fontFamily": "Arial",
  8167. "_N$overflow": 3,
  8168. "_N$cacheMode": 0,
  8169. "_id": ""
  8170. },
  8171. {
  8172. "__type__": "cc.PrefabInfo",
  8173. "root": {
  8174. "__id__": 1
  8175. },
  8176. "asset": {
  8177. "__uuid__": "bead7d61-9e8e-4421-a54e-e260b141d73e"
  8178. },
  8179. "fileId": "9byKKGLzNGgZm6rAxSJMl9",
  8180. "sync": false
  8181. },
  8182. {
  8183. "__type__": "cc.PrefabInfo",
  8184. "root": {
  8185. "__id__": 1
  8186. },
  8187. "asset": {
  8188. "__uuid__": "bead7d61-9e8e-4421-a54e-e260b141d73e"
  8189. },
  8190. "fileId": "b7MzXI5MpOBa8DXtxWkQj4",
  8191. "sync": false
  8192. },
  8193. {
  8194. "__type__": "cc.PrefabInfo",
  8195. "root": {
  8196. "__id__": 1
  8197. },
  8198. "asset": {
  8199. "__uuid__": "bead7d61-9e8e-4421-a54e-e260b141d73e"
  8200. },
  8201. "fileId": "eaC80BQvFE046zEzglglAy",
  8202. "sync": false
  8203. },
  8204. {
  8205. "__type__": "cc.Node",
  8206. "_name": "New Node",
  8207. "_objFlags": 0,
  8208. "_parent": {
  8209. "__id__": 205
  8210. },
  8211. "_children": [
  8212. {
  8213. "__id__": 221
  8214. },
  8215. {
  8216. "__id__": 224
  8217. },
  8218. {
  8219. "__id__": 227
  8220. },
  8221. {
  8222. "__id__": 233
  8223. },
  8224. {
  8225. "__id__": 240
  8226. },
  8227. {
  8228. "__id__": 244
  8229. },
  8230. {
  8231. "__id__": 248
  8232. }
  8233. ],
  8234. "_active": true,
  8235. "_components": [],
  8236. "_prefab": {
  8237. "__id__": 257
  8238. },
  8239. "_opacity": 255,
  8240. "_color": {
  8241. "__type__": "cc.Color",
  8242. "r": 255,
  8243. "g": 255,
  8244. "b": 255,
  8245. "a": 255
  8246. },
  8247. "_contentSize": {
  8248. "__type__": "cc.Size",
  8249. "width": 400,
  8250. "height": 160
  8251. },
  8252. "_anchorPoint": {
  8253. "__type__": "cc.Vec2",
  8254. "x": 0.5,
  8255. "y": 0.5
  8256. },
  8257. "_trs": {
  8258. "__type__": "TypedArray",
  8259. "ctor": "Float64Array",
  8260. "array": [
  8261. 0,
  8262. -108.376,
  8263. 0,
  8264. 0,
  8265. 0,
  8266. 0,
  8267. 1,
  8268. 1,
  8269. 1,
  8270. 1
  8271. ]
  8272. },
  8273. "_eulerAngles": {
  8274. "__type__": "cc.Vec3",
  8275. "x": 0,
  8276. "y": 0,
  8277. "z": 0
  8278. },
  8279. "_skewX": 0,
  8280. "_skewY": 0,
  8281. "_is3DNode": false,
  8282. "_groupIndex": 0,
  8283. "groupIndex": 0,
  8284. "_id": ""
  8285. },
  8286. {
  8287. "__type__": "cc.Node",
  8288. "_name": "New Sprite",
  8289. "_objFlags": 0,
  8290. "_parent": {
  8291. "__id__": 220
  8292. },
  8293. "_children": [],
  8294. "_active": true,
  8295. "_components": [
  8296. {
  8297. "__id__": 222
  8298. }
  8299. ],
  8300. "_prefab": {
  8301. "__id__": 223
  8302. },
  8303. "_opacity": 255,
  8304. "_color": {
  8305. "__type__": "cc.Color",
  8306. "r": 255,
  8307. "g": 255,
  8308. "b": 255,
  8309. "a": 255
  8310. },
  8311. "_contentSize": {
  8312. "__type__": "cc.Size",
  8313. "width": 400,
  8314. "height": 160
  8315. },
  8316. "_anchorPoint": {
  8317. "__type__": "cc.Vec2",
  8318. "x": 0.5,
  8319. "y": 0.5
  8320. },
  8321. "_trs": {
  8322. "__type__": "TypedArray",
  8323. "ctor": "Float64Array",
  8324. "array": [
  8325. 0,
  8326. 0,
  8327. 0,
  8328. 0,
  8329. 0,
  8330. 0,
  8331. 1,
  8332. 1,
  8333. 1,
  8334. 1
  8335. ]
  8336. },
  8337. "_eulerAngles": {
  8338. "__type__": "cc.Vec3",
  8339. "x": 0,
  8340. "y": 0,
  8341. "z": 0
  8342. },
  8343. "_skewX": 0,
  8344. "_skewY": 0,
  8345. "_is3DNode": false,
  8346. "_groupIndex": 0,
  8347. "groupIndex": 0,
  8348. "_id": ""
  8349. },
  8350. {
  8351. "__type__": "cc.Sprite",
  8352. "_name": "",
  8353. "_objFlags": 0,
  8354. "node": {
  8355. "__id__": 221
  8356. },
  8357. "_enabled": true,
  8358. "_materials": [
  8359. {
  8360. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  8361. }
  8362. ],
  8363. "_srcBlendFactor": 770,
  8364. "_dstBlendFactor": 771,
  8365. "_spriteFrame": {
  8366. "__uuid__": "5822059a-8a96-4510-b4de-7adf1113f361"
  8367. },
  8368. "_type": 1,
  8369. "_sizeMode": 0,
  8370. "_fillType": 0,
  8371. "_fillCenter": {
  8372. "__type__": "cc.Vec2",
  8373. "x": 0,
  8374. "y": 0
  8375. },
  8376. "_fillStart": 0,
  8377. "_fillRange": 0,
  8378. "_isTrimmedMode": true,
  8379. "_atlas": null,
  8380. "_id": ""
  8381. },
  8382. {
  8383. "__type__": "cc.PrefabInfo",
  8384. "root": {
  8385. "__id__": 1
  8386. },
  8387. "asset": {
  8388. "__uuid__": "bead7d61-9e8e-4421-a54e-e260b141d73e"
  8389. },
  8390. "fileId": "2c7PX/PZFLa409esudDNv3",
  8391. "sync": false
  8392. },
  8393. {
  8394. "__type__": "cc.Node",
  8395. "_name": "New Label",
  8396. "_objFlags": 0,
  8397. "_parent": {
  8398. "__id__": 220
  8399. },
  8400. "_children": [],
  8401. "_active": true,
  8402. "_components": [
  8403. {
  8404. "__id__": 225
  8405. }
  8406. ],
  8407. "_prefab": {
  8408. "__id__": 226
  8409. },
  8410. "_opacity": 255,
  8411. "_color": {
  8412. "__type__": "cc.Color",
  8413. "r": 75,
  8414. "g": 43,
  8415. "b": 0,
  8416. "a": 255
  8417. },
  8418. "_contentSize": {
  8419. "__type__": "cc.Size",
  8420. "width": 380,
  8421. "height": 31.5
  8422. },
  8423. "_anchorPoint": {
  8424. "__type__": "cc.Vec2",
  8425. "x": 0.5,
  8426. "y": 1
  8427. },
  8428. "_trs": {
  8429. "__type__": "TypedArray",
  8430. "ctor": "Float64Array",
  8431. "array": [
  8432. 0,
  8433. 73.557,
  8434. 0,
  8435. 0,
  8436. 0,
  8437. 0,
  8438. 1,
  8439. 1,
  8440. 1,
  8441. 1
  8442. ]
  8443. },
  8444. "_eulerAngles": {
  8445. "__type__": "cc.Vec3",
  8446. "x": 0,
  8447. "y": 0,
  8448. "z": 0
  8449. },
  8450. "_skewX": 0,
  8451. "_skewY": 0,
  8452. "_is3DNode": false,
  8453. "_groupIndex": 0,
  8454. "groupIndex": 0,
  8455. "_id": ""
  8456. },
  8457. {
  8458. "__type__": "cc.Label",
  8459. "_name": "",
  8460. "_objFlags": 0,
  8461. "node": {
  8462. "__id__": 224
  8463. },
  8464. "_enabled": true,
  8465. "_materials": [
  8466. {
  8467. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  8468. }
  8469. ],
  8470. "_srcBlendFactor": 770,
  8471. "_dstBlendFactor": 771,
  8472. "_string": "请选择要使用的数量",
  8473. "_N$string": "请选择要使用的数量",
  8474. "_fontSize": 25,
  8475. "_lineHeight": 0,
  8476. "_enableWrapText": true,
  8477. "_N$file": {
  8478. "__uuid__": "1cdb5762-18d1-4d60-a364-c717229e08e9"
  8479. },
  8480. "_isSystemFontUsed": false,
  8481. "_spacingX": 0,
  8482. "_batchAsBitmap": false,
  8483. "_styleFlags": 0,
  8484. "_underlineHeight": 0,
  8485. "_N$horizontalAlign": 1,
  8486. "_N$verticalAlign": 1,
  8487. "_N$fontFamily": "Arial",
  8488. "_N$overflow": 3,
  8489. "_N$cacheMode": 0,
  8490. "_id": ""
  8491. },
  8492. {
  8493. "__type__": "cc.PrefabInfo",
  8494. "root": {
  8495. "__id__": 1
  8496. },
  8497. "asset": {
  8498. "__uuid__": "bead7d61-9e8e-4421-a54e-e260b141d73e"
  8499. },
  8500. "fileId": "5eQq8GG0FBZb4r8wMZWZv1",
  8501. "sync": false
  8502. },
  8503. {
  8504. "__type__": "cc.Node",
  8505. "_name": "New Sprite",
  8506. "_objFlags": 0,
  8507. "_parent": {
  8508. "__id__": 220
  8509. },
  8510. "_children": [
  8511. {
  8512. "__id__": 228
  8513. }
  8514. ],
  8515. "_active": true,
  8516. "_components": [
  8517. {
  8518. "__id__": 231
  8519. }
  8520. ],
  8521. "_prefab": {
  8522. "__id__": 232
  8523. },
  8524. "_opacity": 255,
  8525. "_color": {
  8526. "__type__": "cc.Color",
  8527. "r": 255,
  8528. "g": 255,
  8529. "b": 255,
  8530. "a": 255
  8531. },
  8532. "_contentSize": {
  8533. "__type__": "cc.Size",
  8534. "width": 200,
  8535. "height": 50
  8536. },
  8537. "_anchorPoint": {
  8538. "__type__": "cc.Vec2",
  8539. "x": 0.5,
  8540. "y": 0.5
  8541. },
  8542. "_trs": {
  8543. "__type__": "TypedArray",
  8544. "ctor": "Float64Array",
  8545. "array": [
  8546. 0,
  8547. 8.525,
  8548. 0,
  8549. 0,
  8550. 0,
  8551. 0,
  8552. 1,
  8553. 1,
  8554. 1,
  8555. 1
  8556. ]
  8557. },
  8558. "_eulerAngles": {
  8559. "__type__": "cc.Vec3",
  8560. "x": 0,
  8561. "y": 0,
  8562. "z": 0
  8563. },
  8564. "_skewX": 0,
  8565. "_skewY": 0,
  8566. "_is3DNode": false,
  8567. "_groupIndex": 0,
  8568. "groupIndex": 0,
  8569. "_id": ""
  8570. },
  8571. {
  8572. "__type__": "cc.Node",
  8573. "_name": "New Label",
  8574. "_objFlags": 0,
  8575. "_parent": {
  8576. "__id__": 227
  8577. },
  8578. "_children": [],
  8579. "_active": true,
  8580. "_components": [
  8581. {
  8582. "__id__": 229
  8583. }
  8584. ],
  8585. "_prefab": {
  8586. "__id__": 230
  8587. },
  8588. "_opacity": 255,
  8589. "_color": {
  8590. "__type__": "cc.Color",
  8591. "r": 75,
  8592. "g": 43,
  8593. "b": 0,
  8594. "a": 255
  8595. },
  8596. "_contentSize": {
  8597. "__type__": "cc.Size",
  8598. "width": 180,
  8599. "height": 31.5
  8600. },
  8601. "_anchorPoint": {
  8602. "__type__": "cc.Vec2",
  8603. "x": 0.5,
  8604. "y": 0.5
  8605. },
  8606. "_trs": {
  8607. "__type__": "TypedArray",
  8608. "ctor": "Float64Array",
  8609. "array": [
  8610. 0,
  8611. 0,
  8612. 0,
  8613. 0,
  8614. 0,
  8615. 0,
  8616. 1,
  8617. 1,
  8618. 1,
  8619. 1
  8620. ]
  8621. },
  8622. "_eulerAngles": {
  8623. "__type__": "cc.Vec3",
  8624. "x": 0,
  8625. "y": 0,
  8626. "z": 0
  8627. },
  8628. "_skewX": 0,
  8629. "_skewY": 0,
  8630. "_is3DNode": false,
  8631. "_groupIndex": 0,
  8632. "groupIndex": 0,
  8633. "_id": ""
  8634. },
  8635. {
  8636. "__type__": "cc.Label",
  8637. "_name": "",
  8638. "_objFlags": 0,
  8639. "node": {
  8640. "__id__": 228
  8641. },
  8642. "_enabled": true,
  8643. "_materials": [
  8644. {
  8645. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  8646. }
  8647. ],
  8648. "_srcBlendFactor": 770,
  8649. "_dstBlendFactor": 771,
  8650. "_string": "1",
  8651. "_N$string": "1",
  8652. "_fontSize": 25,
  8653. "_lineHeight": 0,
  8654. "_enableWrapText": true,
  8655. "_N$file": {
  8656. "__uuid__": "1cdb5762-18d1-4d60-a364-c717229e08e9"
  8657. },
  8658. "_isSystemFontUsed": false,
  8659. "_spacingX": 0,
  8660. "_batchAsBitmap": false,
  8661. "_styleFlags": 0,
  8662. "_underlineHeight": 0,
  8663. "_N$horizontalAlign": 1,
  8664. "_N$verticalAlign": 1,
  8665. "_N$fontFamily": "Arial",
  8666. "_N$overflow": 3,
  8667. "_N$cacheMode": 0,
  8668. "_id": ""
  8669. },
  8670. {
  8671. "__type__": "cc.PrefabInfo",
  8672. "root": {
  8673. "__id__": 1
  8674. },
  8675. "asset": {
  8676. "__uuid__": "bead7d61-9e8e-4421-a54e-e260b141d73e"
  8677. },
  8678. "fileId": "4ezHLgzn1ITYW+MdoV+A0d",
  8679. "sync": false
  8680. },
  8681. {
  8682. "__type__": "cc.Sprite",
  8683. "_name": "",
  8684. "_objFlags": 0,
  8685. "node": {
  8686. "__id__": 227
  8687. },
  8688. "_enabled": true,
  8689. "_materials": [
  8690. {
  8691. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  8692. }
  8693. ],
  8694. "_srcBlendFactor": 770,
  8695. "_dstBlendFactor": 771,
  8696. "_spriteFrame": {
  8697. "__uuid__": "68aa4e63-ced5-4268-b3da-50d514cee71b"
  8698. },
  8699. "_type": 1,
  8700. "_sizeMode": 0,
  8701. "_fillType": 0,
  8702. "_fillCenter": {
  8703. "__type__": "cc.Vec2",
  8704. "x": 0,
  8705. "y": 0
  8706. },
  8707. "_fillStart": 0,
  8708. "_fillRange": 0,
  8709. "_isTrimmedMode": true,
  8710. "_atlas": null,
  8711. "_id": ""
  8712. },
  8713. {
  8714. "__type__": "cc.PrefabInfo",
  8715. "root": {
  8716. "__id__": 1
  8717. },
  8718. "asset": {
  8719. "__uuid__": "bead7d61-9e8e-4421-a54e-e260b141d73e"
  8720. },
  8721. "fileId": "cf3YUJ9IJIqYbpBdEfgIHS",
  8722. "sync": false
  8723. },
  8724. {
  8725. "__type__": "cc.Node",
  8726. "_name": "New ProgressBar",
  8727. "_objFlags": 0,
  8728. "_parent": {
  8729. "__id__": 220
  8730. },
  8731. "_children": [
  8732. {
  8733. "__id__": 234
  8734. }
  8735. ],
  8736. "_active": true,
  8737. "_components": [
  8738. {
  8739. "__id__": 237
  8740. },
  8741. {
  8742. "__id__": 238
  8743. }
  8744. ],
  8745. "_prefab": {
  8746. "__id__": 239
  8747. },
  8748. "_opacity": 255,
  8749. "_color": {
  8750. "__type__": "cc.Color",
  8751. "r": 255,
  8752. "g": 255,
  8753. "b": 255,
  8754. "a": 255
  8755. },
  8756. "_contentSize": {
  8757. "__type__": "cc.Size",
  8758. "width": 340,
  8759. "height": 30
  8760. },
  8761. "_anchorPoint": {
  8762. "__type__": "cc.Vec2",
  8763. "x": 0.5,
  8764. "y": 0.5
  8765. },
  8766. "_trs": {
  8767. "__type__": "TypedArray",
  8768. "ctor": "Float64Array",
  8769. "array": [
  8770. 0,
  8771. -43.116,
  8772. 0,
  8773. 0,
  8774. 0,
  8775. 0,
  8776. 1,
  8777. 0.8,
  8778. 0.8,
  8779. 0.8
  8780. ]
  8781. },
  8782. "_eulerAngles": {
  8783. "__type__": "cc.Vec3",
  8784. "x": 0,
  8785. "y": 0,
  8786. "z": 0
  8787. },
  8788. "_skewX": 0,
  8789. "_skewY": 0,
  8790. "_is3DNode": false,
  8791. "_groupIndex": 0,
  8792. "groupIndex": 0,
  8793. "_id": ""
  8794. },
  8795. {
  8796. "__type__": "cc.Node",
  8797. "_name": "bar",
  8798. "_objFlags": 0,
  8799. "_parent": {
  8800. "__id__": 233
  8801. },
  8802. "_children": [],
  8803. "_active": true,
  8804. "_components": [
  8805. {
  8806. "__id__": 235
  8807. }
  8808. ],
  8809. "_prefab": {
  8810. "__id__": 236
  8811. },
  8812. "_opacity": 255,
  8813. "_color": {
  8814. "__type__": "cc.Color",
  8815. "r": 255,
  8816. "g": 255,
  8817. "b": 255,
  8818. "a": 255
  8819. },
  8820. "_contentSize": {
  8821. "__type__": "cc.Size",
  8822. "width": 340,
  8823. "height": 30
  8824. },
  8825. "_anchorPoint": {
  8826. "__type__": "cc.Vec2",
  8827. "x": 0,
  8828. "y": 0.5
  8829. },
  8830. "_trs": {
  8831. "__type__": "TypedArray",
  8832. "ctor": "Float64Array",
  8833. "array": [
  8834. -169.658,
  8835. 0,
  8836. 0,
  8837. 0,
  8838. 0,
  8839. 0,
  8840. 1,
  8841. 1,
  8842. 1,
  8843. 1
  8844. ]
  8845. },
  8846. "_eulerAngles": {
  8847. "__type__": "cc.Vec3",
  8848. "x": 0,
  8849. "y": 0,
  8850. "z": 0
  8851. },
  8852. "_skewX": 0,
  8853. "_skewY": 0,
  8854. "_is3DNode": false,
  8855. "_groupIndex": 0,
  8856. "groupIndex": 0,
  8857. "_id": ""
  8858. },
  8859. {
  8860. "__type__": "cc.Sprite",
  8861. "_name": "",
  8862. "_objFlags": 0,
  8863. "node": {
  8864. "__id__": 234
  8865. },
  8866. "_enabled": true,
  8867. "_materials": [
  8868. {
  8869. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  8870. }
  8871. ],
  8872. "_srcBlendFactor": 770,
  8873. "_dstBlendFactor": 771,
  8874. "_spriteFrame": {
  8875. "__uuid__": "34b2caa1-9111-41b0-9a0c-bac0fbd529c0"
  8876. },
  8877. "_type": 2,
  8878. "_sizeMode": 0,
  8879. "_fillType": 0,
  8880. "_fillCenter": {
  8881. "__type__": "cc.Vec2",
  8882. "x": 0,
  8883. "y": 0
  8884. },
  8885. "_fillStart": 0,
  8886. "_fillRange": 0,
  8887. "_isTrimmedMode": true,
  8888. "_atlas": null,
  8889. "_id": ""
  8890. },
  8891. {
  8892. "__type__": "cc.PrefabInfo",
  8893. "root": {
  8894. "__id__": 1
  8895. },
  8896. "asset": {
  8897. "__uuid__": "bead7d61-9e8e-4421-a54e-e260b141d73e"
  8898. },
  8899. "fileId": "65RiazgxJPQqGx5Y89ZT7t",
  8900. "sync": false
  8901. },
  8902. {
  8903. "__type__": "cc.Sprite",
  8904. "_name": "",
  8905. "_objFlags": 0,
  8906. "node": {
  8907. "__id__": 233
  8908. },
  8909. "_enabled": true,
  8910. "_materials": [
  8911. {
  8912. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  8913. }
  8914. ],
  8915. "_srcBlendFactor": 770,
  8916. "_dstBlendFactor": 771,
  8917. "_spriteFrame": {
  8918. "__uuid__": "ac69ab95-5165-4d21-96ab-7265ab0f035a"
  8919. },
  8920. "_type": 1,
  8921. "_sizeMode": 1,
  8922. "_fillType": 0,
  8923. "_fillCenter": {
  8924. "__type__": "cc.Vec2",
  8925. "x": 0,
  8926. "y": 0
  8927. },
  8928. "_fillStart": 0,
  8929. "_fillRange": 0,
  8930. "_isTrimmedMode": true,
  8931. "_atlas": null,
  8932. "_id": ""
  8933. },
  8934. {
  8935. "__type__": "cc.ProgressBar",
  8936. "_name": "",
  8937. "_objFlags": 0,
  8938. "node": {
  8939. "__id__": 233
  8940. },
  8941. "_enabled": true,
  8942. "_N$totalLength": 340,
  8943. "_N$barSprite": {
  8944. "__id__": 235
  8945. },
  8946. "_N$mode": 0,
  8947. "_N$progress": 1,
  8948. "_N$reverse": false,
  8949. "_id": ""
  8950. },
  8951. {
  8952. "__type__": "cc.PrefabInfo",
  8953. "root": {
  8954. "__id__": 1
  8955. },
  8956. "asset": {
  8957. "__uuid__": "bead7d61-9e8e-4421-a54e-e260b141d73e"
  8958. },
  8959. "fileId": "ca4vc2wuJMR5+ytbcEu6GI",
  8960. "sync": false
  8961. },
  8962. {
  8963. "__type__": "cc.Node",
  8964. "_name": "New Sprite",
  8965. "_objFlags": 0,
  8966. "_parent": {
  8967. "__id__": 220
  8968. },
  8969. "_children": [],
  8970. "_active": true,
  8971. "_components": [
  8972. {
  8973. "__id__": 241
  8974. },
  8975. {
  8976. "__id__": 242
  8977. }
  8978. ],
  8979. "_prefab": {
  8980. "__id__": 243
  8981. },
  8982. "_opacity": 255,
  8983. "_color": {
  8984. "__type__": "cc.Color",
  8985. "r": 255,
  8986. "g": 255,
  8987. "b": 255,
  8988. "a": 255
  8989. },
  8990. "_contentSize": {
  8991. "__type__": "cc.Size",
  8992. "width": 34,
  8993. "height": 34
  8994. },
  8995. "_anchorPoint": {
  8996. "__type__": "cc.Vec2",
  8997. "x": 0.5,
  8998. "y": 0.5
  8999. },
  9000. "_trs": {
  9001. "__type__": "TypedArray",
  9002. "ctor": "Float64Array",
  9003. "array": [
  9004. 167,
  9005. -42.292,
  9006. 0,
  9007. 0,
  9008. 0,
  9009. 0,
  9010. 1,
  9011. 1,
  9012. 1,
  9013. 0
  9014. ]
  9015. },
  9016. "_eulerAngles": {
  9017. "__type__": "cc.Vec3",
  9018. "x": 0,
  9019. "y": 0,
  9020. "z": 0
  9021. },
  9022. "_skewX": 0,
  9023. "_skewY": 0,
  9024. "_is3DNode": false,
  9025. "_groupIndex": 0,
  9026. "groupIndex": 0,
  9027. "_id": ""
  9028. },
  9029. {
  9030. "__type__": "cc.Sprite",
  9031. "_name": "",
  9032. "_objFlags": 0,
  9033. "node": {
  9034. "__id__": 240
  9035. },
  9036. "_enabled": true,
  9037. "_materials": [
  9038. {
  9039. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  9040. }
  9041. ],
  9042. "_srcBlendFactor": 770,
  9043. "_dstBlendFactor": 771,
  9044. "_spriteFrame": {
  9045. "__uuid__": "d8f2fbd4-cb42-454f-8735-ac6a9f777204"
  9046. },
  9047. "_type": 0,
  9048. "_sizeMode": 1,
  9049. "_fillType": 0,
  9050. "_fillCenter": {
  9051. "__type__": "cc.Vec2",
  9052. "x": 0,
  9053. "y": 0
  9054. },
  9055. "_fillStart": 0,
  9056. "_fillRange": 0,
  9057. "_isTrimmedMode": true,
  9058. "_atlas": null,
  9059. "_id": ""
  9060. },
  9061. {
  9062. "__type__": "cc.Button",
  9063. "_name": "",
  9064. "_objFlags": 0,
  9065. "node": {
  9066. "__id__": 240
  9067. },
  9068. "_enabled": true,
  9069. "_normalMaterial": null,
  9070. "_grayMaterial": null,
  9071. "duration": 0.1,
  9072. "zoomScale": 0.95,
  9073. "clickEvents": [],
  9074. "_N$interactable": true,
  9075. "_N$enableAutoGrayEffect": false,
  9076. "_N$transition": 3,
  9077. "transition": 3,
  9078. "_N$normalColor": {
  9079. "__type__": "cc.Color",
  9080. "r": 255,
  9081. "g": 255,
  9082. "b": 255,
  9083. "a": 255
  9084. },
  9085. "_N$pressedColor": {
  9086. "__type__": "cc.Color",
  9087. "r": 211,
  9088. "g": 211,
  9089. "b": 211,
  9090. "a": 255
  9091. },
  9092. "pressedColor": {
  9093. "__type__": "cc.Color",
  9094. "r": 211,
  9095. "g": 211,
  9096. "b": 211,
  9097. "a": 255
  9098. },
  9099. "_N$hoverColor": {
  9100. "__type__": "cc.Color",
  9101. "r": 255,
  9102. "g": 255,
  9103. "b": 255,
  9104. "a": 255
  9105. },
  9106. "hoverColor": {
  9107. "__type__": "cc.Color",
  9108. "r": 255,
  9109. "g": 255,
  9110. "b": 255,
  9111. "a": 255
  9112. },
  9113. "_N$disabledColor": {
  9114. "__type__": "cc.Color",
  9115. "r": 124,
  9116. "g": 124,
  9117. "b": 124,
  9118. "a": 255
  9119. },
  9120. "_N$normalSprite": null,
  9121. "_N$pressedSprite": null,
  9122. "pressedSprite": null,
  9123. "_N$hoverSprite": null,
  9124. "hoverSprite": null,
  9125. "_N$disabledSprite": null,
  9126. "_N$target": null,
  9127. "_id": ""
  9128. },
  9129. {
  9130. "__type__": "cc.PrefabInfo",
  9131. "root": {
  9132. "__id__": 1
  9133. },
  9134. "asset": {
  9135. "__uuid__": "bead7d61-9e8e-4421-a54e-e260b141d73e"
  9136. },
  9137. "fileId": "38RYUYuapFiLNJPxd5VyFk",
  9138. "sync": false
  9139. },
  9140. {
  9141. "__type__": "cc.Node",
  9142. "_name": "New Sprite",
  9143. "_objFlags": 0,
  9144. "_parent": {
  9145. "__id__": 220
  9146. },
  9147. "_children": [],
  9148. "_active": true,
  9149. "_components": [
  9150. {
  9151. "__id__": 245
  9152. },
  9153. {
  9154. "__id__": 246
  9155. }
  9156. ],
  9157. "_prefab": {
  9158. "__id__": 247
  9159. },
  9160. "_opacity": 255,
  9161. "_color": {
  9162. "__type__": "cc.Color",
  9163. "r": 255,
  9164. "g": 255,
  9165. "b": 255,
  9166. "a": 255
  9167. },
  9168. "_contentSize": {
  9169. "__type__": "cc.Size",
  9170. "width": 34,
  9171. "height": 34
  9172. },
  9173. "_anchorPoint": {
  9174. "__type__": "cc.Vec2",
  9175. "x": 0.5,
  9176. "y": 0.5
  9177. },
  9178. "_trs": {
  9179. "__type__": "TypedArray",
  9180. "ctor": "Float64Array",
  9181. "array": [
  9182. -165,
  9183. -42.292,
  9184. 0,
  9185. 0,
  9186. 0,
  9187. 0,
  9188. 1,
  9189. 1,
  9190. 1,
  9191. 0
  9192. ]
  9193. },
  9194. "_eulerAngles": {
  9195. "__type__": "cc.Vec3",
  9196. "x": 0,
  9197. "y": 0,
  9198. "z": 0
  9199. },
  9200. "_skewX": 0,
  9201. "_skewY": 0,
  9202. "_is3DNode": false,
  9203. "_groupIndex": 0,
  9204. "groupIndex": 0,
  9205. "_id": ""
  9206. },
  9207. {
  9208. "__type__": "cc.Sprite",
  9209. "_name": "",
  9210. "_objFlags": 0,
  9211. "node": {
  9212. "__id__": 244
  9213. },
  9214. "_enabled": true,
  9215. "_materials": [
  9216. {
  9217. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  9218. }
  9219. ],
  9220. "_srcBlendFactor": 770,
  9221. "_dstBlendFactor": 771,
  9222. "_spriteFrame": {
  9223. "__uuid__": "1fdee2b5-935e-45db-8f9e-889740c6863d"
  9224. },
  9225. "_type": 0,
  9226. "_sizeMode": 1,
  9227. "_fillType": 0,
  9228. "_fillCenter": {
  9229. "__type__": "cc.Vec2",
  9230. "x": 0,
  9231. "y": 0
  9232. },
  9233. "_fillStart": 0,
  9234. "_fillRange": 0,
  9235. "_isTrimmedMode": true,
  9236. "_atlas": null,
  9237. "_id": ""
  9238. },
  9239. {
  9240. "__type__": "cc.Button",
  9241. "_name": "",
  9242. "_objFlags": 0,
  9243. "node": {
  9244. "__id__": 244
  9245. },
  9246. "_enabled": true,
  9247. "_normalMaterial": null,
  9248. "_grayMaterial": null,
  9249. "duration": 0.1,
  9250. "zoomScale": 0.95,
  9251. "clickEvents": [],
  9252. "_N$interactable": true,
  9253. "_N$enableAutoGrayEffect": false,
  9254. "_N$transition": 3,
  9255. "transition": 3,
  9256. "_N$normalColor": {
  9257. "__type__": "cc.Color",
  9258. "r": 255,
  9259. "g": 255,
  9260. "b": 255,
  9261. "a": 255
  9262. },
  9263. "_N$pressedColor": {
  9264. "__type__": "cc.Color",
  9265. "r": 211,
  9266. "g": 211,
  9267. "b": 211,
  9268. "a": 255
  9269. },
  9270. "pressedColor": {
  9271. "__type__": "cc.Color",
  9272. "r": 211,
  9273. "g": 211,
  9274. "b": 211,
  9275. "a": 255
  9276. },
  9277. "_N$hoverColor": {
  9278. "__type__": "cc.Color",
  9279. "r": 255,
  9280. "g": 255,
  9281. "b": 255,
  9282. "a": 255
  9283. },
  9284. "hoverColor": {
  9285. "__type__": "cc.Color",
  9286. "r": 255,
  9287. "g": 255,
  9288. "b": 255,
  9289. "a": 255
  9290. },
  9291. "_N$disabledColor": {
  9292. "__type__": "cc.Color",
  9293. "r": 124,
  9294. "g": 124,
  9295. "b": 124,
  9296. "a": 255
  9297. },
  9298. "_N$normalSprite": null,
  9299. "_N$pressedSprite": null,
  9300. "pressedSprite": null,
  9301. "_N$hoverSprite": null,
  9302. "hoverSprite": null,
  9303. "_N$disabledSprite": null,
  9304. "_N$target": null,
  9305. "_id": ""
  9306. },
  9307. {
  9308. "__type__": "cc.PrefabInfo",
  9309. "root": {
  9310. "__id__": 1
  9311. },
  9312. "asset": {
  9313. "__uuid__": "bead7d61-9e8e-4421-a54e-e260b141d73e"
  9314. },
  9315. "fileId": "7bHSOFIWhCAK3m4Tz6oa5o",
  9316. "sync": false
  9317. },
  9318. {
  9319. "__type__": "cc.Node",
  9320. "_name": "2001",
  9321. "_objFlags": 0,
  9322. "_parent": {
  9323. "__id__": 220
  9324. },
  9325. "_children": [
  9326. {
  9327. "__id__": 249
  9328. }
  9329. ],
  9330. "_active": true,
  9331. "_components": [
  9332. {
  9333. "__id__": 253
  9334. },
  9335. {
  9336. "__id__": 254
  9337. }
  9338. ],
  9339. "_prefab": {
  9340. "__id__": 256
  9341. },
  9342. "_opacity": 255,
  9343. "_color": {
  9344. "__type__": "cc.Color",
  9345. "r": 255,
  9346. "g": 255,
  9347. "b": 255,
  9348. "a": 255
  9349. },
  9350. "_contentSize": {
  9351. "__type__": "cc.Size",
  9352. "width": 190,
  9353. "height": 76
  9354. },
  9355. "_anchorPoint": {
  9356. "__type__": "cc.Vec2",
  9357. "x": 0.5,
  9358. "y": 0.5
  9359. },
  9360. "_trs": {
  9361. "__type__": "TypedArray",
  9362. "ctor": "Float64Array",
  9363. "array": [
  9364. 0,
  9365. -125.521,
  9366. 0,
  9367. 0,
  9368. 0,
  9369. 0,
  9370. 1,
  9371. 1,
  9372. 1,
  9373. 0
  9374. ]
  9375. },
  9376. "_eulerAngles": {
  9377. "__type__": "cc.Vec3",
  9378. "x": 0,
  9379. "y": 0,
  9380. "z": 0
  9381. },
  9382. "_skewX": 0,
  9383. "_skewY": 0,
  9384. "_is3DNode": false,
  9385. "_groupIndex": 0,
  9386. "groupIndex": 0,
  9387. "_id": ""
  9388. },
  9389. {
  9390. "__type__": "cc.Node",
  9391. "_name": "New Label",
  9392. "_objFlags": 0,
  9393. "_parent": {
  9394. "__id__": 248
  9395. },
  9396. "_children": [],
  9397. "_active": true,
  9398. "_components": [
  9399. {
  9400. "__id__": 250
  9401. },
  9402. {
  9403. "__id__": 251
  9404. }
  9405. ],
  9406. "_prefab": {
  9407. "__id__": 252
  9408. },
  9409. "_opacity": 255,
  9410. "_color": {
  9411. "__type__": "cc.Color",
  9412. "r": 255,
  9413. "g": 255,
  9414. "b": 255,
  9415. "a": 255
  9416. },
  9417. "_contentSize": {
  9418. "__type__": "cc.Size",
  9419. "width": 64,
  9420. "height": 54.4
  9421. },
  9422. "_anchorPoint": {
  9423. "__type__": "cc.Vec2",
  9424. "x": 0.5,
  9425. "y": 0.5
  9426. },
  9427. "_trs": {
  9428. "__type__": "TypedArray",
  9429. "ctor": "Float64Array",
  9430. "array": [
  9431. 0,
  9432. 0,
  9433. 0,
  9434. 0,
  9435. 0,
  9436. 0,
  9437. 1,
  9438. 1,
  9439. 1,
  9440. 1
  9441. ]
  9442. },
  9443. "_eulerAngles": {
  9444. "__type__": "cc.Vec3",
  9445. "x": 0,
  9446. "y": 0,
  9447. "z": 0
  9448. },
  9449. "_skewX": 0,
  9450. "_skewY": 0,
  9451. "_is3DNode": false,
  9452. "_groupIndex": 0,
  9453. "groupIndex": 0,
  9454. "_id": ""
  9455. },
  9456. {
  9457. "__type__": "cc.Label",
  9458. "_name": "",
  9459. "_objFlags": 0,
  9460. "node": {
  9461. "__id__": 249
  9462. },
  9463. "_enabled": true,
  9464. "_materials": [
  9465. {
  9466. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  9467. }
  9468. ],
  9469. "_srcBlendFactor": 770,
  9470. "_dstBlendFactor": 771,
  9471. "_string": "使用",
  9472. "_N$string": "使用",
  9473. "_fontSize": 30,
  9474. "_lineHeight": 40,
  9475. "_enableWrapText": true,
  9476. "_N$file": {
  9477. "__uuid__": "1cdb5762-18d1-4d60-a364-c717229e08e9"
  9478. },
  9479. "_isSystemFontUsed": false,
  9480. "_spacingX": 0,
  9481. "_batchAsBitmap": false,
  9482. "_styleFlags": 0,
  9483. "_underlineHeight": 0,
  9484. "_N$horizontalAlign": 1,
  9485. "_N$verticalAlign": 1,
  9486. "_N$fontFamily": "Arial",
  9487. "_N$overflow": 0,
  9488. "_N$cacheMode": 0,
  9489. "_id": ""
  9490. },
  9491. {
  9492. "__type__": "cc.LabelOutline",
  9493. "_name": "",
  9494. "_objFlags": 0,
  9495. "node": {
  9496. "__id__": 249
  9497. },
  9498. "_enabled": true,
  9499. "_color": {
  9500. "__type__": "cc.Color",
  9501. "r": 0,
  9502. "g": 0,
  9503. "b": 0,
  9504. "a": 255
  9505. },
  9506. "_width": 2,
  9507. "_id": ""
  9508. },
  9509. {
  9510. "__type__": "cc.PrefabInfo",
  9511. "root": {
  9512. "__id__": 1
  9513. },
  9514. "asset": {
  9515. "__uuid__": "bead7d61-9e8e-4421-a54e-e260b141d73e"
  9516. },
  9517. "fileId": "c3bWWvzelAoqXhnv0e/ddD",
  9518. "sync": false
  9519. },
  9520. {
  9521. "__type__": "cc.Sprite",
  9522. "_name": "",
  9523. "_objFlags": 0,
  9524. "node": {
  9525. "__id__": 248
  9526. },
  9527. "_enabled": true,
  9528. "_materials": [
  9529. {
  9530. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  9531. }
  9532. ],
  9533. "_srcBlendFactor": 770,
  9534. "_dstBlendFactor": 771,
  9535. "_spriteFrame": {
  9536. "__uuid__": "a5f6605f-0689-4bfb-8123-1b1721445855"
  9537. },
  9538. "_type": 1,
  9539. "_sizeMode": 1,
  9540. "_fillType": 0,
  9541. "_fillCenter": {
  9542. "__type__": "cc.Vec2",
  9543. "x": 0,
  9544. "y": 0
  9545. },
  9546. "_fillStart": 0,
  9547. "_fillRange": 0,
  9548. "_isTrimmedMode": true,
  9549. "_atlas": null,
  9550. "_id": ""
  9551. },
  9552. {
  9553. "__type__": "cc.Button",
  9554. "_name": "",
  9555. "_objFlags": 0,
  9556. "node": {
  9557. "__id__": 248
  9558. },
  9559. "_enabled": true,
  9560. "_normalMaterial": null,
  9561. "_grayMaterial": null,
  9562. "duration": 0.1,
  9563. "zoomScale": 0.9,
  9564. "clickEvents": [
  9565. {
  9566. "__id__": 255
  9567. }
  9568. ],
  9569. "_N$interactable": true,
  9570. "_N$enableAutoGrayEffect": false,
  9571. "_N$transition": 3,
  9572. "transition": 3,
  9573. "_N$normalColor": {
  9574. "__type__": "cc.Color",
  9575. "r": 255,
  9576. "g": 255,
  9577. "b": 255,
  9578. "a": 255
  9579. },
  9580. "_N$pressedColor": {
  9581. "__type__": "cc.Color",
  9582. "r": 211,
  9583. "g": 211,
  9584. "b": 211,
  9585. "a": 255
  9586. },
  9587. "pressedColor": {
  9588. "__type__": "cc.Color",
  9589. "r": 211,
  9590. "g": 211,
  9591. "b": 211,
  9592. "a": 255
  9593. },
  9594. "_N$hoverColor": {
  9595. "__type__": "cc.Color",
  9596. "r": 255,
  9597. "g": 255,
  9598. "b": 255,
  9599. "a": 255
  9600. },
  9601. "hoverColor": {
  9602. "__type__": "cc.Color",
  9603. "r": 255,
  9604. "g": 255,
  9605. "b": 255,
  9606. "a": 255
  9607. },
  9608. "_N$disabledColor": {
  9609. "__type__": "cc.Color",
  9610. "r": 124,
  9611. "g": 124,
  9612. "b": 124,
  9613. "a": 255
  9614. },
  9615. "_N$normalSprite": null,
  9616. "_N$pressedSprite": null,
  9617. "pressedSprite": null,
  9618. "_N$hoverSprite": null,
  9619. "hoverSprite": null,
  9620. "_N$disabledSprite": null,
  9621. "_N$target": null,
  9622. "_id": ""
  9623. },
  9624. {
  9625. "__type__": "cc.ClickEvent",
  9626. "target": null,
  9627. "component": "",
  9628. "_componentId": "c976eop71VC/5vMkFOT0p+4",
  9629. "handler": "onclickIntensifyEquip",
  9630. "customEventData": ""
  9631. },
  9632. {
  9633. "__type__": "cc.PrefabInfo",
  9634. "root": {
  9635. "__id__": 1
  9636. },
  9637. "asset": {
  9638. "__uuid__": "bead7d61-9e8e-4421-a54e-e260b141d73e"
  9639. },
  9640. "fileId": "9bwMBahJhKWog3WReypsen",
  9641. "sync": false
  9642. },
  9643. {
  9644. "__type__": "cc.PrefabInfo",
  9645. "root": {
  9646. "__id__": 1
  9647. },
  9648. "asset": {
  9649. "__uuid__": "bead7d61-9e8e-4421-a54e-e260b141d73e"
  9650. },
  9651. "fileId": "24rRcd1BhBQYpZ7PjowRaj",
  9652. "sync": false
  9653. },
  9654. {
  9655. "__type__": "cc.PrefabInfo",
  9656. "root": {
  9657. "__id__": 1
  9658. },
  9659. "asset": {
  9660. "__uuid__": "bead7d61-9e8e-4421-a54e-e260b141d73e"
  9661. },
  9662. "fileId": "2c397I1hFGa7cHyiEB8o3e",
  9663. "sync": false
  9664. },
  9665. {
  9666. "__type__": "53742kmpmROJIwt92PlbKBG",
  9667. "_name": "",
  9668. "_objFlags": 0,
  9669. "node": {
  9670. "__id__": 1
  9671. },
  9672. "_enabled": true,
  9673. "mName": {
  9674. "__id__": 19
  9675. },
  9676. "mAbout": {
  9677. "__id__": 216
  9678. },
  9679. "mGoodItem": {
  9680. "__id__": 39
  9681. },
  9682. "mZdl": {
  9683. "__id__": 70
  9684. },
  9685. "mAtk": {
  9686. "__id__": 79
  9687. },
  9688. "mDef": {
  9689. "__id__": 91
  9690. },
  9691. "mHp": {
  9692. "__id__": 103
  9693. },
  9694. "mSp": {
  9695. "__id__": 115
  9696. },
  9697. "mFAttrNode": {
  9698. "__id__": 135
  9699. },
  9700. "mFAttrItem": {
  9701. "__uuid__": "76a8a88e-9256-4bfc-955a-dcbf33db9dce"
  9702. },
  9703. "baseAttNode": {
  9704. "__id__": 56
  9705. },
  9706. "addAttNode": {
  9707. "__id__": 128
  9708. },
  9709. "mSkillNode": {
  9710. "__id__": 140
  9711. },
  9712. "descNode": {
  9713. "__id__": 162
  9714. },
  9715. "lbdesc": {
  9716. "__id__": 171
  9717. },
  9718. "mSkillName": {
  9719. "__id__": 150
  9720. },
  9721. "mSkillAbout": {
  9722. "__id__": 156
  9723. },
  9724. "mSkillIcon": {
  9725. "__id__": 153
  9726. },
  9727. "mMainNode": [
  9728. {
  9729. "__id__": 76
  9730. },
  9731. {
  9732. "__id__": 88
  9733. },
  9734. {
  9735. "__id__": 100
  9736. },
  9737. {
  9738. "__id__": 112
  9739. }
  9740. ],
  9741. "mEquipNode": {
  9742. "__id__": 43
  9743. },
  9744. "mGoodNode": {
  9745. "__id__": 205
  9746. },
  9747. "mUseNode": {
  9748. "__id__": 220
  9749. },
  9750. "mQHNode": {
  9751. "__id__": 186
  9752. },
  9753. "mUnInstallNode": {
  9754. "__id__": 195
  9755. },
  9756. "_id": ""
  9757. },
  9758. {
  9759. "__type__": "cc.PrefabInfo",
  9760. "root": {
  9761. "__id__": 1
  9762. },
  9763. "asset": {
  9764. "__uuid__": "bead7d61-9e8e-4421-a54e-e260b141d73e"
  9765. },
  9766. "fileId": "",
  9767. "sync": false
  9768. }
  9769. ]