卡片收集系统_浮层界面_卡片兑换完成动画界面.rebolt 192 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207
  1. {
  2. "CustomFunc": {
  3. "卡片兑换完成动画界面": [
  4. [
  5. "Name",
  6. "卡片兑换完成动画界面",
  7. "qux2L46CdEbW",
  8. "/Users/yanhao/Desktop/work/CollectModule-Res/ccb/卡片收集系统_浮层界面_卡片兑换完成动画界面.red"
  9. ]
  10. ],
  11. "更新兑换卡片信息": [
  12. [
  13. "Name",
  14. "更新兑换卡片信息",
  15. "tnaHFW8oZTuK",
  16. "/Users/yanhao/Desktop/work/CollectModule-Res/ccb/卡片收集系统_浮层界面_卡片兑换完成动画界面.red"
  17. ]
  18. ]
  19. },
  20. "CustomList": {
  21. },
  22. "CustomMessage": {
  23. "Hello Red": 1
  24. },
  25. "CustomTestFunc": {
  26. },
  27. "CustomVar": {
  28. "P-Plist图集": 0,
  29. "P-兑换完成动画终点X": 0,
  30. "P-兑换完成动画终点Y": 0,
  31. "P-兑换完成动画起点X": 0,
  32. "P-兑换完成动画起点Y": 0,
  33. "P-卡片名称": 0,
  34. "P-卡片名称底框": 0,
  35. "P-卡片物品": 0,
  36. "P-卡片物品底框": 0,
  37. "P-卡片类型": 0
  38. },
  39. "DisPlayName": "卡片收集系统_浮层界面_卡片兑换完成动画界面",
  40. "RedFileList": {
  41. "hxOTpzP4rG8D": {
  42. "CustomFunc": {
  43. },
  44. "CustomList": {
  45. },
  46. "CustomTestFunc": {
  47. },
  48. "CustomVar": {
  49. },
  50. "DisPlayName": "兑换展示专用卡片",
  51. "RedNoteInfo": {
  52. },
  53. "TreeList": {
  54. }
  55. },
  56. "hxOTpzP4rG8D::4rpKZVXFUDrD": {
  57. "CustomFunc": {
  58. "更新特殊卡片": [
  59. [
  60. "Name",
  61. "更新特殊卡片",
  62. "pQaeltbDXSfm",
  63. "/Users/yanhao/Desktop/work/CollectModule-Res/ccb/卡片收集系统_特殊卡片.red"
  64. ],
  65. [
  66. "BTInputSlot",
  67. "完成状态"
  68. ],
  69. [
  70. "BTInputSlot",
  71. "卡片名称"
  72. ],
  73. [
  74. "BTInputSlot",
  75. "卡片名称底框"
  76. ],
  77. [
  78. "BTInputSlot",
  79. "卡片物品"
  80. ],
  81. [
  82. "BTInputSlot",
  83. "卡片物品底框"
  84. ],
  85. [
  86. "BTInputSlot",
  87. "全新标签"
  88. ],
  89. [
  90. "BTInputSlot",
  91. "Plist图集"
  92. ],
  93. [
  94. "BTInputSlot",
  95. "万能卡存量"
  96. ]
  97. ],
  98. "更新特殊卡片信息": [
  99. [
  100. "Name",
  101. "更新特殊卡片信息",
  102. "WTUzfIZ720G4",
  103. "/Users/yanhao/Desktop/work/CollectModule-Res/ccb/卡片收集系统_特殊卡片.red"
  104. ],
  105. [
  106. "BTInputSlot",
  107. "卡片名称"
  108. ],
  109. [
  110. "BTInputSlot",
  111. "卡片名称底框"
  112. ],
  113. [
  114. "BTInputSlot",
  115. "卡片物品"
  116. ],
  117. [
  118. "BTInputSlot",
  119. "卡片物品底框"
  120. ],
  121. [
  122. "BTInputSlot",
  123. "全新标签"
  124. ],
  125. [
  126. "BTInputSlot",
  127. "Plist图集"
  128. ],
  129. [
  130. "BTInputSlot",
  131. "万能卡存量"
  132. ]
  133. ]
  134. },
  135. "CustomList": {
  136. },
  137. "CustomTestFunc": {
  138. },
  139. "CustomVar": {
  140. "万能卡存量": 0
  141. },
  142. "DisPlayName": "特殊卡片",
  143. "RedNoteInfo": {
  144. },
  145. "TreeList": {
  146. "Tree0": {
  147. "ExportTree": true,
  148. "ImageIndex": 1,
  149. "Name": {
  150. "Type": "STRING",
  151. "Value": "更新特殊卡片",
  152. "displayName": ""
  153. },
  154. "Type": "BTCustomFuncHeadAction",
  155. "VarJson": {
  156. "boolJson": {
  157. },
  158. "numberJson": {
  159. "Plist图集": "Number",
  160. "万能卡存量": "Number",
  161. "全新标签": "Number",
  162. "卡片名称": "Number",
  163. "卡片名称底框": "Number",
  164. "卡片物品": "Number",
  165. "卡片物品底框": "Number",
  166. "完成状态": "Number"
  167. }
  168. },
  169. "isIllegal": false,
  170. "randomID": "pQaeltbDXSfm",
  171. "stepSlot": {
  172. "ContainerValue": {
  173. "BTInputSlot1": {
  174. "ContainerValue": {
  175. "Type": "BTFuncVariableAction",
  176. "colorName": "More",
  177. "currentStr": "卡片名称",
  178. "fatherFuncID": "pQaeltbDXSfm",
  179. "isIllegal": true,
  180. "randomID": "KZKajmT9AE45",
  181. "titleLabel": {
  182. "Type": "STRING",
  183. "Value": "卡片名称",
  184. "displayName": ""
  185. }
  186. },
  187. "StringValue": {
  188. "Type": "STRING",
  189. "Value": "卡片名称"
  190. },
  191. "Type": "BTInputSlot"
  192. },
  193. "BTInputSlot2": {
  194. "ContainerValue": {
  195. "Type": "BTFuncVariableAction",
  196. "colorName": "More",
  197. "currentStr": "卡片名称底框",
  198. "fatherFuncID": "pQaeltbDXSfm",
  199. "isIllegal": true,
  200. "randomID": "zHsCke1KMapb",
  201. "titleLabel": {
  202. "Type": "STRING",
  203. "Value": "卡片名称底框",
  204. "displayName": ""
  205. }
  206. },
  207. "StringValue": {
  208. "Type": "STRING",
  209. "Value": "卡片名称底框"
  210. },
  211. "Type": "BTInputSlot"
  212. },
  213. "BTInputSlot3": {
  214. "ContainerValue": {
  215. "Type": "BTFuncVariableAction",
  216. "colorName": "More",
  217. "currentStr": "卡片物品",
  218. "fatherFuncID": "pQaeltbDXSfm",
  219. "isIllegal": true,
  220. "randomID": "j4z4rrcjqiCv",
  221. "titleLabel": {
  222. "Type": "STRING",
  223. "Value": "卡片物品",
  224. "displayName": ""
  225. }
  226. },
  227. "StringValue": {
  228. "Type": "STRING",
  229. "Value": "卡片物品"
  230. },
  231. "Type": "BTInputSlot"
  232. },
  233. "BTInputSlot4": {
  234. "ContainerValue": {
  235. "Type": "BTFuncVariableAction",
  236. "colorName": "More",
  237. "currentStr": "卡片物品底框",
  238. "fatherFuncID": "pQaeltbDXSfm",
  239. "isIllegal": true,
  240. "randomID": "nf9r2u9ZNNDD",
  241. "titleLabel": {
  242. "Type": "STRING",
  243. "Value": "卡片物品底框",
  244. "displayName": ""
  245. }
  246. },
  247. "StringValue": {
  248. "Type": "STRING",
  249. "Value": "卡片物品底框"
  250. },
  251. "Type": "BTInputSlot"
  252. },
  253. "BTInputSlot5": {
  254. "ContainerValue": {
  255. "Type": "BTFuncVariableAction",
  256. "colorName": "More",
  257. "currentStr": "全新标签",
  258. "fatherFuncID": "pQaeltbDXSfm",
  259. "isIllegal": true,
  260. "randomID": "WBZtQmKHFwGu",
  261. "titleLabel": {
  262. "Type": "STRING",
  263. "Value": "全新标签",
  264. "displayName": ""
  265. }
  266. },
  267. "StringValue": {
  268. "Type": "STRING",
  269. "Value": "全新标签"
  270. },
  271. "Type": "BTInputSlot"
  272. },
  273. "BTInputSlot6": {
  274. "ContainerValue": {
  275. "Type": "BTFuncVariableAction",
  276. "colorName": "More",
  277. "currentStr": "Plist图集",
  278. "fatherFuncID": "pQaeltbDXSfm",
  279. "isIllegal": true,
  280. "randomID": "kbSNcy93sPQz",
  281. "titleLabel": {
  282. "Type": "STRING",
  283. "Value": "Plist图集",
  284. "displayName": ""
  285. }
  286. },
  287. "StringValue": {
  288. "Type": "STRING",
  289. "Value": "Plist图集"
  290. },
  291. "Type": "BTInputSlot"
  292. },
  293. "BTInputSlot7": {
  294. "ContainerValue": {
  295. "Type": "BTFuncVariableAction",
  296. "colorName": "More",
  297. "currentStr": "万能卡存量",
  298. "fatherFuncID": "pQaeltbDXSfm",
  299. "isIllegal": true,
  300. "randomID": "N11tSjtbNGBp",
  301. "titleLabel": {
  302. "Type": "STRING",
  303. "Value": "万能卡存量",
  304. "displayName": ""
  305. }
  306. },
  307. "StringValue": {
  308. "Type": "STRING",
  309. "Value": "万能卡存量"
  310. },
  311. "Type": "BTInputSlot"
  312. },
  313. "Name": {
  314. "Type": "STRING",
  315. "Value": "更新特殊卡片信息",
  316. "displayName": ""
  317. },
  318. "Type": "BTCustomFuncBodyAction",
  319. "funcHeadID": "WTUzfIZ720G4",
  320. "isIllegal": true,
  321. "paramArr": [
  322. [
  323. "BTInputSlot1",
  324. "卡片名称"
  325. ],
  326. [
  327. "BTInputSlot2",
  328. "卡片名称底框"
  329. ],
  330. [
  331. "BTInputSlot3",
  332. "卡片物品"
  333. ],
  334. [
  335. "BTInputSlot4",
  336. "卡片物品底框"
  337. ],
  338. [
  339. "BTInputSlot5",
  340. "全新标签"
  341. ],
  342. [
  343. "BTInputSlot6",
  344. "Plist图集"
  345. ],
  346. [
  347. "BTInputSlot7",
  348. "万能卡存量"
  349. ]
  350. ],
  351. "randomID": "oVZtA8bhqdtz",
  352. "stepSlot": {
  353. "ContainerValue": {
  354. "Type": "BTIFControlAction",
  355. "conditionA": {
  356. "ContainerValue": {
  357. "Type": "BTStringEqualOperatorAction",
  358. "conditionA": {
  359. "ContainerValue": {
  360. "Type": "BTFuncVariableAction",
  361. "colorName": "More",
  362. "currentStr": "完成状态",
  363. "fatherFuncID": "pQaeltbDXSfm",
  364. "isIllegal": true,
  365. "randomID": "VeLibh66kNGc",
  366. "titleLabel": {
  367. "Type": "STRING",
  368. "Value": "完成状态",
  369. "displayName": ""
  370. }
  371. },
  372. "StringValue": {
  373. "Type": "STRING",
  374. "Value": "Red"
  375. },
  376. "Type": "BTInputSlot"
  377. },
  378. "conditionB": {
  379. "ContainerValue": null,
  380. "StringValue": {
  381. "Type": "STRING",
  382. "Value": "未解锁"
  383. },
  384. "Type": "BTInputSlot"
  385. },
  386. "isIllegal": true,
  387. "randomID": "VjoJ0vscUjqA"
  388. },
  389. "Type": "BTBoolSlot"
  390. },
  391. "isIllegal": true,
  392. "randomID": "PEUvkawR5VWp",
  393. "sectionA": {
  394. "ContainerValue": {
  395. "Type": "BTPlayTimeLineAction",
  396. "baseSelect": {
  397. "DisplayName": "常态_未解锁",
  398. "Type": "Action",
  399. "Value": "0"
  400. },
  401. "isIllegal": true,
  402. "randomID": "97Zy6aZqqsJ3",
  403. "stepSlot": {
  404. "ContainerValue": null,
  405. "Type": "BTStepSlot"
  406. }
  407. },
  408. "Type": "BTSectionSlot"
  409. },
  410. "stepSlot": {
  411. "ContainerValue": {
  412. "Type": "BTIFControlAction",
  413. "conditionA": {
  414. "ContainerValue": {
  415. "Type": "BTStringEqualOperatorAction",
  416. "conditionA": {
  417. "ContainerValue": {
  418. "Type": "BTFuncVariableAction",
  419. "colorName": "More",
  420. "currentStr": "完成状态",
  421. "fatherFuncID": "pQaeltbDXSfm",
  422. "isIllegal": true,
  423. "randomID": "jm2o4LQ5F6iF",
  424. "titleLabel": {
  425. "Type": "STRING",
  426. "Value": "完成状态",
  427. "displayName": ""
  428. }
  429. },
  430. "StringValue": {
  431. "Type": "STRING",
  432. "Value": "Red"
  433. },
  434. "Type": "BTInputSlot"
  435. },
  436. "conditionB": {
  437. "ContainerValue": null,
  438. "StringValue": {
  439. "Type": "STRING",
  440. "Value": "已解锁"
  441. },
  442. "Type": "BTInputSlot"
  443. },
  444. "isIllegal": true,
  445. "randomID": "VDW4iAAvwK8A"
  446. },
  447. "Type": "BTBoolSlot"
  448. },
  449. "isIllegal": true,
  450. "randomID": "SmMRaGk3X9sp",
  451. "sectionA": {
  452. "ContainerValue": {
  453. "Type": "BTPlayTimeLineAction",
  454. "baseSelect": {
  455. "DisplayName": "常态_已解锁",
  456. "Type": "Action",
  457. "Value": "1"
  458. },
  459. "isIllegal": true,
  460. "randomID": "RRktOlhUgHbf",
  461. "stepSlot": {
  462. "ContainerValue": null,
  463. "Type": "BTStepSlot"
  464. }
  465. },
  466. "Type": "BTSectionSlot"
  467. },
  468. "stepSlot": {
  469. "ContainerValue": null,
  470. "Type": "BTStepSlot"
  471. }
  472. },
  473. "Type": "BTStepSlot"
  474. }
  475. },
  476. "Type": "BTStepSlot"
  477. }
  478. },
  479. "Type": "BTStepSlot"
  480. },
  481. "x": -154.5,
  482. "y": -650
  483. },
  484. "Tree1": {
  485. "ExportTree": true,
  486. "ImageIndex": 6,
  487. "Name": {
  488. "Type": "STRING",
  489. "Value": "更新特殊卡片信息",
  490. "displayName": ""
  491. },
  492. "Type": "BTCustomFuncHeadAction",
  493. "VarJson": {
  494. "boolJson": {
  495. },
  496. "numberJson": {
  497. "Plist图集": "Number",
  498. "万能卡存量": "Number",
  499. "全新标签": "Number",
  500. "卡片名称": "Number",
  501. "卡片名称底框": "Number",
  502. "卡片物品": "Number",
  503. "卡片物品底框": "Number"
  504. }
  505. },
  506. "isIllegal": false,
  507. "randomID": "WTUzfIZ720G4",
  508. "stepSlot": {
  509. "ContainerValue": {
  510. "TitleInput": {
  511. "ContainerValue": {
  512. "Type": "BTFuncVariableAction",
  513. "colorName": "More",
  514. "currentStr": "卡片名称",
  515. "fatherFuncID": "WTUzfIZ720G4",
  516. "isIllegal": true,
  517. "randomID": "L626o4CbDUQ3",
  518. "titleLabel": {
  519. "Type": "STRING",
  520. "Value": "卡片名称",
  521. "displayName": ""
  522. }
  523. },
  524. "StringValue": {
  525. "Type": "STRING",
  526. "Value": "填写标题内容"
  527. },
  528. "Type": "BTInputSlot"
  529. },
  530. "Type": "BTLabelTitleAction",
  531. "baseSelect": {
  532. "DisplayName": "卡片名称",
  533. "Type": "Action",
  534. "Value": "a193Psf8aoSl"
  535. },
  536. "isIllegal": true,
  537. "randomID": "5xFe3do64qvg",
  538. "stepSlot": {
  539. "ContainerValue": {
  540. "TitleInput": {
  541. "ContainerValue": {
  542. "Type": "BTFuncVariableAction",
  543. "colorName": "More",
  544. "currentStr": "卡片名称",
  545. "fatherFuncID": "WTUzfIZ720G4",
  546. "isIllegal": true,
  547. "randomID": "JXLW6J7udP1X",
  548. "titleLabel": {
  549. "Type": "STRING",
  550. "Value": "卡片名称",
  551. "displayName": ""
  552. }
  553. },
  554. "StringValue": {
  555. "Type": "STRING",
  556. "Value": "填写标题内容"
  557. },
  558. "Type": "BTInputSlot"
  559. },
  560. "Type": "BTLabelTitleAction",
  561. "baseSelect": {
  562. "DisplayName": "未解锁卡片名称",
  563. "Type": "Action",
  564. "Value": "ci29cjnF08ci"
  565. },
  566. "isIllegal": true,
  567. "randomID": "oi6ZQ6ASVh65",
  568. "stepSlot": {
  569. "ContainerValue": {
  570. "Type": "BTSpritePlistAction",
  571. "baseSelect": {
  572. "DisplayName": "卡片名称底框",
  573. "Type": "Action",
  574. "Value": "eUbqs5Bc3sYj"
  575. },
  576. "frameNameInput": {
  577. "ContainerValue": {
  578. "Type": "BTFuncVariableAction",
  579. "colorName": "More",
  580. "currentStr": "卡片名称底框",
  581. "fatherFuncID": "WTUzfIZ720G4",
  582. "isIllegal": true,
  583. "randomID": "ZdQQ4jY7Epo0",
  584. "titleLabel": {
  585. "Type": "STRING",
  586. "Value": "卡片名称底框",
  587. "displayName": ""
  588. }
  589. },
  590. "StringValue": {
  591. "Type": "STRING",
  592. "Value": "图片名"
  593. },
  594. "Type": "BTInputSlot"
  595. },
  596. "isIllegal": true,
  597. "pathInput": {
  598. "ContainerValue": {
  599. "Type": "BTFuncVariableAction",
  600. "colorName": "More",
  601. "currentStr": "Plist图集",
  602. "fatherFuncID": "WTUzfIZ720G4",
  603. "isIllegal": true,
  604. "randomID": "ExhcFOZBM6Cs",
  605. "titleLabel": {
  606. "Type": "STRING",
  607. "Value": "Plist图集",
  608. "displayName": ""
  609. }
  610. },
  611. "StringValue": {
  612. "Type": "STRING",
  613. "Value": "Plist路径"
  614. },
  615. "Type": "BTInputSlot"
  616. },
  617. "randomID": "padW4Dnyha6f",
  618. "stepSlot": {
  619. "ContainerValue": {
  620. "Type": "BTSpritePlistAction",
  621. "baseSelect": {
  622. "DisplayName": "卡片物品",
  623. "Type": "Action",
  624. "Value": "MnMdmDiHa1Yf"
  625. },
  626. "frameNameInput": {
  627. "ContainerValue": {
  628. "Type": "BTFuncVariableAction",
  629. "colorName": "More",
  630. "currentStr": "卡片物品",
  631. "fatherFuncID": "WTUzfIZ720G4",
  632. "isIllegal": true,
  633. "randomID": "zS3R6ZkhjDS8",
  634. "titleLabel": {
  635. "Type": "STRING",
  636. "Value": "卡片物品",
  637. "displayName": ""
  638. }
  639. },
  640. "StringValue": {
  641. "Type": "STRING",
  642. "Value": "图片名"
  643. },
  644. "Type": "BTInputSlot"
  645. },
  646. "isIllegal": true,
  647. "pathInput": {
  648. "ContainerValue": {
  649. "Type": "BTFuncVariableAction",
  650. "colorName": "More",
  651. "currentStr": "Plist图集",
  652. "fatherFuncID": "WTUzfIZ720G4",
  653. "isIllegal": true,
  654. "randomID": "gomgz5krayio",
  655. "titleLabel": {
  656. "Type": "STRING",
  657. "Value": "Plist图集",
  658. "displayName": ""
  659. }
  660. },
  661. "StringValue": {
  662. "Type": "STRING",
  663. "Value": "Plist路径"
  664. },
  665. "Type": "BTInputSlot"
  666. },
  667. "randomID": "WGJ3uvHKNBiX",
  668. "stepSlot": {
  669. "ContainerValue": {
  670. "Type": "BTSpritePlistAction",
  671. "baseSelect": {
  672. "DisplayName": "卡片物品底框",
  673. "Type": "Action",
  674. "Value": "YIzVZTOo8X28"
  675. },
  676. "frameNameInput": {
  677. "ContainerValue": {
  678. "Type": "BTFuncVariableAction",
  679. "colorName": "More",
  680. "currentStr": "卡片物品底框",
  681. "fatherFuncID": "WTUzfIZ720G4",
  682. "isIllegal": true,
  683. "randomID": "QGBxMxbj5xfD",
  684. "titleLabel": {
  685. "Type": "STRING",
  686. "Value": "卡片物品底框",
  687. "displayName": ""
  688. }
  689. },
  690. "StringValue": {
  691. "Type": "STRING",
  692. "Value": "图片名"
  693. },
  694. "Type": "BTInputSlot"
  695. },
  696. "isIllegal": true,
  697. "pathInput": {
  698. "ContainerValue": {
  699. "Type": "BTFuncVariableAction",
  700. "colorName": "More",
  701. "currentStr": "Plist图集",
  702. "fatherFuncID": "WTUzfIZ720G4",
  703. "isIllegal": true,
  704. "randomID": "rDW7NhMgdFjK",
  705. "titleLabel": {
  706. "Type": "STRING",
  707. "Value": "Plist图集",
  708. "displayName": ""
  709. }
  710. },
  711. "StringValue": {
  712. "Type": "STRING",
  713. "Value": "Plist路径"
  714. },
  715. "Type": "BTInputSlot"
  716. },
  717. "randomID": "pBVzkKpzY0FY",
  718. "stepSlot": {
  719. "ContainerValue": {
  720. "Type": "BTIFControlAction",
  721. "conditionA": {
  722. "ContainerValue": {
  723. "Type": "BTStringEqualOperatorAction",
  724. "conditionA": {
  725. "ContainerValue": {
  726. "Type": "BTFuncVariableAction",
  727. "colorName": "More",
  728. "currentStr": "全新标签",
  729. "fatherFuncID": "WTUzfIZ720G4",
  730. "isIllegal": true,
  731. "randomID": "wWVuqJNMePgp",
  732. "titleLabel": {
  733. "Type": "STRING",
  734. "Value": "全新标签",
  735. "displayName": ""
  736. }
  737. },
  738. "StringValue": {
  739. "Type": "STRING",
  740. "Value": "Red"
  741. },
  742. "Type": "BTInputSlot"
  743. },
  744. "conditionB": {
  745. "ContainerValue": null,
  746. "StringValue": {
  747. "Type": "STRING",
  748. "Value": "是"
  749. },
  750. "Type": "BTInputSlot"
  751. },
  752. "isIllegal": true,
  753. "randomID": "q1jEZfKqlM7y"
  754. },
  755. "Type": "BTBoolSlot"
  756. },
  757. "isIllegal": true,
  758. "randomID": "F9z8lhjs7LaM",
  759. "sectionA": {
  760. "ContainerValue": {
  761. "Type": "BTNodeShowAction",
  762. "baseSelect": {
  763. "DisplayName": "全新标签",
  764. "Type": "Action",
  765. "Value": "9c5FVmlo6LZc"
  766. },
  767. "isIllegal": true,
  768. "randomID": "ukJw5bPwbKSH",
  769. "stepSlot": {
  770. "ContainerValue": null,
  771. "Type": "BTStepSlot"
  772. }
  773. },
  774. "Type": "BTSectionSlot"
  775. },
  776. "stepSlot": {
  777. "ContainerValue": {
  778. "Type": "BTIFControlAction",
  779. "conditionA": {
  780. "ContainerValue": {
  781. "Type": "BTStringEqualOperatorAction",
  782. "conditionA": {
  783. "ContainerValue": {
  784. "Type": "BTFuncVariableAction",
  785. "colorName": "More",
  786. "currentStr": "全新标签",
  787. "fatherFuncID": "WTUzfIZ720G4",
  788. "isIllegal": true,
  789. "randomID": "K4MDtpuO8mgB",
  790. "titleLabel": {
  791. "Type": "STRING",
  792. "Value": "全新标签",
  793. "displayName": ""
  794. }
  795. },
  796. "StringValue": {
  797. "Type": "STRING",
  798. "Value": "Red"
  799. },
  800. "Type": "BTInputSlot"
  801. },
  802. "conditionB": {
  803. "ContainerValue": null,
  804. "StringValue": {
  805. "Type": "STRING",
  806. "Value": "否"
  807. },
  808. "Type": "BTInputSlot"
  809. },
  810. "isIllegal": true,
  811. "randomID": "eLnZUfKLdrx2"
  812. },
  813. "Type": "BTBoolSlot"
  814. },
  815. "isIllegal": true,
  816. "randomID": "mm8T7t1UCVGP",
  817. "sectionA": {
  818. "ContainerValue": {
  819. "Type": "BTNodeHiddenAction",
  820. "baseSelect": {
  821. "DisplayName": "全新标签",
  822. "Type": "Action",
  823. "Value": "9c5FVmlo6LZc"
  824. },
  825. "isIllegal": true,
  826. "randomID": "P4KeM7LOBFha",
  827. "stepSlot": {
  828. "ContainerValue": null,
  829. "Type": "BTStepSlot"
  830. }
  831. },
  832. "Type": "BTSectionSlot"
  833. },
  834. "stepSlot": {
  835. "ContainerValue": null,
  836. "Type": "BTStepSlot"
  837. }
  838. },
  839. "Type": "BTStepSlot"
  840. }
  841. },
  842. "Type": "BTStepSlot"
  843. }
  844. },
  845. "Type": "BTStepSlot"
  846. }
  847. },
  848. "Type": "BTStepSlot"
  849. }
  850. },
  851. "Type": "BTStepSlot"
  852. }
  853. },
  854. "Type": "BTStepSlot"
  855. }
  856. },
  857. "Type": "BTStepSlot"
  858. },
  859. "x": -178,
  860. "y": -299
  861. }
  862. }
  863. },
  864. "hxOTpzP4rG8D::A2y6BZFgGSJj": {
  865. "CustomFunc": {
  866. "更新普通卡片": [
  867. [
  868. "Name",
  869. "更新普通卡片",
  870. "w0Kl3In7xio4",
  871. "/Users/yanhao/Desktop/work/CollectModule-Res/ccb/卡片收集系统_普通卡片.red"
  872. ],
  873. [
  874. "BTInputSlot",
  875. "完成状态"
  876. ],
  877. [
  878. "BTInputSlot",
  879. "卡片名称"
  880. ],
  881. [
  882. "BTInputSlot",
  883. "卡片名称底框"
  884. ],
  885. [
  886. "BTInputSlot",
  887. "卡片物品"
  888. ],
  889. [
  890. "BTInputSlot",
  891. "卡片物品底框"
  892. ],
  893. [
  894. "BTInputSlot",
  895. "全新标签"
  896. ],
  897. [
  898. "BTInputSlot",
  899. "Plist图集"
  900. ],
  901. [
  902. "BTInputSlot",
  903. "万能卡存量"
  904. ]
  905. ],
  906. "更新普通卡片信息": [
  907. [
  908. "Name",
  909. "更新普通卡片信息",
  910. "CnJ08Bq3ZtZz",
  911. "/Users/yanhao/Desktop/work/CollectModule-Res/ccb/卡片收集系统_普通卡片.red"
  912. ],
  913. [
  914. "BTInputSlot",
  915. "卡片名称"
  916. ],
  917. [
  918. "BTInputSlot",
  919. "卡片名称底框"
  920. ],
  921. [
  922. "BTInputSlot",
  923. "卡片物品"
  924. ],
  925. [
  926. "BTInputSlot",
  927. "卡片物品底框"
  928. ],
  929. [
  930. "BTInputSlot",
  931. "全新标签"
  932. ],
  933. [
  934. "BTInputSlot",
  935. "Plist图集"
  936. ],
  937. [
  938. "BTInputSlot",
  939. "万能卡存量"
  940. ]
  941. ]
  942. },
  943. "CustomList": {
  944. },
  945. "CustomTestFunc": {
  946. },
  947. "CustomVar": {
  948. },
  949. "DisPlayName": "普通卡片",
  950. "RedNoteInfo": {
  951. },
  952. "TreeList": {
  953. "Tree0": {
  954. "ExportTree": true,
  955. "ImageIndex": 1,
  956. "Name": {
  957. "Type": "STRING",
  958. "Value": "更新普通卡片信息",
  959. "displayName": ""
  960. },
  961. "Type": "BTCustomFuncHeadAction",
  962. "VarJson": {
  963. "boolJson": {
  964. },
  965. "numberJson": {
  966. "Plist图集": "Number",
  967. "万能卡存量": "Number",
  968. "全新标签": "Number",
  969. "卡片名称": "Number",
  970. "卡片名称底框": "Number",
  971. "卡片物品": "Number",
  972. "卡片物品底框": "Number"
  973. }
  974. },
  975. "isIllegal": false,
  976. "randomID": "CnJ08Bq3ZtZz",
  977. "stepSlot": {
  978. "ContainerValue": {
  979. "TitleInput": {
  980. "ContainerValue": {
  981. "Type": "BTFuncVariableAction",
  982. "colorName": "More",
  983. "currentStr": "卡片名称",
  984. "fatherFuncID": "CnJ08Bq3ZtZz",
  985. "isIllegal": true,
  986. "randomID": "YpKEcglpozi5",
  987. "titleLabel": {
  988. "Type": "STRING",
  989. "Value": "卡片名称",
  990. "displayName": ""
  991. }
  992. },
  993. "StringValue": {
  994. "Type": "STRING",
  995. "Value": "填写标题内容"
  996. },
  997. "Type": "BTInputSlot"
  998. },
  999. "Type": "BTLabelTitleAction",
  1000. "baseSelect": {
  1001. "DisplayName": "卡片名称",
  1002. "Type": "Action",
  1003. "Value": "pv3sfxOek7kK"
  1004. },
  1005. "isIllegal": true,
  1006. "randomID": "aERZJNmPcxpe",
  1007. "stepSlot": {
  1008. "ContainerValue": {
  1009. "TitleInput": {
  1010. "ContainerValue": {
  1011. "Type": "BTFuncVariableAction",
  1012. "colorName": "More",
  1013. "currentStr": "卡片名称",
  1014. "fatherFuncID": "CnJ08Bq3ZtZz",
  1015. "isIllegal": true,
  1016. "randomID": "FznU2n16zvr2",
  1017. "titleLabel": {
  1018. "Type": "STRING",
  1019. "Value": "卡片名称",
  1020. "displayName": ""
  1021. }
  1022. },
  1023. "StringValue": {
  1024. "Type": "STRING",
  1025. "Value": "填写标题内容"
  1026. },
  1027. "Type": "BTInputSlot"
  1028. },
  1029. "Type": "BTLabelTitleAction",
  1030. "baseSelect": {
  1031. "DisplayName": "未解锁卡片名称",
  1032. "Type": "Action",
  1033. "Value": "as2HKzI4W3ao"
  1034. },
  1035. "isIllegal": true,
  1036. "randomID": "ljdMJnQCtXR7",
  1037. "stepSlot": {
  1038. "ContainerValue": {
  1039. "Type": "BTSpritePlistAction",
  1040. "baseSelect": {
  1041. "DisplayName": "卡片名称底框",
  1042. "Type": "Action",
  1043. "Value": "PqNgOP0O0CPh"
  1044. },
  1045. "frameNameInput": {
  1046. "ContainerValue": {
  1047. "Type": "BTFuncVariableAction",
  1048. "colorName": "More",
  1049. "currentStr": "卡片名称底框",
  1050. "fatherFuncID": "CnJ08Bq3ZtZz",
  1051. "isIllegal": true,
  1052. "randomID": "66FqE4kXAd4J",
  1053. "titleLabel": {
  1054. "Type": "STRING",
  1055. "Value": "卡片名称底框",
  1056. "displayName": ""
  1057. }
  1058. },
  1059. "StringValue": {
  1060. "Type": "STRING",
  1061. "Value": "图片名"
  1062. },
  1063. "Type": "BTInputSlot"
  1064. },
  1065. "isIllegal": true,
  1066. "pathInput": {
  1067. "ContainerValue": {
  1068. "Type": "BTFuncVariableAction",
  1069. "colorName": "More",
  1070. "currentStr": "Plist图集",
  1071. "fatherFuncID": "CnJ08Bq3ZtZz",
  1072. "isIllegal": true,
  1073. "randomID": "BDSPQxvcSn40",
  1074. "titleLabel": {
  1075. "Type": "STRING",
  1076. "Value": "Plist图集",
  1077. "displayName": ""
  1078. }
  1079. },
  1080. "StringValue": {
  1081. "Type": "STRING",
  1082. "Value": "Plist路径"
  1083. },
  1084. "Type": "BTInputSlot"
  1085. },
  1086. "randomID": "44ALVL2Ch8Lw",
  1087. "stepSlot": {
  1088. "ContainerValue": {
  1089. "Type": "BTSpritePlistAction",
  1090. "baseSelect": {
  1091. "DisplayName": "卡片物品",
  1092. "Type": "Action",
  1093. "Value": "hwCpt4gMbbOI"
  1094. },
  1095. "frameNameInput": {
  1096. "ContainerValue": {
  1097. "Type": "BTFuncVariableAction",
  1098. "colorName": "More",
  1099. "currentStr": "卡片物品",
  1100. "fatherFuncID": "CnJ08Bq3ZtZz",
  1101. "isIllegal": true,
  1102. "randomID": "Xemx3mx93PyU",
  1103. "titleLabel": {
  1104. "Type": "STRING",
  1105. "Value": "卡片物品",
  1106. "displayName": ""
  1107. }
  1108. },
  1109. "StringValue": {
  1110. "Type": "STRING",
  1111. "Value": "图片名"
  1112. },
  1113. "Type": "BTInputSlot"
  1114. },
  1115. "isIllegal": true,
  1116. "pathInput": {
  1117. "ContainerValue": {
  1118. "Type": "BTFuncVariableAction",
  1119. "colorName": "More",
  1120. "currentStr": "Plist图集",
  1121. "fatherFuncID": "CnJ08Bq3ZtZz",
  1122. "isIllegal": true,
  1123. "randomID": "vQt1otx6tdbU",
  1124. "titleLabel": {
  1125. "Type": "STRING",
  1126. "Value": "Plist图集",
  1127. "displayName": ""
  1128. }
  1129. },
  1130. "StringValue": {
  1131. "Type": "STRING",
  1132. "Value": "Plist路径"
  1133. },
  1134. "Type": "BTInputSlot"
  1135. },
  1136. "randomID": "0IUt7XkGYPMS",
  1137. "stepSlot": {
  1138. "ContainerValue": {
  1139. "Type": "BTSpritePlistAction",
  1140. "baseSelect": {
  1141. "DisplayName": "卡片物品底框",
  1142. "Type": "Action",
  1143. "Value": "IyYSeHPt3HQ4"
  1144. },
  1145. "frameNameInput": {
  1146. "ContainerValue": {
  1147. "Type": "BTFuncVariableAction",
  1148. "colorName": "More",
  1149. "currentStr": "卡片物品底框",
  1150. "fatherFuncID": "CnJ08Bq3ZtZz",
  1151. "isIllegal": true,
  1152. "randomID": "gr1sYTeQZUB9",
  1153. "titleLabel": {
  1154. "Type": "STRING",
  1155. "Value": "卡片物品底框",
  1156. "displayName": ""
  1157. }
  1158. },
  1159. "StringValue": {
  1160. "Type": "STRING",
  1161. "Value": "图片名"
  1162. },
  1163. "Type": "BTInputSlot"
  1164. },
  1165. "isIllegal": true,
  1166. "pathInput": {
  1167. "ContainerValue": {
  1168. "Type": "BTFuncVariableAction",
  1169. "colorName": "More",
  1170. "currentStr": "Plist图集",
  1171. "fatherFuncID": "CnJ08Bq3ZtZz",
  1172. "isIllegal": true,
  1173. "randomID": "zdZrfovA0s6c",
  1174. "titleLabel": {
  1175. "Type": "STRING",
  1176. "Value": "Plist图集",
  1177. "displayName": ""
  1178. }
  1179. },
  1180. "StringValue": {
  1181. "Type": "STRING",
  1182. "Value": "Plist路径"
  1183. },
  1184. "Type": "BTInputSlot"
  1185. },
  1186. "randomID": "oq1i1Fbzzv3Z",
  1187. "stepSlot": {
  1188. "ContainerValue": {
  1189. "Type": "BTIFControlAction",
  1190. "conditionA": {
  1191. "ContainerValue": {
  1192. "Type": "BTStringEqualOperatorAction",
  1193. "conditionA": {
  1194. "ContainerValue": {
  1195. "Type": "BTFuncVariableAction",
  1196. "colorName": "More",
  1197. "currentStr": "全新标签",
  1198. "fatherFuncID": "CnJ08Bq3ZtZz",
  1199. "isIllegal": true,
  1200. "randomID": "nD0N7qEdacKp",
  1201. "titleLabel": {
  1202. "Type": "STRING",
  1203. "Value": "全新标签",
  1204. "displayName": ""
  1205. }
  1206. },
  1207. "StringValue": {
  1208. "Type": "STRING",
  1209. "Value": "Red"
  1210. },
  1211. "Type": "BTInputSlot"
  1212. },
  1213. "conditionB": {
  1214. "ContainerValue": null,
  1215. "StringValue": {
  1216. "Type": "STRING",
  1217. "Value": "是"
  1218. },
  1219. "Type": "BTInputSlot"
  1220. },
  1221. "isIllegal": true,
  1222. "randomID": "hHJlgcqogggQ"
  1223. },
  1224. "Type": "BTBoolSlot"
  1225. },
  1226. "isIllegal": true,
  1227. "randomID": "GzZweKlyF7fe",
  1228. "sectionA": {
  1229. "ContainerValue": {
  1230. "Type": "BTNodeShowAction",
  1231. "baseSelect": {
  1232. "DisplayName": "全新标签",
  1233. "Type": "Action",
  1234. "Value": "2FJX5y2WtsXK"
  1235. },
  1236. "isIllegal": true,
  1237. "randomID": "KW4Xh5WNBnn0",
  1238. "stepSlot": {
  1239. "ContainerValue": null,
  1240. "Type": "BTStepSlot"
  1241. }
  1242. },
  1243. "Type": "BTSectionSlot"
  1244. },
  1245. "stepSlot": {
  1246. "ContainerValue": {
  1247. "Type": "BTIFControlAction",
  1248. "conditionA": {
  1249. "ContainerValue": {
  1250. "Type": "BTStringEqualOperatorAction",
  1251. "conditionA": {
  1252. "ContainerValue": {
  1253. "Type": "BTFuncVariableAction",
  1254. "colorName": "More",
  1255. "currentStr": "全新标签",
  1256. "fatherFuncID": "CnJ08Bq3ZtZz",
  1257. "isIllegal": true,
  1258. "randomID": "4yH9Q2YfF4j0",
  1259. "titleLabel": {
  1260. "Type": "STRING",
  1261. "Value": "全新标签",
  1262. "displayName": ""
  1263. }
  1264. },
  1265. "StringValue": {
  1266. "Type": "STRING",
  1267. "Value": "Red"
  1268. },
  1269. "Type": "BTInputSlot"
  1270. },
  1271. "conditionB": {
  1272. "ContainerValue": null,
  1273. "StringValue": {
  1274. "Type": "STRING",
  1275. "Value": "否"
  1276. },
  1277. "Type": "BTInputSlot"
  1278. },
  1279. "isIllegal": true,
  1280. "randomID": "soxG1I9DlBLk"
  1281. },
  1282. "Type": "BTBoolSlot"
  1283. },
  1284. "isIllegal": true,
  1285. "randomID": "JyuFO93JWJcE",
  1286. "sectionA": {
  1287. "ContainerValue": {
  1288. "Type": "BTNodeHiddenAction",
  1289. "baseSelect": {
  1290. "DisplayName": "全新标签",
  1291. "Type": "Action",
  1292. "Value": "2FJX5y2WtsXK"
  1293. },
  1294. "isIllegal": true,
  1295. "randomID": "d94Fie1ELozs",
  1296. "stepSlot": {
  1297. "ContainerValue": null,
  1298. "Type": "BTStepSlot"
  1299. }
  1300. },
  1301. "Type": "BTSectionSlot"
  1302. },
  1303. "stepSlot": {
  1304. "ContainerValue": null,
  1305. "Type": "BTStepSlot"
  1306. }
  1307. },
  1308. "Type": "BTStepSlot"
  1309. }
  1310. },
  1311. "Type": "BTStepSlot"
  1312. }
  1313. },
  1314. "Type": "BTStepSlot"
  1315. }
  1316. },
  1317. "Type": "BTStepSlot"
  1318. }
  1319. },
  1320. "Type": "BTStepSlot"
  1321. }
  1322. },
  1323. "Type": "BTStepSlot"
  1324. }
  1325. },
  1326. "Type": "BTStepSlot"
  1327. },
  1328. "x": -170,
  1329. "y": -36
  1330. },
  1331. "Tree1": {
  1332. "ExportTree": true,
  1333. "ImageIndex": 2,
  1334. "Name": {
  1335. "Type": "STRING",
  1336. "Value": "更新普通卡片",
  1337. "displayName": ""
  1338. },
  1339. "Type": "BTCustomFuncHeadAction",
  1340. "VarJson": {
  1341. "boolJson": {
  1342. },
  1343. "numberJson": {
  1344. "Plist图集": "Number",
  1345. "万能卡存量": "Number",
  1346. "全新标签": "Number",
  1347. "卡片名称": "Number",
  1348. "卡片名称底框": "Number",
  1349. "卡片物品": "Number",
  1350. "卡片物品底框": "Number",
  1351. "完成状态": "Number"
  1352. }
  1353. },
  1354. "isIllegal": false,
  1355. "randomID": "w0Kl3In7xio4",
  1356. "stepSlot": {
  1357. "ContainerValue": {
  1358. "BTInputSlot1": {
  1359. "ContainerValue": {
  1360. "Type": "BTFuncVariableAction",
  1361. "colorName": "More",
  1362. "currentStr": "卡片名称",
  1363. "fatherFuncID": "w0Kl3In7xio4",
  1364. "isIllegal": true,
  1365. "randomID": "y4F8aR81WWxG",
  1366. "titleLabel": {
  1367. "Type": "STRING",
  1368. "Value": "卡片名称",
  1369. "displayName": ""
  1370. }
  1371. },
  1372. "StringValue": {
  1373. "Type": "STRING",
  1374. "Value": "卡片名称"
  1375. },
  1376. "Type": "BTInputSlot"
  1377. },
  1378. "BTInputSlot2": {
  1379. "ContainerValue": {
  1380. "Type": "BTFuncVariableAction",
  1381. "colorName": "More",
  1382. "currentStr": "卡片名称底框",
  1383. "fatherFuncID": "w0Kl3In7xio4",
  1384. "isIllegal": true,
  1385. "randomID": "AMIn9g2Kb6MN",
  1386. "titleLabel": {
  1387. "Type": "STRING",
  1388. "Value": "卡片名称底框",
  1389. "displayName": ""
  1390. }
  1391. },
  1392. "StringValue": {
  1393. "Type": "STRING",
  1394. "Value": "卡片名称底框"
  1395. },
  1396. "Type": "BTInputSlot"
  1397. },
  1398. "BTInputSlot3": {
  1399. "ContainerValue": {
  1400. "Type": "BTFuncVariableAction",
  1401. "colorName": "More",
  1402. "currentStr": "卡片物品",
  1403. "fatherFuncID": "w0Kl3In7xio4",
  1404. "isIllegal": true,
  1405. "randomID": "NaOp8g20YeHo",
  1406. "titleLabel": {
  1407. "Type": "STRING",
  1408. "Value": "卡片物品",
  1409. "displayName": ""
  1410. }
  1411. },
  1412. "StringValue": {
  1413. "Type": "STRING",
  1414. "Value": "卡片物品"
  1415. },
  1416. "Type": "BTInputSlot"
  1417. },
  1418. "BTInputSlot4": {
  1419. "ContainerValue": {
  1420. "Type": "BTFuncVariableAction",
  1421. "colorName": "More",
  1422. "currentStr": "卡片物品底框",
  1423. "fatherFuncID": "w0Kl3In7xio4",
  1424. "isIllegal": true,
  1425. "randomID": "BCHFvaoBsM4f",
  1426. "titleLabel": {
  1427. "Type": "STRING",
  1428. "Value": "卡片物品底框",
  1429. "displayName": ""
  1430. }
  1431. },
  1432. "StringValue": {
  1433. "Type": "STRING",
  1434. "Value": "卡片物品底框"
  1435. },
  1436. "Type": "BTInputSlot"
  1437. },
  1438. "BTInputSlot5": {
  1439. "ContainerValue": {
  1440. "Type": "BTFuncVariableAction",
  1441. "colorName": "More",
  1442. "currentStr": "全新标签",
  1443. "fatherFuncID": "w0Kl3In7xio4",
  1444. "isIllegal": true,
  1445. "randomID": "D94brvAH60GI",
  1446. "titleLabel": {
  1447. "Type": "STRING",
  1448. "Value": "全新标签",
  1449. "displayName": ""
  1450. }
  1451. },
  1452. "StringValue": {
  1453. "Type": "STRING",
  1454. "Value": "全新标签"
  1455. },
  1456. "Type": "BTInputSlot"
  1457. },
  1458. "BTInputSlot6": {
  1459. "ContainerValue": {
  1460. "Type": "BTFuncVariableAction",
  1461. "colorName": "More",
  1462. "currentStr": "Plist图集",
  1463. "fatherFuncID": "w0Kl3In7xio4",
  1464. "isIllegal": true,
  1465. "randomID": "HQBDdovsCWMb",
  1466. "titleLabel": {
  1467. "Type": "STRING",
  1468. "Value": "Plist图集",
  1469. "displayName": ""
  1470. }
  1471. },
  1472. "StringValue": {
  1473. "Type": "STRING",
  1474. "Value": "Plist图集"
  1475. },
  1476. "Type": "BTInputSlot"
  1477. },
  1478. "BTInputSlot7": {
  1479. "ContainerValue": {
  1480. "Type": "BTFuncVariableAction",
  1481. "colorName": "More",
  1482. "currentStr": "万能卡存量",
  1483. "fatherFuncID": "w0Kl3In7xio4",
  1484. "isIllegal": true,
  1485. "randomID": "LASyMHcWG2uo",
  1486. "titleLabel": {
  1487. "Type": "STRING",
  1488. "Value": "万能卡存量",
  1489. "displayName": ""
  1490. }
  1491. },
  1492. "StringValue": {
  1493. "Type": "STRING",
  1494. "Value": "万能卡存量"
  1495. },
  1496. "Type": "BTInputSlot"
  1497. },
  1498. "Name": {
  1499. "Type": "STRING",
  1500. "Value": "更新普通卡片信息",
  1501. "displayName": ""
  1502. },
  1503. "Type": "BTCustomFuncBodyAction",
  1504. "funcHeadID": "CnJ08Bq3ZtZz",
  1505. "isIllegal": true,
  1506. "paramArr": [
  1507. [
  1508. "BTInputSlot1",
  1509. "卡片名称"
  1510. ],
  1511. [
  1512. "BTInputSlot2",
  1513. "卡片名称底框"
  1514. ],
  1515. [
  1516. "BTInputSlot3",
  1517. "卡片物品"
  1518. ],
  1519. [
  1520. "BTInputSlot4",
  1521. "卡片物品底框"
  1522. ],
  1523. [
  1524. "BTInputSlot5",
  1525. "全新标签"
  1526. ],
  1527. [
  1528. "BTInputSlot6",
  1529. "Plist图集"
  1530. ],
  1531. [
  1532. "BTInputSlot7",
  1533. "万能卡存量"
  1534. ]
  1535. ],
  1536. "randomID": "MhBPCjRWbWEY",
  1537. "stepSlot": {
  1538. "ContainerValue": {
  1539. "Type": "BTIFControlAction",
  1540. "conditionA": {
  1541. "ContainerValue": {
  1542. "Type": "BTStringEqualOperatorAction",
  1543. "conditionA": {
  1544. "ContainerValue": {
  1545. "Type": "BTFuncVariableAction",
  1546. "colorName": "More",
  1547. "currentStr": "完成状态",
  1548. "fatherFuncID": "w0Kl3In7xio4",
  1549. "isIllegal": true,
  1550. "randomID": "b9wBhGhTn3Bp",
  1551. "titleLabel": {
  1552. "Type": "STRING",
  1553. "Value": "完成状态",
  1554. "displayName": ""
  1555. }
  1556. },
  1557. "StringValue": {
  1558. "Type": "STRING",
  1559. "Value": "Red"
  1560. },
  1561. "Type": "BTInputSlot"
  1562. },
  1563. "conditionB": {
  1564. "ContainerValue": null,
  1565. "StringValue": {
  1566. "Type": "STRING",
  1567. "Value": "未解锁"
  1568. },
  1569. "Type": "BTInputSlot"
  1570. },
  1571. "isIllegal": true,
  1572. "randomID": "sYjgPbg6iAe7"
  1573. },
  1574. "Type": "BTBoolSlot"
  1575. },
  1576. "isIllegal": true,
  1577. "randomID": "6AX9YhuwxqPM",
  1578. "sectionA": {
  1579. "ContainerValue": {
  1580. "Type": "BTPlayTimeLineAction",
  1581. "baseSelect": {
  1582. "DisplayName": "常态_未解锁",
  1583. "Type": "Action",
  1584. "Value": "0"
  1585. },
  1586. "isIllegal": true,
  1587. "randomID": "3rErlEChJXWY",
  1588. "stepSlot": {
  1589. "ContainerValue": null,
  1590. "Type": "BTStepSlot"
  1591. }
  1592. },
  1593. "Type": "BTSectionSlot"
  1594. },
  1595. "stepSlot": {
  1596. "ContainerValue": {
  1597. "Type": "BTIFControlAction",
  1598. "conditionA": {
  1599. "ContainerValue": {
  1600. "Type": "BTStringEqualOperatorAction",
  1601. "conditionA": {
  1602. "ContainerValue": {
  1603. "Type": "BTFuncVariableAction",
  1604. "colorName": "More",
  1605. "currentStr": "完成状态",
  1606. "fatherFuncID": "w0Kl3In7xio4",
  1607. "isIllegal": true,
  1608. "randomID": "5lRi4I5IOw8L",
  1609. "titleLabel": {
  1610. "Type": "STRING",
  1611. "Value": "完成状态",
  1612. "displayName": ""
  1613. }
  1614. },
  1615. "StringValue": {
  1616. "Type": "STRING",
  1617. "Value": "Red"
  1618. },
  1619. "Type": "BTInputSlot"
  1620. },
  1621. "conditionB": {
  1622. "ContainerValue": null,
  1623. "StringValue": {
  1624. "Type": "STRING",
  1625. "Value": "已解锁"
  1626. },
  1627. "Type": "BTInputSlot"
  1628. },
  1629. "isIllegal": true,
  1630. "randomID": "dezAxBG4RCbH"
  1631. },
  1632. "Type": "BTBoolSlot"
  1633. },
  1634. "isIllegal": true,
  1635. "randomID": "JDOwo1DqD4ru",
  1636. "sectionA": {
  1637. "ContainerValue": {
  1638. "Type": "BTPlayTimeLineAction",
  1639. "baseSelect": {
  1640. "DisplayName": "常态_已解锁",
  1641. "Type": "Action",
  1642. "Value": "1"
  1643. },
  1644. "isIllegal": true,
  1645. "randomID": "QkFP000GYutr",
  1646. "stepSlot": {
  1647. "ContainerValue": null,
  1648. "Type": "BTStepSlot"
  1649. }
  1650. },
  1651. "Type": "BTSectionSlot"
  1652. },
  1653. "stepSlot": {
  1654. "ContainerValue": null,
  1655. "Type": "BTStepSlot"
  1656. }
  1657. },
  1658. "Type": "BTStepSlot"
  1659. }
  1660. },
  1661. "Type": "BTStepSlot"
  1662. }
  1663. },
  1664. "Type": "BTStepSlot"
  1665. },
  1666. "x": -156.5,
  1667. "y": -411
  1668. }
  1669. }
  1670. }
  1671. },
  1672. "RedNoteInfo": {
  1673. },
  1674. "TreeList": {
  1675. "Tree0": {
  1676. "ExportTree": true,
  1677. "ImageIndex": 1,
  1678. "Name": {
  1679. "Type": "STRING",
  1680. "Value": "",
  1681. "displayName": ""
  1682. },
  1683. "Type": "BTMessageReciverAction",
  1684. "VarJson": {
  1685. "boolJson": {
  1686. },
  1687. "numberJson": {
  1688. "消息参数": "Number"
  1689. }
  1690. },
  1691. "isIllegal": false,
  1692. "mathSelector": {
  1693. "DisplayName": "打开卡片兑换完成动画界面",
  1694. "Type": "Action",
  1695. "Value": "4B1zDyrVnhvG"
  1696. },
  1697. "randomID": "At4JY5IRttF5",
  1698. "stepSlot": {
  1699. "ContainerValue": {
  1700. "Type": "BTNotificationToCoderAction",
  1701. "conditionA": {
  1702. "ContainerValue": null,
  1703. "StringValue": {
  1704. "Type": "STRING",
  1705. "Value": "测试_打开卡片兑换完成动画界面"
  1706. },
  1707. "Type": "BTInputSlot"
  1708. },
  1709. "isIllegal": true,
  1710. "randomID": "ANZWW7c3zktF",
  1711. "stepSlot": {
  1712. "ContainerValue": null,
  1713. "Type": "BTStepSlot"
  1714. }
  1715. },
  1716. "Type": "BTStepSlot"
  1717. },
  1718. "x": -403.2889716048115,
  1719. "y": -362.6801596770595
  1720. },
  1721. "Tree1": {
  1722. "ExportTree": false,
  1723. "ImageIndex": 2,
  1724. "Name": {
  1725. "Type": "STRING",
  1726. "Value": "模拟程序执行",
  1727. "displayName": ""
  1728. },
  1729. "Type": "BTSimulatorAction",
  1730. "VarJson": {
  1731. "boolJson": {
  1732. },
  1733. "numberJson": {
  1734. "参数": "Number",
  1735. "通知名": "Number"
  1736. }
  1737. },
  1738. "isIllegal": false,
  1739. "randomID": "VLTWHZGiTAFV",
  1740. "stepSlot": {
  1741. "ContainerValue": {
  1742. "Type": "BTIFControlAction",
  1743. "conditionA": {
  1744. "ContainerValue": {
  1745. "Type": "BTStringEqualOperatorAction",
  1746. "conditionA": {
  1747. "ContainerValue": {
  1748. "Type": "BTFuncVariableAction",
  1749. "colorName": "Disable",
  1750. "currentStr": "通知名",
  1751. "fatherFuncID": "VLTWHZGiTAFV",
  1752. "isIllegal": true,
  1753. "randomID": "m8KdexU46EwR",
  1754. "titleLabel": {
  1755. "Type": "STRING",
  1756. "Value": "通知名",
  1757. "displayName": ""
  1758. }
  1759. },
  1760. "StringValue": {
  1761. "Type": "STRING",
  1762. "Value": "Red"
  1763. },
  1764. "Type": "BTInputSlot"
  1765. },
  1766. "conditionB": {
  1767. "ContainerValue": null,
  1768. "StringValue": {
  1769. "Type": "STRING",
  1770. "Value": "测试_打开卡片兑换完成动画界面"
  1771. },
  1772. "Type": "BTInputSlot"
  1773. },
  1774. "isIllegal": true,
  1775. "randomID": "ZsgksCeR4uEc"
  1776. },
  1777. "Type": "BTBoolSlot"
  1778. },
  1779. "isIllegal": true,
  1780. "randomID": "gPvzHQL5bTpp",
  1781. "sectionA": {
  1782. "ContainerValue": {
  1783. "TitleInput": {
  1784. "ContainerValue": {
  1785. "Type": "BTNodeGetGlobalPosXAction",
  1786. "baseSelect": {
  1787. "DisplayName": "兑换完成动画起点_标准点",
  1788. "Type": "Action",
  1789. "Value": "GdQmYcagoAwk"
  1790. },
  1791. "isIllegal": true,
  1792. "randomID": "Vphk7Ns9frme"
  1793. },
  1794. "StringValue": {
  1795. "Type": "STRING",
  1796. "Value": "0"
  1797. },
  1798. "Type": "BTInputSlot"
  1799. },
  1800. "Type": "BTDataCoderVarSetAction",
  1801. "VarScope": "Scene",
  1802. "baseSelect": {
  1803. "DisplayName": "P-兑换完成动画起点X",
  1804. "Type": "Action",
  1805. "Value": "P-兑换完成动画起点X"
  1806. },
  1807. "isIllegal": true,
  1808. "randomID": "TpB68HTG0CFN",
  1809. "stepSlot": {
  1810. "ContainerValue": {
  1811. "TitleInput": {
  1812. "ContainerValue": {
  1813. "Type": "BTNodeGetGlobalPosYAction",
  1814. "baseSelect": {
  1815. "DisplayName": "兑换完成动画起点_标准点",
  1816. "Type": "Action",
  1817. "Value": "GdQmYcagoAwk"
  1818. },
  1819. "isIllegal": true,
  1820. "randomID": "uqOXBMKhv6Xn"
  1821. },
  1822. "StringValue": {
  1823. "Type": "STRING",
  1824. "Value": "900"
  1825. },
  1826. "Type": "BTInputSlot"
  1827. },
  1828. "Type": "BTDataCoderVarSetAction",
  1829. "VarScope": "Scene",
  1830. "baseSelect": {
  1831. "DisplayName": "P-兑换完成动画起点Y",
  1832. "Type": "Action",
  1833. "Value": "P-兑换完成动画起点Y"
  1834. },
  1835. "isIllegal": true,
  1836. "randomID": "fyetczy2LHYc",
  1837. "stepSlot": {
  1838. "ContainerValue": {
  1839. "TitleInput": {
  1840. "ContainerValue": null,
  1841. "StringValue": {
  1842. "Type": "STRING",
  1843. "Value": "200"
  1844. },
  1845. "Type": "BTInputSlot"
  1846. },
  1847. "Type": "BTDataCoderVarSetAction",
  1848. "VarScope": "Scene",
  1849. "baseSelect": {
  1850. "DisplayName": "P-兑换完成动画终点X",
  1851. "Type": "Action",
  1852. "Value": "P-兑换完成动画终点X"
  1853. },
  1854. "isIllegal": true,
  1855. "randomID": "YrA7zhN9q1E7",
  1856. "stepSlot": {
  1857. "ContainerValue": {
  1858. "TitleInput": {
  1859. "ContainerValue": null,
  1860. "StringValue": {
  1861. "Type": "STRING",
  1862. "Value": "400"
  1863. },
  1864. "Type": "BTInputSlot"
  1865. },
  1866. "Type": "BTDataCoderVarSetAction",
  1867. "VarScope": "Scene",
  1868. "baseSelect": {
  1869. "DisplayName": "P-兑换完成动画终点Y",
  1870. "Type": "Action",
  1871. "Value": "P-兑换完成动画终点Y"
  1872. },
  1873. "isIllegal": true,
  1874. "randomID": "hcLnCFIoFnon",
  1875. "stepSlot": {
  1876. "ContainerValue": {
  1877. "TitleInput": {
  1878. "ContainerValue": null,
  1879. "StringValue": {
  1880. "Type": "STRING",
  1881. "Value": "特殊卡片"
  1882. },
  1883. "Type": "BTInputSlot"
  1884. },
  1885. "Type": "BTDataCoderVarSetAction",
  1886. "VarScope": "Scene",
  1887. "baseSelect": {
  1888. "DisplayName": "P-卡片类型",
  1889. "Type": "Action",
  1890. "Value": "P-卡片类型"
  1891. },
  1892. "isIllegal": true,
  1893. "randomID": "Z8kkS6vAMRy2",
  1894. "stepSlot": {
  1895. "ContainerValue": {
  1896. "TitleInput": {
  1897. "ContainerValue": null,
  1898. "StringValue": {
  1899. "Type": "STRING",
  1900. "Value": "Tea"
  1901. },
  1902. "Type": "BTInputSlot"
  1903. },
  1904. "Type": "BTDataCoderVarSetAction",
  1905. "VarScope": "Scene",
  1906. "baseSelect": {
  1907. "DisplayName": "P-卡片名称",
  1908. "Type": "Action",
  1909. "Value": "P-卡片名称"
  1910. },
  1911. "isIllegal": true,
  1912. "randomID": "mvhdjivMfpMt",
  1913. "stepSlot": {
  1914. "ContainerValue": {
  1915. "TitleInput": {
  1916. "ContainerValue": null,
  1917. "StringValue": {
  1918. "Type": "STRING",
  1919. "Value": "卡片收集系统_卡片_名称栏.png"
  1920. },
  1921. "Type": "BTInputSlot"
  1922. },
  1923. "Type": "BTDataCoderVarSetAction",
  1924. "VarScope": "Scene",
  1925. "baseSelect": {
  1926. "DisplayName": "P-卡片名称底框",
  1927. "Type": "Action",
  1928. "Value": "P-卡片名称底框"
  1929. },
  1930. "isIllegal": true,
  1931. "randomID": "bfdz7CoAueDW",
  1932. "stepSlot": {
  1933. "ContainerValue": {
  1934. "TitleInput": {
  1935. "ContainerValue": null,
  1936. "StringValue": {
  1937. "Type": "STRING",
  1938. "Value": "卡片收集系统_卡片_物品.png"
  1939. },
  1940. "Type": "BTInputSlot"
  1941. },
  1942. "Type": "BTDataCoderVarSetAction",
  1943. "VarScope": "Scene",
  1944. "baseSelect": {
  1945. "DisplayName": "P-卡片物品",
  1946. "Type": "Action",
  1947. "Value": "P-卡片物品"
  1948. },
  1949. "isIllegal": true,
  1950. "randomID": "YJT6cXSCRRuj",
  1951. "stepSlot": {
  1952. "ContainerValue": {
  1953. "TitleInput": {
  1954. "ContainerValue": null,
  1955. "StringValue": {
  1956. "Type": "STRING",
  1957. "Value": "卡片收集系统_卡片_物品底框.png"
  1958. },
  1959. "Type": "BTInputSlot"
  1960. },
  1961. "Type": "BTDataCoderVarSetAction",
  1962. "VarScope": "Scene",
  1963. "baseSelect": {
  1964. "DisplayName": "P-卡片物品底框",
  1965. "Type": "Action",
  1966. "Value": "P-卡片物品底框"
  1967. },
  1968. "isIllegal": true,
  1969. "randomID": "SRHR5Lc41a6I",
  1970. "stepSlot": {
  1971. "ContainerValue": {
  1972. "TitleInput": {
  1973. "ContainerValue": null,
  1974. "StringValue": {
  1975. "Type": "STRING",
  1976. "Value": "卡片收集系统.plist"
  1977. },
  1978. "Type": "BTInputSlot"
  1979. },
  1980. "Type": "BTDataCoderVarSetAction",
  1981. "VarScope": "Scene",
  1982. "baseSelect": {
  1983. "DisplayName": "P-Plist图集",
  1984. "Type": "Action",
  1985. "Value": "P-Plist图集"
  1986. },
  1987. "isIllegal": true,
  1988. "randomID": "WFFzVOBDroaf",
  1989. "stepSlot": {
  1990. "ContainerValue": {
  1991. "Name": {
  1992. "Type": "STRING",
  1993. "Value": "卡片兑换完成动画界面",
  1994. "displayName": ""
  1995. },
  1996. "Type": "BTCustomFuncBodyAction",
  1997. "funcHeadID": "qux2L46CdEbW",
  1998. "isIllegal": true,
  1999. "paramArr": [
  2000. ],
  2001. "randomID": "z2oJ8VAxmWwE",
  2002. "stepSlot": {
  2003. "ContainerValue": null,
  2004. "Type": "BTStepSlot"
  2005. }
  2006. },
  2007. "Type": "BTStepSlot"
  2008. }
  2009. },
  2010. "Type": "BTStepSlot"
  2011. }
  2012. },
  2013. "Type": "BTStepSlot"
  2014. }
  2015. },
  2016. "Type": "BTStepSlot"
  2017. }
  2018. },
  2019. "Type": "BTStepSlot"
  2020. }
  2021. },
  2022. "Type": "BTStepSlot"
  2023. }
  2024. },
  2025. "Type": "BTStepSlot"
  2026. }
  2027. },
  2028. "Type": "BTStepSlot"
  2029. }
  2030. },
  2031. "Type": "BTStepSlot"
  2032. }
  2033. },
  2034. "Type": "BTStepSlot"
  2035. }
  2036. },
  2037. "Type": "BTSectionSlot"
  2038. },
  2039. "stepSlot": {
  2040. "ContainerValue": null,
  2041. "Type": "BTStepSlot"
  2042. }
  2043. },
  2044. "Type": "BTStepSlot"
  2045. },
  2046. "x": 646.7200765863893,
  2047. "y": -640.4976004427665
  2048. },
  2049. "Tree2": {
  2050. "ExportTree": true,
  2051. "ImageIndex": -1,
  2052. "Type": "BTCallBackFuncAction",
  2053. "VarJson": {
  2054. "boolJson": {
  2055. },
  2056. "numberJson": {
  2057. }
  2058. },
  2059. "isIllegal": false,
  2060. "randomID": "MPBJumK4MiUG",
  2061. "stepSlot": {
  2062. "ContainerValue": {
  2063. "Type": "BTMessageSendAction",
  2064. "baseSelect": {
  2065. "DisplayName": "万能卡兑换卡片抵达终点",
  2066. "Type": "Action",
  2067. "Value": "ToAQgu7pqtuc"
  2068. },
  2069. "conditionA": {
  2070. "ContainerValue": null,
  2071. "StringValue": {
  2072. "Type": "STRING",
  2073. "Value": "参数"
  2074. },
  2075. "Type": "BTInputSlot"
  2076. },
  2077. "isIllegal": true,
  2078. "randomID": "lpVR5flxsOsJ",
  2079. "stepSlot": {
  2080. "ContainerValue": {
  2081. "Type": "BTNotificationToCoderAction",
  2082. "conditionA": {
  2083. "ContainerValue": null,
  2084. "StringValue": {
  2085. "Type": "STRING",
  2086. "Value": "卡片兑换完成动画完成"
  2087. },
  2088. "Type": "BTInputSlot"
  2089. },
  2090. "isIllegal": true,
  2091. "randomID": "TE7kJXYRC3iH",
  2092. "stepSlot": {
  2093. "ContainerValue": {
  2094. "Type": "BTMessageSendAction",
  2095. "baseSelect": {
  2096. "DisplayName": "关闭卡片兑换完成动画界面",
  2097. "Type": "Action",
  2098. "Value": "L8xCppVAMDoh"
  2099. },
  2100. "conditionA": {
  2101. "ContainerValue": null,
  2102. "StringValue": {
  2103. "Type": "STRING",
  2104. "Value": "参数"
  2105. },
  2106. "Type": "BTInputSlot"
  2107. },
  2108. "isIllegal": true,
  2109. "randomID": "psLXs2iwISlp",
  2110. "stepSlot": {
  2111. "ContainerValue": {
  2112. "Type": "BTNotificationToCoderAction",
  2113. "conditionA": {
  2114. "ContainerValue": null,
  2115. "StringValue": {
  2116. "Type": "STRING",
  2117. "Value": "关闭卡片兑换完成动画界面"
  2118. },
  2119. "Type": "BTInputSlot"
  2120. },
  2121. "isIllegal": true,
  2122. "randomID": "QJf0mxDPxXK3",
  2123. "stepSlot": {
  2124. "ContainerValue": {
  2125. "Type": "BTRedHiddenAction",
  2126. "baseSelect": {
  2127. "DisplayName": "进入动画",
  2128. "Type": "Action",
  2129. "Value": "18"
  2130. },
  2131. "isIllegal": true,
  2132. "randomID": "dbiKjugnaPBv",
  2133. "stepSlot": {
  2134. "ContainerValue": null,
  2135. "Type": "BTStepSlot"
  2136. }
  2137. },
  2138. "Type": "BTStepSlot"
  2139. }
  2140. },
  2141. "Type": "BTStepSlot"
  2142. }
  2143. },
  2144. "Type": "BTStepSlot"
  2145. }
  2146. },
  2147. "Type": "BTStepSlot"
  2148. }
  2149. },
  2150. "Type": "BTStepSlot"
  2151. },
  2152. "x": 2728,
  2153. "xOffSetLen": 271,
  2154. "y": 345
  2155. },
  2156. "Tree3": {
  2157. "ExportTree": true,
  2158. "ImageIndex": -1,
  2159. "Type": "BTCallBackFuncAction",
  2160. "VarJson": {
  2161. "boolJson": {
  2162. },
  2163. "numberJson": {
  2164. }
  2165. },
  2166. "isIllegal": false,
  2167. "randomID": "YtklVPbFpq70",
  2168. "stepSlot": {
  2169. "ContainerValue": {
  2170. "Type": "BTPlayTimeLineAction",
  2171. "baseSelect": {
  2172. "DisplayName": "退出动画",
  2173. "Type": "Action",
  2174. "Value": "19"
  2175. },
  2176. "isIllegal": true,
  2177. "randomID": "G5dHeIvS9k3i",
  2178. "stepSlot": {
  2179. "ContainerValue": {
  2180. "CallBackInfo": {
  2181. "Type": "BTCallBackFuncAction",
  2182. "Value": "MPBJumK4MiUG"
  2183. },
  2184. "Type": "BTNodeSetAnimActionWithCallBack",
  2185. "animSelect": {
  2186. "DisplayName": "兑换展示专用卡片_收集动画.anim",
  2187. "Type": "Action",
  2188. "Value": "兑换展示专用卡片_收集动画.anim"
  2189. },
  2190. "baseSelect": {
  2191. "DisplayName": "卡片节点",
  2192. "Type": "Action",
  2193. "Value": "LjWWwXv2HJ0H"
  2194. },
  2195. "isIllegal": true,
  2196. "posXInput": {
  2197. "ContainerValue": {
  2198. "Type": "BTNodeGetGlobalPosXAction",
  2199. "baseSelect": {
  2200. "DisplayName": "兑换动画展示点",
  2201. "Type": "Action",
  2202. "Value": "fe2ZqJzvHMTG"
  2203. },
  2204. "isIllegal": true,
  2205. "randomID": "ZTiRNYiHlIUO"
  2206. },
  2207. "StringValue": {
  2208. "Type": "FLOAT",
  2209. "Value": 0
  2210. },
  2211. "Type": "BTInputSlot"
  2212. },
  2213. "posXInput2": {
  2214. "ContainerValue": {
  2215. "Type": "BTCoderVariableAction",
  2216. "VarScope": "Scene",
  2217. "isIllegal": true,
  2218. "randomID": "zSpRY86veENz",
  2219. "titleLabel": {
  2220. "Type": "STRING",
  2221. "Value": "P-兑换完成动画终点X",
  2222. "displayName": ""
  2223. }
  2224. },
  2225. "StringValue": {
  2226. "Type": "FLOAT",
  2227. "Value": 0
  2228. },
  2229. "Type": "BTInputSlot"
  2230. },
  2231. "posYInput": {
  2232. "ContainerValue": {
  2233. "Type": "BTNodeGetGlobalPosYAction",
  2234. "baseSelect": {
  2235. "DisplayName": "兑换动画展示点",
  2236. "Type": "Action",
  2237. "Value": "fe2ZqJzvHMTG"
  2238. },
  2239. "isIllegal": true,
  2240. "randomID": "LsEjG3D7dDBH"
  2241. },
  2242. "StringValue": {
  2243. "Type": "FLOAT",
  2244. "Value": 0
  2245. },
  2246. "Type": "BTInputSlot"
  2247. },
  2248. "posYInput2": {
  2249. "ContainerValue": {
  2250. "Type": "BTCoderVariableAction",
  2251. "VarScope": "Scene",
  2252. "isIllegal": true,
  2253. "randomID": "XUQ0WZ5qigpx",
  2254. "titleLabel": {
  2255. "Type": "STRING",
  2256. "Value": "P-兑换完成动画终点Y",
  2257. "displayName": ""
  2258. }
  2259. },
  2260. "StringValue": {
  2261. "Type": "FLOAT",
  2262. "Value": 0
  2263. },
  2264. "Type": "BTInputSlot"
  2265. },
  2266. "randomID": "BACDkIv1cFSj",
  2267. "stepSlot": {
  2268. "ContainerValue": {
  2269. "Type": "BTPlaySceneTimeLineAction",
  2270. "baseSelect": {
  2271. "DisplayName": "收集动画",
  2272. "Type": "Action",
  2273. "Value": "2"
  2274. },
  2275. "isIllegal": true,
  2276. "randomID": "mPyI9XiK22Xb",
  2277. "redSelect": {
  2278. "DisplayName": "兑换展示专用卡片",
  2279. "Type": "OBJ",
  2280. "Value": "hxOTpzP4rG8D"
  2281. },
  2282. "stepSlot": {
  2283. "ContainerValue": null,
  2284. "Type": "BTStepSlot"
  2285. }
  2286. },
  2287. "Type": "BTStepSlot"
  2288. }
  2289. },
  2290. "Type": "BTStepSlot"
  2291. }
  2292. },
  2293. "Type": "BTStepSlot"
  2294. },
  2295. "x": 1273,
  2296. "xOffSetLen": 175,
  2297. "y": 279
  2298. },
  2299. "Tree4": {
  2300. "ExportTree": true,
  2301. "ImageIndex": -1,
  2302. "Type": "BTCallBackFuncAction",
  2303. "VarJson": {
  2304. "boolJson": {
  2305. },
  2306. "numberJson": {
  2307. }
  2308. },
  2309. "isIllegal": false,
  2310. "randomID": "D29TK8qFw3cc",
  2311. "stepSlot": {
  2312. "ContainerValue": {
  2313. "Type": "BTIFControlAction",
  2314. "conditionA": {
  2315. "ContainerValue": {
  2316. "Type": "BTStringEqualOperatorAction",
  2317. "conditionA": {
  2318. "ContainerValue": {
  2319. "Type": "BTCoderVariableAction",
  2320. "VarScope": "Scene",
  2321. "isIllegal": true,
  2322. "randomID": "IfFj4FOH393t",
  2323. "titleLabel": {
  2324. "Type": "STRING",
  2325. "Value": "P-卡片类型",
  2326. "displayName": ""
  2327. }
  2328. },
  2329. "StringValue": {
  2330. "Type": "STRING",
  2331. "Value": "Red"
  2332. },
  2333. "Type": "BTInputSlot"
  2334. },
  2335. "conditionB": {
  2336. "ContainerValue": null,
  2337. "StringValue": {
  2338. "Type": "STRING",
  2339. "Value": "普通卡片"
  2340. },
  2341. "Type": "BTInputSlot"
  2342. },
  2343. "isIllegal": true,
  2344. "randomID": "1FUeLmaOP9Oh"
  2345. },
  2346. "Type": "BTBoolSlot"
  2347. },
  2348. "isIllegal": true,
  2349. "randomID": "XeKzma74ojq4",
  2350. "sectionA": {
  2351. "ContainerValue": {
  2352. "Type": "BTSceneNodeShowAction",
  2353. "baseSelect": {
  2354. "DisplayName": "普通卡片",
  2355. "Type": "Action",
  2356. "Value": "A2y6BZFgGSJj"
  2357. },
  2358. "isIllegal": true,
  2359. "randomID": "eXkmMqGQKFpO",
  2360. "redSelect": {
  2361. "DisplayName": "兑换展示专用卡片",
  2362. "Type": "OBJ",
  2363. "Value": "hxOTpzP4rG8D"
  2364. },
  2365. "stepSlot": {
  2366. "ContainerValue": {
  2367. "Type": "BTPlaySceneTimeLineAction",
  2368. "baseSelect": {
  2369. "DisplayName": "常态_已解锁",
  2370. "Type": "Action",
  2371. "Value": "1"
  2372. },
  2373. "isIllegal": true,
  2374. "randomID": "todRjdU0rwWA",
  2375. "redSelect": {
  2376. "DisplayName": "普通卡片",
  2377. "Type": "OBJ",
  2378. "Value": "hxOTpzP4rG8D::A2y6BZFgGSJj"
  2379. },
  2380. "stepSlot": {
  2381. "ContainerValue": null,
  2382. "Type": "BTStepSlot"
  2383. }
  2384. },
  2385. "Type": "BTStepSlot"
  2386. }
  2387. },
  2388. "Type": "BTSectionSlot"
  2389. },
  2390. "stepSlot": {
  2391. "ContainerValue": {
  2392. "Type": "BTIFControlAction",
  2393. "conditionA": {
  2394. "ContainerValue": {
  2395. "Type": "BTStringEqualOperatorAction",
  2396. "conditionA": {
  2397. "ContainerValue": {
  2398. "Type": "BTCoderVariableAction",
  2399. "VarScope": "Scene",
  2400. "isIllegal": true,
  2401. "randomID": "ut7LJvFVU2PS",
  2402. "titleLabel": {
  2403. "Type": "STRING",
  2404. "Value": "P-卡片类型",
  2405. "displayName": ""
  2406. }
  2407. },
  2408. "StringValue": {
  2409. "Type": "STRING",
  2410. "Value": "Red"
  2411. },
  2412. "Type": "BTInputSlot"
  2413. },
  2414. "conditionB": {
  2415. "ContainerValue": null,
  2416. "StringValue": {
  2417. "Type": "STRING",
  2418. "Value": "特殊卡片"
  2419. },
  2420. "Type": "BTInputSlot"
  2421. },
  2422. "isIllegal": true,
  2423. "randomID": "w76LWwHIgCto"
  2424. },
  2425. "Type": "BTBoolSlot"
  2426. },
  2427. "isIllegal": true,
  2428. "randomID": "rNVYo7wx0CYS",
  2429. "sectionA": {
  2430. "ContainerValue": {
  2431. "Type": "BTSceneNodeShowAction",
  2432. "baseSelect": {
  2433. "DisplayName": "特殊卡片",
  2434. "Type": "Action",
  2435. "Value": "4rpKZVXFUDrD"
  2436. },
  2437. "isIllegal": true,
  2438. "randomID": "qcllCu4niemM",
  2439. "redSelect": {
  2440. "DisplayName": "兑换展示专用卡片",
  2441. "Type": "OBJ",
  2442. "Value": "hxOTpzP4rG8D"
  2443. },
  2444. "stepSlot": {
  2445. "ContainerValue": {
  2446. "Type": "BTPlaySceneTimeLineAction",
  2447. "baseSelect": {
  2448. "DisplayName": "常态_已解锁",
  2449. "Type": "Action",
  2450. "Value": "1"
  2451. },
  2452. "isIllegal": true,
  2453. "randomID": "McSxzOhyLg1Y",
  2454. "redSelect": {
  2455. "DisplayName": "特殊卡片",
  2456. "Type": "OBJ",
  2457. "Value": "hxOTpzP4rG8D::4rpKZVXFUDrD"
  2458. },
  2459. "stepSlot": {
  2460. "ContainerValue": null,
  2461. "Type": "BTStepSlot"
  2462. }
  2463. },
  2464. "Type": "BTStepSlot"
  2465. }
  2466. },
  2467. "Type": "BTSectionSlot"
  2468. },
  2469. "stepSlot": {
  2470. "ContainerValue": {
  2471. "CallBackInfo": {
  2472. "Type": "BTCallBackFuncAction",
  2473. "Value": "YtklVPbFpq70"
  2474. },
  2475. "Type": "BTPlaySceneTimeLineActionWithCallBack",
  2476. "baseSelect": {
  2477. "DisplayName": "展示动画",
  2478. "Type": "Action",
  2479. "Value": "1"
  2480. },
  2481. "isIllegal": true,
  2482. "randomID": "nGa5hzvLOgEu",
  2483. "redSelect": {
  2484. "DisplayName": "兑换展示专用卡片",
  2485. "Type": "OBJ",
  2486. "Value": "hxOTpzP4rG8D"
  2487. },
  2488. "stepSlot": {
  2489. "ContainerValue": null,
  2490. "Type": "BTStepSlot"
  2491. }
  2492. },
  2493. "Type": "BTStepSlot"
  2494. }
  2495. },
  2496. "Type": "BTStepSlot"
  2497. }
  2498. },
  2499. "Type": "BTStepSlot"
  2500. },
  2501. "x": 867,
  2502. "xOffSetLen": 222,
  2503. "y": -15
  2504. },
  2505. "Tree5": {
  2506. "ExportTree": true,
  2507. "ImageIndex": 3,
  2508. "Name": {
  2509. "Type": "STRING",
  2510. "Value": "卡片兑换完成动画界面",
  2511. "displayName": ""
  2512. },
  2513. "Type": "BTCustomFuncHeadAction",
  2514. "VarJson": {
  2515. "boolJson": {
  2516. },
  2517. "numberJson": {
  2518. }
  2519. },
  2520. "isIllegal": false,
  2521. "randomID": "qux2L46CdEbW",
  2522. "stepSlot": {
  2523. "ContainerValue": {
  2524. "Name": {
  2525. "Type": "STRING",
  2526. "Value": "更新兑换卡片信息",
  2527. "displayName": ""
  2528. },
  2529. "Type": "BTCustomFuncBodyAction",
  2530. "funcHeadID": "tnaHFW8oZTuK",
  2531. "isIllegal": true,
  2532. "paramArr": [
  2533. ],
  2534. "randomID": "z7HK2Mj98mgO",
  2535. "stepSlot": {
  2536. "ContainerValue": {
  2537. "Type": "BTRedShowAction",
  2538. "baseSelect": {
  2539. "DisplayName": "进入动画",
  2540. "Type": "Action",
  2541. "Value": "18"
  2542. },
  2543. "isIllegal": true,
  2544. "randomID": "kfLWAYKavulw",
  2545. "stepSlot": {
  2546. "ContainerValue": {
  2547. "Type": "BTPlayTimeLineAction",
  2548. "baseSelect": {
  2549. "DisplayName": "进入动画",
  2550. "Type": "Action",
  2551. "Value": "18"
  2552. },
  2553. "isIllegal": true,
  2554. "randomID": "MiKi1l8rbSci",
  2555. "stepSlot": {
  2556. "ContainerValue": {
  2557. "Type": "BTNodeShowAction",
  2558. "baseSelect": {
  2559. "DisplayName": "卡片节点",
  2560. "Type": "Action",
  2561. "Value": "LjWWwXv2HJ0H"
  2562. },
  2563. "isIllegal": true,
  2564. "randomID": "TRh5a1NWxnWi",
  2565. "stepSlot": {
  2566. "ContainerValue": {
  2567. "Type": "BTPlaySceneTimeLineAction",
  2568. "baseSelect": {
  2569. "DisplayName": "飞出动画",
  2570. "Type": "Action",
  2571. "Value": "0"
  2572. },
  2573. "isIllegal": true,
  2574. "randomID": "cbf1nudGJmJM",
  2575. "redSelect": {
  2576. "DisplayName": "兑换展示专用卡片",
  2577. "Type": "OBJ",
  2578. "Value": "hxOTpzP4rG8D"
  2579. },
  2580. "stepSlot": {
  2581. "ContainerValue": {
  2582. "CallBackInfo": {
  2583. "Type": "BTCallBackFuncAction",
  2584. "Value": "D29TK8qFw3cc"
  2585. },
  2586. "Type": "BTNodeSetAnimActionWithCallBack",
  2587. "animSelect": {
  2588. "DisplayName": "兑换展示专用卡片_飞出动画.anim",
  2589. "Type": "Action",
  2590. "Value": "兑换展示专用卡片_飞出动画.anim"
  2591. },
  2592. "baseSelect": {
  2593. "DisplayName": "卡片节点",
  2594. "Type": "Action",
  2595. "Value": "LjWWwXv2HJ0H"
  2596. },
  2597. "isIllegal": true,
  2598. "posXInput": {
  2599. "ContainerValue": {
  2600. "Type": "BTCoderVariableAction",
  2601. "VarScope": "Scene",
  2602. "isIllegal": true,
  2603. "randomID": "2PWB5Tm1SAhv",
  2604. "titleLabel": {
  2605. "Type": "STRING",
  2606. "Value": "P-兑换完成动画起点X",
  2607. "displayName": ""
  2608. }
  2609. },
  2610. "StringValue": {
  2611. "Type": "FLOAT",
  2612. "Value": 500
  2613. },
  2614. "Type": "BTInputSlot"
  2615. },
  2616. "posXInput2": {
  2617. "ContainerValue": {
  2618. "Type": "BTNodeGetGlobalPosXAction",
  2619. "baseSelect": {
  2620. "DisplayName": "兑换动画展示点",
  2621. "Type": "Action",
  2622. "Value": "fe2ZqJzvHMTG"
  2623. },
  2624. "isIllegal": true,
  2625. "randomID": "d9QUtMqKTBvq"
  2626. },
  2627. "StringValue": {
  2628. "Type": "FLOAT",
  2629. "Value": 0
  2630. },
  2631. "Type": "BTInputSlot"
  2632. },
  2633. "posYInput": {
  2634. "ContainerValue": {
  2635. "Type": "BTCoderVariableAction",
  2636. "VarScope": "Scene",
  2637. "isIllegal": true,
  2638. "randomID": "DlnzfGv06z8c",
  2639. "titleLabel": {
  2640. "Type": "STRING",
  2641. "Value": "P-兑换完成动画起点Y",
  2642. "displayName": ""
  2643. }
  2644. },
  2645. "StringValue": {
  2646. "Type": "FLOAT",
  2647. "Value": 900
  2648. },
  2649. "Type": "BTInputSlot"
  2650. },
  2651. "posYInput2": {
  2652. "ContainerValue": {
  2653. "Type": "BTNodeGetGlobalPosYAction",
  2654. "baseSelect": {
  2655. "DisplayName": "兑换动画展示点",
  2656. "Type": "Action",
  2657. "Value": "fe2ZqJzvHMTG"
  2658. },
  2659. "isIllegal": true,
  2660. "randomID": "4Ybtx1E07D7H"
  2661. },
  2662. "StringValue": {
  2663. "Type": "FLOAT",
  2664. "Value": 0
  2665. },
  2666. "Type": "BTInputSlot"
  2667. },
  2668. "randomID": "7BOlktIxKvwo",
  2669. "stepSlot": {
  2670. "ContainerValue": null,
  2671. "Type": "BTStepSlot"
  2672. }
  2673. },
  2674. "Type": "BTStepSlot"
  2675. }
  2676. },
  2677. "Type": "BTStepSlot"
  2678. }
  2679. },
  2680. "Type": "BTStepSlot"
  2681. }
  2682. },
  2683. "Type": "BTStepSlot"
  2684. }
  2685. },
  2686. "Type": "BTStepSlot"
  2687. }
  2688. },
  2689. "Type": "BTStepSlot"
  2690. },
  2691. "x": -512.7182950636887,
  2692. "y": -209.84175158150035
  2693. },
  2694. "Tree6": {
  2695. "ExportTree": true,
  2696. "ImageIndex": 4,
  2697. "Name": {
  2698. "Type": "STRING",
  2699. "Value": "更新兑换卡片信息",
  2700. "displayName": ""
  2701. },
  2702. "Type": "BTCustomFuncHeadAction",
  2703. "VarJson": {
  2704. "boolJson": {
  2705. },
  2706. "numberJson": {
  2707. }
  2708. },
  2709. "isIllegal": false,
  2710. "randomID": "tnaHFW8oZTuK",
  2711. "stepSlot": {
  2712. "ContainerValue": {
  2713. "Type": "BTIFControlAction",
  2714. "conditionA": {
  2715. "ContainerValue": {
  2716. "Type": "BTStringEqualOperatorAction",
  2717. "conditionA": {
  2718. "ContainerValue": {
  2719. "Type": "BTCoderVariableAction",
  2720. "VarScope": "Scene",
  2721. "isIllegal": true,
  2722. "randomID": "OuAZLMBxO3nZ",
  2723. "titleLabel": {
  2724. "Type": "STRING",
  2725. "Value": "P-卡片类型",
  2726. "displayName": ""
  2727. }
  2728. },
  2729. "StringValue": {
  2730. "Type": "STRING",
  2731. "Value": "Red"
  2732. },
  2733. "Type": "BTInputSlot"
  2734. },
  2735. "conditionB": {
  2736. "ContainerValue": null,
  2737. "StringValue": {
  2738. "Type": "STRING",
  2739. "Value": "普通卡片"
  2740. },
  2741. "Type": "BTInputSlot"
  2742. },
  2743. "isIllegal": true,
  2744. "randomID": "8LK7WExwk5kf"
  2745. },
  2746. "Type": "BTBoolSlot"
  2747. },
  2748. "isIllegal": true,
  2749. "randomID": "FxHcLlSV5ixV",
  2750. "sectionA": {
  2751. "ContainerValue": {
  2752. "TitleInput": {
  2753. "ContainerValue": {
  2754. "Type": "BTCoderVariableAction",
  2755. "VarScope": "Scene",
  2756. "isIllegal": true,
  2757. "randomID": "NjKkSEuIjEsv",
  2758. "titleLabel": {
  2759. "Type": "STRING",
  2760. "Value": "P-卡片名称",
  2761. "displayName": ""
  2762. }
  2763. },
  2764. "StringValue": {
  2765. "Type": "STRING",
  2766. "Value": "填写标题内容"
  2767. },
  2768. "Type": "BTInputSlot"
  2769. },
  2770. "Type": "BTSceneLabelTitleAction",
  2771. "baseSelect": {
  2772. "DisplayName": "卡片名称",
  2773. "Type": "Action",
  2774. "Value": "pv3sfxOek7kK"
  2775. },
  2776. "isIllegal": true,
  2777. "randomID": "0fdgGf2OuukW",
  2778. "redSelect": {
  2779. "DisplayName": "普通卡片",
  2780. "Type": "OBJ",
  2781. "Value": "hxOTpzP4rG8D::A2y6BZFgGSJj"
  2782. },
  2783. "stepSlot": {
  2784. "ContainerValue": {
  2785. "Type": "BTSceneSpritePlistAction",
  2786. "baseSelect": {
  2787. "DisplayName": "卡片名称底框",
  2788. "Type": "Action",
  2789. "Value": "PqNgOP0O0CPh"
  2790. },
  2791. "frameNameInput": {
  2792. "ContainerValue": {
  2793. "Type": "BTCoderVariableAction",
  2794. "VarScope": "Scene",
  2795. "isIllegal": true,
  2796. "randomID": "A4QzO7Oa8mal",
  2797. "titleLabel": {
  2798. "Type": "STRING",
  2799. "Value": "P-卡片名称底框",
  2800. "displayName": ""
  2801. }
  2802. },
  2803. "StringValue": {
  2804. "Type": "STRING",
  2805. "Value": "图片名"
  2806. },
  2807. "Type": "BTInputSlot"
  2808. },
  2809. "isIllegal": true,
  2810. "pathInput": {
  2811. "ContainerValue": {
  2812. "Type": "BTCoderVariableAction",
  2813. "VarScope": "Scene",
  2814. "isIllegal": true,
  2815. "randomID": "YtIJVdjQglGF",
  2816. "titleLabel": {
  2817. "Type": "STRING",
  2818. "Value": "P-Plist图集",
  2819. "displayName": ""
  2820. }
  2821. },
  2822. "StringValue": {
  2823. "Type": "STRING",
  2824. "Value": "Plist路径"
  2825. },
  2826. "Type": "BTInputSlot"
  2827. },
  2828. "randomID": "0zGQXBc1rF9c",
  2829. "redSelect": {
  2830. "DisplayName": "普通卡片",
  2831. "Type": "OBJ",
  2832. "Value": "hxOTpzP4rG8D::A2y6BZFgGSJj"
  2833. },
  2834. "stepSlot": {
  2835. "ContainerValue": {
  2836. "Type": "BTSceneSpritePlistAction",
  2837. "baseSelect": {
  2838. "DisplayName": "卡片物品",
  2839. "Type": "Action",
  2840. "Value": "hwCpt4gMbbOI"
  2841. },
  2842. "frameNameInput": {
  2843. "ContainerValue": {
  2844. "Type": "BTCoderVariableAction",
  2845. "VarScope": "Scene",
  2846. "isIllegal": true,
  2847. "randomID": "MF9c4GWofnS8",
  2848. "titleLabel": {
  2849. "Type": "STRING",
  2850. "Value": "P-卡片物品",
  2851. "displayName": ""
  2852. }
  2853. },
  2854. "StringValue": {
  2855. "Type": "STRING",
  2856. "Value": "图片名"
  2857. },
  2858. "Type": "BTInputSlot"
  2859. },
  2860. "isIllegal": true,
  2861. "pathInput": {
  2862. "ContainerValue": {
  2863. "Type": "BTCoderVariableAction",
  2864. "VarScope": "Scene",
  2865. "isIllegal": true,
  2866. "randomID": "CEkMkFogRzVH",
  2867. "titleLabel": {
  2868. "Type": "STRING",
  2869. "Value": "P-Plist图集",
  2870. "displayName": ""
  2871. }
  2872. },
  2873. "StringValue": {
  2874. "Type": "STRING",
  2875. "Value": "Plist路径"
  2876. },
  2877. "Type": "BTInputSlot"
  2878. },
  2879. "randomID": "prEWPv8S7NKi",
  2880. "redSelect": {
  2881. "DisplayName": "普通卡片",
  2882. "Type": "OBJ",
  2883. "Value": "hxOTpzP4rG8D::A2y6BZFgGSJj"
  2884. },
  2885. "stepSlot": {
  2886. "ContainerValue": {
  2887. "Type": "BTSceneSpritePlistAction",
  2888. "baseSelect": {
  2889. "DisplayName": "卡片物品底框",
  2890. "Type": "Action",
  2891. "Value": "IyYSeHPt3HQ4"
  2892. },
  2893. "frameNameInput": {
  2894. "ContainerValue": {
  2895. "Type": "BTCoderVariableAction",
  2896. "VarScope": "Scene",
  2897. "isIllegal": true,
  2898. "randomID": "iCkegzxYbnVV",
  2899. "titleLabel": {
  2900. "Type": "STRING",
  2901. "Value": "P-卡片物品底框",
  2902. "displayName": ""
  2903. }
  2904. },
  2905. "StringValue": {
  2906. "Type": "STRING",
  2907. "Value": "图片名"
  2908. },
  2909. "Type": "BTInputSlot"
  2910. },
  2911. "isIllegal": true,
  2912. "pathInput": {
  2913. "ContainerValue": {
  2914. "Type": "BTCoderVariableAction",
  2915. "VarScope": "Scene",
  2916. "isIllegal": true,
  2917. "randomID": "s1OsqQ0Fn2bl",
  2918. "titleLabel": {
  2919. "Type": "STRING",
  2920. "Value": "P-Plist图集",
  2921. "displayName": ""
  2922. }
  2923. },
  2924. "StringValue": {
  2925. "Type": "STRING",
  2926. "Value": "Plist路径"
  2927. },
  2928. "Type": "BTInputSlot"
  2929. },
  2930. "randomID": "vKBRjtmu97oP",
  2931. "redSelect": {
  2932. "DisplayName": "普通卡片",
  2933. "Type": "OBJ",
  2934. "Value": "hxOTpzP4rG8D::A2y6BZFgGSJj"
  2935. },
  2936. "stepSlot": {
  2937. "ContainerValue": null,
  2938. "Type": "BTStepSlot"
  2939. }
  2940. },
  2941. "Type": "BTStepSlot"
  2942. }
  2943. },
  2944. "Type": "BTStepSlot"
  2945. }
  2946. },
  2947. "Type": "BTStepSlot"
  2948. }
  2949. },
  2950. "Type": "BTSectionSlot"
  2951. },
  2952. "stepSlot": {
  2953. "ContainerValue": {
  2954. "Type": "BTIFControlAction",
  2955. "conditionA": {
  2956. "ContainerValue": {
  2957. "Type": "BTStringEqualOperatorAction",
  2958. "conditionA": {
  2959. "ContainerValue": {
  2960. "Type": "BTCoderVariableAction",
  2961. "VarScope": "Scene",
  2962. "isIllegal": true,
  2963. "randomID": "WDmPO0TLP6hV",
  2964. "titleLabel": {
  2965. "Type": "STRING",
  2966. "Value": "P-卡片类型",
  2967. "displayName": ""
  2968. }
  2969. },
  2970. "StringValue": {
  2971. "Type": "STRING",
  2972. "Value": "Red"
  2973. },
  2974. "Type": "BTInputSlot"
  2975. },
  2976. "conditionB": {
  2977. "ContainerValue": null,
  2978. "StringValue": {
  2979. "Type": "STRING",
  2980. "Value": "特殊卡片"
  2981. },
  2982. "Type": "BTInputSlot"
  2983. },
  2984. "isIllegal": true,
  2985. "randomID": "OmN9EmFCvT7j"
  2986. },
  2987. "Type": "BTBoolSlot"
  2988. },
  2989. "isIllegal": true,
  2990. "randomID": "OWVmIOejRjpw",
  2991. "sectionA": {
  2992. "ContainerValue": {
  2993. "TitleInput": {
  2994. "ContainerValue": {
  2995. "Type": "BTCoderVariableAction",
  2996. "VarScope": "Scene",
  2997. "isIllegal": true,
  2998. "randomID": "9Ma6qekkohmz",
  2999. "titleLabel": {
  3000. "Type": "STRING",
  3001. "Value": "P-卡片名称",
  3002. "displayName": ""
  3003. }
  3004. },
  3005. "StringValue": {
  3006. "Type": "STRING",
  3007. "Value": "填写标题内容"
  3008. },
  3009. "Type": "BTInputSlot"
  3010. },
  3011. "Type": "BTSceneLabelTitleAction",
  3012. "baseSelect": {
  3013. "DisplayName": "卡片名称",
  3014. "Type": "Action",
  3015. "Value": "a193Psf8aoSl"
  3016. },
  3017. "isIllegal": true,
  3018. "randomID": "ywJA02miPeBg",
  3019. "redSelect": {
  3020. "DisplayName": "特殊卡片",
  3021. "Type": "OBJ",
  3022. "Value": "hxOTpzP4rG8D::4rpKZVXFUDrD"
  3023. },
  3024. "stepSlot": {
  3025. "ContainerValue": {
  3026. "Type": "BTSceneSpritePlistAction",
  3027. "baseSelect": {
  3028. "DisplayName": "卡片名称底框",
  3029. "Type": "Action",
  3030. "Value": "eUbqs5Bc3sYj"
  3031. },
  3032. "frameNameInput": {
  3033. "ContainerValue": {
  3034. "Type": "BTCoderVariableAction",
  3035. "VarScope": "Scene",
  3036. "isIllegal": true,
  3037. "randomID": "ZIPr7KJ7DJsv",
  3038. "titleLabel": {
  3039. "Type": "STRING",
  3040. "Value": "P-卡片名称底框",
  3041. "displayName": ""
  3042. }
  3043. },
  3044. "StringValue": {
  3045. "Type": "STRING",
  3046. "Value": "图片名"
  3047. },
  3048. "Type": "BTInputSlot"
  3049. },
  3050. "isIllegal": true,
  3051. "pathInput": {
  3052. "ContainerValue": {
  3053. "Type": "BTCoderVariableAction",
  3054. "VarScope": "Scene",
  3055. "isIllegal": true,
  3056. "randomID": "whlOxtYFuZk7",
  3057. "titleLabel": {
  3058. "Type": "STRING",
  3059. "Value": "P-Plist图集",
  3060. "displayName": ""
  3061. }
  3062. },
  3063. "StringValue": {
  3064. "Type": "STRING",
  3065. "Value": "Plist路径"
  3066. },
  3067. "Type": "BTInputSlot"
  3068. },
  3069. "randomID": "3dsybHbfnn9p",
  3070. "redSelect": {
  3071. "DisplayName": "特殊卡片",
  3072. "Type": "OBJ",
  3073. "Value": "hxOTpzP4rG8D::4rpKZVXFUDrD"
  3074. },
  3075. "stepSlot": {
  3076. "ContainerValue": {
  3077. "Type": "BTSceneSpritePlistAction",
  3078. "baseSelect": {
  3079. "DisplayName": "卡片物品",
  3080. "Type": "Action",
  3081. "Value": "MnMdmDiHa1Yf"
  3082. },
  3083. "frameNameInput": {
  3084. "ContainerValue": {
  3085. "Type": "BTCoderVariableAction",
  3086. "VarScope": "Scene",
  3087. "isIllegal": true,
  3088. "randomID": "S54oBKj8OO8W",
  3089. "titleLabel": {
  3090. "Type": "STRING",
  3091. "Value": "P-卡片物品",
  3092. "displayName": ""
  3093. }
  3094. },
  3095. "StringValue": {
  3096. "Type": "STRING",
  3097. "Value": "图片名"
  3098. },
  3099. "Type": "BTInputSlot"
  3100. },
  3101. "isIllegal": true,
  3102. "pathInput": {
  3103. "ContainerValue": {
  3104. "Type": "BTCoderVariableAction",
  3105. "VarScope": "Scene",
  3106. "isIllegal": true,
  3107. "randomID": "IXkIsYScYQaN",
  3108. "titleLabel": {
  3109. "Type": "STRING",
  3110. "Value": "P-Plist图集",
  3111. "displayName": ""
  3112. }
  3113. },
  3114. "StringValue": {
  3115. "Type": "STRING",
  3116. "Value": "Plist路径"
  3117. },
  3118. "Type": "BTInputSlot"
  3119. },
  3120. "randomID": "K06qnzFTbnpi",
  3121. "redSelect": {
  3122. "DisplayName": "特殊卡片",
  3123. "Type": "OBJ",
  3124. "Value": "hxOTpzP4rG8D::4rpKZVXFUDrD"
  3125. },
  3126. "stepSlot": {
  3127. "ContainerValue": {
  3128. "Type": "BTSceneSpritePlistAction",
  3129. "baseSelect": {
  3130. "DisplayName": "卡片物品底框",
  3131. "Type": "Action",
  3132. "Value": "YIzVZTOo8X28"
  3133. },
  3134. "frameNameInput": {
  3135. "ContainerValue": {
  3136. "Type": "BTCoderVariableAction",
  3137. "VarScope": "Scene",
  3138. "isIllegal": true,
  3139. "randomID": "SsOgbckp4SHz",
  3140. "titleLabel": {
  3141. "Type": "STRING",
  3142. "Value": "P-卡片物品底框",
  3143. "displayName": ""
  3144. }
  3145. },
  3146. "StringValue": {
  3147. "Type": "STRING",
  3148. "Value": "图片名"
  3149. },
  3150. "Type": "BTInputSlot"
  3151. },
  3152. "isIllegal": true,
  3153. "pathInput": {
  3154. "ContainerValue": {
  3155. "Type": "BTCoderVariableAction",
  3156. "VarScope": "Scene",
  3157. "isIllegal": true,
  3158. "randomID": "NYm8oKc7jbyS",
  3159. "titleLabel": {
  3160. "Type": "STRING",
  3161. "Value": "P-Plist图集",
  3162. "displayName": ""
  3163. }
  3164. },
  3165. "StringValue": {
  3166. "Type": "STRING",
  3167. "Value": "Plist路径"
  3168. },
  3169. "Type": "BTInputSlot"
  3170. },
  3171. "randomID": "B3ZiqFl2prSB",
  3172. "redSelect": {
  3173. "DisplayName": "特殊卡片",
  3174. "Type": "OBJ",
  3175. "Value": "hxOTpzP4rG8D::4rpKZVXFUDrD"
  3176. },
  3177. "stepSlot": {
  3178. "ContainerValue": null,
  3179. "Type": "BTStepSlot"
  3180. }
  3181. },
  3182. "Type": "BTStepSlot"
  3183. }
  3184. },
  3185. "Type": "BTStepSlot"
  3186. }
  3187. },
  3188. "Type": "BTStepSlot"
  3189. }
  3190. },
  3191. "Type": "BTSectionSlot"
  3192. },
  3193. "stepSlot": {
  3194. "ContainerValue": null,
  3195. "Type": "BTStepSlot"
  3196. }
  3197. },
  3198. "Type": "BTStepSlot"
  3199. }
  3200. },
  3201. "Type": "BTStepSlot"
  3202. },
  3203. "x": -516.9059250818145,
  3204. "y": 70.30365249377023
  3205. }
  3206. }
  3207. }