Fermenter
Link to fermenter
ModTweaker allows you to add or remove forestry Fermenter Recipes
Calling
Link to calling
You can call the package using mods.forestry.Fermenter
Recipe Removal
Link to recipe-removal
ZenScript Copy//mods.forestry.Fermenter.removeRecipe(IIngredient input);
mods.forestry.Fermenter.removeRecipe(<minecraft:reeds>);
mods.forestry.Fermenter.removeRecipe(<liquid:water>);
Recipe Addition
Link to recipe-addition
ZenScript Copy//mods.forestry.Fermenter.addRecipe(ILiquidStack fluidOutput, IItemStack resource, ILiquidStack fluidInput, int fermentationValue, float fluidOutputModifier);
mods.forestry.Fermenter.addRecipe(<liquid:lava>, <minecraft:obsidian>, <liquid:water>, 1000, 0.5);
Amount of fluid output: fermentationValue * fluidOutputModifier
Parametro | Tipo | description |
---|---|---|
Parametro fluidOutput | Tipo ILiquidStack | description The Recipe's output |
Parametro resource | Tipo IItemStack | description The Recipe's item input |
Parametro fluidInput | Tipo ILiquidStack | description The Recipe's liquid input |
Parametro fermentationValue | Tipo int | description Amount of inputFluid on organic item requires |
Parametro fluidOutputModifier | Tipo int | description Output multiplier |
Fuel Removal
Link to fuel-removal
ZenScript Copy//mods.forestry.Fermenter.removeFuel(IIngredient fermenterItem);
mods.forestry.Fermenter.removeFuel(<forestry:fertilizer_compound>);
Fuel Addition
Link to fuel-addition
ZenScript Copy//mods.forestry.Fermenter.addFuel(IItemStack item, int fermentPerCycle, int burnDuration);
mods.forestry.Fermenter.addFuel(<minecraft:leaves:1>, 100, 5);
Parametro | Tipo | Descrizione |
---|---|---|
Parametro item | Tipo IItemStack | Descrizione Item to become a valid fuel for the fermenter |
Parametro fermentPerCycle | Tipo int | Descrizione How much is fermented per work cycle, i.e. how much fluid of the input is consumed. |
Parametro burnDuration | Tipo int | Descrizione Amount of work cycles a single item of this fuel lasts before expiring. |