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:
parent
c16af2c440
commit
460b5db80e
8 changed files with 155 additions and 4 deletions
|
|
@ -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
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue