Consolidating Development: 0.9.x (#846)

Signed-off-by: Pyritie <pyritie@gmail.com>
Signed-off-by: TomPlop <tomdidome@gmail.com>
Co-authored-by: Pyritie <Pyritie@gmail.com>
Co-authored-by: Redeix <brayden.j.m.ford@gmail.com>
Co-authored-by: TomPlop <tomdidome@gmail.com>
Co-authored-by: aidie8 <aidenvanzuilen@gmail.com>
Co-authored-by: Xikaro <os.valerievich@ya.ru>
Co-authored-by: Xikaro <55663835+Xikaro@users.noreply.github.com>
Co-authored-by: Zleub <debray.arnaud@gmail.com>
This commit is contained in:
Nebby 2025-04-14 14:00:08 -04:00 committed by GitHub
parent 528672e95b
commit d4c80a4b61
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2192 changed files with 104647 additions and 53190 deletions

View file

@ -0,0 +1,95 @@
// priority: 0
function registerTFCAlabasterRecipes(event) {
event.recipes.tfc.damage_inputs_shapeless_crafting(event.recipes.minecraft.crafting_shapeless('4x tfc:alabaster_brick', ['#forge:raw_materials/gypsum', '#tfc:chisels']))
.id('tfc:crafting/alabaster_brick/raw_gypsum')
event.recipes.tfc.damage_inputs_shapeless_crafting(event.recipes.minecraft.crafting_shapeless('2x tfc:alabaster_brick', ['#forge:poor_raw_materials/gypsum', '#tfc:chisels']))
.id('tfc:crafting/alabaster_brick/poor_raw_gypsum')
event.recipes.tfc.damage_inputs_shapeless_crafting(event.recipes.minecraft.crafting_shapeless('6x tfc:alabaster_brick', ['#forge:rich_raw_materials/gypsum', '#tfc:chisels']))
.id('tfc:crafting/alabaster_brick/rich_raw_gypsum')
// Alabaster Brick
event.recipes.gtceu.assembler('tfc:alabaster/bricks')
.itemInputs('5x tfc:alabaster_brick')
.inputFluids(Fluid.of('gtceu:concrete', 72))
.itemOutputs('4x tfc:alabaster/bricks')
.duration(50)
.EUt(2)
event.recipes.gtceu.chemical_bath('tfc:alabaster/bricks')
.itemInputs('#tfc:colored_bricks_alabaster')
.inputFluids(Fluid.of('gtceu:chlorine', 72))
.itemOutputs('tfc:alabaster/bricks')
.duration(400)
.EUt(2)
.category(GTRecipeCategories.CHEM_DYES)
for (let i = 0; i < 16; i++) {
event.recipes.gtceu.chemical_bath(`tfg:tfc/alabaster/bricks/${global.MINECRAFT_DYE_NAMES[i]}`)
.itemInputs('tfc:alabaster/bricks')
.inputFluids(Fluid.of(`tfc:${global.MINECRAFT_DYE_NAMES[i]}_dye`, 72))
.itemOutputs(`tfc:alabaster/bricks/${global.MINECRAFT_DYE_NAMES[i]}`)
.duration(20)
.EUt(7)
.category(GTRecipeCategories.CHEM_DYES)
}
// Raw Alabaster
event.recipes.gtceu.chemical_bath('tfc:alabaster/raw/poor_raw_gypsum')
.itemInputs('gtceu:poor_raw_gypsum')
.inputFluids(Fluid.of('tfc:limewater', 50))
.itemOutputs('tfc:alabaster/raw')
.duration(400)
.EUt(2)
event.recipes.gtceu.chemical_bath('tfc:alabaster/raw/raw_gypsum')
.itemInputs('gtceu:raw_gypsum')
.inputFluids(Fluid.of('tfc:limewater', 100))
.itemOutputs('2x tfc:alabaster/raw')
.duration(400)
.EUt(2)
event.recipes.gtceu.chemical_bath('tfc:alabaster/raw/rich_raw_gypsum')
.itemInputs('gtceu:rich_raw_gypsum')
.inputFluids(Fluid.of('tfc:limewater', 150))
.itemOutputs('3x tfc:alabaster/raw')
.duration(400)
.EUt(2)
event.recipes.gtceu.chemical_bath('tfc:alabaster/raw')
.itemInputs('#tfc:colored_bricks_alabaster')
.inputFluids(Fluid.of('gtceu:chlorine', 72))
.itemOutputs('tfc:alabaster/raw')
.duration(400)
.EUt(2)
.category(GTRecipeCategories.CHEM_DYES)
for (let i = 0; i < 16; i++) {
event.recipes.gtceu.chemical_bath(`tfg:alabaster/raw/${global.MINECRAFT_DYE_NAMES[i]}`)
.itemInputs('tfc:alabaster/raw')
.inputFluids(Fluid.of(`tfc:${global.MINECRAFT_DYE_NAMES[i]}_dye`, 36))
.itemOutputs(`tfc:alabaster/raw/${global.MINECRAFT_DYE_NAMES[i]}`)
.duration(20)
.EUt(7)
.category(GTRecipeCategories.CHEM_DYES)
event.recipes.gtceu.chemical_bath(`tfg:alabaster/polished/${global.MINECRAFT_DYE_NAMES[i]}`)
.itemInputs('tfc:alabaster/polished')
.inputFluids(Fluid.of(`tfc:${global.MINECRAFT_DYE_NAMES[i]}_dye`, 36))
.itemOutputs(`tfc:alabaster/polished/${global.MINECRAFT_DYE_NAMES[i]}`)
.duration(20)
.EUt(7)
.category(GTRecipeCategories.CHEM_DYES)
event.recipes.gtceu.chemical_bath(`tfg:alabaster/bricks/${global.MINECRAFT_DYE_NAMES[i]}`)
.itemInputs('tfc:alabaster/bricks')
.inputFluids(Fluid.of(`tfc:${global.MINECRAFT_DYE_NAMES[i]}_dye`, 36))
.itemOutputs(`tfc:alabaster/bricks/${global.MINECRAFT_DYE_NAMES[i]}`)
.duration(20)
.EUt(7)
.category(GTRecipeCategories.CHEM_DYES)
}
}