template.json 3.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576
  1. {
  2. "pool_template":[
  3. {
  4. "name":"随机",
  5. "id":"random"
  6. },
  7. {
  8. "name":"按颜色",
  9. "id":"byColor"
  10. }
  11. ],
  12. "coll_template":[
  13. {
  14. "name":"贝塞尔飞行收集",
  15. "id":"bezier",
  16. "fields":{
  17. "动画":{"id":"efx","type":"list", "src":"animations"},
  18. "延时":{"id":"delay","type":"input","default":"0.1"},
  19. "节点":{"id":"node","type":"input"},
  20. "阴影":{"id":"shadow","type":"input"},
  21. "曲度":{"id":"bezierCur","type":"input","default":"1.2"},
  22. "下探幅度":{"id":"bezierDec","type":"input","default":"1.0"},
  23. "曲线的重合度":{"id":"bezierTrackCoin","type":"input","default":"10"},
  24. "时长倍率":{"id":"durationRatio","type":"input","default":"0.1"}
  25. }
  26. },
  27. {
  28. "name":"直线飞行收集",
  29. "id":"line",
  30. "fields":{
  31. "动画":{"id":"anim","type":"list", "src":"animations"},
  32. "节点":{"id":"node","type":"input"},
  33. "阴影":{"id":"shade","type":"input"}
  34. }
  35. }
  36. ],
  37. "event_template": [
  38. {
  39. "name":"旁消",
  40. "id":"adjBeat"
  41. },
  42. {
  43. "name":"特殊消",
  44. "id":"stampBeat"
  45. },
  46. {
  47. "name":"收集到",
  48. "id":"collect"
  49. }
  50. ],
  51. "action_template":[
  52. {
  53. "name":"目标达成",
  54. "id":"goalFinished",
  55. "fields":{
  56. "状态变化":{"id":"dataDec","type":"input","default":"1"}
  57. }
  58. },
  59. {
  60. "name":"消除后生成其他",
  61. "id":"spawn",
  62. "fields":{
  63. "生成类型":{"id":"type","type":"input"},
  64. "生成数量":{"id":"num","type":"input"}
  65. }
  66. },
  67. {
  68. "name":"收集到特定类型元素",
  69. "id":"collect",
  70. "fields":{
  71. "元素类型":{"id":"target","type":"input"},
  72. "到达之后的特效":{"id":"efx","type":"list", "src":"animations"}
  73. }
  74. }
  75. ]
  76. }