Tartaric Forge (Blood Magic: Alchemical Wizardry)
Description
Converts up to 4 input items into an output itemstack, requiring a Tartaric gem with a minimum amount of souls, and consuming some.
Warning
Tartaric Forge can properly execute recipes that only have 1 input, but they're bugged in JEI. If a recipe only has 1 input, it will be duplicated in the bottom-right slot. This bug is purely visual, and the recipe still works as intended.
Identifier
Refer to this via any of the following:
mods.bm.tartaric_forge
mods.bm.tartaricforge
mods.bm.tartaricForge
mods.bm.TartaricForge
mods.bloodmagic.tartaric_forge/* Used as page default */
mods.bloodmagic.tartaricforge
mods.bloodmagic.tartaricForge
mods.bloodmagic.TartaricForge
Adding Recipes
Add the given recipe to the recipe list:
groovymods.bloodmagic.tartaric_forge.add(RecipeTartaricForge)
Adds recipes in the format
input
,output
,minimumSouls
,soulDrain
:groovymods.bloodmagic.tartaric_forge.add(Collection<IIngredient>, ItemStack, double, double)
Recipe Builder
Just like other recipe types, the Tartaric Forge also uses a recipe builder.
Don't know what a builder is? Check the builder info page out.
mods.bloodmagic.tartaric_forge.recipeBuilder()
IngredientList<IIngredient>
. Sets the item inputs of the recipe. Requires greater than or equal to 1 and less than or equal to 4.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>)
double
. Sets how much Demonic Will is drained from the Tartaric Gem when the craft is completed. Requires greater than or equal to 0. (Default0.0d
).groovydrain(int) soulDrain(double)
double
. Sets how much Demonic Will is required in the Tartaric Gem to start the craft. Requires greater than or equal to 0. (Default0.0d
).groovyminimumSouls(double)
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
orWayofTime.bloodmagic.api.impl.recipe.RecipeTartaricForge
).groovyregister()
Example
mods.bloodmagic.tartaric_forge.recipeBuilder()
.input(item('minecraft:clay'), item('minecraft:clay'), item('minecraft:clay'), item('minecraft:clay'))
.output(item('minecraft:gold_ingot'))
.soulDrain(5)
.minimumSouls(10)
.register()
mods.bloodmagic.tartaric_forge.recipeBuilder()
.input(item('minecraft:gold_ingot'), item('minecraft:clay'))
.output(item('minecraft:diamond'))
.drain(200)
.minimumSouls(500)
.register()
Removing Recipes
Removes the given recipe from the recipe list:
groovymods.bloodmagic.tartaric_forge.remove(RecipeTartaricForge)
Removes all recipes that match the given input:
groovymods.bloodmagic.tartaric_forge.removeByInput(IIngredient...)
Removes all recipes that match the given input:
groovymods.bloodmagic.tartaric_forge.removeByInput(NonNullList<IIngredient>)
Removes all recipes that match the given output:
groovymods.bloodmagic.tartaric_forge.removeByOutput(ItemStack)
Removes all registered recipes:
groovymods.bloodmagic.tartaric_forge.removeAll()
Example
mods.bloodmagic.tartaric_forge.removeByInput(item('minecraft:cauldron'), item('minecraft:stone'), item('minecraft:dye:4'), item('minecraft:diamond'))
mods.bloodmagic.tartaric_forge.removeByInput(item('minecraft:gunpowder'), item('minecraft:redstone'))
mods.bloodmagic.tartaric_forge.removeByOutput(item('bloodmagic:demon_crystal'))
mods.bloodmagic.tartaric_forge.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.bloodmagic.tartaric_forge.streamRecipes()