Squeezer
Link to squeezer
ModTweaker allows you to add or remove forestry Squeezer Recipes
Calling
Link to calling
You can call the package using mods.forestry.Squeezer
Recipe Removal
Link to recipe-removal
Beware, you cannot remove the recipes that fill or drain fluid containers, such as forestry cans!
ZenScript Copy//mods.forestry.Squeezer.removeRecipe(ILiquidStack liquid, @Optional IIngredient[] ingredients);
mods.forestry.Squeezer.removeRecipe(<liquid:juice>);
mods.forestry.Squeezer.removeRecipe(<liquid:seed.oil>, [<minecraft:wheat_seeds>]);
Recipe Addition
Link to recipe-addition
ZenScript Copy//mods.forestry.Squeezer.addRecipe(ILiquidStack fluidOutput, IItemStack[] ingredients, int timePerItem, @Optional WeightedItemStack itemOutput);
//mods.forestry.Squeezer.addRecipe(<liquid:lava>, [<minecraft:redstone>], 120);
mods.forestry.Squeezer.addRecipe(<liquid:lava>, [<minecraft:obsidian>], 120, <minecraft:redstone> % 20);
Parametro | Tipo | description |
---|---|---|
Parametro fluidOutput | Tipo ILiquidStack | description The Recipe's output |
Parametro ingredients | Tipo IItemStack[] | description The Recipe's item input(s) |
Parametro timePerItem | Tipo int | description Amount of inputFluid on organic item requires |
Parametro itemOutput | Tipo WeightedItemStack | description Output multiplier |