Skip to content

Commit

Permalink
fix(content): less light drizzle, more regular rain, added heavy rain (
Browse files Browse the repository at this point in the history
…#4591)

* fix: less light drizzle, more regular rain, added heavy rain

* style(autofix.ci): automated formatting

* Update weather_type.json

---------

Co-authored-by: autofix-ci[bot] <114827586+autofix-ci[bot]@users.noreply.github.com>
  • Loading branch information
VissValdyr and autofix-ci[bot] committed May 6, 2024
1 parent 56cbc34 commit 62fc031
Showing 1 changed file with 36 additions and 11 deletions.
47 changes: 36 additions & 11 deletions data/json/weather_type.json
Expand Up @@ -49,7 +49,7 @@
"rains": false,
"acidic": false,
"sun_intensity": "high",
"requirements": { "pressure_min": 1035, "humidity_max": 40, "time": "day", "humidity_and_pressure": false }
"requirements": { "pressure_min": 1035, "humidity_max": 45, "time": "day", "humidity_and_pressure": false }
},
{
"id": "cloudy",
Expand All @@ -67,7 +67,7 @@
"rains": false,
"acidic": false,
"sun_intensity": "light",
"requirements": { "pressure_max": 1010, "humidity_min": 65, "humidity_and_pressure": false }
"requirements": { "pressure_max": 1010, "humidity_min": 70, "humidity_and_pressure": false }
},
{
"id": "light_drizzle",
Expand All @@ -87,7 +87,7 @@
"animation": { "factor": 0.01, "color": "c_light_blue", "glyph": ",", "tile": "weather_rain_drop" },
"sound_category": "drizzle",
"sun_intensity": "light",
"requirements": { "pressure_max": 1003, "humidity_min": 85, "humidity_and_pressure": false, "required_weathers": [ "cloudy" ] }
"requirements": { "pressure_max": 1003, "humidity_min": 87, "humidity_and_pressure": false, "required_weathers": [ "cloudy" ] }
},
{
"id": "drizzle",
Expand All @@ -108,8 +108,8 @@
"sound_category": "drizzle",
"sun_intensity": "light",
"requirements": {
"pressure_max": 1000,
"humidity_min": 90,
"pressure_max": 1002,
"humidity_min": 88,
"humidity_and_pressure": false,
"required_weathers": [ "cloudy", "light_drizzle" ]
}
Expand All @@ -133,12 +133,37 @@
"sound_category": "rainy",
"sun_intensity": "light",
"requirements": {
"pressure_max": 993,
"humidity_min": 95,
"pressure_max": 1000,
"humidity_min": 90,
"humidity_and_pressure": false,
"required_weathers": [ "cloudy", "light_drizzle", "drizzle" ]
}
},
{
"id": "heavy_rain",
"type": "weather_type",
"name": "Heavy Rain",
"color": "c_dark_gray",
"map_color": "i_blue",
"glyph": "%",
"ranged_penalty": 4,
"sight_penalty": 1.2,
"light_modifier": -40,
"sound_attn": 8,
"dangerous": false,
"precip": "heavy",
"rains": true,
"acidic": false,
"animation": { "factor": 0.02, "color": "c_light_blue", "glyph": ",", "tile": "weather_rain_drop" },
"sound_category": "rainy",
"sun_intensity": "none",
"requirements": {
"pressure_max": 994,
"humidity_min": 97,
"humidity_and_pressure": false,
"required_weathers": [ "cloudy", "light_drizzle", "drizzle", "rain" ]
}
},
{
"id": "thunder",
"type": "weather_type",
Expand All @@ -158,7 +183,7 @@
"animation": { "factor": 0.02, "color": "c_light_blue", "glyph": ".", "tile": "weather_rain_drop" },
"sound_category": "thunder",
"sun_intensity": "none",
"requirements": { "pressure_max": 996, "required_weathers": [ "rain" ] }
"requirements": { "pressure_max": 990, "required_weathers": [ "heavy_rain" ] }
},
{
"id": "lightning",
Expand All @@ -179,7 +204,7 @@
"animation": { "factor": 0.04, "color": "c_light_blue", "glyph": ",", "tile": "weather_rain_drop" },
"sound_category": "thunder",
"sun_intensity": "none",
"requirements": { "pressure_max": 990, "required_weathers": [ "thunder" ] }
"requirements": { "pressure_max": 988, "required_weathers": [ "thunder" ] }
},
{
"id": "acid_drizzle",
Expand Down Expand Up @@ -262,7 +287,7 @@
"animation": { "factor": 0.02, "color": "c_white", "glyph": ",", "tile": "weather_snowflake" },
"sound_category": "snow",
"sun_intensity": "light",
"requirements": { "temperature_max": 33, "required_weathers": [ "rain", "thunder", "lightning" ] }
"requirements": { "temperature_max": 33, "required_weathers": [ "rain" ] }
},
{
"id": "snowstorm",
Expand All @@ -283,6 +308,6 @@
"animation": { "factor": 0.04, "color": "c_white", "glyph": "*", "tile": "weather_snowflake" },
"sound_category": "snowstorm",
"sun_intensity": "none",
"requirements": { "temperature_max": 33, "windpower_min": 15, "required_weathers": [ "thunder", "lightning" ] }
"requirements": { "temperature_max": 33, "required_weathers": [ "thunder", "lightning", "heavy_rain" ] }
}
]

0 comments on commit 62fc031

Please sign in to comment.