this repo has no description
1onEvent('jei.hide.items', event => {
2 event.hide('alexsmobs:spawn_egg_grizzly_bear')
3 event.hide('alexsmobs:bear_fur')
4 event.hide('alexsmobs:banner_pattern_bear')
5
6 const carriers = [
7 "minecraft:potion",
8 "minecraft:splash_potion",
9 "minecraft:lingering_potion",
10 "minecraft:tipped_arrow"
11 ]
12
13 const potions = [
14 "alexsmobs:knockback_resistance",
15 "alexsmobs:long_knockback_resistance",
16 "alexsmobs:strong_knockback_resistance"
17 ]
18
19 for (const carrier of carriers) {
20 for (const potion of potions) {
21 event.hide(Item.of(carrier, { Potion: potion }))
22 }
23 }
24})