syrup buff (#2126)

* tapping recipes

Signed-off-by: theMegaTech <36931007+theMegaTech@users.noreply.github.com>

* update the field guide

Signed-off-by: theMegaTech <36931007+theMegaTech@users.noreply.github.com>

---------

Signed-off-by: theMegaTech <36931007+theMegaTech@users.noreply.github.com>
This commit is contained in:
theMegaTech 2025-10-30 05:44:52 +02:00 committed by GitHub
parent 2066efccb4
commit 9479e23309
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 21 additions and 3 deletions

View file

@ -18,7 +18,7 @@
"title": "Maple",
"item": "tfc:wood/log/maple,tfc:wood/wood/maple,tfc:wood/leaves/maple,tfc:wood/sapling/maple",
"link_recipe": false,
"text": "$(bold)Climate Data$()$(br)$(thing)Minimum Temperature$(): -8.4°C$(br)$(thing)Maximum Temperature$(): 8°C$(br)$(thing)Minimum Rainfall$(): 240$(br)$(thing)Maximum Rainfall$(): 470$(br2)$(bold)Tapping Data$()$(br)$(thing)Min Temp for Production$(): -4°C$(br)$(thing)Max Temp for Production$(): 6°C$(br)$(thing)Spring Exclusive$(): Yes$(br)$(thing)Flow Rate$(): 5mb"
"text": "$(bold)Climate Data$()$(br)$(thing)Minimum Temperature$(): -8.4°C$(br)$(thing)Maximum Temperature$(): 8°C$(br)$(thing)Minimum Rainfall$(): 240$(br)$(thing)Maximum Rainfall$(): 470$(br2)$(bold)Tapping Data$()$(br)$(thing)Min Temp for Production$(): -15°C$(br)$(thing)Max Temp for Production$(): 5°C$(br)$(thing)Spring Exclusive$(): No$(br)$(thing)Flow Rate$(): 5mb"
},
{
"type": "patchouli:image",
@ -32,7 +32,7 @@
"title": "Birch",
"item": "tfc:wood/log/birch,tfc:wood/wood/birch,tfc:wood/leaves/birch,tfc:wood/sapling/birch",
"link_recipe": false,
"text": "$(bold)Climate Data$()$(br)$(thing)Minimum Temperature$(): -12.1°C$(br)$(thing)Maximum Temperature$(): 6.1°C$(br)$(thing)Minimum Rainfall$(): 125$(br)$(thing)Maximum Rainfall$(): 310$(br2)$(bold)Tapping Data$()$(br)$(thing)Min Temp for Production$(): -4°C$(br)$(thing)Max Temp for Production$(): 6°C$(br)$(thing)Spring Exclusive$(): Yes$(br)$(thing)Flow Rate$(): 5mb"
"text": "$(bold)Climate Data$()$(br)$(thing)Minimum Temperature$(): -12.1°C$(br)$(thing)Maximum Temperature$(): 6.1°C$(br)$(thing)Minimum Rainfall$(): 125$(br)$(thing)Maximum Rainfall$(): 310$(br2)$(bold)Tapping Data$()$(br)$(thing)Min Temp for Production$(): -15°C$(br)$(thing)Max Temp for Production$(): 5°C$(br)$(thing)Spring Exclusive$(): No$(br)$(thing)Flow Rate$(): 5mb"
},
{
"type": "patchouli:image",

View file

@ -188,6 +188,24 @@ const registerAFCRecipes = (event) => {
.requiresNaturalLog(true)
.id("tfg:tree_tapping/ancient_douglas_fir_resin")
//Syrups
event.remove({ id: "afc:tree_tapping/maple_syrup" })
event.remove({ id: "afc:tree_tapping/birch_syrup" })
event.recipes.afc.tree_tapping(TFC.blockIngredient('tfc:wood/log/maple'))
.resultFluid(Fluid.of('afc:maple_sap', 5))
.minTemp(-15)
.maxTemp(5)
.requiresNaturalLog(true)
.id("tfg:tree_tapping/maple_log")
event.recipes.afc.tree_tapping(TFC.blockIngredient('tfc:wood/log/birch'))
.resultFluid(Fluid.of('afc:birch_sap', 5))
.minTemp(-15)
.maxTemp(5)
.requiresNaturalLog(true)
.id("tfg:tree_tapping/birch_log")
// Mars stuff
event.recipes.afc.tree_tapping(TFC.blockIngredient('beneath:wood/log/crimson'))
@ -456,4 +474,4 @@ const registerAFCRecipes = (event) => {
processingTime: 50
}).id(`tfg:vi/lathe/stripping_${x.wood}_wood`)
})
}
}