diff --git a/kubejs/server_scripts/greate/recipes.js b/kubejs/server_scripts/greate/recipes.js index c7ecafb29..45d0527a5 100644 --- a/kubejs/server_scripts/greate/recipes.js +++ b/kubejs/server_scripts/greate/recipes.js @@ -186,18 +186,19 @@ function registerGreateRecipes(event) { event.shaped('greate:steel_millstone', [ 'FBF', 'DCE', - 'AAA' + 'AGA' ], { A: '#forge:smooth_stone', B: 'gtceu:treated_wood_slab', - C: '#forge:small_gears/wrought_iron', + C: '#forge:small_gears/steel', D: '#forge:tools/hammers', E: '#forge:tools/wrenches', - F: '#forge:dusts/diamond' + F: '#forge:dusts/diamond', + G: 'greate:steel_shaft' }).id('greate:shaped/steel_millstone') event.recipes.gtceu.assembler('greate:steel_millstone') - .itemInputs('3x #forge:smooth_stone', 'gtceu:treated_wood_slab', '#forge:small_gears/wrought_iron', '2x #forge:dusts/diamond') + .itemInputs('2x #forge:smooth_stone', 'gtceu:treated_wood_slab', '#forge:small_gears/steel', '2x #forge:dusts/diamond', 'greate:steel_shaft') .itemOutputs('greate:steel_millstone') .duration(200) .EUt(GTValues.VA[GTValues.ULV]) diff --git a/kubejs/server_scripts/greate/recipes.recycling.js b/kubejs/server_scripts/greate/recipes.recycling.js index 2d07fee96..e6f7ce099 100644 --- a/kubejs/server_scripts/greate/recipes.recycling.js +++ b/kubejs/server_scripts/greate/recipes.recycling.js @@ -103,19 +103,20 @@ function registerGreateRecyclingRecipes(event) { event.recipes.gtceu.macerator('greate:steel_millstone') .itemInputs('greate:steel_millstone') .itemOutputs( - ChemicalHelper.get(TagPrefix.dust, GTMaterials.Steel, 3), - ChemicalHelper.get(TagPrefix.dust, GTMaterials.WroughtIron, 1), + ChemicalHelper.get(TagPrefix.dustTiny, GTMaterials.Steel, 10), + ChemicalHelper.get(TagPrefix.dust, GTMaterials.Stone, 2), + ChemicalHelper.get(TagPrefix.dust, GTMaterials.Diamond, 2), ChemicalHelper.get(TagPrefix.dustSmall, GTMaterials.TreatedWood, 2)) - .duration(GTMaterials.Steel.getMass() * 4) + .duration(GTMaterials.Stone.getMass() * 4) .category(GTRecipeCategories.MACERATOR_RECYCLING) .EUt(GTValues.VA[GTValues.ULV]) event.recipes.gtceu.arc_furnace('greate:steel_millstone') .itemInputs('greate:steel_millstone') .itemOutputs( - ChemicalHelper.get(TagPrefix.ingot, GTMaterials.Steel, 3), - ChemicalHelper.get(TagPrefix.ingot, GTMaterials.WroughtIron, 1)) - .duration(GTMaterials.Steel.getMass() * 4) + ChemicalHelper.get(TagPrefix.nugget, GTMaterials.Steel, 10), + ChemicalHelper.get(TagPrefix.dust, GTMaterials.Diamond, 2)) + .duration(GTMaterials.Stone.getMass() * 4) .category(GTRecipeCategories.ARC_FURNACE_RECYCLING) .EUt(GTValues.VA[GTValues.LV])