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)
+
  // Input (ItemStack), FillAmount (1.0 = full barrel), @Optional HexColor (e.g. "000000" = black; Default: "35A82A")
  mods.exnihilo.Composting.addRecipe(<minecraft:hay_block>, 0.72, "E3E162"); //Color is optional, defaults to green
+
  mods.exnihilo.Composting.addRecipe(<minecraft:hay_block>, 0.72, "E3E162"); // color is optional, defaults to green
  //InputStack
+
 
  mods.exnihilo.Composting.removeRecipe(<minecraft:sapling>);
+
  // Input (Ingredient)
 +
mods.exnihilo.Composting.removeRecipe(<*>); // remove all recipes
 +
  mods.exnihilo.Composting.removeRecipe(<minecraft:sapling>); // remove saplings
 
   
 
   
//Crucible Heat Sources
+
'''Crucible Heat Sources'''
  //BlockStack, HeatValue (Fire = 0.2, Lava = 0.3)
+
  // Input (BlockStack), HeatValue (Fire = 0.2, Lava = 0.3)
 
  mods.exnihilo.Crucible.addHeatSource(<minecraft:coal_block>, 0.1);
 
  mods.exnihilo.Crucible.addHeatSource(<minecraft:coal_block>, 0.1);
  //BlockStack
+
 
  mods.exnihilo.Crucible.removeHeatSource(<minecraft:lava>);
+
  // Input (BlockStack)
 +
mods.exnihilo.Crucible.removeHeatSource(<*>); // remove all heat sources
 +
  mods.exnihilo.Crucible.removeHeatSource(<minecraft:lava>); // remove lava
 
   
 
   
//Crucible Melting Recipes
+
'''Crucible Melting Recipes'''
  //BlockStack, FluidStack
+
 
 +
  // Input (BlockStack), Output (FluidStack)
 
  mods.exnihilo.Crucible.addRecipe(<minecraft:packed_ice>, <liquid:water> * 1000);
 
  mods.exnihilo.Crucible.addRecipe(<minecraft:packed_ice>, <liquid:water> * 1000);
  //BlockStack
+
 
  mods.exnihilo.Crucible.removeRecipe(<minecraft:stone>);
+
  // Output (FluidStack)
 +
  mods.exnihilo.Crucible.removeRecipe(<*>); // remove all recipes
 +
mods.exnihilo.Crucible.removeRecipe(<liquid:water>); // remove recipes for water
 
   
 
   
//Hammer Recipes
+
'''Hammer Recipes'''
  //BlockStack, OuputStack, Chance(Lower = More Common), LuckModifier
+
  // Input (BlockStack), Output (ItemStack), Chance (Lower = More Common), LuckModifier
 
  mods.exnihilo.Hammer.addRecipe(<minecraft:cactus>, <minecraft:dye:2>, 0.45, 1.25);
 
  mods.exnihilo.Hammer.addRecipe(<minecraft:cactus>, <minecraft:dye:2>, 0.45, 1.25);
  //BlockStack
+
mods.exnihilo.Hammer.addRecipe(<minecraft:redstone_block>, [<minecraft:dye:2>,<minecraft:dye:2>] [1.0, 0.45], [1.0, 1.25]);
  mods.exnihilo.Hammer.removeRecipe(<minecraft:sand>);
+
 
 +
  // Input (BlockStack), @Optional Output (ItemStack)
 +
  mods.exnihilo.Hammer.removeRecipe(<minecraft:sand>); // remove recipe for sand
 +
mods.exnihilo.Hammer.removeRecipe(<*>, <minecraft:dye:2>); // remove dye from all recipes
 
   
 
   
//Sieve Recipes
+
'''Sieve Recipes'''
  //BlockStack, OutputStack, Rarity (1 in this many chance)  
+
  // Input (BlockStack), Output (ItemStack), Rarity (1 in this many chance)  
 
  mods.exnihilo.Sieve.addRecipe(<minecraft:clay>, <minecraft:waterlily>, 5);
 
  mods.exnihilo.Sieve.addRecipe(<minecraft:clay>, <minecraft:waterlily>, 5);
  //OutputStack
+
mods.exnihilo.Sieve.addRecipe(<minecraft:clay>, [<minecraft:waterlily>, <minecraft:waterlily>], [5, 8]);
  mods.exnihilo.Sieve.removeRecipe(<minecraft:wheat_seeds>);
+
 
 +
  // Input (BlockStack), @Optional (ItemStack)
 +
  mods.exnihilo.Sieve.removeRecipe(<minecraft:sand>); // remove sand as sieve recipe
 +
mods.exnihilo.Sieve.removeRecipe(<*>, <minecraft:wheat_seeds>); // remove wheat seeds from all recipes
 +
 
 +
== Commands supported ==
 +
 
 +
/minetweaker exnihilo [FILTER] - Outputs a list of all ExNihilo recipes
 +
 
 +
 
 
{{ModTweakerNavigation}}
 
{{ModTweakerNavigation}}

Revision as of 12:23, 15 July 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

// Input (ItemStack), FillAmount (1.0 = full barrel), @Optional HexColor (e.g. "000000" = black; Default: "35A82A")
mods.exnihilo.Composting.addRecipe(<minecraft:hay_block>, 0.72, "E3E162"); // color is optional, defaults to green
// Input (Ingredient)
mods.exnihilo.Composting.removeRecipe(<*>); // remove all recipes
mods.exnihilo.Composting.removeRecipe(<minecraft:sapling>); // remove saplings

Crucible Heat Sources

// Input (BlockStack), HeatValue (Fire = 0.2, Lava = 0.3)
mods.exnihilo.Crucible.addHeatSource(<minecraft:coal_block>, 0.1);
// Input (BlockStack)
mods.exnihilo.Crucible.removeHeatSource(<*>); // remove all heat sources
mods.exnihilo.Crucible.removeHeatSource(<minecraft:lava>); // remove lava

Crucible Melting Recipes

// Input (BlockStack), Output (FluidStack)
mods.exnihilo.Crucible.addRecipe(<minecraft:packed_ice>, <liquid:water> * 1000);
// Output (FluidStack)
mods.exnihilo.Crucible.removeRecipe(<*>); // remove all recipes
mods.exnihilo.Crucible.removeRecipe(<liquid:water>); // remove recipes for water

Hammer Recipes

// Input (BlockStack), Output (ItemStack), Chance (Lower = More Common), LuckModifier
mods.exnihilo.Hammer.addRecipe(<minecraft:cactus>, <minecraft:dye:2>, 0.45, 1.25);
mods.exnihilo.Hammer.addRecipe(<minecraft:redstone_block>, [<minecraft:dye:2>,<minecraft:dye:2>] [1.0, 0.45], [1.0, 1.25]);
// Input (BlockStack), @Optional Output (ItemStack)
mods.exnihilo.Hammer.removeRecipe(<minecraft:sand>); // remove recipe for sand
mods.exnihilo.Hammer.removeRecipe(<*>, <minecraft:dye:2>); // remove dye from all recipes

Sieve Recipes

// Input (BlockStack), Output (ItemStack), Rarity (1 in this many chance) 
mods.exnihilo.Sieve.addRecipe(<minecraft:clay>, <minecraft:waterlily>, 5);
mods.exnihilo.Sieve.addRecipe(<minecraft:clay>, [<minecraft:waterlily>, <minecraft:waterlily>], [5, 8]);
// Input (BlockStack), @Optional (ItemStack)
mods.exnihilo.Sieve.removeRecipe(<minecraft:sand>); // remove sand as sieve recipe
mods.exnihilo.Sieve.removeRecipe(<*>, <minecraft:wheat_seeds>); // remove wheat seeds from all recipes

Commands supported

/minetweaker exnihilo [FILTER] - Outputs a list of all ExNihilo recipes




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