45_dbg Turbos.json 1.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182
  1. {
  2. "lives": 3,
  3. "balls": [
  4. {
  5. "position": [ 110, 200 ]
  6. },
  7. {
  8. "position": [ 610, 900 ]
  9. }
  10. ],
  11. "flippers": [
  12. {
  13. "position": [ 130, 1180 ],
  14. "side": "LEFT",
  15. "size": 120
  16. },
  17. {
  18. "position": [ 490, 1180 ],
  19. "side": "RIGHT",
  20. "size": 120
  21. }
  22. ],
  23. "rails": [
  24. // left wall
  25. {
  26. "start": [ 0, 0 ],
  27. "end": [ 0, 1080 ]
  28. },
  29. // bottom left
  30. {
  31. "start": [ 0, 1080 ],
  32. "end": [ 130, 1160 ]
  33. },
  34. // bottom right
  35. {
  36. "start": [ 490, 1160 ],
  37. "end": [ 630, 1080 ]
  38. },
  39. // right wall
  40. {
  41. "start": [ 630, 1080 ],
  42. "end": [ 630, 0 ]
  43. }
  44. ],
  45. "turbos": [
  46. // rect
  47. {
  48. "position": [ 100, 400 ],
  49. "angle": 0
  50. },
  51. {
  52. "position": [ 300, 400 ],
  53. "angle": 270
  54. },
  55. {
  56. "position": [ 300, 600 ],
  57. "angle": 180
  58. },
  59. {
  60. "position": [ 100, 600 ],
  61. "angle": 90
  62. },
  63. // loop
  64. {
  65. "position": [ 440, 740 ],
  66. "angle": 0
  67. },
  68. {
  69. "position": [ 440, 1050 ],
  70. "angle": 180
  71. }
  72. ],
  73. "arcs": [
  74. {
  75. "position": [ 440, 900 ],
  76. "radius": 180,
  77. "surface": "INSIDE",
  78. "start_angle": 0,
  79. "end_angle": 360
  80. }
  81. ]
  82. }