Lightwell (Astral Sorcery)
Description
Converts an input item into fluid, with a chance at breaking every time fluid is produced. The amount of fluid produced per interval can be increased via starlight.
Identifier
Refer to this via any of the following:
mods.astralsorcery.lightwell/* Used as page default */
mods.astralsorcery.Lightwell
mods.astral.lightwell
mods.astral.Lightwell
Adding Recipes
Adds recipes in the format
catalyst
,output
,productionMultiplier
,shatterMultiplier
:groovymods.astralsorcery.lightwell.add(ItemStack, Fluid, float, float)
Adds recipes in the format
catalyst
,output
,productionMultiplier
,shatterMultiplier
,color
:groovymods.astralsorcery.lightwell.add(ItemStack, Fluid, float, float, Color)
Recipe Builder
Just like other recipe types, the Lightwell also uses a recipe builder.
Don't know what a builder is? Check the builder info page out.
mods.astralsorcery.lightwell.recipeBuilder()
Color
. Sets the color of the produced particles.groovycatalystColor(int) catalystColor(Color) catalystColor(int, int, int) catalystColor(int, int, int, int)
Fluid
. Sets the output fluid. Requires not null.groovyoutput(FluidStack)
ItemStack
. Sets the input item. Requires not null.groovycatalyst(ItemStack)
float
. Sets how likely the catalyst is to shatter when producing fluid, with higher being less likely but never 0. Requires greater than or equal to 0. (Default0.0f
).groovyshatterMultiplier(float)
float
. Sets the base amount of fluid produced per tick. Requires greater than or equal to 0. (Default0.0f
).groovyproductionMultiplier(float)
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
orhellfirepvp.astralsorcery.common.base.WellLiquefaction$LiquefactionEntry
).groovyregister()
Example
mods.astralsorcery.lightwell.recipeBuilder()
.catalyst(item('minecraft:stone'))
.output(fluid('astralsorcery.liquidstarlight'))
.productionMultiplier(1.0F)
.shatterMultiplier(15.0F)
.catalystColor(16725260)
.register()
mods.astralsorcery.lightwell.recipeBuilder()
.catalyst(item('minecraft:obsidian'))
.output(fluid('astralsorcery.liquidstarlight'))
.productionMultiplier(1.0F)
.shatterMultiplier(15.0F)
.register()
Removing Recipes
Removes all recipes that match the given catalyst:
groovymods.astralsorcery.lightwell.removeByCatalyst(ItemStack)
Removes all recipes that match the given input:
groovymods.astralsorcery.lightwell.removeByInput(ItemStack)
Removes all recipes that match the given output:
groovymods.astralsorcery.lightwell.removeByOutput(FluidStack)
Removes all registered recipes:
groovymods.astralsorcery.lightwell.removeAll()
Example
mods.astralsorcery.lightwell.removeByCatalyst(item('minecraft:ice'))
mods.astralsorcery.lightwell.removeByInput(item('minecraft:packed_ice'))
mods.astralsorcery.lightwell.removeByOutput(fluid('lava'))
mods.astralsorcery.lightwell.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.astralsorcery.lightwell.streamRecipes()