Solar Neutron Activator (Mekanism)
Description
Converts an input gasstack into an output gasstack while exposed to the sun.
Identifier
Refer to this via any of the following:
mods.mekanism.solar_neutron_activator/* Used as page default */
mods.mekanism.solarneutronactivator
mods.mekanism.solarNeutronActivator
mods.mekanism.SolarNeutronActivator
mods.mekanism.SNA
mods.mekanism.sna
Adding Recipes
Adds recipes in the format
input
,output
:groovymods.mekanism.solar_neutron_activator.add(GasStack, GasStack)
Example
mods.mekanism.solar_neutron_activator.add(gas('water'), gas('hydrogen'))
Recipe Builder
Just like other recipe types, the Solar Neutron Activator also uses a recipe builder.
Don't know what a builder is? Check the builder info page out.
mods.mekanism.solar_neutron_activator.recipeBuilder()
GasStackList
. Sets the gas inputs of the recipe. Requires exactly 1.groovygasInput(GasStack) gasInput(GasStack...) gasInput(Collection<GasStack>)
GasStackList
. Sets the gas outputs of the recipe. Requires exactly 1.groovygasOutput(GasStack) gasOutput(GasStack...) gasOutput(Collection<GasStack>)
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
ormekanism.common.recipe.machines.SolarNeutronRecipe
).groovyregister()
Example
mods.mekanism.solar_neutron_activator.recipeBuilder()
.gasInput(gas('water'))
.gasOutput(gas('hydrogen'))
.register()
Removing Recipes
Removes all recipes that match the given input:
groovymods.mekanism.solar_neutron_activator.removeByInput(GasStack)
Removes all registered recipes:
groovymods.mekanism.solar_neutron_activator.removeAll()
Example
mods.mekanism.solar_neutron_activator.removeByInput(gas('lithium'))
mods.mekanism.solar_neutron_activator.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.mekanism.solar_neutron_activator.streamRecipes()