Moistener
ModTweaker allows you to add or remove forestry Moistener Recipes
Calling
You can call the package using mods.forestry.Moistener
Recipe Removal
//mods.forestry.Moistener.removeRecipe(IIngredient output);mods.forestry.Moistener.removeRecipe(<minecraft:stonebrick:1>);
Recipe Addition
//mods.forestry.Moistener.addRecipe(IItemStack output, IItemStack input, int packagingTime);mods.forestry.Moistener.addRecipe(<minecraft:mycelium>, <minecraft:grass>, 60);
Fuel Removal
//mods.forestry.Moistener.removeFuel(IIngredient moistenerItem);mods.forestry.Moistener.removeFuel(<minecraft:wheat>);
Fuel Addition
//mods.forestry.Moistener.addFuel(IItemStack item, IItemStack product, int moistenerValue, int stage);mods.forestry.Moistener.addFuel(<minecraft:gold_ingot>, <minecraft:iron_ingot>, 20, 2);
Parameter | Type | Description |
---|---|---|
Parameter item | Type IItemStack | Description Item to become a valid fuel for the Moistener |
Parameter product | Type IItemStack | Description Item that will leave the moistener’s working slot (e.g. mouldy wheat or mulch). |
Parameter MoistenerValue | Type int | Description How much this item contributes to the final product of the moistener. |
Parameter stage | Type int | Description What stage this product represents. Resources with lower stage value will be consumed first. |