Create data/alien_patterns.json
Browse files- data/alien_patterns.json +25 -0
data/alien_patterns.json
ADDED
|
@@ -0,0 +1,25 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"scout": [
|
| 3 |
+
{"behavior": "dive", "speed": 5.0, "amplitude": 0, "frequency": 0, "duration": 2.0},
|
| 4 |
+
{"behavior": "straight", "speed": 4.0, "amplitude": 0, "frequency": 0, "duration": 1.5},
|
| 5 |
+
{"behavior": "circle", "speed": 3.0, "amplitude": 50, "frequency": 1, "duration": 3.0},
|
| 6 |
+
{"behavior": "zigzag", "speed": 4.5, "amplitude": 30, "frequency": 2, "duration": 2.5}
|
| 7 |
+
],
|
| 8 |
+
"fighter": [
|
| 9 |
+
{"behavior": "follow", "speed": 3.5, "amplitude": 0, "frequency": 0, "duration": 3.0},
|
| 10 |
+
{"behavior": "dive", "speed": 4.0, "amplitude": 0, "frequency": 0, "duration": 2.5},
|
| 11 |
+
{"behavior": "straight", "speed": 3.0, "amplitude": 0, "frequency": 0, "duration": 2.0},
|
| 12 |
+
{"behavior": "zigzag", "speed": 3.5, "amplitude": 40, "frequency": 1.5, "duration": 3.0}
|
| 13 |
+
],
|
| 14 |
+
"bomber": [
|
| 15 |
+
{"behavior": "straight", "speed": 2.0, "amplitude": 0, "frequency": 0, "duration": 4.0},
|
| 16 |
+
{"behavior": "circle", "speed": 1.8, "amplitude": 80, "frequency": 0.5, "duration": 5.0},
|
| 17 |
+
{"behavior": "follow", "speed": 2.2, "amplitude": 0, "frequency": 0, "duration": 3.5}
|
| 18 |
+
],
|
| 19 |
+
"boss": [
|
| 20 |
+
{"behavior": "circle", "speed": 1.5, "amplitude": 100, "frequency": 0.3, "duration": 8.0},
|
| 21 |
+
{"behavior": "follow", "speed": 2.0, "amplitude": 0, "frequency": 0, "duration": 5.0},
|
| 22 |
+
{"behavior": "dive", "speed": 2.5, "amplitude": 0, "frequency": 0, "duration": 4.0},
|
| 23 |
+
{"behavior": "straight", "speed": 1.8, "amplitude": 0, "frequency": 0, "duration": 6.0}
|
| 24 |
+
]
|
| 25 |
+
}
|