107.prefab 167 KB

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