Description
JEI addon mod that defines item group that are hidden by default in JEI and Triggers that unlock them during gameplay.
For more global solution, i reccommend Discovered Enough Items (DEI)
Defining Item Groups
JSON
jei-discovery.json contains all item group definition and information about which ones are discovered. By default, Nether items are discovered by going to the Nether dimention, End items are discovered by going to the end dimention and Sculk items are discovered by entering Deep Dark biome.
item groups are saved in item_groups list. Each group has following fields:
Item Group Fields
Name
name of the item group. Not appearing in game, used for storaging the data.
triggerType
Type of the trigger that causes item group discovery
Available trigger types
- DIMENSION - on crossing into a dimention
- BIOME - on crossing into a biome
- EFFECT - on getting an effect
- ADVANCEMENT - on completing an advancement
- ITEM - on picking up an item
- MOB - on killing a mob
triggerValue
What value should the trigger accept to happen.
f.e.
triggerType = EFFECT,
triggerValue = regeneration
keywords
What should items in this group contain to be hidden until its group is discovered. Should be a list of strings.
f.e.
"name": "Nether",
"triggerType": "DIMENSION",
"triggerValue": "the_nether",
"keywords": ["nether", "quartz", "blaze", "wither", "ghast", "crimson", "warped"],
namespaces
What mods should be included in the item group. f.e. for hiding nether items, hide all items from better_end mod.