ModTweaker allows you to add or remove forestry Fermenter Recipes

You can call the package using mods.forestry.Fermenter

ZenScript
Copy
//mods.forestry.Fermenter.removeRecipe(IIngredient input);
mods.forestry.Fermenter.removeRecipe(<minecraft:reeds>);
mods.forestry.Fermenter.removeRecipe(<liquid:water>);
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

参数类型description
参数
fluidOutput
类型
ILiquidStack
description
The Recipe's output
参数
resource
类型
IItemstack
description
The Recipe's item input
参数
fluidInput
类型
ILiquidStack
description
The Recipe's liquid input
参数
fermentationValue
类型
int
description
Amount of inputFluid on organic item requires
参数
fluidOutputModifier
类型
int
description
Output multiplier
ZenScript
Copy
//mods.forestry.Fermenter.removeFuel(IIngredient fermenterItem);
mods.forestry.Fermenter.removeFuel(<forestry:fertilizer_compound>);

ZenScript
Copy
//mods.forestry.Fermenter.addFuel(IItemStack item, int fermentPerCycle, int burnDuration);
mods.forestry.Fermenter.addFuel(<minecraft:leaves:1>, 100, 5);
参数类型描述
参数
item
类型
IItemstack
描述
Item to become a valid fuel for the fermenter
参数
fermentPerCycle
类型
int
描述
How much is fermented per work cycle, i.e. how much fluid of the input is consumed.
参数
burnDuration
类型
int
描述
Amount of work cycles a single item of this fuel lasts before expiring.