Difference between revisions of "ModTweaker:Forestry Support 1.11.2"

From MineTweaker 3
Jump to: navigation, search
(Created page with "== Handlers Supported == The following handlers are supported: * Carpenter * Centrifuge * Fermenter * Moistener * Squeezer * Still * Thermionic Fabricator Each of these handl...")
 
Line 12: Line 12:
  
 
  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, InputArray, Time in Ticks, <span style="color:red">InputFluid</span>, <span style="color:red">BoxStack</span>
 
  //OutputStack, InputArray, Time in Ticks, <span style="color:red">InputFluid</span>, <span style="color:red">BoxStack</span>
Line 48: Line 48:
 
  mods.forestry.Moistener.removeFuel(<minecraft:wheat>);
 
  mods.forestry.Moistener.removeFuel(<minecraft:wheat>);
 
   
 
   
  // 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, <span style="color:green">InputArray</span>, MoltenGlassInput, <span style="color:red">CastInput</span>
+
  //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.11.2}}

Revision as of 15:01, 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>);
//InputStack, OutputStack, MoistenerValue, Priority
mods.forestry.Moistener.addFuel(<minecraft:seeds>, <minecraft:dye:15>, 20, 1);
//InputStack
mods.forestry.Moistener.removeFuel(<minecraft:wheat>);

//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 | Chisel Support | Forestry Support | Refined Storage Support