Alloy Smelter (Ender IO)
Description
Convert up to 3 itemstack inputs into an itemstack output, using energy and giving XP. Can be restricted to require a given tier of machine. Can be set to require at least SIMPLE, NORMAL, or ENHANCED tiers, or to IGNORE the tier. SIMPLE and IGNORE are effectively the same.
Identifier
Refer to this via any of the following:
mods.enderio.alloy_smelter/* Used as page default */
mods.enderio.alloysmelter
mods.enderio.alloySmelter
mods.enderio.AlloySmelter
mods.enderio.alloying
mods.enderio.Alloying
mods.eio.alloy_smelter
mods.eio.alloysmelter
mods.eio.alloySmelter
mods.eio.AlloySmelter
mods.eio.alloying
mods.eio.Alloying
Adding Recipes
Recipe Builder
Just like other recipe types, the Alloy Smelter also uses a recipe builder.
Don't know what a builder is? Check the builder info page out.
mods.enderio.alloy_smelter.recipeBuilder()
IngredientList<IIngredient>
. Sets the item inputs of the recipe. Requires greater than or equal to 1 and less than or equal to 3.groovyinput(IIngredient) input(IIngredient...) input(Collection<IIngredient>)
ItemStackList
. Sets the item outputs of the recipe. Requires exactly 1.groovyoutput(ItemStack) output(ItemStack...) output(Collection<ItemStack>)
float
. Sets the experience gained by taking the output item out of the Alloy Smelter. Requires greater than or equal to 0. (Default0.0f
).groovyxp(float)
RecipeLevel
. Sets the minimum required machine tier of the recipe. (DefaultRecipeLevel.IGNORE
).groovytierAny() tierNormal() tierSimple() tierEnhanced()
int
. Sets the energy cost of the recipe. Requires greater than 0. (Default0
).groovyenergy(int)
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. (returnsnull
orjava.lang.Void
).groovyregister()
Example
mods.enderio.alloy_smelter.recipeBuilder()
.input(item('minecraft:diamond') * 4, item('minecraft:clay') * 32)
.output(item('minecraft:nether_star'))
.energy(100000)
.xp(500)
.tierEnhanced()
.register()
mods.enderio.alloy_smelter.recipeBuilder()
.input(item('minecraft:clay') * 4, item('minecraft:diamond'))
.output(item('minecraft:obsidian'))
.tierNormal()
.register()
mods.enderio.alloy_smelter.recipeBuilder()
.input(item('minecraft:diamond') * 4, item('minecraft:gold_ingot') * 2)
.output(item('minecraft:clay') * 4)
.tierSimple()
.register()
mods.enderio.alloy_smelter.recipeBuilder()
.input(item('minecraft:diamond') * 2, item('minecraft:gold_nugget') * 2)
.output(item('minecraft:clay') * 4)
.tierAny()
.register()
Removing Recipes
Removes all recipes that match the given output:
groovymods.enderio.alloy_smelter.remove(ItemStack)
Removes all registered recipes:
groovymods.enderio.alloy_smelter.removeAll()
Example
mods.enderio.alloy_smelter.remove(item('enderio:item_material:70'))
mods.enderio.alloy_smelter.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:
groovymods.enderio.alloy_smelter.streamRecipes()