Crop stuff for biodiesel, works on my machine . (#1248)

* Added the crop stuff I made so far

* I think thiss should be fine?

* I litteraly have no idea what I am doing

* I hope this fixes everything

---------

Signed-off-by: 34y34y34y34y34y34y34y34y34y <34y34y34y34y34y34y34y34y34y@gmail.com>
This commit is contained in:
34y34y34y34y34y34y34y34y34y 2025-07-05 14:15:00 +03:00 committed by GitHub
parent c16af2c440
commit 460b5db80e
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
8 changed files with 155 additions and 4 deletions

View file

@ -87,3 +87,27 @@ const registerTFCFoodData = (event) => {
})
}
//#region Climate Range for Crops
const registerTFCDATAForClimate_range = (event) => {
event.climateRange(climate => {
climate.minHydration(10)
climate.maxHydration(60)
climate.minTemperature(5)
climate.maxTemperature(40)
climate.hydrationWiggle(7.5)
climate.temperatureWiggle(5.5)
}, 'tfg:sunflower')
event.climateRange(climate => {
climate.minHydration(10)
climate.maxHydration(60)
climate.minTemperature(-5)
climate.maxTemperature(25)
climate.hydrationWiggle(7.5)
climate.temperatureWiggle(1.5)
}, 'tfg:rapeseed')
}
//#endregion