water tags and rock breaker recipes

This commit is contained in:
Pyritie 2025-07-25 23:20:25 +01:00
parent 188f52cdc1
commit 39c74a1d6f
3 changed files with 19 additions and 2 deletions

View file

@ -95,7 +95,7 @@ function registerTFGPapermakingRecipes(event) {
.outputItem('tfg:soaked_hardwood_strip') .outputItem('tfg:soaked_hardwood_strip')
.id('tfg:barrel/soak_hardwood_strip') .id('tfg:barrel/soak_hardwood_strip')
event.recipes.gtceu.chemical_bath('tfg:chemical_bath/soak_hardwood_strips') 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') .itemInputs('tfg:hardwood_strip')
.itemOutputs('tfg:soaked_hardwood_strip') .itemOutputs('tfg:soaked_hardwood_strip')
.duration(200) .duration(200)

View file

@ -683,7 +683,21 @@ function registerTFGRockRecipes(event) {
.itemOutputs('ad_astra:venus_stone') .itemOutputs('ad_astra:venus_stone')
.duration(16) .duration(16)
.EUt(7) .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') event.recipes.gtceu.rock_breaker('tfg:mercury_stone')
.notConsumable('ad_astra:mercury_stone') .notConsumable('ad_astra:mercury_stone')

View file

@ -440,6 +440,9 @@ const registerTFGFluidTags = (event) => {
event.add('tfc:usable_in_barrel', 'gtceu:seed_oil') 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 => { global.BREATHABLE_COMPRESSED_AIRS.forEach(x => {
event.add('tfg:breathable_compressed_air', x) event.add('tfg:breathable_compressed_air', x)
}) })