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

From MineTweaker 3
Jump to: navigation, search
Line 3: Line 3:
 
The following handlers are supported:
 
The following handlers are supported:
 
* Atomic Reconstructor
 
* Atomic Reconstructor
* Ball of Fur
 
 
* Coffee Maker
 
* Coffee Maker
 
* Compost
 
* Compost
 
* Crusher
 
* Crusher
 
* Empowerer
 
* Empowerer
* Treasure Chest
 
  
 
Each of these handlers can have recipes added or removed:
 
Each of these handlers can have recipes added or removed:
Line 15: Line 13:
 
   
 
   
 
  //Atomic Reconstructor
 
  //Atomic Reconstructor
  //OutputStack, InputStack, Energy
+
  //InputStack, OutputStack, Energy
  mods.actuallyadditions.AtomicReconstructor.addRecipe(<minecraft:fire_charge>, <minecraft:coal:1>, 1000);
+
  mods.actuallyadditions.AtomicReconstructor.addRecipe(<minecraft:coal:1>, <minecraft:fire_charge>, 1000);
 
  //OutputStack
 
  //OutputStack
  mods.actuallyadditions.AtomicReconstructor.removeRecipe(<minecraft:coal>);
+
  mods.actuallyadditions.AtomicReconstructor.remove(<minecraft:coal>);
+
//Ball of Fur
+
//OutputStack, Chance
+
mods.actuallyadditions.BallOfFur.addReturn(<minecraft:string>, <minecraft:coal:1>, 5);
+
//OutputStack
+
mods.actuallyadditions.BallOfFur.removeReturn(<minecraft:coal>);
+
 
   
 
   
 
  //Coffee Maker
 
  //Coffee Maker
  //InputStack, EffectArray, DurationArray, Amplifier
+
  //InputStack, Amplifier, EffectArray, DurationArray
  mods.actuallyadditions.Coffee.addRecipe(<minecraft:netherrack>, ["swiftness"], [1], 10);
+
  mods.actuallyadditions.Coffee.addRecipe(<minecraft:netherrack>, 10, ["swiftness"], [1]);
 
  //InputStack
 
  //InputStack
  mods.actuallyadditions.Coffee.removeRecipe(<minecraft:sugar>);
+
  mods.actuallyadditions.Coffee.remove(<minecraft:sugar>);
 
   
 
   
 
  //Compost
 
  //Compost
  //OutputStack, OutputDisplay, InputStack, InputDisplay
+
  //InputStack, InputDisplay, OutputStack, OutputDisplay
  mods.actuallyadditions.Compost.addRecipe(<minecraft:dirt>, <minecraft:dirt>, <minecraft:sugar>, <minecraft:snow>);
+
  mods.actuallyadditions.Compost.addRecipe(<minecraft:sugar>, <minecraft:snow>, <minecraft:dirt>, <minecraft:dirt>);
 
  //InputStack
 
  //InputStack
  mods.actuallyadditions.Compost.removeRecipe(<actuallyadditions:itemCanolaSeed>);
+
  mods.actuallyadditions.Compost.remove(<actuallyadditions:itemCanolaSeed>);
 
   
 
   
 
  //Crusher
 
  //Crusher
  //OutputStack, InputStack, <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>
  mods.actuallyadditions.Crusher.addRecipe(<minecraft:iron_ingot>, <minecraft:iron_ore>, <minecraft:stone>, 50);
+
  mods.actuallyadditions.Crusher.addRecipe(<minecraft:iron_ore>, <minecraft:iron_ingot>, <minecraft:stone>, 50);
 
  //InputStack
 
  //InputStack
  mods.actuallyadditions.Crusher.removeRecipe(<minecraft:gold_ore>);
+
  mods.actuallyadditions.Crusher.remove(<minecraft:gold_ore>);
 
   
 
   
 
  //Empowerer
 
  //Empowerer
  //OutputStack, InputStack, Modifier1, Modifier2, Modifier3, Modifier4, EnergyPerStand, TimeInTicks, <span style="color:red">ParticleColourArray</span>
+
  //InputStack, OutputStack, Modifier1, Modifier2, Modifier3, Modifier4, EnergyPerStand, TimeInTicks)
  mods.actuallyadditions.Empowerer.addRecipe(<minecraft:gold_ingot>, <minecraft:iron_ingot>, <minecraft:redstone>, <minecraft:redstone>, <minecraft:redstone>, <minecraft:redstone>, 500, 100, [0.5, 0.3, 0.2]);
+
  mods.actuallyadditions.Empowerer.addRecipe(<minecraft:iron_ingot>, <minecraft:gold_ingot>, <minecraft:redstone>, <minecraft:redstone>, <minecraft:redstone>, <minecraft:redstone>, 500, 100);
  //OutputStack
+
  //InputStack, OutputStack
  mods.actuallyadditions.Empowerer.removeRecipe(<actuallyadditions:itemCrystalEmpowered:4>);
+
  mods.actuallyadditions.Empowerer.remove(<actuallyadditions:itemCrystal:4>, <actuallyadditions:itemCrystalEmpowered:4>);
+
//Treasure Chest
+
//LootStack, Chance, MinAmount, MaxAmount
+
mods.actuallyadditions.TreasureChest.addLoot(<minecraft:dirt>, 50, 1, 64);
+
//LootStack
+
mods.actuallyadditions.TreasureChest.removeLoot(<minecraft:gold>);
+
  
{{ModTweakerNavigation_1.11.2}}
+
{{ModTweakerNavigation_1.10.2}}

Revision as of 11:42, 7 June 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:coal:1>, <minecraft:fire_charge>, 1000);
//OutputStack
mods.actuallyadditions.AtomicReconstructor.remove(<minecraft:coal>);

//Coffee Maker
//InputStack, Amplifier, EffectArray, DurationArray
mods.actuallyadditions.Coffee.addRecipe(<minecraft:netherrack>, 10, ["swiftness"], [1]);
//InputStack
mods.actuallyadditions.Coffee.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(<actuallyadditions:itemCanolaSeed>);

//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, Modifier1, Modifier2, Modifier3, Modifier4, EnergyPerStand, TimeInTicks)
mods.actuallyadditions.Empowerer.addRecipe(<minecraft:iron_ingot>, <minecraft:gold_ingot>, <minecraft:redstone>, <minecraft:redstone>, <minecraft:redstone>, <minecraft:redstone>, 500, 100);
//InputStack, OutputStack
mods.actuallyadditions.Empowerer.remove(<actuallyadditions:itemCrystal:4>, <actuallyadditions:itemCrystalEmpowered:4>);

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