Difference between revisions of "ModTweaker:Factorization Support"

From MineTweaker 3
Jump to: navigation, search
m (18 revisions imported)
 
(7 intermediate revisions by one other user not shown)
Line 2: Line 2:
  
 
The following handlers are supported:
 
The following handlers are supported:
* Crucible
+
* Slag Furnace
* Steaming
+
* Lacerator
 +
* Crystallizer
  
Each of these handlers can have recipes added or removed:
+
Each of these handlers can have recipes added or removed:  
  //Crucible
+
 
  //LiquidString, Ingot, Plate, Nugget, Red, Green, Blue
+
  Parameters marked as <span style="color:red">red</span> are optional and can be left out
  mods.fsp.Crucible.addLiquid("liquidClay", <minecraft:brick_block>, <minecraft:stone_slab:4>, <minecraft:brick>, 203, 74, 42);
+
//InputStack, LiquidString, FluidAmount //1 = Nugget, 6 = Plate, 9 = Ingot
+
//Slag Furnace
mods.fsp.Crucible.addMelting(<minecraft:brick>, "liquidClay", 1);  
+
  //InputStack, OutputStack1, OutputStackChance1, OutputStack2, OutputStackChance2 (Chances are decimals, 1 = 100%)
 +
  mods.factorization.SlagFurnace.addRecipe(<minecraft:lapis_ore>, <minecraft:dye:4>, 3.5, <minecraft:quartz>, 0.5);
 
  //InputStack
 
  //InputStack
  mods.fsp.Crucible.removeMelting(<minecraft:gold_ingot>); #NOT WORKING
+
  mods.factorization.SlagFurnace.removeRecipe(<factorization:DarkIronOre>);
  //InputStack, LiquidString, FluidAmount, OutputStack
+
  mods.fsp.Crucible.addDunking(<minecraft:brick>, "liquidClay", 1, <minecraft:netherbrick>);  
+
//Lacerator
  //InputStack, LiquidString
+
  //InputStack, OutputStack, OutputStackChance (Decimals, 1 = 100%)
  mods.fsp.Crucible.removeDunking(<minecraft:iron_ingot>, "liquidGold");  
+
  mods.factorization.Lacerator.addRecipe(<minecraft:sandstone>, <minecraft:sand>, 5);
 +
//OutputStack
 +
mods.factorization.Lacerator.removeRecipe(<minecraft:gravel>);  
 +
 +
//Crystallizer
 +
  //InputStack, OutputStack, SolutionStack, OutputCount
 +
  mods.factorization.Crystallizer.addRecipe(<minecraft:dye:4>, <minecraft:quartz>, <factorization:acid:1>, 0.5);
 +
//OutputStack
 +
mods.factorization.Crystallizer.removeRecipe(<factorization:ore/crystal:2>);
 +
 
 +
== Commands Supported ==
 +
Prints are stored in the minetweaker log in the minecraft directory.
 +
/minetweaker factorization [HANDLER] - Outputs a list of all Factorization recipes
 
{{ModTweakerNavigation}}
 
{{ModTweakerNavigation}}

Latest revision as of 14:36, 12 September 2023

Handlers Supported

The following handlers are supported:

  • Slag Furnace
  • Lacerator
  • Crystallizer

Each of these handlers can have recipes added or removed:

Parameters marked as red are optional and can be left out

//Slag Furnace
//InputStack, OutputStack1, OutputStackChance1, OutputStack2, OutputStackChance2 (Chances are decimals, 1 = 100%)
mods.factorization.SlagFurnace.addRecipe(<minecraft:lapis_ore>, <minecraft:dye:4>, 3.5, <minecraft:quartz>, 0.5);
//InputStack
mods.factorization.SlagFurnace.removeRecipe(<factorization:DarkIronOre>);

//Lacerator
//InputStack, OutputStack, OutputStackChance (Decimals, 1 = 100%)
mods.factorization.Lacerator.addRecipe(<minecraft:sandstone>, <minecraft:sand>, 5);
//OutputStack
mods.factorization.Lacerator.removeRecipe(<minecraft:gravel>); 

//Crystallizer
//InputStack, OutputStack, SolutionStack, OutputCount
mods.factorization.Crystallizer.addRecipe(<minecraft:dye:4>, <minecraft:quartz>, <factorization:acid:1>, 0.5);
//OutputStack
mods.factorization.Crystallizer.removeRecipe(<factorization:ore/crystal:2>);

Commands Supported

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

/minetweaker factorization [HANDLER] - Outputs a list of all Factorization 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