ModTweaker allows you to add or remove forestry Moistener Recipes

You can call the package using mods.forestry.Moistener

ZenScript
Copy
//mods.forestry.Moistener.removeRecipe(IIngredient output);
mods.forestry.Moistener.removeRecipe(<minecraft:stonebrick:1>);
ZenScript
Copy
//mods.forestry.Moistener.addRecipe(IItemStack output, IItemStack input, int packagingTime); 
mods.forestry.Moistener.addRecipe(<minecraft:mycelium>, <minecraft:grass>, 60); 
ZenScript
Copy
//mods.forestry.Moistener.removeFuel(IIngredient moistenerItem);
mods.forestry.Moistener.removeFuel(<minecraft:wheat>);

ZenScript
Copy
//mods.forestry.Moistener.addFuel(IItemStack item, IItemStack product, int moistenerValue, int stage);
mods.forestry.Moistener.addFuel(<minecraft:gold_ingot>, <minecraft:iron_ingot>, 20, 2);
参数类型描述
参数
item
类型
IItemstack
描述
Item to become a valid fuel for the Moistener
参数
product
类型
IItemstack
描述
Item that will leave the moistener's working slot (e.g. mouldy wheat or mulch).
参数
MoistenerValue
类型
int
描述
How much this item contributes to the final product of the moistener.
参数
stage
类型
int
描述
What stage this product represents. Resources with lower stage value will be consumed first.