Difference between revisions of "ModTweaker:Forestry Support 1.10.2"
From MineTweaker 3
m (Added Support Summary) |
|||
Line 1: | Line 1: | ||
− | |||
− | |||
− | |||
− | |||
− | |||
== Handlers Supported == | == Handlers Supported == | ||
The following handlers are supported: | The following handlers are supported: | ||
Line 13: | Line 8: | ||
* Still | * Still | ||
* Thermionic Fabricator | * Thermionic Fabricator | ||
− | |||
− | |||
− | |||
− | |||
− | |||
Each of these handlers can have recipes added or removed: | Each of these handlers can have recipes added or removed: | ||
Parameters marked as <span style="color:red">red</span> are optional and can be left out | Parameters marked as <span style="color:red">red</span> are optional and can be left out | ||
− | |||
− | // Carpenter | + | //Carpenter |
− | // OutputStack, | + | //OutputStack, InputArray, Time in Ticks, <span style="color:red">InputFluid</span>, <span style="color:red">BoxStack</span> |
− | mods.forestry.Carpenter.addRecipe(<forestry:oakStick> * 2, | + | mods.forestry.Carpenter.addRecipe(<forestry:oakStick> * 2, |
− | [null, <ore:stickWood>, null], | + | [[null, <ore:stickWood>, null], |
[<minecraft:planks>, null, <minecraft:planks>], | [<minecraft:planks>, null, <minecraft:planks>], | ||
[null, <minecraft:planks>, null]], 20, <liquid:seed.oil> * 100, <minecraft:log>); | [null, <minecraft:planks>, null]], 20, <liquid:seed.oil> * 100, <minecraft:log>); | ||
− | // OutputStack, <span style="color:red">InputFluid</span> | + | //OutputStack, <span style="color:red">InputFluid</span> |
mods.forestry.Carpenter.removeRecipe(<forestry:impregnatedCasing>, <liquid:seed.oil>); | mods.forestry.Carpenter.removeRecipe(<forestry:impregnatedCasing>, <liquid:seed.oil>); | ||
− | // Centrifuge | + | //Centrifuge |
− | // | + | //OutputArray, <span style="color:red">% Percentage</span>, InputStack, Time in Ticks |
− | mods.forestry.Centrifuge.addRecipe([ | + | mods.forestry.Centrifuge.addRecipe([<minecraft:leaves> % 200, <minecraft:stick> % 80, <forestry:beeCombs> % 20], <minecraft:sapling>, 20); |
− | + | //InputStack | |
− | + | ||
− | + | ||
− | // | + | |
mods.forestry.Centrifuge.removeRecipe(<forestry:beeCombs>); | mods.forestry.Centrifuge.removeRecipe(<forestry:beeCombs>); | ||
− | // Fermenter | + | //Fermenter |
− | // OutputFluid, InputStack, FluidInput, FermentationValue | + | //OutputFluid, InputStack, FluidInput, FermentationValue, FluidOutputModifier (FermentationValue: determines the amount fluid needed for the recipe) |
mods.forestry.Fermenter.addRecipe(<liquid:for.honey>, <minecraft:sugar>, <liquid:water>, 100, 2); | mods.forestry.Fermenter.addRecipe(<liquid:for.honey>, <minecraft:sugar>, <liquid:water>, 100, 2); | ||
− | // InputStack | + | //InputStack |
mods.forestry.Fermenter.removeRecipe(<minecraft:reeds>); | mods.forestry.Fermenter.removeRecipe(<minecraft:reeds>); | ||
− | // InputStack, CycleAmount, BurnDuration | + | //InputStack, CycleAmount, BurnDuration |
mods.forestry.Fermenter.addFuel(<minecraft:dirt:2>, 1000, 1000); | mods.forestry.Fermenter.addFuel(<minecraft:dirt:2>, 1000, 1000); | ||
− | // InputStack | + | //InputStack |
mods.forestry.Fermenter.removeFuel(<minecraft:stone:1>); | mods.forestry.Fermenter.removeFuel(<minecraft:stone:1>); | ||
− | // Moistener | + | //Moistener |
− | // OutputStack, InputStack, Time in Ticks | + | //OutputStack, InputStack, Time in Ticks |
mods.forestry.Moistener.addRecipe(<minecraft:grass>, <minecraft:dirt>, 5000); | mods.forestry.Moistener.addRecipe(<minecraft:grass>, <minecraft:dirt>, 5000); | ||
− | // OutputStack | + | //OutputStack |
mods.forestry.Moistener.removeRecipe(<minecraft:mycelium>); | mods.forestry.Moistener.removeRecipe(<minecraft:mycelium>); | ||
− | // Squeezer | + | //Squeezer |
− | // OutputFluid, InputArray, Time in Ticks, <span style="color:red">OutputStack + %</span> | + | //OutputFluid, InputArray, Time in Ticks, <span style="color:red">OutputStack + %</span> |
mods.forestry.Squeezer.addRecipe(<liquid:ice> * 1000, [<minecraft:packed_ice> * 4, <minecraft:snowball>], 20, <forestry:craftingMaterial:5> % 50); | mods.forestry.Squeezer.addRecipe(<liquid:ice> * 1000, [<minecraft:packed_ice> * 4, <minecraft:snowball>], 20, <forestry:craftingMaterial:5> % 50); | ||
− | // OutputFluid, <span style="color:red">InputArray</span> | + | //OutputFluid, <span style="color:red">InputArray</span> |
mods.forestry.Squeezer.removeRecipe(<liquid:water>, [<minecraft:cactus>]); | mods.forestry.Squeezer.removeRecipe(<liquid:water>, [<minecraft:cactus>]); | ||
− | // Still | + | //Still |
− | // OutputFluid, InputFluid, Time in Ticks | + | //OutputFluid, InputFluid, Time in Ticks |
mods.forestry.Still.addRecipe(<liquid:bio.ethanol> * 20, <liquid:juice> * 20, 100); | mods.forestry.Still.addRecipe(<liquid:bio.ethanol> * 20, <liquid:juice> * 20, 100); | ||
− | // OutputFluid, InputFluid | + | //OutputFluid, <span style="color:red">InputFluid</span> |
mods.forestry.Still.removeRecipe(<liquid:bio.ethanol>, <liquid:biomass>); | mods.forestry.Still.removeRecipe(<liquid:bio.ethanol>, <liquid:biomass>); | ||
− | // Thermionic Fabricator | + | //Thermionic Fabricator |
− | // MoltenGlassOutput, InputStack, MeltingTemperature, | + | //MoltenGlassOutput, InputStack, MeltingTemperature, |
mods.forestry.ThermionicFabricator.addSmelting(375, <minecraft:stained_glass_pane>, 1000); | mods.forestry.ThermionicFabricator.addSmelting(375, <minecraft:stained_glass_pane>, 1000); | ||
− | // InputStack | + | //InputStack |
mods.forestry.ThermionicFabricator.removeSmelting(<minecraft:sand>); | mods.forestry.ThermionicFabricator.removeSmelting(<minecraft:sand>); | ||
− | // OutputStack, | + | //OutputStack, InputArray, MoltenGlassInput, <span style="color:red">CastInput</span> |
mods.forestry.ThermionicFabricator.addCast(<minecraft:beacon>, [ | mods.forestry.ThermionicFabricator.addCast(<minecraft:beacon>, [ | ||
[<ore:paneGlass>, <ore:paneGlass>, <ore:paneGlass>], | [<ore:paneGlass>, <ore:paneGlass>, <ore:paneGlass>], | ||
[<ore:paneGlass>, <minecraft:nether_star>, <ore:paneGlass>], | [<ore:paneGlass>, <minecraft:nether_star>, <ore:paneGlass>], | ||
[<minecraft:obsidian>, <minecraft:obsidian>, <minecraft:obsidian>]], 1000, <forestry:waxCast:*>); | [<minecraft:obsidian>, <minecraft:obsidian>, <minecraft:obsidian>]], 1000, <forestry:waxCast:*>); | ||
− | // OutputStack | + | //OutputStack |
mods.forestry.ThermionicFabricator.removeCast(<minecraft:stained_glass>); | mods.forestry.ThermionicFabricator.removeCast(<minecraft:stained_glass>); | ||
{{ModTweakerNavigation_1.10.2}} | {{ModTweakerNavigation_1.10.2}} |
Revision as of 15:08, 9 June 2017
Handlers Supported
The following handlers are supported:
- Carpenter
- Centrifuge
- Fermenter
- Moistener
- Squeezer
- Still
- Thermionic Fabricator
Each of these handlers can have recipes added or removed:
Parameters marked as red are optional and can be left out //Carpenter //OutputStack, InputArray, Time in Ticks, InputFluid, BoxStack mods.forestry.Carpenter.addRecipe(<forestry:oakStick> * 2, [[null, <ore:stickWood>, null], [<minecraft:planks>, null, <minecraft:planks>], [null, <minecraft:planks>, null]], 20, <liquid:seed.oil> * 100, <minecraft:log>); //OutputStack, InputFluid mods.forestry.Carpenter.removeRecipe(<forestry:impregnatedCasing>, <liquid:seed.oil>); //Centrifuge //OutputArray, % Percentage, InputStack, Time in Ticks mods.forestry.Centrifuge.addRecipe([<minecraft:leaves> % 200, <minecraft:stick> % 80, <forestry:beeCombs> % 20], <minecraft:sapling>, 20); //InputStack mods.forestry.Centrifuge.removeRecipe(<forestry:beeCombs>); //Fermenter //OutputFluid, InputStack, FluidInput, FermentationValue, FluidOutputModifier (FermentationValue: determines the amount fluid needed for the recipe) mods.forestry.Fermenter.addRecipe(<liquid:for.honey>, <minecraft:sugar>, <liquid:water>, 100, 2); //InputStack mods.forestry.Fermenter.removeRecipe(<minecraft:reeds>); //InputStack, CycleAmount, BurnDuration mods.forestry.Fermenter.addFuel(<minecraft:dirt:2>, 1000, 1000); //InputStack mods.forestry.Fermenter.removeFuel(<minecraft:stone:1>); //Moistener //OutputStack, InputStack, Time in Ticks mods.forestry.Moistener.addRecipe(<minecraft:grass>, <minecraft:dirt>, 5000); //OutputStack mods.forestry.Moistener.removeRecipe(<minecraft:mycelium>); //Squeezer //OutputFluid, InputArray, Time in Ticks, OutputStack + % mods.forestry.Squeezer.addRecipe(<liquid:ice> * 1000, [<minecraft:packed_ice> * 4, <minecraft:snowball>], 20, <forestry:craftingMaterial:5> % 50); //OutputFluid, InputArray mods.forestry.Squeezer.removeRecipe(<liquid:water>, [<minecraft:cactus>]); //Still //OutputFluid, InputFluid, Time in Ticks mods.forestry.Still.addRecipe(<liquid:bio.ethanol> * 20, <liquid:juice> * 20, 100); //OutputFluid, InputFluid mods.forestry.Still.removeRecipe(<liquid:bio.ethanol>, <liquid:biomass>); //Thermionic Fabricator //MoltenGlassOutput, InputStack, MeltingTemperature, mods.forestry.ThermionicFabricator.addSmelting(375, <minecraft:stained_glass_pane>, 1000); //InputStack mods.forestry.ThermionicFabricator.removeSmelting(<minecraft:sand>); //OutputStack, InputArray, MoltenGlassInput, CastInput mods.forestry.ThermionicFabricator.addCast(<minecraft:beacon>, [ [<ore:paneGlass>, <ore:paneGlass>, <ore:paneGlass>], [<ore:paneGlass>, <minecraft:nether_star>, <ore:paneGlass>], [<minecraft:obsidian>, <minecraft:obsidian>, <minecraft:obsidian>]], 1000, <forestry:waxCast:*>); //OutputStack mods.forestry.ThermionicFabricator.removeCast(<minecraft:stained_glass>);
ModTweaker Supported Mods |
---|
Actually Additions Support| Blood Magic Support| Botania Support| Chisel 2 Support| Embers Support| Extra Utilities Support| Forestry Support| Random Things Support| Refined Storage Support| Tinker's Construct Support |