Skip to content

Drying Rack (Tinkers' Construct)

Description

Convert an item into a different item by hanging it out to dry.

Identifier

Refer to this via any of the following:

groovy
mods.tconstruct.drying/* Used as page default */
mods.tconstruct.Drying
mods.tinkersconstruct.drying
mods.tinkersconstruct.Drying
mods.ticon.drying
mods.ticon.Drying

Adding Recipes

  • Adds a new recipe in the format input, output, time:

    groovy
    mods.tconstruct.drying.add(IIngredient, ItemStack, int)

Recipe Builder

Just like other recipe types, the Drying Rack also uses a recipe builder.

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

mods.tconstruct.drying.recipeBuilder()
  • IngredientList<IIngredient>. Sets the item inputs of the recipe. Requires exactly 1.

    groovy
    input(IIngredient)
    input(IIngredient...)
    input(Collection<IIngredient>)
  • ItemStackList. Sets the item outputs of the recipe. Requires exactly 1.

    groovy
    output(ItemStack)
    output(ItemStack...)
    output(Collection<ItemStack>)
  • int. The time in ticks it takes for the item to dry. Requires greater than or equal to 1. (Default 20).

    groovy
    time(int)
  • 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 slimeknights.tconstruct.library.DryingRecipe).

    groovy
    register()
Example
groovy
mods.tconstruct.drying.recipeBuilder()
    .input(item('minecraft:clay'))
    .output(item('minecraft:dirt'))
    .time(45)
    .register()

Removing Recipes

  • Removes all recipes that match the given input:

    groovy
    mods.tconstruct.drying.removeByInput(IIngredient)
  • Removes all recipes that match the given input and the given output:

    groovy
    mods.tconstruct.drying.removeByInputAndOutput(IIngredient, ItemStack)
  • Removes all recipes that match the given output:

    groovy
    mods.tconstruct.drying.removeByOutput(ItemStack)
  • Removes all registered recipes:

    groovy
    mods.tconstruct.drying.removeAll()
Example
groovy
mods.tconstruct.drying.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.tconstruct.drying.streamRecipes()

Contributors

Changelog

© 2024 CleanroomMC. All Rights Reserved.