隐藏神庙活动_插画组_机关总组.rebolt 478 KB

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