Primordialis Reactor (Prodigy Tech)
Description
Turns organic matter into Primordium.
Identifier
The identifier mods.prodigytech.primordialis_reactor will be used as the default on this page.
All Identifiers
Any of these can be used to refer to this compat:
groovy
mods.prodigytech.primordialisreactor
mods.prodigytech.primordialisReactor
mods.prodigytech.PrimordialisReactor
mods.prodigytech.primordialis_reactor/* Used as page default */Adding Entries
Adds an item that can be converted:
groovymods.prodigytech.primordialis_reactor.add(IIngredient)
Example
groovy
mods.prodigytech.primordialis_reactor.add(item('minecraft:diamond'))Removing Entries
Removes an item that can be converted:
groovymods.prodigytech.primordialis_reactor.remove(IIngredient)Removes all registered recipes:
groovymods.prodigytech.primordialis_reactor.removeAll()
Example
groovy
mods.prodigytech.primordialis_reactor.remove(ore('sugarcane'))
mods.prodigytech.primordialis_reactor.removeAll()Getting the value of entries
Iterates through every entry in the registry, with the ability to call remove on any element to remove it:
groovymods.prodigytech.primordialis_reactor.streamRecipes()
