Aquatic Entangler (Thermal Expansion)
Description
Controls what itemstacks can be gained and how likely each is to be obtained.
Identifier
The identifier mods.thermalexpansion.fisher will be used as the default on this page.
All Identifiers
Any of these can be used to refer to this compat:
groovy
mods.thermal.fisher
mods.thermal.Fisher
mods.thermalexpansion.fisher/* Used as page default */
mods.thermalexpansion.FisherAdding Entries
Adds recipes in the format
fish,weight:groovymods.thermalexpansion.fisher.add(ItemStack, int)
Example
groovy
mods.thermalexpansion.fisher.add(item('minecraft:clay'), 100)Removing Entries
Removes the given IIngredient as a valid output:
groovymods.thermalexpansion.fisher.remove(IIngredient)Removes all registered recipes:
groovymods.thermalexpansion.fisher.removeAll()
Example
groovy
mods.thermalexpansion.fisher.remove(item('minecraft:fish:0'))
mods.thermalexpansion.fisher.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.thermalexpansion.fisher.streamRecipes()
