JEIcats — Utility for Creating Custom JEI Tabs
Alpha Version Warning
This is a preliminary version of the modification where functionality may change. Bug reports and improvement suggestions can be submitted on GitHub.
This tool will be particularly useful for modpack developers. It allows creating special tabs in the JEI interface that display information about obtaining various items and liquids.
Some modifications contain recipes that may not be fully clear to players or are not displayed in the standard JEI interface at all. Using this addon, you can add simple dependencies for items and liquids, making their creation process more transparent.
Configuration Settings
Examine the jeicats.cfg configuration file and make necessary changes according to your needs.
Here is an example configuration file that will help better understand its structure:
# Configuration file
general {
fluidoutputs {
# The first element is always a machine block.
# Format: mod:machine@meta, liquid
# Example: minecraft:furnace, lava
S:fluid_recipes <
minecraft:furnace, lava
ic2:te@5, ic2preheated_water
>
}
itemoutputs {
# The first element is always a machine block.
# Format: mod:machine@meta, mod:item@meta
# Example: minecraft:furnace, minecraft:stone
S:item_recipes <
minecraft:furnace, minecraft:flint
minecraft:furnace, minecraft:stone
>
}
}