TFC Drying Rack
This modification provides a simple and convenient addition for TerraFirmaCraft: The Next Generation, introducing a drying rack into the game.
How to Use
Craft a drying rack through the workbench, place it in the world, and right-click to place items on it for drying. The process occurs automatically - you just need to wait for a certain time. Each recipe can have its own success probability.
Configurable Features
The mod offers several useful functions that can be customized to your needs:
- Drying vegetables to obtain seeds (with 15% chance)
- Turning flowers into dyes through drying (alternative to using querns)
- Mandatory use of liquid dyes (solid dyes are powder)
- Obtaining salt from saltpeter powder
- Creating thatch from leaves
CraftTweaker Compatibility
The mod is fully compatible with CraftTweaker, allowing you to customize recipes according to your preferences:
// Importing the module
import mods.tfcdryingrack.Rack;
// Adding a recipe
Rack.addRecipe(String registryName, IIngredient input, ItemStack output, int hours, float chance);
// Removing recipe by name
Rack.removeRecipe(String registryName);
// Remove recipe by input
Rack.removeRecipe(IIngredient input);