Difference between revisions of "ModTweaker:Ex Nihilo Support"

From MineTweaker 3
Jump to: navigation, search
(Handlers Supported)
m (10 revisions imported)
 
(6 intermediate revisions by 3 users not shown)
Line 3: Line 3:
 
The following handlers are supported:
 
The following handlers are supported:
 
* Composting
 
* Composting
* Crucible Heat Source
+
* Crucible
* Crucible Melting
+
* Hammer
* Hammer Recipes
+
 
* Sieve
 
* Sieve
 +
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
 
+
  // Composting Recipes
+
  //Composting
  //InputStack, FillAmount(1.0 = full barrel), HexColor(e.g. "000000" = black)
+
  //InputStack, FillAmount, <span style="color:red">HexColor</span>
  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");
 
  //InputStack
 
  //InputStack
  mods.exnihilo.Composting.removeRecipe(<minecraft:stick>);
+
  mods.exnihilo.Composting.removeRecipe(<minecraft:sapling>);
 
   
 
   
  // Crucible Heat Sources
+
  //Crucible
  BlockStack, HeatValue (Fire = 0.2, Lava = 0.3)
+
  //BlockStack, OutputFluid
  mods.exnihilo.Crucible.addHeatSource(<minecraft:dirt>, 0.15);
+
mods.exnihilo.Crucible.addRecipe(<minecraft:packed_ice>, <liquid:water> * 1000);
 +
//OutputFluid
 +
mods.exnihilo.Crucible.removeRecipe(<liquid:lava>);
 +
//BlockStack, HeatValue
 +
  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
+
  //Hammer
//BlockStack, FluidStack
+
  //BlockStack, OuputStack OR OutputArray, Chance OR ChanceArray, LuckModifier OR LuckModifierArray
mods.exnihilo.Crucible.addRecipe(<minecraft:dirt>, <liquid:dirt>);
+
//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);
 
  mods.exnihilo.Hammer.addRecipe(<minecraft:cactus>, <minecraft:dye:2>, 0.45, 1.25);
 +
mods.exnihilo.Hammer.addRecipe(<minecraft:tnt>, [<minecraft:gunpowder>, <minecraft:sand>], [0.25, 0.50], [1.00, 1.50]);
 
  //BlockStack
 
  //BlockStack
 
  mods.exnihilo.Hammer.removeRecipe(<minecraft:sand>);
 
  mods.exnihilo.Hammer.removeRecipe(<minecraft:sand>);
 
   
 
   
  //Sieve Recipes
+
  //Sieve
  //BlockStack, OutputStack, Rarity (1 in this many chance)
+
  //BlockStack, OutputStack OR OutputArray, Rarity OR RarityArray (Rarity goes in Fractions, 1 = 100Pe, 2 = 50Pe, 3 = 33Pe)
  mods.exnihilo.Sieve.addRecipe(<minecraft:dirt>, <minecraft:cake>, 10);
+
  mods.exnihilo.Sieve.addRecipe(<minecraft:clay>, <minecraft:waterlily>, 5);
 +
mods.exnihilo.Sieve.addRecipe(<minecraft:mycelium>, [<minecraft:red_mushroom>, <minecraft:brown_mushroom>], [2, 2]);  
 
  //OutputStack
 
  //OutputStack
  mods.exnihilo.Sieve.removeRecipe(<minecraft:wheat_seeds>);
+
  mods.exnihilo.Sieve.removeRecipe(<minecraft:dirt>);
 +
 
 +
== Commands supported ==
 +
Prints are stored in the minetweaker log in the minecraft directory.
 +
/minetweaker exnihilo [HANDLER] - Outputs a list of all ExNihilo recipes
 
{{ModTweakerNavigation}}
 
{{ModTweakerNavigation}}

Latest revision as of 14:36, 12 September 2023

Handlers Supported

The following handlers are supported:

  • Composting
  • Crucible
  • Hammer
  • Sieve

Each of these handlers can have recipes added or removed:

Parameters marked as red are optional and can be left out

//Composting
//InputStack, FillAmount, HexColor
mods.exnihilo.Composting.addRecipe(<minecraft:hay_block>, 0.72, "E3E162");
//InputStack
mods.exnihilo.Composting.removeRecipe(<minecraft:sapling>);

//Crucible
//BlockStack, OutputFluid
mods.exnihilo.Crucible.addRecipe(<minecraft:packed_ice>, <liquid:water> * 1000);
//OutputFluid
mods.exnihilo.Crucible.removeRecipe(<liquid:lava>);
//BlockStack, HeatValue
mods.exnihilo.Crucible.addHeatSource(<minecraft:coal_block>, 0.1);
//BlockStack
mods.exnihilo.Crucible.removeHeatSource(<minecraft:lava>);

//Hammer
//BlockStack, OuputStack OR OutputArray, Chance OR ChanceArray, LuckModifier OR LuckModifierArray
mods.exnihilo.Hammer.addRecipe(<minecraft:cactus>, <minecraft:dye:2>, 0.45, 1.25);
mods.exnihilo.Hammer.addRecipe(<minecraft:tnt>, [<minecraft:gunpowder>, <minecraft:sand>], [0.25, 0.50], [1.00, 1.50]);
//BlockStack
mods.exnihilo.Hammer.removeRecipe(<minecraft:sand>);

//Sieve
//BlockStack, OutputStack OR OutputArray, Rarity OR RarityArray (Rarity goes in Fractions, 1 = 100Pe, 2 = 50Pe, 3 = 33Pe)
mods.exnihilo.Sieve.addRecipe(<minecraft:clay>, <minecraft:waterlily>, 5);
mods.exnihilo.Sieve.addRecipe(<minecraft:mycelium>, [<minecraft:red_mushroom>, <minecraft:brown_mushroom>], [2, 2]); 
//OutputStack
mods.exnihilo.Sieve.removeRecipe(<minecraft:dirt>);

Commands supported

Prints are stored in the minetweaker log in the minecraft directory.

/minetweaker exnihilo [HANDLER] - 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