Squeezer
ModTweaker allows you to add or remove forestry Squeezer Recipes
Calling
You can call the package using mods.forestry.Squeezer
Recipe Removal
Beware, you cannot remove the recipes that fill or drain fluid containers, such as forestry cans!
//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
//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);
Parameter | Type | description |
---|---|---|
Parameter fluidOutput | Type ILiquidStack | description The Recipe’s output |
Parameter ingredients | Type IItemStack[] | description The Recipe’s item input(s) |
Parameter timePerItem | Type int | description Amount of inputFluid on organic item requires |
Parameter itemOutput | Type WeightedItemStack | description Output multiplier |