role.prefab 39 KB

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