Difference between revisions of "ModTweaker:Actually Additions Support 1.10.2"
From MineTweaker 3
m (9 revisions imported) |
|||
(One intermediate revision by one other user not shown) | |||
Line 3: | Line 3: | ||
The following handlers are supported: | The following handlers are supported: | ||
* Atomic Reconstructor | * Atomic Reconstructor | ||
− | |||
* Coffee Maker | * Coffee Maker | ||
* Compost | * Compost | ||
* Crusher | * Crusher | ||
* Empowerer | * Empowerer | ||
− | |||
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 | ||
− | // | + | //InputStack, OutputStack, Energy |
− | mods.actuallyadditions.AtomicReconstructor.addRecipe(<minecraft: | + | mods.actuallyadditions.AtomicReconstructor.addRecipe(<minecraft:coal:1>, <minecraft:fire_charge>, 1000); |
//OutputStack | //OutputStack | ||
− | mods.actuallyadditions.AtomicReconstructor. | + | mods.actuallyadditions.AtomicReconstructor.remove(<minecraft:coal>); |
− | + | ||
− | + | ||
− | + | ||
− | + | ||
− | + | ||
− | + | ||
//Coffee Maker | //Coffee Maker | ||
− | //InputStack, EffectArray, DurationArray | + | //InputStack, Amplifier, EffectArray, DurationArray |
− | mods.actuallyadditions.Coffee.addRecipe(<minecraft:netherrack>, ["swiftness"], [1] | + | mods.actuallyadditions.Coffee.addRecipe(<minecraft:netherrack>, 10, ["swiftness"], [1]); |
//InputStack | //InputStack | ||
− | mods.actuallyadditions.Coffee. | + | mods.actuallyadditions.Coffee.remove(<minecraft:sugar>); |
//Compost | //Compost | ||
− | // | + | //InputStack, InputDisplay, OutputStack, OutputDisplay |
− | mods.actuallyadditions.Compost.addRecipe(<minecraft: | + | mods.actuallyadditions.Compost.addRecipe(<minecraft:sugar>, <minecraft:snow>, <minecraft:dirt>, <minecraft:dirt>); |
//InputStack | //InputStack | ||
− | mods.actuallyadditions.Compost. | + | mods.actuallyadditions.Compost.remove(<actuallyadditions:itemCanolaSeed>); |
//Crusher | //Crusher | ||
− | // | + | //InputStack, OutputStack, <span style="color:red">Output2Stack</span>, <span style="color:red">Output2Chance</span> |
− | mods.actuallyadditions.Crusher.addRecipe(<minecraft: | + | mods.actuallyadditions.Crusher.addRecipe(<minecraft:iron_ore>, <minecraft:iron_ingot>, <minecraft:stone>, 50); |
//InputStack | //InputStack | ||
− | mods.actuallyadditions.Crusher. | + | mods.actuallyadditions.Crusher.remove(<minecraft:gold_ore>); |
//Empowerer | //Empowerer | ||
− | // | + | //InputStack, OutputStack, Modifier1, Modifier2, Modifier3, Modifier4, EnergyPerStand, TimeInTicks) |
− | mods.actuallyadditions.Empowerer.addRecipe(<minecraft: | + | 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. | + | mods.actuallyadditions.Empowerer.remove(<actuallyadditions:itemCrystal:4>, <actuallyadditions:itemCrystalEmpowered:4>); |
− | + | ||
− | + | ||
− | + | ||
− | + | ||
− | + | ||
− | + | ||
− | {{ModTweakerNavigation_1. | + | {{ModTweakerNavigation_1.10.2}} |
Latest revision as of 14:36, 12 September 2023
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 |