| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960 |
- {
- "lives": 3,
- "balls": [
- {
- "position": [ 220, 200 ]
- }
- ],
- "flippers": [
- {
- "position": [ 130, 1180 ],
- "side": "LEFT",
- "size": 120
- },
- {
- "position": [ 490, 1180 ],
- "side": "RIGHT",
- "size": 120
- }
- ],
- "rails": [
- // left wall
- {
- "start": [ 0, 0 ],
- "end": [ 0, 1080 ]
- },
- // bottom left
- {
- "start": [ 0, 1080 ],
- "end": [ 130, 1160 ]
- },
- // bottom right
- {
- "start": [ 490, 1160 ],
- "end": [ 630, 1080 ]
- },
- // right wall
- {
- "start": [ 630, 1080 ],
- "end": [ 630, 0 ]
- }
- ],
- "turbos": [
- {
- "position": [ 100, 400 ],
- "angle": 0
- },
- {
- "position": [ 300, 400 ],
- "angle": 270
- },
- {
- "position": [ 300, 600 ],
- "angle": 180
- },
- {
- "position": [ 100, 600 ],
- "angle": 90
- }
- ]
- }
|