[Suggestion] Mob effect item scroll
Cicopath opened this issue ยท 3 comments
Suggestion 1
At the moment, the item cycling of all items that give the respective effect is way too fast, about one cycle every second. This doesn't give players enough time to actually read about the item without having to wait for the item to appear and search for the item themselves in the JEI/REI/EMI menu.
It would be extraordinarily beneficial if players were allowed to scroll through the items instead, whether vertically or horizontally. This would make it so much easier to see every item that gives the effect!
** Suggestion 2**
There are some mods whose items are not being considered due to certain NBT tags. Most notably:
- Zenith's (Fabric port of Apotheosis) potion charms,
- Extra Alchemy's potion rings and breakable potions,
- Spectrum's infused beverages, and
- Botania's flasks, vials, blood pendants, and incense sticks
are all not counted towards any of the effects they give.
I actually don't know who is supposed to add compatibility, whether you or the respective mod. Regardless, this compatibility would be greatly beneficial!
I hope you take these into consideration. Thank you!
ill see if i can do somethin g for the scrollbar. The cycling itself is handled by the recipe viewer mod directly, its same effect that occurs when it shows you items in a tab. As for compatibility its really something that the target mod should add. I added some recipes internally myself but i can do that for all mods, especially the ones im not familar with. Mods can just add a simple JEED recipe for their items
Sounds good!
The only reason I mentioned compatibility with the other mods is because I noticed anything NBT-related, like potions and tipped arrows, always come after the items that are added via the jeed:effect_provider
recipe type. I'm looking to keep this consistency by putting any modded items with NBTs that act similar to potions at the end of the list rather than at the start. It's not at all a big deal, just... perfectionism, I suppose, lol.
I haven't worked with adding NBT items using JEED's custom recipe type. would it work something like this? (just an example):
{
"type": "jeed:effect_provider",
"effect": "minecraft:water_breathing",
"providers": [
{
"fabric:type": "fabric:nbt",
"base": {
"item": "minecraft:potion"
},
"nbt": "{\"Potion\": \"minecraft:water\"}",
"strict": "true"
}
]
}
This would not only help me for my modpack, but also creating pull requests to add compatibility with JEED for other mods