World Transmutation (ProjectE)
Description
Converts an input blockstate into an output blockstate when right-clicked with by a Philosopher's Stone, with the ability to be converted into a different output blockstate when holding shift.
Identifier
Refer to this via any of the following:
mods.projecte.transmutation/* Used as page default */
mods.projecte.Transmutation
Adding Recipes
Add the given recipe to the recipe list:
groovymods.projecte.transmutation.add(WorldTransmutations.Entry)
Recipe Builder
Just like other recipe types, the World Transmutation also uses a recipe builder.
Don't know what a builder is? Check the builder info page out.
mods.projecte.transmutation.recipeBuilder()
IBlockState
. Sets the input blockstate. Requires not null.groovyinput(Block) input(IBlockState)
IBlockState
. Sets the normal output blockstate. Requires not null.groovyoutput(Block) output(IBlockState) output(Block, Block) output(IBlockState, IBlockState)
IBlockState
. Sets the shift output blockstate.groovyoutput(Block, Block) output(IBlockState, IBlockState) altOutput(Block) altOutput(IBlockState)
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
ormoze_intel.projecte.utils.WorldTransmutations$Entry
).groovyregister()
Example
mods.projecte.transmutation.recipeBuilder()
.input(blockstate('minecraft:end_stone'))
.output(blockstate('minecraft:diamond_block'), blockstate('minecraft:gold_block'))
.register()
mods.projecte.transmutation.recipeBuilder()
.input(blockstate('minecraft:diamond_block'))
.output(blockstate('minecraft:end_stone'))
.altOutput(blockstate('minecraft:gold_block'))
.register()
mods.projecte.transmutation.recipeBuilder()
.input(blockstate('minecraft:gold_block'))
.output(blockstate('minecraft:diamond_block'))
.register()
Removing Recipes
Removes the given recipe from the recipe list:
groovymods.projecte.transmutation.remove(WorldTransmutations.Entry)
Removes all recipes that match the given input:
groovymods.projecte.transmutation.removeByInput(IBlockState)
Removes all recipes that match the given output:
groovymods.projecte.transmutation.removeByOutput(IBlockState)
Removes all registered recipes:
groovymods.projecte.transmutation.removeAll()
Example
mods.projecte.transmutation.removeByInput(blockstate('minecraft:wool'))
mods.projecte.transmutation.removeByOutput(blockstate('minecraft:dirt'))
mods.projecte.transmutation.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.projecte.transmutation.streamRecipes()