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

From MineTweaker 3
Jump to: navigation, search
Line 8: Line 8:
 
* 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 45: Line 46:
 
  //Empowerer
 
  //Empowerer
 
  //OutputStack, InputStack, Modifier1, Modifier2, Modifier3, Modifier4, EnergyPerStand, TimeInTicks, <span style="color:red">ParticleColourArray</span>
 
  //OutputStack, InputStack, Modifier1, Modifier2, Modifier3, Modifier4, EnergyPerStand, TimeInTicks, <span style="color:red">ParticleColourArray</span>
  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:gold_ingot>, <minecraft:iron_ingot>, <minecraft:redstone>, <minecraft:redstone>, <minecraft:redstone>, <minecraft:redstone>, 500, 100, [0.5, 0.3, 0.2]);
 
  //OutputStack
 
  //OutputStack
 
  mods.actuallyadditions.Empowerer.removeRecipe(<actuallyadditions:itemCrystalEmpowered:4>);
 
  mods.actuallyadditions.Empowerer.removeRecipe(<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.11.2}}

Revision as of 11:39, 7 June 2017

Handlers Supported

The following handlers are supported:

  • Atomic Reconstructor
  • Ball of Fur
  • Coffee Maker
  • Compost
  • Crusher
  • Empowerer
  • Treasure Chest

Each of these handlers can have recipes added or removed:

Parameters marked as red are optional and can be left out

//Atomic Reconstructor
//OutputStack, InputStack, Energy
mods.actuallyadditions.AtomicReconstructor.addRecipe(<minecraft:fire_charge>, <minecraft:coal:1>, 1000);
//OutputStack
mods.actuallyadditions.AtomicReconstructor.removeRecipe(<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
//InputStack, EffectArray, DurationArray, Amplifier
mods.actuallyadditions.Coffee.addRecipe(<minecraft:netherrack>, ["swiftness"], [1], 10);
//InputStack
mods.actuallyadditions.Coffee.removeRecipe(<minecraft:sugar>);

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

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

//Empowerer
//OutputStack, InputStack, Modifier1, Modifier2, Modifier3, Modifier4, EnergyPerStand, TimeInTicks, ParticleColourArray
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]);
//OutputStack
mods.actuallyadditions.Empowerer.removeRecipe(<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>);

ModTweaker Supported Mods

Actually Additions Support | Chisel Support | Forestry Support | Refined Storage Support