45_dbg Turbos.json 1.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960
  1. {
  2. "lives": 3,
  3. "balls": [
  4. {
  5. "position": [ 220, 200 ]
  6. }
  7. ],
  8. "flippers": [
  9. {
  10. "position": [ 130, 1180 ],
  11. "side": "LEFT",
  12. "size": 120
  13. },
  14. {
  15. "position": [ 490, 1180 ],
  16. "side": "RIGHT",
  17. "size": 120
  18. }
  19. ],
  20. "rails": [
  21. // left wall
  22. {
  23. "start": [ 0, 0 ],
  24. "end": [ 0, 1080 ]
  25. },
  26. // bottom left
  27. {
  28. "start": [ 0, 1080 ],
  29. "end": [ 130, 1160 ]
  30. },
  31. // bottom right
  32. {
  33. "start": [ 490, 1160 ],
  34. "end": [ 630, 1080 ]
  35. },
  36. // right wall
  37. {
  38. "start": [ 630, 1080 ],
  39. "end": [ 630, 0 ]
  40. }
  41. ],
  42. "turbos": [
  43. {
  44. "position": [ 100, 400 ],
  45. "angle": 0
  46. },
  47. {
  48. "position": [ 300, 400 ],
  49. "angle": 270
  50. },
  51. {
  52. "position": [ 300, 600 ],
  53. "angle": 180
  54. },
  55. {
  56. "position": [ 100, 600 ],
  57. "angle": 90
  58. }
  59. ]
  60. }