Skip to content

Sag Mill (Ender IO)

Description

Convert an input itemstack into up to 4 output itemstacks with chances, using energy. Output can be boosted by Grinding Balls based on set bonusType. Can be set to require at least SIMPLE, NORMAL, or ENHANCED tiers, or to IGNORE the tier. SIMPLE and IGNORE are effectively the same.

Warning

EnderIO executes recipes using both its input and its grinding ball slot as inputs, which means it can consume grinding balls as input. This means an item that can be used as an input should not be able to also be used as a grinding ball.

Identifier

Refer to this via any of the following:

groovy
mods.enderio.sag_mill/* Used as page default */
mods.enderio.sagmill
mods.enderio.sagMill
mods.enderio.SagMill
mods.enderio.sag
mods.enderio.Sag
mods.enderio.SAGMill
mods.eio.sag_mill
mods.eio.sagmill
mods.eio.sagMill
mods.eio.SagMill
mods.eio.sag
mods.eio.Sag
mods.eio.SAGMill

Adding Recipes

  • Add the given recipe to the recipe list:

    groovy
    mods.enderio.sag_mill.add(Recipe)

Recipe Builder

Just like other recipe types, the Sag Mill also uses a recipe builder.

Don't know what a builder is? Check the builder info page out.

mods.enderio.sag_mill.recipeBuilder()
  • IngredientList<IIngredient>. Sets the item inputs of the recipe. Requires exactly 1.

    groovy
    input(IIngredient)
    input(IIngredient...)
    input(Collection<IIngredient>)
  • ItemStackList. Sets the item outputs of the recipe. Requires greater than or equal to 1 and less than or equal to 4.

    groovy
    output(ItemStack)
    output(ItemStack...)
    output(ItemStack, float)
    output(Collection<ItemStack>)
  • RecipeLevel. Sets the minimum required machine tier of the recipe. (Default RecipeLevel.IGNORE).

    groovy
    tierAny()
    tierNormal()
    tierSimple()
    tierEnhanced()
  • int. Sets the energy cost of the recipe. Requires greater than 0. (Default 0).

    groovy
    energy(int)
  • FloatList. Sets the chance the given output of each output slot.

    groovy
    output(ItemStack)
    output(ItemStack, float)
  • RecipeBonusType. Sets the type of bonus a Grinding Ball can apply. (Default RecipeBonusType.NONE).

    groovy
    bonusTypeNone()
    bonusTypeChance()
    bonusTypeMultiply()
  • First validates the builder, returning null and outputting errors to the log file if the validation failed, then registers the builder and returns the registered object. (returns null or crazypants.enderio.base.recipe.Recipe).

    groovy
    register()
Example
groovy
mods.enderio.sag_mill.recipeBuilder()
    .input(item('minecraft:diamond_block'))
    .output(item('minecraft:diamond') * 4)
    .output(item('minecraft:clay_ball') * 2, 0.7)
    .output(item('minecraft:gold_ingot'), 0.1)
    .output(item('minecraft:gold_ingot'), 0.1)
    .bonusTypeMultiply()
    .energy(1000)
    .tierEnhanced()
    .register()

mods.enderio.sag_mill.recipeBuilder()
    .input(item('minecraft:clay_ball'))
    .output(item('minecraft:diamond') * 4)
    .output(item('minecraft:gold_ingot'), 0.1)
    .bonusTypeChance()
    .tierNormal()
    .register()

mods.enderio.sag_mill.recipeBuilder()
    .input(item('minecraft:diamond'))
    .output(item('minecraft:gold_ingot'), 0.1)
    .bonusTypeNone()
    .tierSimple()
    .register()

mods.enderio.sag_mill.recipeBuilder()
    .input(item('minecraft:nether_star'))
    .output(item('minecraft:clay_ball') * 2, 0.7)
    .output(item('minecraft:gold_ingot'), 0.1)
    .tierAny()
    .register()

Removing Recipes

  • Removes the given recipe from the recipe list:

    groovy
    mods.enderio.sag_mill.remove(Recipe)
  • Removes all recipes that match the given input:

    groovy
    mods.enderio.sag_mill.removeByInput(ItemStack)
  • Removes all registered recipes:

    groovy
    mods.enderio.sag_mill.removeAll()
Example
groovy
mods.enderio.sag_mill.removeByInput(item('minecraft:wheat'))
mods.enderio.sag_mill.removeAll()

Getting the value of recipes

  • Iterates through every entry in the registry, with the ability to call remove on any element to remove it:

    groovy
    mods.enderio.sag_mill.streamRecipes()

Contributors

Changelog

© 2024 CleanroomMC. All Rights Reserved.