Recipes for the growth chamber (#1927)

This commit is contained in:
Redeix 2025-09-29 07:16:09 -05:00 committed by GitHub
parent 12a5f7bac1
commit d4f759f4f5
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
4 changed files with 189 additions and 18 deletions

View file

@ -49,6 +49,7 @@ const registerAdAstraMaterials = (event) => {
GTMaterialFlags.FORCE_GENERATE_BLOCK,
GTMaterialFlags.GENERATE_PLATE,
GTMaterialFlags.GENERATE_ROD,
GTMaterialFlags.GENERATE_FRAME,
GTMaterialFlags.DISABLE_ALLOY_BLAST
)
@ -80,4 +81,12 @@ const registerAdAstraMaterials = (event) => {
)
// #endregion
}
const registerAdAstraMaterialModification = (event) => {
const $FLUID_PIPE_PROPERTY = Java.loadClass('com.gregtechceu.gtceu.api.data.chemical.material.properties.FluidPipeProperties')
// Ostrum fluid pipe - same flow rate as titanium, higher temp range
GTMaterials.get('ostrum').setProperty(PropertyKey.FLUID_PIPE, new $FLUID_PIPE_PROPERTY(3700, 150, true, false, true, false));
}