Compression Chamber (Factory Tech)
Description
Converts an input itemstack and input fluidstack into an output itemstack.
Identifier
Refer to this via any of the following:
mods.factorytech.compressor/* Used as page default */
mods.factorytech.Compressor
Adding Recipes
Add the given recipe to the recipe list:
groovymods.factorytech.compressor.add(TileEntityCompressionChamber.CompressorRecipe)
Recipe Builder
Just like other recipe types, the Compression Chamber also uses a recipe builder.
Don't know what a builder is? Check the builder info page out.
Recipe Builder
Create the Recipe Builder.
groovymods.factorytech.compressor.recipeBuilder()
IngredientList<IIngredient>
. Sets the item inputs of the recipe. Requires exactly 1.groovyinput(IIngredient) input(IIngredient...) input(Collection<IIngredient>)
FluidStackList
. Sets the fluid inputs of the recipe. Requires greater than or equal to 0 and less than or equal to 1.groovyfluidInput(FluidStack) fluidInput(FluidStack...) fluidInput(Collection<FluidStack>)
ItemStackList
. Sets the item outputs of the recipe. Requires exactly 1.groovyoutput(ItemStack) output(ItemStack...) output(Collection<ItemStack>)
First validates the builder, returning
null
and outputting errors to the log file if the validation failed, then registers the builder and returns the registered object. (returnsnull
ordalapo.factech.tileentity.specialized.TileEntityCompressionChamber$CompressorRecipe
).groovyregister()
Example
mods.factorytech.compressor.recipeBuilder()
.input(item('minecraft:clay'))
.output(item('minecraft:diamond'))
.register()
mods.factorytech.compressor.recipeBuilder()
.input(item('minecraft:diamond'))
.fluidInput(fluid('lava') * 100)
.output(item('minecraft:clay'))
.register()
mods.factorytech.compressor.recipeBuilder()
.input(item('minecraft:gold_ingot'))
.fluidInput(fluid('water') * 100)
.output(item('minecraft:diamond') * 5)
.register()
Removing Recipes
Removes the given recipe from the recipe list:
groovymods.factorytech.compressor.remove(TileEntityCompressionChamber.CompressorRecipe)
Removes all recipes that match the given input:
groovymods.factorytech.compressor.removeByInput(IIngredient)
Removes all recipes that match the given output:
groovymods.factorytech.compressor.removeByOutput(IIngredient)
Removes all registered recipes:
groovymods.factorytech.compressor.removeAll()
Example
mods.factorytech.compressor.removeByInput(fluid('water'))
mods.factorytech.compressor.removeByInput(item('factorytech:machinepart:60'))
mods.factorytech.compressor.removeByOutput(item('factorytech:machinepart:141'))
mods.factorytech.compressor.removeAll()
Getting the value of recipes
Iterates through every entry in the registry, with the ability to call remove on any element to remove it:
groovymods.factorytech.compressor.streamRecipes()