User:Voidi
From MineTweaker3 Wiki
Revision as of 11:07, 15 October 2015 by Voidi (Talk) (Created page with "= Handlers Supported = Each of these handlers can have recipes added or removed: Parameters marked as <span style="color:red">@Optional</span> are optional and can be left out...")
Handlers Supported
Each of these handlers can have recipes added or removed: Parameters marked as @Optional are optional and can be left out
Carpenter
| output | IItemStack |
| ingredients | IIngredient[][] |
| (Optional) fluidInput | ILiquidStack |
| timePerIteminTicks | Integer |
| (Optional) boxBoxStack | IItemStack |
mods.forestry.Carpenter.addRecipe(<Forestry:oakStick> * 2, [[null, <minecraft:planks>, null], [<minecraft:planks>, null, <minecraft:planks>], [null,<minecraft:planks>, null]], 20); mods.forestry.Carpenter.addRecipe(<Forestry:oakStick> * 2, [[null, <minecraft:planks>, null], [<minecraft:planks>, null, <minecraft:planks>], [null, <minecraft:planks>, null]], 20, <minecraft:log>); mods.forestry.Carpenter.addRecipe(<Forestry:oakStick> * 2, [[null, <minecraft:planks>, null], [<minecraft:planks>, null, <minecraft:planks>], [null,<minecraft:planks>, null]], <liquid:seedoil> * 100, 20, <minecraft:log>);
//IIngredient output, @Optional ILiquidStack fluidInput
mods.forestry.Carpenter.removeRecipe(<Forestry:impregnatedCasing>, <liquid:seedoil>);
- Centrifuge