-
Notifications
You must be signed in to change notification settings - Fork 1
/
weather.config.patch
62 lines (61 loc) · 1.06 KB
/
weather.config.patch
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
[
//add new weather
[{
"op": "add",
"path": "/sb_tentacle",
"value": [
[0.1, "rain"],
[0.05, "storm"],
[0.025, "glowingrain"],
[0.125, "drizzle"],
[0.055, "acidrain"],
[0.7, "clear"]
]
}
],
//modify existing weather
[{
"op": "add",
"path": "/moon/-",
"value": [0.07, "spacedustshower"]
}
],
[{
"op": "add",
"path": "/volcanic/-",
"value": [0.02, "ash"]
}
],
[{
"op": "add",
"path": "/tundra/-",
"value": [0.2, "hailstones"]
}
],
[{
"op": "add",
"path": "/arctic/-",
"value": [0.2, "hailstones"]
}
],
[{
"op": "test",
"path": "/asteroidsMeteor/1/1",
"value": "spacedust"
}, {
"op": "replace",
"path": "/asteroidsMeteor/1/1",
"value": "spacedustshower"
}
],
[{
"op": "test",
"path": "/asteroids/1/1",
"value": "spacedust"
}, {
"op": "replace",
"path": "/asteroids/1/1",
"value": "spacedustshower"
}
]
]