role.prefab 39 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415
  1. [
  2. {
  3. "__type__": "cc.Prefab",
  4. "_name": "",
  5. "_objFlags": 0,
  6. "_native": "",
  7. "data": {
  8. "__id__": 1
  9. },
  10. "optimizationPolicy": 0,
  11. "asyncLoadAssets": false,
  12. "readonly": false
  13. },
  14. {
  15. "__type__": "cc.Node",
  16. "_name": "role",
  17. "_objFlags": 0,
  18. "_parent": null,
  19. "_children": [
  20. {
  21. "__id__": 2
  22. },
  23. {
  24. "__id__": 7
  25. },
  26. {
  27. "__id__": 46
  28. },
  29. {
  30. "__id__": 49
  31. },
  32. {
  33. "__id__": 52
  34. },
  35. {
  36. "__id__": 64
  37. }
  38. ],
  39. "_active": true,
  40. "_components": [
  41. {
  42. "__id__": 67
  43. }
  44. ],
  45. "_prefab": {
  46. "__id__": 68
  47. },
  48. "_opacity": 255,
  49. "_color": {
  50. "__type__": "cc.Color",
  51. "r": 255,
  52. "g": 255,
  53. "b": 255,
  54. "a": 255
  55. },
  56. "_contentSize": {
  57. "__type__": "cc.Size",
  58. "width": 0,
  59. "height": 0
  60. },
  61. "_anchorPoint": {
  62. "__type__": "cc.Vec2",
  63. "x": 0.5,
  64. "y": 0.5
  65. },
  66. "_trs": {
  67. "__type__": "TypedArray",
  68. "ctor": "Float64Array",
  69. "array": [
  70. 0,
  71. 0,
  72. 0,
  73. 0,
  74. 0,
  75. 0,
  76. 1,
  77. 1,
  78. 1,
  79. 1
  80. ]
  81. },
  82. "_eulerAngles": {
  83. "__type__": "cc.Vec3",
  84. "x": 0,
  85. "y": 0,
  86. "z": 0
  87. },
  88. "_skewX": 0,
  89. "_skewY": 0,
  90. "_is3DNode": false,
  91. "_groupIndex": 0,
  92. "groupIndex": 0,
  93. "_id": ""
  94. },
  95. {
  96. "__type__": "cc.Node",
  97. "_name": "fa",
  98. "_objFlags": 0,
  99. "_parent": {
  100. "__id__": 1
  101. },
  102. "_children": [],
  103. "_active": true,
  104. "_components": [
  105. {
  106. "__id__": 3
  107. },
  108. {
  109. "__id__": 4
  110. }
  111. ],
  112. "_prefab": {
  113. "__id__": 6
  114. },
  115. "_opacity": 255,
  116. "_color": {
  117. "__type__": "cc.Color",
  118. "r": 255,
  119. "g": 255,
  120. "b": 255,
  121. "a": 255
  122. },
  123. "_contentSize": {
  124. "__type__": "cc.Size",
  125. "width": 60,
  126. "height": 100
  127. },
  128. "_anchorPoint": {
  129. "__type__": "cc.Vec2",
  130. "x": 0.5,
  131. "y": 0
  132. },
  133. "_trs": {
  134. "__type__": "TypedArray",
  135. "ctor": "Float64Array",
  136. "array": [
  137. 0,
  138. 0,
  139. 0,
  140. 0,
  141. 0,
  142. 0,
  143. 1,
  144. 1,
  145. 1,
  146. 1
  147. ]
  148. },
  149. "_eulerAngles": {
  150. "__type__": "cc.Vec3",
  151. "x": 0,
  152. "y": 0,
  153. "z": 0
  154. },
  155. "_skewX": 0,
  156. "_skewY": 0,
  157. "_is3DNode": false,
  158. "_groupIndex": 0,
  159. "groupIndex": 0,
  160. "_id": ""
  161. },
  162. {
  163. "__type__": "cc.Sprite",
  164. "_name": "",
  165. "_objFlags": 0,
  166. "node": {
  167. "__id__": 2
  168. },
  169. "_enabled": true,
  170. "_materials": [
  171. {
  172. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  173. }
  174. ],
  175. "_srcBlendFactor": 770,
  176. "_dstBlendFactor": 771,
  177. "_spriteFrame": null,
  178. "_type": 0,
  179. "_sizeMode": 2,
  180. "_fillType": 0,
  181. "_fillCenter": {
  182. "__type__": "cc.Vec2",
  183. "x": 0,
  184. "y": 0
  185. },
  186. "_fillStart": 0,
  187. "_fillRange": 0,
  188. "_isTrimmedMode": false,
  189. "_atlas": null,
  190. "_id": ""
  191. },
  192. {
  193. "__type__": "60f21sQlalGUIOu/1UiFxwE",
  194. "_name": "",
  195. "_objFlags": 0,
  196. "node": {
  197. "__id__": 2
  198. },
  199. "_enabled": true,
  200. "sprite": null,
  201. "spriteAtlas": null,
  202. "frameConfigs": [
  203. {
  204. "__id__": 5
  205. }
  206. ],
  207. "playOnLoad": false,
  208. "loop": false,
  209. "defaultConfig": 0,
  210. "_id": ""
  211. },
  212. {
  213. "__type__": "FrameConfig",
  214. "frames": 20,
  215. "frameInterval": 6
  216. },
  217. {
  218. "__type__": "cc.PrefabInfo",
  219. "root": {
  220. "__id__": 1
  221. },
  222. "asset": {
  223. "__id__": 0
  224. },
  225. "fileId": "32/npSD/5H0La6j9teJEMf",
  226. "sync": false
  227. },
  228. {
  229. "__type__": "cc.Node",
  230. "_name": "hpNode",
  231. "_objFlags": 0,
  232. "_parent": {
  233. "__id__": 1
  234. },
  235. "_children": [
  236. {
  237. "__id__": 8
  238. },
  239. {
  240. "__id__": 11
  241. },
  242. {
  243. "__id__": 18
  244. },
  245. {
  246. "__id__": 27
  247. }
  248. ],
  249. "_active": true,
  250. "_components": [],
  251. "_prefab": {
  252. "__id__": 45
  253. },
  254. "_opacity": 255,
  255. "_color": {
  256. "__type__": "cc.Color",
  257. "r": 255,
  258. "g": 255,
  259. "b": 255,
  260. "a": 255
  261. },
  262. "_contentSize": {
  263. "__type__": "cc.Size",
  264. "width": 0,
  265. "height": 0
  266. },
  267. "_anchorPoint": {
  268. "__type__": "cc.Vec2",
  269. "x": 0.5,
  270. "y": 0.5
  271. },
  272. "_trs": {
  273. "__type__": "TypedArray",
  274. "ctor": "Float64Array",
  275. "array": [
  276. 0,
  277. 100,
  278. 0,
  279. 0,
  280. 0,
  281. 0,
  282. 1,
  283. 1,
  284. 1,
  285. 1
  286. ]
  287. },
  288. "_eulerAngles": {
  289. "__type__": "cc.Vec3",
  290. "x": 0,
  291. "y": 0,
  292. "z": 0
  293. },
  294. "_skewX": 0,
  295. "_skewY": 0,
  296. "_is3DNode": false,
  297. "_groupIndex": 0,
  298. "groupIndex": 0,
  299. "_id": ""
  300. },
  301. {
  302. "__type__": "cc.Node",
  303. "_name": "castle_blood_bottom",
  304. "_objFlags": 0,
  305. "_parent": {
  306. "__id__": 7
  307. },
  308. "_children": [],
  309. "_active": false,
  310. "_components": [
  311. {
  312. "__id__": 9
  313. }
  314. ],
  315. "_prefab": {
  316. "__id__": 10
  317. },
  318. "_opacity": 255,
  319. "_color": {
  320. "__type__": "cc.Color",
  321. "r": 255,
  322. "g": 255,
  323. "b": 255,
  324. "a": 255
  325. },
  326. "_contentSize": {
  327. "__type__": "cc.Size",
  328. "width": 108,
  329. "height": 18
  330. },
  331. "_anchorPoint": {
  332. "__type__": "cc.Vec2",
  333. "x": 0.5,
  334. "y": 0.5
  335. },
  336. "_trs": {
  337. "__type__": "TypedArray",
  338. "ctor": "Float64Array",
  339. "array": [
  340. 0,
  341. 0,
  342. 0,
  343. 0,
  344. 0,
  345. 0,
  346. 1,
  347. 1,
  348. 1,
  349. 1
  350. ]
  351. },
  352. "_eulerAngles": {
  353. "__type__": "cc.Vec3",
  354. "x": 0,
  355. "y": 0,
  356. "z": 0
  357. },
  358. "_skewX": 0,
  359. "_skewY": 0,
  360. "_is3DNode": false,
  361. "_groupIndex": 0,
  362. "groupIndex": 0,
  363. "_id": ""
  364. },
  365. {
  366. "__type__": "cc.Sprite",
  367. "_name": "",
  368. "_objFlags": 0,
  369. "node": {
  370. "__id__": 8
  371. },
  372. "_enabled": true,
  373. "_materials": [
  374. {
  375. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  376. }
  377. ],
  378. "_srcBlendFactor": 770,
  379. "_dstBlendFactor": 771,
  380. "_spriteFrame": {
  381. "__uuid__": "8d2aaecd-9348-418a-9a2f-d1c5c41ef2e1"
  382. },
  383. "_type": 1,
  384. "_sizeMode": 0,
  385. "_fillType": 0,
  386. "_fillCenter": {
  387. "__type__": "cc.Vec2",
  388. "x": 0,
  389. "y": 0
  390. },
  391. "_fillStart": 0,
  392. "_fillRange": 0,
  393. "_isTrimmedMode": true,
  394. "_atlas": null,
  395. "_id": ""
  396. },
  397. {
  398. "__type__": "cc.PrefabInfo",
  399. "root": {
  400. "__id__": 1
  401. },
  402. "asset": {
  403. "__id__": 0
  404. },
  405. "fileId": "6eHyO7LJhCrLt7i2lzsKyK",
  406. "sync": false
  407. },
  408. {
  409. "__type__": "cc.Node",
  410. "_name": "HPshield",
  411. "_objFlags": 0,
  412. "_parent": {
  413. "__id__": 7
  414. },
  415. "_children": [
  416. {
  417. "__id__": 12
  418. }
  419. ],
  420. "_active": true,
  421. "_components": [
  422. {
  423. "__id__": 15
  424. },
  425. {
  426. "__id__": 16
  427. }
  428. ],
  429. "_prefab": {
  430. "__id__": 17
  431. },
  432. "_opacity": 255,
  433. "_color": {
  434. "__type__": "cc.Color",
  435. "r": 52,
  436. "g": 40,
  437. "b": 25,
  438. "a": 255
  439. },
  440. "_contentSize": {
  441. "__type__": "cc.Size",
  442. "width": 100,
  443. "height": 10
  444. },
  445. "_anchorPoint": {
  446. "__type__": "cc.Vec2",
  447. "x": 0.5,
  448. "y": 0.5
  449. },
  450. "_trs": {
  451. "__type__": "TypedArray",
  452. "ctor": "Float64Array",
  453. "array": [
  454. 0,
  455. 0,
  456. 0,
  457. 0,
  458. 0,
  459. 0,
  460. 1,
  461. 1,
  462. 1,
  463. 1
  464. ]
  465. },
  466. "_eulerAngles": {
  467. "__type__": "cc.Vec3",
  468. "x": 0,
  469. "y": 0,
  470. "z": 0
  471. },
  472. "_skewX": 0,
  473. "_skewY": 0,
  474. "_is3DNode": false,
  475. "_groupIndex": 0,
  476. "groupIndex": 0,
  477. "_id": ""
  478. },
  479. {
  480. "__type__": "cc.Node",
  481. "_name": "value",
  482. "_objFlags": 0,
  483. "_parent": {
  484. "__id__": 11
  485. },
  486. "_children": [],
  487. "_active": true,
  488. "_components": [
  489. {
  490. "__id__": 13
  491. }
  492. ],
  493. "_prefab": {
  494. "__id__": 14
  495. },
  496. "_opacity": 255,
  497. "_color": {
  498. "__type__": "cc.Color",
  499. "r": 255,
  500. "g": 255,
  501. "b": 255,
  502. "a": 255
  503. },
  504. "_contentSize": {
  505. "__type__": "cc.Size",
  506. "width": 70,
  507. "height": 10
  508. },
  509. "_anchorPoint": {
  510. "__type__": "cc.Vec2",
  511. "x": 0,
  512. "y": 0.5
  513. },
  514. "_trs": {
  515. "__type__": "TypedArray",
  516. "ctor": "Float64Array",
  517. "array": [
  518. -50,
  519. 0,
  520. 0,
  521. 0,
  522. 0,
  523. 0,
  524. 1,
  525. 1,
  526. 1,
  527. 1
  528. ]
  529. },
  530. "_eulerAngles": {
  531. "__type__": "cc.Vec3",
  532. "x": 0,
  533. "y": 0,
  534. "z": 0
  535. },
  536. "_skewX": 0,
  537. "_skewY": 0,
  538. "_is3DNode": false,
  539. "_groupIndex": 0,
  540. "groupIndex": 0,
  541. "_id": ""
  542. },
  543. {
  544. "__type__": "cc.Sprite",
  545. "_name": "",
  546. "_objFlags": 0,
  547. "node": {
  548. "__id__": 12
  549. },
  550. "_enabled": true,
  551. "_materials": [
  552. {
  553. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  554. }
  555. ],
  556. "_srcBlendFactor": 770,
  557. "_dstBlendFactor": 771,
  558. "_spriteFrame": {
  559. "__uuid__": "b1f64ee3-dd78-476c-bb28-83d9997f558e"
  560. },
  561. "_type": 1,
  562. "_sizeMode": 0,
  563. "_fillType": 0,
  564. "_fillCenter": {
  565. "__type__": "cc.Vec2",
  566. "x": 0,
  567. "y": 0
  568. },
  569. "_fillStart": 0,
  570. "_fillRange": 0,
  571. "_isTrimmedMode": true,
  572. "_atlas": null,
  573. "_id": ""
  574. },
  575. {
  576. "__type__": "cc.PrefabInfo",
  577. "root": {
  578. "__id__": 1
  579. },
  580. "asset": {
  581. "__id__": 0
  582. },
  583. "fileId": "67HZislNJG36tKptue+Tnu",
  584. "sync": false
  585. },
  586. {
  587. "__type__": "cc.ProgressBar",
  588. "_name": "",
  589. "_objFlags": 0,
  590. "node": {
  591. "__id__": 11
  592. },
  593. "_enabled": true,
  594. "_N$totalLength": 100,
  595. "_N$barSprite": {
  596. "__id__": 13
  597. },
  598. "_N$mode": 0,
  599. "_N$progress": 0.7,
  600. "_N$reverse": false,
  601. "_id": ""
  602. },
  603. {
  604. "__type__": "cc.Sprite",
  605. "_name": "",
  606. "_objFlags": 0,
  607. "node": {
  608. "__id__": 11
  609. },
  610. "_enabled": true,
  611. "_materials": [
  612. {
  613. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  614. }
  615. ],
  616. "_srcBlendFactor": 770,
  617. "_dstBlendFactor": 771,
  618. "_spriteFrame": {
  619. "__uuid__": "b1f64ee3-dd78-476c-bb28-83d9997f558e"
  620. },
  621. "_type": 0,
  622. "_sizeMode": 0,
  623. "_fillType": 0,
  624. "_fillCenter": {
  625. "__type__": "cc.Vec2",
  626. "x": 0,
  627. "y": 0
  628. },
  629. "_fillStart": 0,
  630. "_fillRange": 0,
  631. "_isTrimmedMode": true,
  632. "_atlas": null,
  633. "_id": ""
  634. },
  635. {
  636. "__type__": "cc.PrefabInfo",
  637. "root": {
  638. "__id__": 1
  639. },
  640. "asset": {
  641. "__id__": 0
  642. },
  643. "fileId": "48BsXoQWlMNI8QO03CHMaA",
  644. "sync": false
  645. },
  646. {
  647. "__type__": "cc.Node",
  648. "_name": "HP",
  649. "_objFlags": 0,
  650. "_parent": {
  651. "__id__": 7
  652. },
  653. "_children": [
  654. {
  655. "__id__": 19
  656. },
  657. {
  658. "__id__": 22
  659. }
  660. ],
  661. "_active": true,
  662. "_components": [
  663. {
  664. "__id__": 25
  665. }
  666. ],
  667. "_prefab": {
  668. "__id__": 26
  669. },
  670. "_opacity": 255,
  671. "_color": {
  672. "__type__": "cc.Color",
  673. "r": 255,
  674. "g": 255,
  675. "b": 255,
  676. "a": 255
  677. },
  678. "_contentSize": {
  679. "__type__": "cc.Size",
  680. "width": 100,
  681. "height": 10
  682. },
  683. "_anchorPoint": {
  684. "__type__": "cc.Vec2",
  685. "x": 0.5,
  686. "y": 0.5
  687. },
  688. "_trs": {
  689. "__type__": "TypedArray",
  690. "ctor": "Float64Array",
  691. "array": [
  692. 0,
  693. 0,
  694. 0,
  695. 0,
  696. 0,
  697. 0,
  698. 1,
  699. 1,
  700. 1,
  701. 1
  702. ]
  703. },
  704. "_eulerAngles": {
  705. "__type__": "cc.Vec3",
  706. "x": 0,
  707. "y": 0,
  708. "z": 0
  709. },
  710. "_skewX": 0,
  711. "_skewY": 0,
  712. "_is3DNode": false,
  713. "_groupIndex": 0,
  714. "groupIndex": 0,
  715. "_id": ""
  716. },
  717. {
  718. "__type__": "cc.Node",
  719. "_name": "green",
  720. "_objFlags": 0,
  721. "_parent": {
  722. "__id__": 18
  723. },
  724. "_children": [],
  725. "_active": true,
  726. "_components": [
  727. {
  728. "__id__": 20
  729. }
  730. ],
  731. "_prefab": {
  732. "__id__": 21
  733. },
  734. "_opacity": 255,
  735. "_color": {
  736. "__type__": "cc.Color",
  737. "r": 255,
  738. "g": 255,
  739. "b": 255,
  740. "a": 255
  741. },
  742. "_contentSize": {
  743. "__type__": "cc.Size",
  744. "width": 20,
  745. "height": 10
  746. },
  747. "_anchorPoint": {
  748. "__type__": "cc.Vec2",
  749. "x": 0,
  750. "y": 0.5
  751. },
  752. "_trs": {
  753. "__type__": "TypedArray",
  754. "ctor": "Float64Array",
  755. "array": [
  756. -50,
  757. 0,
  758. 0,
  759. 0,
  760. 0,
  761. 0,
  762. 1,
  763. 1,
  764. 1,
  765. 1
  766. ]
  767. },
  768. "_eulerAngles": {
  769. "__type__": "cc.Vec3",
  770. "x": 0,
  771. "y": 0,
  772. "z": 0
  773. },
  774. "_skewX": 0,
  775. "_skewY": 0,
  776. "_is3DNode": false,
  777. "_groupIndex": 0,
  778. "groupIndex": 0,
  779. "_id": ""
  780. },
  781. {
  782. "__type__": "cc.Sprite",
  783. "_name": "",
  784. "_objFlags": 0,
  785. "node": {
  786. "__id__": 19
  787. },
  788. "_enabled": true,
  789. "_materials": [
  790. {
  791. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  792. }
  793. ],
  794. "_srcBlendFactor": 770,
  795. "_dstBlendFactor": 771,
  796. "_spriteFrame": {
  797. "__uuid__": "71e7d413-f0e5-421a-bf12-a2478164a0e1"
  798. },
  799. "_type": 1,
  800. "_sizeMode": 0,
  801. "_fillType": 0,
  802. "_fillCenter": {
  803. "__type__": "cc.Vec2",
  804. "x": 0,
  805. "y": 0
  806. },
  807. "_fillStart": 0,
  808. "_fillRange": 0,
  809. "_isTrimmedMode": true,
  810. "_atlas": null,
  811. "_id": ""
  812. },
  813. {
  814. "__type__": "cc.PrefabInfo",
  815. "root": {
  816. "__id__": 1
  817. },
  818. "asset": {
  819. "__id__": 0
  820. },
  821. "fileId": "70ecU3iUdIibG6i2mBQrYQ",
  822. "sync": false
  823. },
  824. {
  825. "__type__": "cc.Node",
  826. "_name": "red",
  827. "_objFlags": 0,
  828. "_parent": {
  829. "__id__": 18
  830. },
  831. "_children": [],
  832. "_active": true,
  833. "_components": [
  834. {
  835. "__id__": 23
  836. }
  837. ],
  838. "_prefab": {
  839. "__id__": 24
  840. },
  841. "_opacity": 255,
  842. "_color": {
  843. "__type__": "cc.Color",
  844. "r": 255,
  845. "g": 255,
  846. "b": 255,
  847. "a": 255
  848. },
  849. "_contentSize": {
  850. "__type__": "cc.Size",
  851. "width": 0,
  852. "height": 10
  853. },
  854. "_anchorPoint": {
  855. "__type__": "cc.Vec2",
  856. "x": 0,
  857. "y": 0.5
  858. },
  859. "_trs": {
  860. "__type__": "TypedArray",
  861. "ctor": "Float64Array",
  862. "array": [
  863. -50,
  864. 0,
  865. 0,
  866. 0,
  867. 0,
  868. 0,
  869. 1,
  870. 1,
  871. 1,
  872. 1
  873. ]
  874. },
  875. "_eulerAngles": {
  876. "__type__": "cc.Vec3",
  877. "x": 0,
  878. "y": 0,
  879. "z": 0
  880. },
  881. "_skewX": 0,
  882. "_skewY": 0,
  883. "_is3DNode": false,
  884. "_groupIndex": 0,
  885. "groupIndex": 0,
  886. "_id": ""
  887. },
  888. {
  889. "__type__": "cc.Sprite",
  890. "_name": "",
  891. "_objFlags": 0,
  892. "node": {
  893. "__id__": 22
  894. },
  895. "_enabled": true,
  896. "_materials": [
  897. {
  898. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  899. }
  900. ],
  901. "_srcBlendFactor": 770,
  902. "_dstBlendFactor": 771,
  903. "_spriteFrame": {
  904. "__uuid__": "3c088976-208e-4679-9f4e-2401604a4f16"
  905. },
  906. "_type": 1,
  907. "_sizeMode": 0,
  908. "_fillType": 0,
  909. "_fillCenter": {
  910. "__type__": "cc.Vec2",
  911. "x": 0,
  912. "y": 0
  913. },
  914. "_fillStart": 0,
  915. "_fillRange": 0,
  916. "_isTrimmedMode": true,
  917. "_atlas": null,
  918. "_id": ""
  919. },
  920. {
  921. "__type__": "cc.PrefabInfo",
  922. "root": {
  923. "__id__": 1
  924. },
  925. "asset": {
  926. "__id__": 0
  927. },
  928. "fileId": "25AtdCWQhPTIswR+nSdvrv",
  929. "sync": false
  930. },
  931. {
  932. "__type__": "cc.ProgressBar",
  933. "_name": "",
  934. "_objFlags": 0,
  935. "node": {
  936. "__id__": 18
  937. },
  938. "_enabled": true,
  939. "_N$totalLength": 100,
  940. "_N$barSprite": {
  941. "__id__": 20
  942. },
  943. "_N$mode": 0,
  944. "_N$progress": 0.2,
  945. "_N$reverse": false,
  946. "_id": ""
  947. },
  948. {
  949. "__type__": "cc.PrefabInfo",
  950. "root": {
  951. "__id__": 1
  952. },
  953. "asset": {
  954. "__id__": 0
  955. },
  956. "fileId": "58IDgVU7dL+5zJqHxTUdm4",
  957. "sync": false
  958. },
  959. {
  960. "__type__": "cc.Node",
  961. "_name": "HPS",
  962. "_objFlags": 0,
  963. "_parent": {
  964. "__id__": 7
  965. },
  966. "_children": [
  967. {
  968. "__id__": 28
  969. },
  970. {
  971. "__id__": 31
  972. },
  973. {
  974. "__id__": 34
  975. },
  976. {
  977. "__id__": 37
  978. },
  979. {
  980. "__id__": 40
  981. }
  982. ],
  983. "_active": true,
  984. "_components": [
  985. {
  986. "__id__": 43
  987. }
  988. ],
  989. "_prefab": {
  990. "__id__": 44
  991. },
  992. "_opacity": 255,
  993. "_color": {
  994. "__type__": "cc.Color",
  995. "r": 255,
  996. "g": 255,
  997. "b": 255,
  998. "a": 255
  999. },
  1000. "_contentSize": {
  1001. "__type__": "cc.Size",
  1002. "width": 100,
  1003. "height": 10
  1004. },
  1005. "_anchorPoint": {
  1006. "__type__": "cc.Vec2",
  1007. "x": 0,
  1008. "y": 0.5
  1009. },
  1010. "_trs": {
  1011. "__type__": "TypedArray",
  1012. "ctor": "Float64Array",
  1013. "array": [
  1014. -50,
  1015. 0,
  1016. 0,
  1017. 0,
  1018. 0,
  1019. 0,
  1020. 1,
  1021. 1,
  1022. 1,
  1023. 1
  1024. ]
  1025. },
  1026. "_eulerAngles": {
  1027. "__type__": "cc.Vec3",
  1028. "x": 0,
  1029. "y": 0,
  1030. "z": 0
  1031. },
  1032. "_skewX": 0,
  1033. "_skewY": 0,
  1034. "_is3DNode": false,
  1035. "_groupIndex": 0,
  1036. "groupIndex": 0,
  1037. "_id": ""
  1038. },
  1039. {
  1040. "__type__": "cc.Node",
  1041. "_name": "hp",
  1042. "_objFlags": 0,
  1043. "_parent": {
  1044. "__id__": 27
  1045. },
  1046. "_children": [],
  1047. "_active": true,
  1048. "_components": [
  1049. {
  1050. "__id__": 29
  1051. }
  1052. ],
  1053. "_prefab": {
  1054. "__id__": 30
  1055. },
  1056. "_opacity": 255,
  1057. "_color": {
  1058. "__type__": "cc.Color",
  1059. "r": 39,
  1060. "g": 24,
  1061. "b": 18,
  1062. "a": 255
  1063. },
  1064. "_contentSize": {
  1065. "__type__": "cc.Size",
  1066. "width": 20,
  1067. "height": 10
  1068. },
  1069. "_anchorPoint": {
  1070. "__type__": "cc.Vec2",
  1071. "x": 0,
  1072. "y": 0.5
  1073. },
  1074. "_trs": {
  1075. "__type__": "TypedArray",
  1076. "ctor": "Float64Array",
  1077. "array": [
  1078. 0,
  1079. 0,
  1080. 0,
  1081. 0,
  1082. 0,
  1083. 0,
  1084. 1,
  1085. 1,
  1086. 1,
  1087. 1
  1088. ]
  1089. },
  1090. "_eulerAngles": {
  1091. "__type__": "cc.Vec3",
  1092. "x": 0,
  1093. "y": 0,
  1094. "z": 0
  1095. },
  1096. "_skewX": 0,
  1097. "_skewY": 0,
  1098. "_is3DNode": false,
  1099. "_groupIndex": 0,
  1100. "groupIndex": 0,
  1101. "_id": ""
  1102. },
  1103. {
  1104. "__type__": "cc.Sprite",
  1105. "_name": "",
  1106. "_objFlags": 0,
  1107. "node": {
  1108. "__id__": 28
  1109. },
  1110. "_enabled": true,
  1111. "_materials": [
  1112. {
  1113. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  1114. }
  1115. ],
  1116. "_srcBlendFactor": 770,
  1117. "_dstBlendFactor": 771,
  1118. "_spriteFrame": {
  1119. "__uuid__": "41ad4c7e-9639-4961-9fa2-49edd46c17eb"
  1120. },
  1121. "_type": 1,
  1122. "_sizeMode": 0,
  1123. "_fillType": 0,
  1124. "_fillCenter": {
  1125. "__type__": "cc.Vec2",
  1126. "x": 0,
  1127. "y": 0
  1128. },
  1129. "_fillStart": 0,
  1130. "_fillRange": 0,
  1131. "_isTrimmedMode": true,
  1132. "_atlas": null,
  1133. "_id": ""
  1134. },
  1135. {
  1136. "__type__": "cc.PrefabInfo",
  1137. "root": {
  1138. "__id__": 1
  1139. },
  1140. "asset": {
  1141. "__id__": 0
  1142. },
  1143. "fileId": "8828J/qRdB2b7NoHtj84iT",
  1144. "sync": false
  1145. },
  1146. {
  1147. "__type__": "cc.Node",
  1148. "_name": "hp",
  1149. "_objFlags": 0,
  1150. "_parent": {
  1151. "__id__": 27
  1152. },
  1153. "_children": [],
  1154. "_active": true,
  1155. "_components": [
  1156. {
  1157. "__id__": 32
  1158. }
  1159. ],
  1160. "_prefab": {
  1161. "__id__": 33
  1162. },
  1163. "_opacity": 255,
  1164. "_color": {
  1165. "__type__": "cc.Color",
  1166. "r": 39,
  1167. "g": 24,
  1168. "b": 18,
  1169. "a": 255
  1170. },
  1171. "_contentSize": {
  1172. "__type__": "cc.Size",
  1173. "width": 20,
  1174. "height": 10
  1175. },
  1176. "_anchorPoint": {
  1177. "__type__": "cc.Vec2",
  1178. "x": 0,
  1179. "y": 0.5
  1180. },
  1181. "_trs": {
  1182. "__type__": "TypedArray",
  1183. "ctor": "Float64Array",
  1184. "array": [
  1185. 20,
  1186. 0,
  1187. 0,
  1188. 0,
  1189. 0,
  1190. 0,
  1191. 1,
  1192. 1,
  1193. 1,
  1194. 1
  1195. ]
  1196. },
  1197. "_eulerAngles": {
  1198. "__type__": "cc.Vec3",
  1199. "x": 0,
  1200. "y": 0,
  1201. "z": 0
  1202. },
  1203. "_skewX": 0,
  1204. "_skewY": 0,
  1205. "_is3DNode": false,
  1206. "_groupIndex": 0,
  1207. "groupIndex": 0,
  1208. "_id": ""
  1209. },
  1210. {
  1211. "__type__": "cc.Sprite",
  1212. "_name": "",
  1213. "_objFlags": 0,
  1214. "node": {
  1215. "__id__": 31
  1216. },
  1217. "_enabled": true,
  1218. "_materials": [
  1219. {
  1220. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  1221. }
  1222. ],
  1223. "_srcBlendFactor": 770,
  1224. "_dstBlendFactor": 771,
  1225. "_spriteFrame": {
  1226. "__uuid__": "41ad4c7e-9639-4961-9fa2-49edd46c17eb"
  1227. },
  1228. "_type": 1,
  1229. "_sizeMode": 0,
  1230. "_fillType": 0,
  1231. "_fillCenter": {
  1232. "__type__": "cc.Vec2",
  1233. "x": 0,
  1234. "y": 0
  1235. },
  1236. "_fillStart": 0,
  1237. "_fillRange": 0,
  1238. "_isTrimmedMode": true,
  1239. "_atlas": null,
  1240. "_id": ""
  1241. },
  1242. {
  1243. "__type__": "cc.PrefabInfo",
  1244. "root": {
  1245. "__id__": 1
  1246. },
  1247. "asset": {
  1248. "__id__": 0
  1249. },
  1250. "fileId": "2dv1zK2OpNKa4dbsLIcb9/",
  1251. "sync": false
  1252. },
  1253. {
  1254. "__type__": "cc.Node",
  1255. "_name": "hp",
  1256. "_objFlags": 0,
  1257. "_parent": {
  1258. "__id__": 27
  1259. },
  1260. "_children": [],
  1261. "_active": true,
  1262. "_components": [
  1263. {
  1264. "__id__": 35
  1265. }
  1266. ],
  1267. "_prefab": {
  1268. "__id__": 36
  1269. },
  1270. "_opacity": 255,
  1271. "_color": {
  1272. "__type__": "cc.Color",
  1273. "r": 39,
  1274. "g": 24,
  1275. "b": 18,
  1276. "a": 255
  1277. },
  1278. "_contentSize": {
  1279. "__type__": "cc.Size",
  1280. "width": 20,
  1281. "height": 10
  1282. },
  1283. "_anchorPoint": {
  1284. "__type__": "cc.Vec2",
  1285. "x": 0,
  1286. "y": 0.5
  1287. },
  1288. "_trs": {
  1289. "__type__": "TypedArray",
  1290. "ctor": "Float64Array",
  1291. "array": [
  1292. 40,
  1293. 0,
  1294. 0,
  1295. 0,
  1296. 0,
  1297. 0,
  1298. 1,
  1299. 1,
  1300. 1,
  1301. 1
  1302. ]
  1303. },
  1304. "_eulerAngles": {
  1305. "__type__": "cc.Vec3",
  1306. "x": 0,
  1307. "y": 0,
  1308. "z": 0
  1309. },
  1310. "_skewX": 0,
  1311. "_skewY": 0,
  1312. "_is3DNode": false,
  1313. "_groupIndex": 0,
  1314. "groupIndex": 0,
  1315. "_id": ""
  1316. },
  1317. {
  1318. "__type__": "cc.Sprite",
  1319. "_name": "",
  1320. "_objFlags": 0,
  1321. "node": {
  1322. "__id__": 34
  1323. },
  1324. "_enabled": true,
  1325. "_materials": [
  1326. {
  1327. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  1328. }
  1329. ],
  1330. "_srcBlendFactor": 770,
  1331. "_dstBlendFactor": 771,
  1332. "_spriteFrame": {
  1333. "__uuid__": "41ad4c7e-9639-4961-9fa2-49edd46c17eb"
  1334. },
  1335. "_type": 1,
  1336. "_sizeMode": 0,
  1337. "_fillType": 0,
  1338. "_fillCenter": {
  1339. "__type__": "cc.Vec2",
  1340. "x": 0,
  1341. "y": 0
  1342. },
  1343. "_fillStart": 0,
  1344. "_fillRange": 0,
  1345. "_isTrimmedMode": true,
  1346. "_atlas": null,
  1347. "_id": ""
  1348. },
  1349. {
  1350. "__type__": "cc.PrefabInfo",
  1351. "root": {
  1352. "__id__": 1
  1353. },
  1354. "asset": {
  1355. "__id__": 0
  1356. },
  1357. "fileId": "a31Imqoi5I67L/qObyrL7+",
  1358. "sync": false
  1359. },
  1360. {
  1361. "__type__": "cc.Node",
  1362. "_name": "hp",
  1363. "_objFlags": 0,
  1364. "_parent": {
  1365. "__id__": 27
  1366. },
  1367. "_children": [],
  1368. "_active": true,
  1369. "_components": [
  1370. {
  1371. "__id__": 38
  1372. }
  1373. ],
  1374. "_prefab": {
  1375. "__id__": 39
  1376. },
  1377. "_opacity": 255,
  1378. "_color": {
  1379. "__type__": "cc.Color",
  1380. "r": 39,
  1381. "g": 24,
  1382. "b": 18,
  1383. "a": 255
  1384. },
  1385. "_contentSize": {
  1386. "__type__": "cc.Size",
  1387. "width": 20,
  1388. "height": 10
  1389. },
  1390. "_anchorPoint": {
  1391. "__type__": "cc.Vec2",
  1392. "x": 0,
  1393. "y": 0.5
  1394. },
  1395. "_trs": {
  1396. "__type__": "TypedArray",
  1397. "ctor": "Float64Array",
  1398. "array": [
  1399. 60,
  1400. 0,
  1401. 0,
  1402. 0,
  1403. 0,
  1404. 0,
  1405. 1,
  1406. 1,
  1407. 1,
  1408. 1
  1409. ]
  1410. },
  1411. "_eulerAngles": {
  1412. "__type__": "cc.Vec3",
  1413. "x": 0,
  1414. "y": 0,
  1415. "z": 0
  1416. },
  1417. "_skewX": 0,
  1418. "_skewY": 0,
  1419. "_is3DNode": false,
  1420. "_groupIndex": 0,
  1421. "groupIndex": 0,
  1422. "_id": ""
  1423. },
  1424. {
  1425. "__type__": "cc.Sprite",
  1426. "_name": "",
  1427. "_objFlags": 0,
  1428. "node": {
  1429. "__id__": 37
  1430. },
  1431. "_enabled": true,
  1432. "_materials": [
  1433. {
  1434. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  1435. }
  1436. ],
  1437. "_srcBlendFactor": 770,
  1438. "_dstBlendFactor": 771,
  1439. "_spriteFrame": {
  1440. "__uuid__": "41ad4c7e-9639-4961-9fa2-49edd46c17eb"
  1441. },
  1442. "_type": 1,
  1443. "_sizeMode": 0,
  1444. "_fillType": 0,
  1445. "_fillCenter": {
  1446. "__type__": "cc.Vec2",
  1447. "x": 0,
  1448. "y": 0
  1449. },
  1450. "_fillStart": 0,
  1451. "_fillRange": 0,
  1452. "_isTrimmedMode": true,
  1453. "_atlas": null,
  1454. "_id": ""
  1455. },
  1456. {
  1457. "__type__": "cc.PrefabInfo",
  1458. "root": {
  1459. "__id__": 1
  1460. },
  1461. "asset": {
  1462. "__id__": 0
  1463. },
  1464. "fileId": "4a7L8oDhpELY0+QG5KKxQ+",
  1465. "sync": false
  1466. },
  1467. {
  1468. "__type__": "cc.Node",
  1469. "_name": "hp",
  1470. "_objFlags": 0,
  1471. "_parent": {
  1472. "__id__": 27
  1473. },
  1474. "_children": [],
  1475. "_active": true,
  1476. "_components": [
  1477. {
  1478. "__id__": 41
  1479. }
  1480. ],
  1481. "_prefab": {
  1482. "__id__": 42
  1483. },
  1484. "_opacity": 255,
  1485. "_color": {
  1486. "__type__": "cc.Color",
  1487. "r": 39,
  1488. "g": 24,
  1489. "b": 18,
  1490. "a": 255
  1491. },
  1492. "_contentSize": {
  1493. "__type__": "cc.Size",
  1494. "width": 20,
  1495. "height": 10
  1496. },
  1497. "_anchorPoint": {
  1498. "__type__": "cc.Vec2",
  1499. "x": 0,
  1500. "y": 0.5
  1501. },
  1502. "_trs": {
  1503. "__type__": "TypedArray",
  1504. "ctor": "Float64Array",
  1505. "array": [
  1506. 80,
  1507. 0,
  1508. 0,
  1509. 0,
  1510. 0,
  1511. 0,
  1512. 1,
  1513. 1,
  1514. 1,
  1515. 1
  1516. ]
  1517. },
  1518. "_eulerAngles": {
  1519. "__type__": "cc.Vec3",
  1520. "x": 0,
  1521. "y": 0,
  1522. "z": 0
  1523. },
  1524. "_skewX": 0,
  1525. "_skewY": 0,
  1526. "_is3DNode": false,
  1527. "_groupIndex": 0,
  1528. "groupIndex": 0,
  1529. "_id": ""
  1530. },
  1531. {
  1532. "__type__": "cc.Sprite",
  1533. "_name": "",
  1534. "_objFlags": 0,
  1535. "node": {
  1536. "__id__": 40
  1537. },
  1538. "_enabled": true,
  1539. "_materials": [
  1540. {
  1541. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  1542. }
  1543. ],
  1544. "_srcBlendFactor": 770,
  1545. "_dstBlendFactor": 771,
  1546. "_spriteFrame": {
  1547. "__uuid__": "41ad4c7e-9639-4961-9fa2-49edd46c17eb"
  1548. },
  1549. "_type": 1,
  1550. "_sizeMode": 0,
  1551. "_fillType": 0,
  1552. "_fillCenter": {
  1553. "__type__": "cc.Vec2",
  1554. "x": 0,
  1555. "y": 0
  1556. },
  1557. "_fillStart": 0,
  1558. "_fillRange": 0,
  1559. "_isTrimmedMode": true,
  1560. "_atlas": null,
  1561. "_id": ""
  1562. },
  1563. {
  1564. "__type__": "cc.PrefabInfo",
  1565. "root": {
  1566. "__id__": 1
  1567. },
  1568. "asset": {
  1569. "__id__": 0
  1570. },
  1571. "fileId": "5fnF6H0DBElZNCk3Iv1vjo",
  1572. "sync": false
  1573. },
  1574. {
  1575. "__type__": "cc.Layout",
  1576. "_name": "",
  1577. "_objFlags": 0,
  1578. "node": {
  1579. "__id__": 27
  1580. },
  1581. "_enabled": true,
  1582. "_layoutSize": {
  1583. "__type__": "cc.Size",
  1584. "width": 100,
  1585. "height": 10
  1586. },
  1587. "_resize": 2,
  1588. "_N$layoutType": 1,
  1589. "_N$cellSize": {
  1590. "__type__": "cc.Size",
  1591. "width": 40,
  1592. "height": 40
  1593. },
  1594. "_N$startAxis": 0,
  1595. "_N$paddingLeft": 0,
  1596. "_N$paddingRight": 0,
  1597. "_N$paddingTop": 0,
  1598. "_N$paddingBottom": 0,
  1599. "_N$spacingX": 0,
  1600. "_N$spacingY": 0,
  1601. "_N$verticalDirection": 1,
  1602. "_N$horizontalDirection": 0,
  1603. "_N$affectedByScale": false,
  1604. "_id": ""
  1605. },
  1606. {
  1607. "__type__": "cc.PrefabInfo",
  1608. "root": {
  1609. "__id__": 1
  1610. },
  1611. "asset": {
  1612. "__id__": 0
  1613. },
  1614. "fileId": "6ayDqKpZFEcIJX/QiDA0Bu",
  1615. "sync": false
  1616. },
  1617. {
  1618. "__type__": "cc.PrefabInfo",
  1619. "root": {
  1620. "__id__": 1
  1621. },
  1622. "asset": {
  1623. "__id__": 0
  1624. },
  1625. "fileId": "e48E5CVh5EfoYT1RWe+hcZ",
  1626. "sync": false
  1627. },
  1628. {
  1629. "__type__": "cc.Node",
  1630. "_name": "entity",
  1631. "_objFlags": 0,
  1632. "_parent": {
  1633. "__id__": 1
  1634. },
  1635. "_children": [],
  1636. "_active": true,
  1637. "_components": [
  1638. {
  1639. "__id__": 47
  1640. }
  1641. ],
  1642. "_prefab": {
  1643. "__id__": 48
  1644. },
  1645. "_opacity": 255,
  1646. "_color": {
  1647. "__type__": "cc.Color",
  1648. "r": 255,
  1649. "g": 255,
  1650. "b": 255,
  1651. "a": 255
  1652. },
  1653. "_contentSize": {
  1654. "__type__": "cc.Size",
  1655. "width": 100,
  1656. "height": 36.16
  1657. },
  1658. "_anchorPoint": {
  1659. "__type__": "cc.Vec2",
  1660. "x": 0.5,
  1661. "y": 0.5
  1662. },
  1663. "_trs": {
  1664. "__type__": "TypedArray",
  1665. "ctor": "Float64Array",
  1666. "array": [
  1667. 0,
  1668. 122.975,
  1669. 0,
  1670. 0,
  1671. 0,
  1672. 0,
  1673. 1,
  1674. 1,
  1675. 1,
  1676. 1
  1677. ]
  1678. },
  1679. "_eulerAngles": {
  1680. "__type__": "cc.Vec3",
  1681. "x": 0,
  1682. "y": 0,
  1683. "z": 0
  1684. },
  1685. "_skewX": 0,
  1686. "_skewY": 0,
  1687. "_is3DNode": false,
  1688. "_groupIndex": 0,
  1689. "groupIndex": 0,
  1690. "_id": ""
  1691. },
  1692. {
  1693. "__type__": "cc.Label",
  1694. "_name": "",
  1695. "_objFlags": 0,
  1696. "node": {
  1697. "__id__": 46
  1698. },
  1699. "_enabled": true,
  1700. "_materials": [
  1701. {
  1702. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  1703. }
  1704. ],
  1705. "_srcBlendFactor": 770,
  1706. "_dstBlendFactor": 771,
  1707. "_string": "",
  1708. "_N$string": "",
  1709. "_fontSize": 18,
  1710. "_lineHeight": 16,
  1711. "_enableWrapText": true,
  1712. "_N$file": null,
  1713. "_isSystemFontUsed": true,
  1714. "_spacingX": 0,
  1715. "_batchAsBitmap": false,
  1716. "_styleFlags": 0,
  1717. "_underlineHeight": 0,
  1718. "_N$horizontalAlign": 1,
  1719. "_N$verticalAlign": 1,
  1720. "_N$fontFamily": "Arial",
  1721. "_N$overflow": 2,
  1722. "_N$cacheMode": 0,
  1723. "_id": ""
  1724. },
  1725. {
  1726. "__type__": "cc.PrefabInfo",
  1727. "root": {
  1728. "__id__": 1
  1729. },
  1730. "asset": {
  1731. "__id__": 0
  1732. },
  1733. "fileId": "eaWVkMyiFNzq/t7LNlsssE",
  1734. "sync": false
  1735. },
  1736. {
  1737. "__type__": "cc.Node",
  1738. "_name": "skill",
  1739. "_objFlags": 0,
  1740. "_parent": {
  1741. "__id__": 1
  1742. },
  1743. "_children": [],
  1744. "_active": true,
  1745. "_components": [
  1746. {
  1747. "__id__": 50
  1748. }
  1749. ],
  1750. "_prefab": {
  1751. "__id__": 51
  1752. },
  1753. "_opacity": 255,
  1754. "_color": {
  1755. "__type__": "cc.Color",
  1756. "r": 255,
  1757. "g": 0,
  1758. "b": 0,
  1759. "a": 255
  1760. },
  1761. "_contentSize": {
  1762. "__type__": "cc.Size",
  1763. "width": 0,
  1764. "height": 20.16
  1765. },
  1766. "_anchorPoint": {
  1767. "__type__": "cc.Vec2",
  1768. "x": 0,
  1769. "y": 0.5
  1770. },
  1771. "_trs": {
  1772. "__type__": "TypedArray",
  1773. "ctor": "Float64Array",
  1774. "array": [
  1775. 53.733,
  1776. 100.342,
  1777. 0,
  1778. 0,
  1779. 0,
  1780. 0,
  1781. 1,
  1782. 1,
  1783. 1,
  1784. 1
  1785. ]
  1786. },
  1787. "_eulerAngles": {
  1788. "__type__": "cc.Vec3",
  1789. "x": 0,
  1790. "y": 0,
  1791. "z": 0
  1792. },
  1793. "_skewX": 0,
  1794. "_skewY": 0,
  1795. "_is3DNode": false,
  1796. "_groupIndex": 0,
  1797. "groupIndex": 0,
  1798. "_id": ""
  1799. },
  1800. {
  1801. "__type__": "cc.Label",
  1802. "_name": "",
  1803. "_objFlags": 0,
  1804. "node": {
  1805. "__id__": 49
  1806. },
  1807. "_enabled": true,
  1808. "_materials": [
  1809. {
  1810. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  1811. }
  1812. ],
  1813. "_srcBlendFactor": 770,
  1814. "_dstBlendFactor": 771,
  1815. "_string": "",
  1816. "_N$string": "",
  1817. "_fontSize": 16,
  1818. "_lineHeight": 16,
  1819. "_enableWrapText": true,
  1820. "_N$file": null,
  1821. "_isSystemFontUsed": true,
  1822. "_spacingX": 0,
  1823. "_batchAsBitmap": false,
  1824. "_styleFlags": 0,
  1825. "_underlineHeight": 0,
  1826. "_N$horizontalAlign": 1,
  1827. "_N$verticalAlign": 1,
  1828. "_N$fontFamily": "Arial",
  1829. "_N$overflow": 0,
  1830. "_N$cacheMode": 0,
  1831. "_id": ""
  1832. },
  1833. {
  1834. "__type__": "cc.PrefabInfo",
  1835. "root": {
  1836. "__id__": 1
  1837. },
  1838. "asset": {
  1839. "__id__": 0
  1840. },
  1841. "fileId": "3b8VU3M6JKKoED/R17YpdG",
  1842. "sync": false
  1843. },
  1844. {
  1845. "__type__": "cc.Node",
  1846. "_name": "tips",
  1847. "_objFlags": 0,
  1848. "_parent": {
  1849. "__id__": 1
  1850. },
  1851. "_children": [
  1852. {
  1853. "__id__": 53
  1854. },
  1855. {
  1856. "__id__": 55
  1857. },
  1858. {
  1859. "__id__": 57
  1860. },
  1861. {
  1862. "__id__": 59
  1863. },
  1864. {
  1865. "__id__": 61
  1866. }
  1867. ],
  1868. "_active": true,
  1869. "_components": [],
  1870. "_prefab": {
  1871. "__id__": 63
  1872. },
  1873. "_opacity": 255,
  1874. "_color": {
  1875. "__type__": "cc.Color",
  1876. "r": 255,
  1877. "g": 255,
  1878. "b": 255,
  1879. "a": 255
  1880. },
  1881. "_contentSize": {
  1882. "__type__": "cc.Size",
  1883. "width": 0,
  1884. "height": 0
  1885. },
  1886. "_anchorPoint": {
  1887. "__type__": "cc.Vec2",
  1888. "x": 0.5,
  1889. "y": 0.5
  1890. },
  1891. "_trs": {
  1892. "__type__": "TypedArray",
  1893. "ctor": "Float64Array",
  1894. "array": [
  1895. 0,
  1896. 0,
  1897. 0,
  1898. 0,
  1899. 0,
  1900. 0,
  1901. 1,
  1902. 1,
  1903. 1,
  1904. 1
  1905. ]
  1906. },
  1907. "_eulerAngles": {
  1908. "__type__": "cc.Vec3",
  1909. "x": 0,
  1910. "y": 0,
  1911. "z": 0
  1912. },
  1913. "_skewX": 0,
  1914. "_skewY": 0,
  1915. "_is3DNode": false,
  1916. "_groupIndex": 0,
  1917. "groupIndex": 0,
  1918. "_id": ""
  1919. },
  1920. {
  1921. "__type__": "cc.Node",
  1922. "_name": "buffTipParent",
  1923. "_objFlags": 0,
  1924. "_parent": {
  1925. "__id__": 52
  1926. },
  1927. "_children": [],
  1928. "_active": true,
  1929. "_components": [],
  1930. "_prefab": {
  1931. "__id__": 54
  1932. },
  1933. "_opacity": 255,
  1934. "_color": {
  1935. "__type__": "cc.Color",
  1936. "r": 255,
  1937. "g": 255,
  1938. "b": 255,
  1939. "a": 255
  1940. },
  1941. "_contentSize": {
  1942. "__type__": "cc.Size",
  1943. "width": 0,
  1944. "height": 0
  1945. },
  1946. "_anchorPoint": {
  1947. "__type__": "cc.Vec2",
  1948. "x": 0.5,
  1949. "y": 0.5
  1950. },
  1951. "_trs": {
  1952. "__type__": "TypedArray",
  1953. "ctor": "Float64Array",
  1954. "array": [
  1955. 0,
  1956. 0,
  1957. 0,
  1958. 0,
  1959. 0,
  1960. 0,
  1961. 1,
  1962. 1,
  1963. 1,
  1964. 1
  1965. ]
  1966. },
  1967. "_eulerAngles": {
  1968. "__type__": "cc.Vec3",
  1969. "x": 0,
  1970. "y": 0,
  1971. "z": 0
  1972. },
  1973. "_skewX": 0,
  1974. "_skewY": 0,
  1975. "_is3DNode": false,
  1976. "_groupIndex": 0,
  1977. "groupIndex": 0,
  1978. "_id": ""
  1979. },
  1980. {
  1981. "__type__": "cc.PrefabInfo",
  1982. "root": {
  1983. "__id__": 1
  1984. },
  1985. "asset": {
  1986. "__id__": 0
  1987. },
  1988. "fileId": "97bUNGCFtL25kDuGuOkEXU",
  1989. "sync": false
  1990. },
  1991. {
  1992. "__type__": "cc.Node",
  1993. "_name": "damageTipParent",
  1994. "_objFlags": 0,
  1995. "_parent": {
  1996. "__id__": 52
  1997. },
  1998. "_children": [],
  1999. "_active": true,
  2000. "_components": [],
  2001. "_prefab": {
  2002. "__id__": 56
  2003. },
  2004. "_opacity": 255,
  2005. "_color": {
  2006. "__type__": "cc.Color",
  2007. "r": 255,
  2008. "g": 255,
  2009. "b": 255,
  2010. "a": 255
  2011. },
  2012. "_contentSize": {
  2013. "__type__": "cc.Size",
  2014. "width": 0,
  2015. "height": 0
  2016. },
  2017. "_anchorPoint": {
  2018. "__type__": "cc.Vec2",
  2019. "x": 0.5,
  2020. "y": 0.5
  2021. },
  2022. "_trs": {
  2023. "__type__": "TypedArray",
  2024. "ctor": "Float64Array",
  2025. "array": [
  2026. 0,
  2027. 0,
  2028. 0,
  2029. 0,
  2030. 0,
  2031. 0,
  2032. 1,
  2033. 1,
  2034. 1,
  2035. 1
  2036. ]
  2037. },
  2038. "_eulerAngles": {
  2039. "__type__": "cc.Vec3",
  2040. "x": 0,
  2041. "y": 0,
  2042. "z": 0
  2043. },
  2044. "_skewX": 0,
  2045. "_skewY": 0,
  2046. "_is3DNode": false,
  2047. "_groupIndex": 0,
  2048. "groupIndex": 0,
  2049. "_id": ""
  2050. },
  2051. {
  2052. "__type__": "cc.PrefabInfo",
  2053. "root": {
  2054. "__id__": 1
  2055. },
  2056. "asset": {
  2057. "__id__": 0
  2058. },
  2059. "fileId": "52Sw7DMANFrKB+mCHBAfVM",
  2060. "sync": false
  2061. },
  2062. {
  2063. "__type__": "cc.Node",
  2064. "_name": "missTipParent",
  2065. "_objFlags": 0,
  2066. "_parent": {
  2067. "__id__": 52
  2068. },
  2069. "_children": [],
  2070. "_active": true,
  2071. "_components": [],
  2072. "_prefab": {
  2073. "__id__": 58
  2074. },
  2075. "_opacity": 255,
  2076. "_color": {
  2077. "__type__": "cc.Color",
  2078. "r": 255,
  2079. "g": 255,
  2080. "b": 255,
  2081. "a": 255
  2082. },
  2083. "_contentSize": {
  2084. "__type__": "cc.Size",
  2085. "width": 0,
  2086. "height": 0
  2087. },
  2088. "_anchorPoint": {
  2089. "__type__": "cc.Vec2",
  2090. "x": 0.5,
  2091. "y": 0.5
  2092. },
  2093. "_trs": {
  2094. "__type__": "TypedArray",
  2095. "ctor": "Float64Array",
  2096. "array": [
  2097. 0,
  2098. 0,
  2099. 0,
  2100. 0,
  2101. 0,
  2102. 0,
  2103. 1,
  2104. 1,
  2105. 1,
  2106. 1
  2107. ]
  2108. },
  2109. "_eulerAngles": {
  2110. "__type__": "cc.Vec3",
  2111. "x": 0,
  2112. "y": 0,
  2113. "z": 0
  2114. },
  2115. "_skewX": 0,
  2116. "_skewY": 0,
  2117. "_is3DNode": false,
  2118. "_groupIndex": 0,
  2119. "groupIndex": 0,
  2120. "_id": ""
  2121. },
  2122. {
  2123. "__type__": "cc.PrefabInfo",
  2124. "root": {
  2125. "__id__": 1
  2126. },
  2127. "asset": {
  2128. "__id__": 0
  2129. },
  2130. "fileId": "08UvDHKmpOibyVgTOgDhH7",
  2131. "sync": false
  2132. },
  2133. {
  2134. "__type__": "cc.Node",
  2135. "_name": "critTipParent",
  2136. "_objFlags": 0,
  2137. "_parent": {
  2138. "__id__": 52
  2139. },
  2140. "_children": [],
  2141. "_active": true,
  2142. "_components": [],
  2143. "_prefab": {
  2144. "__id__": 60
  2145. },
  2146. "_opacity": 255,
  2147. "_color": {
  2148. "__type__": "cc.Color",
  2149. "r": 255,
  2150. "g": 255,
  2151. "b": 255,
  2152. "a": 255
  2153. },
  2154. "_contentSize": {
  2155. "__type__": "cc.Size",
  2156. "width": 0,
  2157. "height": 0
  2158. },
  2159. "_anchorPoint": {
  2160. "__type__": "cc.Vec2",
  2161. "x": 0.5,
  2162. "y": 0.5
  2163. },
  2164. "_trs": {
  2165. "__type__": "TypedArray",
  2166. "ctor": "Float64Array",
  2167. "array": [
  2168. 0,
  2169. 0,
  2170. 0,
  2171. 0,
  2172. 0,
  2173. 0,
  2174. 1,
  2175. 1,
  2176. 1,
  2177. 1
  2178. ]
  2179. },
  2180. "_eulerAngles": {
  2181. "__type__": "cc.Vec3",
  2182. "x": 0,
  2183. "y": 0,
  2184. "z": 0
  2185. },
  2186. "_skewX": 0,
  2187. "_skewY": 0,
  2188. "_is3DNode": false,
  2189. "_groupIndex": 0,
  2190. "groupIndex": 0,
  2191. "_id": ""
  2192. },
  2193. {
  2194. "__type__": "cc.PrefabInfo",
  2195. "root": {
  2196. "__id__": 1
  2197. },
  2198. "asset": {
  2199. "__id__": 0
  2200. },
  2201. "fileId": "47CoA06kxBL7ezdvZ1WqcS",
  2202. "sync": false
  2203. },
  2204. {
  2205. "__type__": "cc.Node",
  2206. "_name": "hpTipParent",
  2207. "_objFlags": 0,
  2208. "_parent": {
  2209. "__id__": 52
  2210. },
  2211. "_children": [],
  2212. "_active": true,
  2213. "_components": [],
  2214. "_prefab": {
  2215. "__id__": 62
  2216. },
  2217. "_opacity": 255,
  2218. "_color": {
  2219. "__type__": "cc.Color",
  2220. "r": 255,
  2221. "g": 255,
  2222. "b": 255,
  2223. "a": 255
  2224. },
  2225. "_contentSize": {
  2226. "__type__": "cc.Size",
  2227. "width": 0,
  2228. "height": 0
  2229. },
  2230. "_anchorPoint": {
  2231. "__type__": "cc.Vec2",
  2232. "x": 0.5,
  2233. "y": 0.5
  2234. },
  2235. "_trs": {
  2236. "__type__": "TypedArray",
  2237. "ctor": "Float64Array",
  2238. "array": [
  2239. 0,
  2240. 0,
  2241. 0,
  2242. 0,
  2243. 0,
  2244. 0,
  2245. 1,
  2246. 1,
  2247. 1,
  2248. 1
  2249. ]
  2250. },
  2251. "_eulerAngles": {
  2252. "__type__": "cc.Vec3",
  2253. "x": 0,
  2254. "y": 0,
  2255. "z": 0
  2256. },
  2257. "_skewX": 0,
  2258. "_skewY": 0,
  2259. "_is3DNode": false,
  2260. "_groupIndex": 0,
  2261. "groupIndex": 0,
  2262. "_id": ""
  2263. },
  2264. {
  2265. "__type__": "cc.PrefabInfo",
  2266. "root": {
  2267. "__id__": 1
  2268. },
  2269. "asset": {
  2270. "__id__": 0
  2271. },
  2272. "fileId": "f91ef2SFNDiIwYOMmFh8+L",
  2273. "sync": false
  2274. },
  2275. {
  2276. "__type__": "cc.PrefabInfo",
  2277. "root": {
  2278. "__id__": 1
  2279. },
  2280. "asset": {
  2281. "__id__": 0
  2282. },
  2283. "fileId": "480nZdll1JSoJpk0SuWAvz",
  2284. "sync": false
  2285. },
  2286. {
  2287. "__type__": "cc.Node",
  2288. "_name": "graphics",
  2289. "_objFlags": 0,
  2290. "_parent": {
  2291. "__id__": 1
  2292. },
  2293. "_children": [],
  2294. "_active": true,
  2295. "_components": [
  2296. {
  2297. "__id__": 65
  2298. }
  2299. ],
  2300. "_prefab": {
  2301. "__id__": 66
  2302. },
  2303. "_opacity": 255,
  2304. "_color": {
  2305. "__type__": "cc.Color",
  2306. "r": 255,
  2307. "g": 255,
  2308. "b": 255,
  2309. "a": 255
  2310. },
  2311. "_contentSize": {
  2312. "__type__": "cc.Size",
  2313. "width": 0,
  2314. "height": 0
  2315. },
  2316. "_anchorPoint": {
  2317. "__type__": "cc.Vec2",
  2318. "x": 0.5,
  2319. "y": 0.5
  2320. },
  2321. "_trs": {
  2322. "__type__": "TypedArray",
  2323. "ctor": "Float64Array",
  2324. "array": [
  2325. 0,
  2326. 0,
  2327. 0,
  2328. 0,
  2329. 0,
  2330. 0,
  2331. 1,
  2332. 1,
  2333. 1,
  2334. 1
  2335. ]
  2336. },
  2337. "_eulerAngles": {
  2338. "__type__": "cc.Vec3",
  2339. "x": 0,
  2340. "y": 0,
  2341. "z": 0
  2342. },
  2343. "_skewX": 0,
  2344. "_skewY": 0,
  2345. "_is3DNode": false,
  2346. "_groupIndex": 0,
  2347. "groupIndex": 0,
  2348. "_id": ""
  2349. },
  2350. {
  2351. "__type__": "cc.Graphics",
  2352. "_name": "",
  2353. "_objFlags": 0,
  2354. "node": {
  2355. "__id__": 64
  2356. },
  2357. "_enabled": true,
  2358. "_materials": [
  2359. {
  2360. "__uuid__": "a153945d-2511-4c14-be7b-05d242f47d57"
  2361. }
  2362. ],
  2363. "_lineWidth": 2,
  2364. "_strokeColor": {
  2365. "__type__": "cc.Color",
  2366. "r": 255,
  2367. "g": 255,
  2368. "b": 255,
  2369. "a": 255
  2370. },
  2371. "_lineJoin": 2,
  2372. "_lineCap": 0,
  2373. "_fillColor": {
  2374. "__type__": "cc.Color",
  2375. "r": 255,
  2376. "g": 255,
  2377. "b": 255,
  2378. "a": 255
  2379. },
  2380. "_miterLimit": 10,
  2381. "_id": ""
  2382. },
  2383. {
  2384. "__type__": "cc.PrefabInfo",
  2385. "root": {
  2386. "__id__": 1
  2387. },
  2388. "asset": {
  2389. "__id__": 0
  2390. },
  2391. "fileId": "dcGlhAhONLGoD/nQGyJ98s",
  2392. "sync": false
  2393. },
  2394. {
  2395. "__type__": "d38f8EBpNRCKpXOZDdZv+gD",
  2396. "_name": "",
  2397. "_objFlags": 0,
  2398. "node": {
  2399. "__id__": 1
  2400. },
  2401. "_enabled": true,
  2402. "_id": ""
  2403. },
  2404. {
  2405. "__type__": "cc.PrefabInfo",
  2406. "root": {
  2407. "__id__": 1
  2408. },
  2409. "asset": {
  2410. "__id__": 0
  2411. },
  2412. "fileId": "",
  2413. "sync": false
  2414. }
  2415. ]