Actually Additions Support 1.10.2
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 with '@Optional' are optional and can be left out
//Atomic Reconstructor//InputStack, OutputStack, Energymods.actuallyadditions.AtomicReconstructor.addRecipe(<minecraft:coal:1>, <minecraft:fire_charge>, 1000);//OutputStackmods.actuallyadditions.AtomicReconstructor.remove(<minecraft:coal>);
//Coffee Maker//InputStack, Amplifier, EffectArray, DurationArraymods.actuallyadditions.Coffee.addRecipe(<minecraft:netherrack>, 10, ["swiftness"], [1]);//InputStackmods.actuallyadditions.Coffee.remove(<minecraft:sugar>);
//Compost//InputStack, InputDisplay, OutputStack, OutputDisplaymods.actuallyadditions.Compost.addRecipe(<minecraft:sugar>, <minecraft:snow>, <minecraft:dirt>, <minecraft:dirt>);//InputStackmods.actuallyadditions.Compost.remove(<actuallyadditions:itemCanolaSeed>);
//Crusher//InputStack, OutputStack, @Optional Output2Stack, @Optional Output2Chancemods.actuallyadditions.Crusher.addRecipe(<minecraft:iron_ore>, <minecraft:iron_ingot>, <minecraft:stone>, 50);//InputStackmods.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, OutputStackmods.actuallyadditions.Empowerer.remove(<actuallyadditions:itemCrystal:4>, <actuallyadditions:itemCrystalEmpowered:4>);