Skip to content

Brewing Barrel (Rustic)

Description

Converts a fluid into another fluid after a long period of time. If the fluid is an instanceof FluidBooze, has a variable Quality that can be refined through further cycles of conversion.

Identifier

Refer to this via any of the following:

groovy
mods.rustic.brewing_barrel/* Used as page default */
mods.rustic.brewingbarrel
mods.rustic.brewingBarrel
mods.rustic.BrewingBarrel

Adding Recipes

Recipe Builder

Just like other recipe types, the Brewing Barrel also uses a recipe builder.

Don't know what a builder is? Check the builder info page out.

mods.rustic.brewing_barrel.recipeBuilder()
  • FluidStackList. Sets the fluid inputs of the recipe. Requires exactly 1.

    groovy
    fluidInput(FluidStack)
    fluidInput(FluidStack...)
    fluidInput(Collection<FluidStack>)
  • FluidStackList. Sets the fluid outputs of the recipe. Requires exactly 1.

    groovy
    fluidOutput(FluidStack)
    fluidOutput(FluidStack...)
    fluidOutput(Collection<FluidStack>)
  • 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. (returns null or rustic.common.crafting.IBrewingBarrelRecipe).

    groovy
    register()
Example
groovy
mods.rustic.brewing_barrel.recipeBuilder()
    .fluidInput(fluid('ironberryjuice'))
    .fluidOutput(fluid('lava'))
    .register()

mods.rustic.brewing_barrel.recipeBuilder()
    .fluidInput(fluid('water'))
    .fluidOutput(fluid('lava'))
    .register()

Removing Recipes

  • Removes all recipes that match the given input:

    groovy
    mods.rustic.brewing_barrel.removeByInput(IIngredient)
  • Removes all recipes that match the given output:

    groovy
    mods.rustic.brewing_barrel.removeByOutput(IIngredient)
  • Removes all registered recipes:

    groovy
    mods.rustic.brewing_barrel.removeAll()
Example
groovy
mods.rustic.brewing_barrel.removeByInput(fluid('ironberryjuice'))
mods.rustic.brewing_barrel.removeByOutput(fluid('ale'))
mods.rustic.brewing_barrel.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:

    groovy
    mods.rustic.brewing_barrel.streamRecipes()

Contributors

Changelog

© 2024 CleanroomMC. All Rights Reserved.