Moistener
Link to moistener
ModTweaker allows you to add or remove forestry Moistener Recipes
Calling
Link to calling
You can call the package using mods.forestry.Moistener
Recipe Removal
Link to recipe-removal
ZenScript Copy//mods.forestry.Moistener.removeRecipe(IIngredient output);
mods.forestry.Moistener.removeRecipe(<minecraft:stonebrick:1>);
Recipe Addition
Link to recipe-addition
ZenScript Copy//mods.forestry.Moistener.addRecipe(IItemStack output, IItemStack input, int packagingTime);
mods.forestry.Moistener.addRecipe(<minecraft:mycelium>, <minecraft:grass>, 60);
Fuel Removal
Link to fuel-removal
ZenScript Copy//mods.forestry.Moistener.removeFuel(IIngredient moistenerItem);
mods.forestry.Moistener.removeFuel(<minecraft:wheat>);
Fuel Addition
Link to fuel-addition
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);
Parametro | Tipo | Descrizione |
---|---|---|
Parametro item | Tipo IItemStack | Descrizione Item to become a valid fuel for the Moistener |
Parametro product | Tipo IItemStack | Descrizione Item that will leave the moistener's working slot (e.g. mouldy wheat or mulch). |
Parametro MoistenerValue | Tipo int | Descrizione How much this item contributes to the final product of the moistener. |
Parametro stage | Tipo int | Descrizione What stage this product represents. Resources with lower stage value will be consumed first. |