Compatibility
Minecraft: Java Edition
1.16.5
1.12.2
Platforms
Supported environments
75% of ad revenue goes to creators
Support creators and Modrinth ad-free with Modrinth+Creators
Details
Licensed MPL-2.0
Published 2 years ago
Updated 2 years ago
Simple Machinery
Simple Machinery is a Minecraft mod that adds simple machines to Minecraft. This mod is made for modpack authors. It does not add any recipes by itself, and is meant to configured to fit into a modpack's progression. The machines that are added, usually don't exist in other mods, such as autoclaves and turntables.
Machines
- Autoclave
- Fluid Centrifuge
- Sieve
- Turntable
Inputs, Outputs and Fuels
Autoclave
- Fuel: Steam
- Input: 1 Item + 1 Fluid
- Output: 1 Item
Fluid Centrifuge
- Fuel: Forge Energy
- Input: 1 Liquid
- Output: 3 Weighted Items + 3 Fluids
Sieve
- Fuel: Forge Energy
- Input: 1 Item
- Output: 6 Weighted Item
Turntable
- Fuel: Forge Energy
- Input: 1 Item
- Output: 1 Item
CraftTweaker Support
Autoclave
mods.simplemachinery.autoclave.addRecipe(string id, IIngredient input, IFluidStack fluidInput, IItemStack output, int steam, int time);
mods.simplemachinery.autoclave.removeRecipe(IItemStack output);
Fluid Centrifuge
mods.simplemachinery.fluid_centrifuge.addRecipe(string id, IFluidStack fluidInput, MCWeightedItemStack[] outputs, IFluidStack[] fluidOutputs, int energy, int ticks);
mods.simplemachinery.fluid_centrifuge.addRecipe(string id, IFluidStack fluidInput, IItemStack[] outputs, float[] outputChances[], IFluidStack[] outputs, int energy, int ticks);
Sieve
mods.simplemachinery.sieve.addRecipe(string id, IItemStack input, MCWeightedItemStack[] outputs, int energy, int ticks);
mods.simplemachinery.sieve.addRecipe(string id, IItemStack input, IItemStack[] outputs, float[] outputChances, int energy, int ticks);
Turntable
mods.simplemachinery.turntable.addRecipe(string id, IIngredient input, IItemStack output, int energy, int ticks);
mods.simplemachinery.autoclave.removeRecipe(IItemStack output);