Skip to content

Commit

Permalink
Allow additional rain-like weathers to water crops
Browse files Browse the repository at this point in the history
The following weathers can now water crops:
- Bubble Rain (makes sense: water, strong rain)
- Misty Rain (makes sense: water, visible rain)
- Blood Rain (Blood is usable in Trays)
- Bog Rain (mostly water. Mixed in Algae doesn't harm crops)

Healing Rain was considered, but wasn't included, because it spawns
too much liquid, and any non-covered crops would be uprooted anyway.

Rains like Bio Rain (Bio-Ooze) weren't included,
because their liquids are potentially harmful to the crops.
  • Loading branch information
edwardspec committed Nov 14, 2023
1 parent 1216d81 commit cfcf947
Show file tree
Hide file tree
Showing 4 changed files with 44 additions and 0 deletions.
11 changes: 11 additions & 0 deletions weather/bog/bograin.weather
Original file line number Diff line number Diff line change
Expand Up @@ -67,6 +67,17 @@
"spawnAboveRegion" : 30,
"spawnHorizontalPad" : 30,
"windAffectAmount" : 1.0
},
{
"projectile" : "lightwater",
"parameters" : {
"power" : 0
},
"velocity" : [0, -100],
"ratePerX" : 0.1,
"spawnAboveRegion" : 30,
"spawnHorizontalPad" : 10,
"windAffectAmount" : 1
}
],

Expand Down
11 changes: 11 additions & 0 deletions weather/rain/bloodrain.weather
Original file line number Diff line number Diff line change
Expand Up @@ -67,6 +67,17 @@
"spawnAboveRegion" : 30,
"spawnHorizontalPad" : 30,
"windAffectAmount" : 1.0
},
{
"projectile" : "lightwater",
"parameters" : {
"power" : 0
},
"velocity" : [0, -100],
"ratePerX" : 0.1,
"spawnAboveRegion" : 30,
"spawnHorizontalPad" : 10,
"windAffectAmount" : 1
}
],

Expand Down
11 changes: 11 additions & 0 deletions weather/rain/fububblerain.weather
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,17 @@
"spawnAboveRegion" : 30,
"spawnHorizontalPad" : 30,
"windAffectAmount" : 0.0
},
{
"projectile" : "lightwater",
"parameters" : {
"power" : 0
},
"velocity" : [0, -100],
"ratePerX" : 0.1,
"spawnAboveRegion" : 30,
"spawnHorizontalPad" : 10,
"windAffectAmount" : 1
}
],

Expand Down
11 changes: 11 additions & 0 deletions weather/rain/mistyrain.weather
Original file line number Diff line number Diff line change
Expand Up @@ -72,6 +72,17 @@
"spawnAboveRegion" : 30,
"spawnHorizontalPad" : 30,
"windAffectAmount" : 1.0
},
{
"projectile" : "lightwater",
"parameters" : {
"power" : 0
},
"velocity" : [0, -100],
"ratePerX" : 0.1,
"spawnAboveRegion" : 30,
"spawnHorizontalPad" : 10,
"windAffectAmount" : 1
}
],

Expand Down

0 comments on commit cfcf947

Please sign in to comment.