Skip to content

Arboreal Extractor Fertilizer (Thermal Expansion)

Description

Controls what items can be used in the fertilizer slot of the Arboreal Extractor Fertilizer and how effective they are.

Identifier

The identifier mods.thermalexpansion.tapper_fertilizer 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.tapperfertilizer
mods.thermal.tapperFertilizer
mods.thermal.TapperFertilizer
mods.thermal.tapper_fertilizer
mods.thermalexpansion.tapperfertilizer
mods.thermalexpansion.tapperFertilizer
mods.thermalexpansion.TapperFertilizer
mods.thermalexpansion.tapper_fertilizer/* Used as page default */

Adding Entries

  • Adds recipes in the format stack, multiplier:

    groovy
    mods.thermalexpansion.tapper_fertilizer.add(ItemStack, int)
Example
groovy
mods.thermalexpansion.tapper_fertilizer.add(item('minecraft:clay'), 1000)

Removing Entries

  • Removes the given IIngredient as a valid fertilizer item:

    groovy
    mods.thermalexpansion.tapper_fertilizer.remove(IIngredient)
  • Removes all registered recipes:

    groovy
    mods.thermalexpansion.tapper_fertilizer.removeAll()
Example
groovy
mods.thermalexpansion.tapper_fertilizer.remove(item('thermalfoundation:fertilizer:2'))
mods.thermalexpansion.tapper_fertilizer.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:

    groovy
    mods.thermalexpansion.tapper_fertilizer.streamRecipes()

Contributors

© 2024 CleanroomMC. All Rights Reserved.