Arboreal Extractor (Thermal Expansion)
Description
Controls what items and blocks can be turned into what fluids. Output can be boosted via Fertilizer items.
Note
The Item map also controls the Resin Funnel augment for the Sawmill.
Identifier
The identifier mods.thermalexpansion.tapper will be used as the default on this page.
All Identifiers
Any of these can be used to refer to this compat:
mods.thermal.tapper
mods.thermal.Tapper
mods.thermalexpansion.tapper/* Used as page default */
mods.thermalexpansion.TapperAdding Recipes
Adds recipes to the item map in the format
itemStack,fluidStack:groovymods.thermalexpansion.tapper.addItem(ItemStack, FluidStack)Adds recipes to the block map in the format
itemStack,fluidStack, but only ifitemStackis anItemBlock:groovymods.thermalexpansion.tapper.addBlock(ItemStack, FluidStack)
Example
mods.thermalexpansion.tapper.addItem(item('minecraft:clay'), fluid('lava') * 300)
mods.thermalexpansion.tapper.addBlock(item('minecraft:clay'), fluid('lava') * 150)Removing Recipes
Removes all entries with the IIngredient input from the item map:
groovymods.thermalexpansion.tapper.removeItemByInput(IIngredient)Removes all entries with the IIngredient input from block map:
groovymods.thermalexpansion.tapper.removeBlockByInput(IIngredient)Removes all registered recipes:
groovymods.thermalexpansion.tapper.removeAll()Removes all entries in the item map:
groovymods.thermalexpansion.tapper.removeAllItems()Removes all entries in the block map:
groovymods.thermalexpansion.tapper.removeAllBlocks()
Example
mods.thermalexpansion.tapper.removeItemByInput(item('minecraft:log:1'))
mods.thermalexpansion.tapper.removeBlockByInput(item('minecraft:log'))
mods.thermalexpansion.tapper.removeAll()
mods.thermalexpansion.tapper.removeAllItems()
mods.thermalexpansion.tapper.removeAllBlocks()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.thermalexpansion.tapper.streamRecipes()Iterates through every entry in the registry, with the ability to call remove on any element to remove it:
groovymods.thermalexpansion.tapper.streamBlockRecipes()
