Difference between revisions of "ModTweaker:Ex Nihilo Support"

From MineTweaker 3
Jump to: navigation, search
(Handlers Supported)
Line 10: Line 10:
 
Each of these handlers can have recipes added or removed:
 
Each of these handlers can have recipes added or removed:
  
  // Composting Recipes
+
  //Composting Recipes
 
  //InputStack, FillAmount(1.0 = full barrel), HexColor(e.g. "000000" = black)
 
  //InputStack, FillAmount(1.0 = full barrel), HexColor(e.g. "000000" = black)
  mods.exnihilo.Composting.addRecipe(<minecraft:planks>, 0.25, "000000"); //Color is optional, defaults to green
+
  mods.exnihilo.Composting.addRecipe(<minecraft:hay_block>, 0.72, "E3E162"); //Color is optional, defaults to green
 
  //InputStack
 
  //InputStack
 
  mods.exnihilo.Composting.removeRecipe(<minecraft:sapling>);
 
  mods.exnihilo.Composting.removeRecipe(<minecraft:sapling>);
+
 
  // Crucible Heat Sources
+
  //Crucible Heat Sources
  BlockStack, HeatValue (Fire = 0.2, Lava = 0.3)
+
  //BlockStack, HeatValue (Fire = 0.2, Lava = 0.3)
  mods.exnihilo.Crucible.addHeatSource(<minecraft:dirt>, 0.15);
+
  mods.exnihilo.Crucible.addHeatSource(<minecraft:coal_block>, 0.1);
 
  //BlockStack
 
  //BlockStack
 
  mods.exnihilo.Crucible.removeHeatSource(<minecraft:lava>);
 
  mods.exnihilo.Crucible.removeHeatSource(<minecraft:lava>);
+
 
 
  //Crucible Melting Recipes
 
  //Crucible Melting Recipes
 
  //BlockStack, FluidStack
 
  //BlockStack, FluidStack
  mods.exnihilo.Crucible.addRecipe(<minecraft:dirt>, <liquid:dirt>);
+
  mods.exnihilo.Crucible.addRecipe(<minecraft:packed_ice>, <liquid:water> * 1000);
 
  //BlockStack
 
  //BlockStack
 
  mods.exnihilo.Crucible.removeRecipe(<minecraft:stone>);
 
  mods.exnihilo.Crucible.removeRecipe(<minecraft:stone>);
+
 
 
  //Hammer Recipes
 
  //Hammer Recipes
 
  //BlockStack, OuputStack, Chance(Lower = More Common), LuckModifier
 
  //BlockStack, OuputStack, Chance(Lower = More Common), LuckModifier
Line 33: Line 33:
 
  //BlockStack
 
  //BlockStack
 
  mods.exnihilo.Hammer.removeRecipe(<minecraft:sand>);
 
  mods.exnihilo.Hammer.removeRecipe(<minecraft:sand>);
+
 
 
  //Sieve Recipes
 
  //Sieve Recipes
  //BlockStack, OutputStack, Rarity (1 in this many chance)
+
  //BlockStack, OutputStack, Rarity (1 in this many chance)  
  mods.exnihilo.Sieve.addRecipe(<minecraft:dirt>, <minecraft:cake>, 10);
+
  mods.exnihilo.Sieve.addRecipe(<minecraft:clay>, <minecraft:waterlily>, 5);
 
  //OutputStack
 
  //OutputStack
 
  mods.exnihilo.Sieve.removeRecipe(<minecraft:wheat_seeds>);
 
  mods.exnihilo.Sieve.removeRecipe(<minecraft:wheat_seeds>);
 
{{ModTweakerNavigation}}
 
{{ModTweakerNavigation}}

Revision as of 17:36, 1 February 2015

Handlers Supported

The following handlers are supported:

  • Composting
  • Crucible Heat Source
  • Crucible Melting
  • Hammer Recipes
  • Sieve

Each of these handlers can have recipes added or removed:

//Composting Recipes
//InputStack, FillAmount(1.0 = full barrel), HexColor(e.g. "000000" = black)
mods.exnihilo.Composting.addRecipe(<minecraft:hay_block>, 0.72, "E3E162"); //Color is optional, defaults to green
//InputStack
mods.exnihilo.Composting.removeRecipe(<minecraft:sapling>);
//Crucible Heat Sources
//BlockStack, HeatValue (Fire = 0.2, Lava = 0.3)
mods.exnihilo.Crucible.addHeatSource(<minecraft:coal_block>, 0.1);
//BlockStack
mods.exnihilo.Crucible.removeHeatSource(<minecraft:lava>);
//Crucible Melting Recipes
//BlockStack, FluidStack
mods.exnihilo.Crucible.addRecipe(<minecraft:packed_ice>, <liquid:water> * 1000);
//BlockStack
mods.exnihilo.Crucible.removeRecipe(<minecraft:stone>);
//Hammer Recipes
//BlockStack, OuputStack, Chance(Lower = More Common), LuckModifier
mods.exnihilo.Hammer.addRecipe(<minecraft:cactus>, <minecraft:dye:2>, 0.45, 1.25);
//BlockStack
mods.exnihilo.Hammer.removeRecipe(<minecraft:sand>);
//Sieve Recipes
//BlockStack, OutputStack, Rarity (1 in this many chance) 
mods.exnihilo.Sieve.addRecipe(<minecraft:clay>, <minecraft:waterlily>, 5);
//OutputStack
mods.exnihilo.Sieve.removeRecipe(<minecraft:wheat_seeds>);



ModTweaker Supported Mods

Applied Energistics 2 | Aura Cascade | Botania | Chisel 2 | Ex Nihilo | Extra Utilities | Factorization | Flaxbeard's Steam Power Support | Forestry | Mariculture | Mekanism | Metallurgy 4 | PneumaticCraft | Railcraft | Thaumcraft 4 | Thermal Expansion | Tinker's Construct