Category Catalysts (Just Enough Items)
Description
Modify the items shown on the left of JEI Categories which indicate where the recipe takes place.
Identifier
Refer to this via any of the following:
groovy
mods.hei.catalyst
mods.hei.Catalyst
mods.jei.catalyst/* Used as page default */
mods.jei.Catalyst
Adding Entries
Adds the given catalyst items to the given category:
groovymods.jei.catalyst.add(String, Collection<ItemStack>)
Adds the given catalyst items to the given category:
groovymods.jei.catalyst.add(String, ItemStack)
Adds the given catalyst items to the given category:
groovymods.jei.catalyst.add(String, ItemStack...)
Example
groovy
mods.jei.catalyst.add('minecraft.smelting', item('minecraft:clay') * 8, item('minecraft:cobblestone'))
Removing Entries
Removes the given catalyst items from the given category:
groovymods.jei.catalyst.remove(String, Collection<ItemStack>)
Removes the given catalyst items from the given category:
groovymods.jei.catalyst.remove(String, ItemStack)
Removes the given catalyst items from the given category:
groovymods.jei.catalyst.remove(String, ItemStack...)
Removes all catalyst items from the given category:
groovymods.jei.catalyst.removeByType(String)
Example
groovy
mods.jei.catalyst.remove('minecraft.smelting', item('minecraft:furnace'))
mods.jei.catalyst.removeByType('minecraft.anvil')