diff --git a/kubejs/server_scripts/tfg/recipes.paper.js b/kubejs/server_scripts/tfg/recipes.paper.js index 8be8b3534..22c1981ee 100644 --- a/kubejs/server_scripts/tfg/recipes.paper.js +++ b/kubejs/server_scripts/tfg/recipes.paper.js @@ -95,7 +95,7 @@ function registerTFGPapermakingRecipes(event) { .outputItem('tfg:soaked_hardwood_strip') .id('tfg:barrel/soak_hardwood_strip') event.recipes.gtceu.chemical_bath('tfg:chemical_bath/soak_hardwood_strips') - .inputFluids( JsonIO.of({ amount: 100, value: { tag: "tfc:any_water" }})) + .inputFluids( JsonIO.of({ amount: 100, value: { tag: "tfc:clean_water" }})) .itemInputs('tfg:hardwood_strip') .itemOutputs('tfg:soaked_hardwood_strip') .duration(200) diff --git a/kubejs/server_scripts/tfg/recipes.rocks.js b/kubejs/server_scripts/tfg/recipes.rocks.js index ea64cdf58..9291d4ffb 100644 --- a/kubejs/server_scripts/tfg/recipes.rocks.js +++ b/kubejs/server_scripts/tfg/recipes.rocks.js @@ -683,7 +683,21 @@ function registerTFGRockRecipes(event) { .itemOutputs('ad_astra:venus_stone') .duration(16) .EUt(7) - .dimension('ad_astra:venus') + .dimension('ad_astra:mars') + + event.recipes.gtceu.rock_breaker('tfg:red_granite') + .notConsumable('gtceu:red_granite') + .itemOutputs('gtceu:red_granite') + .duration(16) + .EUt(7) + .dimension('ad_astra:mars') + + event.recipes.gtceu.rock_breaker('tfg:red_granite') + .notConsumable('gtceu:red_granite_cobblestone') + .itemOutputs('gtceu:red_granite_cobblestone') + .duration(16) + .EUt(7) + .dimension('ad_astra:mars') event.recipes.gtceu.rock_breaker('tfg:mercury_stone') .notConsumable('ad_astra:mercury_stone') diff --git a/kubejs/server_scripts/tfg/tags.js b/kubejs/server_scripts/tfg/tags.js index 6f37981ea..178f30613 100644 --- a/kubejs/server_scripts/tfg/tags.js +++ b/kubejs/server_scripts/tfg/tags.js @@ -440,6 +440,9 @@ const registerTFGFluidTags = (event) => { event.add('tfc:usable_in_barrel', 'gtceu:seed_oil') + event.add('waves:has_waves', 'tfg:semiheavy_ammoniacal_water') + event.add('tfc:any_water', 'tfg:semiheavy_ammoniacal_water') + global.BREATHABLE_COMPRESSED_AIRS.forEach(x => { event.add('tfg:breathable_compressed_air', x) })