This is a simple implementation for a drying rack for TerraFirmaCraft: The Next Generation.
You just need to craft a drying rack, place your items on it with right click and wait.
Recipes can have a chance of success.
There are config options for:
drying vegetables to get their seeds (at a 15% chance)
drying flowers to make dyes (instead of using the quern)
forcing the use of liquid dyes (solid dyes are just powder)
drying saltpeter powder to get salt
drying leaves to get thatch
Crafttweaker compatibility is present:
//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);
以下为翻译:
晾干架是一个给群峦:新世代 使用的简单的工具
你只需要制作一个晾干架,通过右键点击把你要处理的物品放置在上面,接着等待一段时间,有一定的成功几率
默认有以下几个设定:
晾干蔬菜以得到它们的种子(15%几率)
晾干花以制作染料(而不是使用石磨)
强制使用液体染料(固体染料只是粉末)此处,作者应该是在强调真实性
晾干硝石粉来得到盐 什么鬼啊!会吃死人的啊!刚还说作者强调真实性呢
晾干树叶以得到茅草
CraftTweaker的API使用方法:
//导入组件
import mods.tfcdryingrack.Rack;
//加入新配方
Rack.addRecipe(String registryName, IIngredient input, ItemStack output, int hours, float chance);
//通过名称移除配方
Rack.removeRecipe(String registryName);
//移除需求某物的配方
Rack.removeRecipe(IIngredient input);