Server/project/assets/configs/weather.json
2024-04-06 11:25:10 -04:00

146 lines
2.7 KiB
JSON

{
"acceleration": 7,
"weather": {
"clouds": {
"values": [
-1.5,
-1,
0,
0.5,
1,
1.5
],
"weights": [
60,
50,
15,
5,
4,
3
]
},
"windSpeed": {
"values": [
0,
1,
2,
3
],
"weights": [
4,
3,
2,
1
]
},
"windDirection": {
"values": [
1,
2,
3,
4,
5,
6,
7,
8
],
"weights": [
1,
1,
1,
1,
1,
1,
1,
1
]
},
"windGustiness": {
"min": 0,
"max": 1
},
"rain": {
"values": [
1,
2,
3
],
"weights": [
25,
1,
1
]
},
"rainIntensity": {
"min": 0,
"max": 1
},
"fog": {
"values": [
0.002,
0.004,
0.008,
0.012,
0.087
],
"weights": [
20,
8,
5,
5,
1
]
},
"temp": {
"min": 0,
"max": 24
},
"pressure": {
"min": 760,
"max": 764
}
},
"seasonDates": [
{
"seasonType": 0,
"name": "SUMMER",
"startDay": "2",
"startMonth": "5",
"endDay": "1",
"endMonth": "8"
},
{
"seasonType": 1,
"name": "AUTUMN",
"startDay": "2",
"startMonth": "8",
"endDay": "1",
"endMonth": "11"
},
{
"seasonType": 2,
"name": "WINTER",
"startDay": "2",
"startMonth": "11",
"endDay": "1",
"endMonth": "3"
},
{
"seasonType": 3,
"name": "SPRING",
"startDay": "2",
"startMonth": "3",
"endDay": "1",
"endMonth": "5"
},
{
"seasonType": 4,
"name": "STORM",
"startDay": "24",
"startMonth": "10",
"endDay": "4",
"endMonth": "11"
}
],
"overrideSeason": null
}