Difference between revisions of "ModTweaker:Actually Additions Support 1.10.2"

From MineTweaker 3
Jump to: navigation, search
(Created page with "== Handlers Supported == The following handlers are supported: * Atomic Reconstructor * Coffee Maker * Compost * Crusher * Empowerer Each of these handlers can have recipes...")
 
Line 17: Line 17:
 
  //OutputStack
 
  //OutputStack
 
  mods.actuallyadditions.AtomicReconstructor.remove(<minecraft:dirt>);
 
  mods.actuallyadditions.AtomicReconstructor.remove(<minecraft:dirt>);
 
+
 
  //Coffee Maker
 
  //Coffee Maker
 
  //InputStack, Amplifier, EffectArray, DurationArray
 
  //InputStack, Amplifier, EffectArray, DurationArray
Line 23: Line 23:
 
  //InputStack
 
  //InputStack
 
  mods.actuallyadditions.CoffeeMaker.remove(<minecraft:sugar>);
 
  mods.actuallyadditions.CoffeeMaker.remove(<minecraft:sugar>);
 
+
 
  //Compost
 
  //Compost
 
  //InputStack, InputDisplay, OutputStack, OutputDisplay
 
  //InputStack, InputDisplay, OutputStack, OutputDisplay
Line 29: Line 29:
 
  //InputStack
 
  //InputStack
 
  mods.actuallyadditions.Compost.remove(<minecraft:dirt>);
 
  mods.actuallyadditions.Compost.remove(<minecraft:dirt>);
 
+
 
  //Crusher
 
  //Crusher
 
  //InputStack, OutputStack, <span style="color:red">Output2Stack</span>, <span style="color:red">Output2Chance</span>
 
  //InputStack, OutputStack, <span style="color:red">Output2Stack</span>, <span style="color:red">Output2Chance</span>
Line 35: Line 35:
 
  //InputStack
 
  //InputStack
 
  mods.actuallyadditions.Crusher.remove(<minecraft:gold_ore>);
 
  mods.actuallyadditions.Crusher.remove(<minecraft:gold_ore>);
 
+
 
  //Empowerer
 
  //Empowerer
 
  //InputStack, OutputStack, ModifierStack
 
  //InputStack, OutputStack, ModifierStack

Revision as of 12:35, 25 February 2017

Handlers Supported

The following handlers are supported:

  • Atomic Reconstructor
  • Coffee Maker
  • Compost
  • Crusher
  • Empowerer

Each of these handlers can have recipes added or removed:

Parameters marked as red are optional and can be left out

//Atomic Reconstructor
//InputStack, OutputStack, Energy
mods.actuallyadditions.AtomicReconstructor.addRecipe(<minecraft:diamond>, <minecraft:dirt>, 1000);
//OutputStack
mods.actuallyadditions.AtomicReconstructor.remove(<minecraft:dirt>);

//Coffee Maker
//InputStack, Amplifier, EffectArray, DurationArray
mods.actuallyadditions.CoffeeMaker.addRecipe(<minecraft:netherrack>, 10, ["swiftness"], [1]);
//InputStack
mods.actuallyadditions.CoffeeMaker.remove(<minecraft:sugar>);

//Compost
//InputStack, InputDisplay, OutputStack, OutputDisplay
mods.actuallyadditions.Compost.addRecipe(<minecraft:sugar>, <minecraft:snow>, <minecraft:dirt>, <minecraft:dirt>);
//InputStack
mods.actuallyadditions.Compost.remove(<minecraft:dirt>);

//Crusher
//InputStack, OutputStack, Output2Stack, Output2Chance
mods.actuallyadditions.Crusher.addRecipe(<minecraft:iron_ore>, <minecraft:iron_ingot>, <minecraft:stone>, 50);
//InputStack
mods.actuallyadditions.Crusher.remove(<minecraft:gold_ore>);

//Empowerer
//InputStack, OutputStack, ModifierStack
mods.actuallyadditions.Empowerer.addRecipe(<minecraft:iron_ingot>, <minecraft:gold_ingot>, <minecraft:redstone_dust>);
//InputStack, OutputStack
mods.actuallyadditions.Empowerer.remove(<minecraft:gold_ore>, <minecraft:gold_ingot>);

ModTweaker Supported Mods

Actually Additions Support| Blood Magic Support| Botania Support| Chisel 2 Support| Embers Support| Extra Utilities Support| Forestry Support| Random Things Support| Refined Storage Support| Tinker's Construct Support