promotional bannermobile promotional banner
premium banner
Simple Machines for modpack creators to utilise for their own needs.

Description

Discord Server

Simple Machinery

Mod Logo

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

Detailed documentation can be found here.

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);