moved golden apples to the food processor

This commit is contained in:
Pyritie 2025-08-13 23:08:01 +01:00
parent 6bba775be0
commit 365fe1e5ca
3 changed files with 18 additions and 28 deletions

View file

@ -15,6 +15,7 @@
- Fixed mechanical mixers requiring an alloy that needed that tier of mixer @Pyritie
- Finally fixed all the issues with upgrading the toolbelt - now you can safely dye and undye, upgrade with and without tools inside it, etc (#368) @Pyritie
- Fixed a dupe with certus quartz @Pyritie
- Moved the golden apple recipe over to the food processor so it respects food expiry data @Pyritie
## [0.10.9] - 10-08-2025
### Changes

View file

@ -288,34 +288,6 @@ const registerMinecraftRecipes = (event) => {
//#endregion
//#region Выход: Золотое яблоко
event.recipes.gtceu.chemical_reactor('golden_apple')
.itemInputs('tfc:food/green_apple', '8x #forge:ingots/gold')
.itemOutputs('minecraft:golden_apple')
.duration(50)
.EUt(30)
event.recipes.gtceu.large_chemical_reactor('golden_apple')
.itemInputs('tfc:food/green_apple', '8x #forge:ingots/gold')
.itemOutputs('minecraft:golden_apple')
.duration(50)
.EUt(30)
event.recipes.gtceu.chemical_reactor('golden_apple_1')
.itemInputs('tfc:food/red_apple', '8x #forge:ingots/gold')
.itemOutputs('minecraft:golden_apple')
.duration(50)
.EUt(30)
event.recipes.gtceu.large_chemical_reactor('golden_apple_1')
.itemInputs('tfc:food/red_apple', '8x #forge:ingots/gold')
.itemOutputs('minecraft:golden_apple')
.duration(50)
.EUt(30)
//#endregion
//#region Выход: Компаратор
// Компаратор

View file

@ -880,6 +880,23 @@ function registerTFGFoodRecipes(event) {
.id(`tfg:mortar/salt`)
//#endregion
//#region Выход: Золотое яблоко
processorRecipe('golden_apple_from_red', 30 * 20, GTValues.VA[GTValues.HV], {
itemInputs: ['tfc:food/red_apple'],
fluidInputs: [Fluid.of('gtceu:gold', 144 * 8)],
itemOutputs: ['minecraft:golden_apple'],
circuit: 5
})
processorRecipe('golden_apple_from_green', 30 * 20, GTValues.VA[GTValues.HV], {
itemInputs: ['tfc:food/green_apple'],
fluidInputs: [Fluid.of('gtceu:gold', 144 * 8)],
itemOutputs: ['minecraft:golden_apple'],
circuit: 5
})
//#endregion
//#region New foods