Campfire (Pyrotech)
Description
When powered by burning logs can convert items.
Identifier
Refer to this via any of the following:
mods.pyrotech.campfire/* Used as page default */
mods.pyrotech.Campfire
Adding Recipes
Adds recipes in the format
name
,input
,output
,duration
:groovymods.pyrotech.campfire.add(String, IIngredient, ItemStack, int)
Example
mods.pyrotech.campfire.add('apple_to_dirt', item('minecraft:apple'), item('minecraft:dirt'), 1000)
Recipe Builder
Just like other recipe types, the Campfire also uses a recipe builder.
Don't know what a builder is? Check the builder info page out.
mods.pyrotech.campfire.recipeBuilder()
ResourceLocation
. Sets the Resource Location of the recipe.groovyname(String) name(ResourceLocation)
IngredientList<IIngredient>
. Sets the item inputs of the recipe. Requires exactly 1.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>)
int
. Sets the time required for the recipe to complete. Requires greater than or equal to 1. (Default0
).groovyduration(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
orcom.codetaylor.mc.pyrotech.modules.tech.basic.recipe.CampfireRecipe
).groovyregister()
Example
mods.pyrotech.campfire.recipeBuilder()
.input(item('minecraft:diamond'))
.output(item('minecraft:emerald'))
.duration(400)
.name('diamond_campfire_to_emerald')
.register()
Removing Recipes
Removes all recipes that match the given input:
groovymods.pyrotech.campfire.removeByInput(ItemStack)
Removes all recipes that match the given output:
groovymods.pyrotech.campfire.removeByOutput(IIngredient)
Removes all registered recipes:
groovymods.pyrotech.campfire.removeAll()
Example
mods.pyrotech.campfire.removeByInput(item('minecraft:porkchop'))
mods.pyrotech.campfire.removeByOutput(item('minecraft:cooked_porkchop'))
mods.pyrotech.campfire.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.pyrotech.campfire.streamRecipes()