Difference between revisions of "ModTweaker:Forestry Support"
From MineTweaker 3
(Created page with "== Handlers Supported == The following handlers are supported: * Bees (0.7+) * Carpenter (0.7+) * Fermenter (0.7+) * Moistener (0.7+) * Squeezer (0.7+) * Still(0.7+) Each of...") |
|||
Line 15: | Line 15: | ||
//OutputStack | //OutputStack | ||
mods.forestry.Carpenter.removeRecipe(<Forestry:crate>); | mods.forestry.Carpenter.removeRecipe(<Forestry:crate>); | ||
+ | |||
+ | // Fermenter Recipes | ||
+ | //InputStack, FermentationValue, FloatModifier, InputFluid, OutputFluid //FermentationValue [Amount of InputFluid] * FloatModifier [Multiplier for OutputFluid] = Amount of OutputFluid | ||
+ | mods.forestry.Fermenter.addRecipe(<minecraft:sugar>, 100, 2, <liquid:water>, <liquid:for.honey>); //OutputFluid would be 200 [100 * 2] |
Revision as of 15:53, 17 January 2015
Handlers Supported
The following handlers are supported:
- Bees (0.7+)
- Carpenter (0.7+)
- Fermenter (0.7+)
- Moistener (0.7+)
- Squeezer (0.7+)
- Still(0.7+)
Each of these handlers can have recipes added or removed:
// Carpenter Recipes //Time recipe requires (Ticks), InputFluid, InputStack Box, InputStack Array, OutputStack //InputStack Box is the slot where Cartons and Crates are by default, it can accept any item, optional mods.forestry.Carpenter.addRecipe(20, <liquid:seedoil> * 100, <minecraft:log:*>, [null, <minecraft:planks:*>, null, <minecraft:planks:*>, null, <minecraft:planks:*>, null, <minecraft:planks:*>, null], <Forestry:oakStick> * 2); //OutputStack mods.forestry.Carpenter.removeRecipe(<Forestry:crate>); // Fermenter Recipes //InputStack, FermentationValue, FloatModifier, InputFluid, OutputFluid //FermentationValue [Amount of InputFluid] * FloatModifier [Multiplier for OutputFluid] = Amount of OutputFluid mods.forestry.Fermenter.addRecipe(<minecraft:sugar>, 100, 2, <liquid:water>, <liquid:for.honey>); //OutputFluid would be 200 [100 * 2]