new iodine line

This commit is contained in:
Pyritie 2025-09-30 23:00:23 +01:00
parent 97d1f19daf
commit a1d3a889c1
18 changed files with 454 additions and 265 deletions

View file

@ -182,6 +182,36 @@ const registerAFCRecipes = (event) => {
.requiresNaturalLog(true)
.id("tfg:tree_tapping/ancient_douglas_fir_resin")
// Mars stuff
event.recipes.afc.tree_tapping(TFC.blockIngredient('beneath:wood/log/crimson'))
.resultFluid(Fluid.of('tfg:crimsene', 1))
.minTemp(-110)
.maxTemp(-15)
.requiresNaturalLog(true)
.id("tfg:tree_tapping/crimson_log")
event.recipes.afc.tree_tapping(TFC.blockIngredient('beneath:wood/wood/crimson'))
.resultFluid(Fluid.of('tfg:crimsene', 1))
.minTemp(-110)
.maxTemp(-15)
.requiresNaturalLog(true)
.id("tfg:tree_tapping/crimson_wood")
event.recipes.afc.tree_tapping(TFC.blockIngredient('beneath:wood/log/warped'))
.resultFluid(Fluid.of('tfg:warpane', 1))
.minTemp(-110)
.maxTemp(-15)
.requiresNaturalLog(true)
.id("tfg:tree_tapping/warped_log")
event.recipes.afc.tree_tapping(TFC.blockIngredient('beneath:wood/wood/warped'))
.resultFluid(Fluid.of('tfg:warpane', 1))
.minTemp(-110)
.maxTemp(-15)
.requiresNaturalLog(true)
.id("tfg:tree_tapping/warped_wood")
//#region Extractor Recipe
// Latex

View file

@ -121,6 +121,11 @@ const registerAFCBlockTags = (event) => {
event.add("afc:tappable_logs", "tfc:wood/log/ancient_spruce")
event.add("afc:tappable_logs", "tfc:wood/log/spruce")
event.add("afc:tappable_logs", "beneath:wood/log/crimson")
event.add("afc:tappable_logs", "beneath:wood/wood/crimson")
event.add("afc:tappable_logs", "beneath:wood/log/warped")
event.add("afc:tappable_logs", "beneath:wood/wood/warped")
event.add("tfg:latex_logs", "#tfc:kapok_logs")
event.add("tfg:latex_logs", "#afc:hevea_logs")
event.add("tfg:latex_logs", "#afc:rubber_fig_logs")