Add vinegar as option for curdled milk crafting (#2675)

* Add vinegar as option for curdled milk crafting

This adds an earlier way to make cheese without relying on acetic acid. As vinegar is partially composed of acetic acid, and the recipe for homemade cheese using vinegar is realistic, that would be an useful and accurate recipe.

Signed-off-by: Jean Roberto de Souza <81846511+JeanRdSz@users.noreply.github.com>

* Update vinegar input and output for lactose milk recipe

Signed-off-by: Jean Roberto de Souza <81846511+JeanRdSz@users.noreply.github.com>

---------

Signed-off-by: Jean Roberto de Souza <81846511+JeanRdSz@users.noreply.github.com>
This commit is contained in:
Jean Roberto de Souza 2026-01-09 05:26:08 -03:00 committed by GitHub
parent 6a5de3c172
commit 5bc2d12bfd
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -276,6 +276,14 @@ function registerTFGFoodRecipes(event) {
.duration(300)
.EUt(GTValues.VA[GTValues.LV])
event.recipes.gtceu.mixer(`lactose_milk_vinegar_${item.id}`)
.circuit(1)
.inputFluids(Fluid.of(item.milk, 1000), Fluid.of('tfc:vinegar', 100))
.chancedOutput('gtceu:lactose_dust', 1000, 0)
.outputFluids(Fluid.of(item.curdled_fluid, 1000))
.duration(300)
.EUt(GTValues.VA[GTValues.LV])
global.processorRecipe(event, `${item.id}_curd`, 1200, 16, {
itemOutputs: [item.curd],
fluidInputs: [Fluid.of(item.curdled_fluid, 1000)],