Micah Holmes Posted January 1 Report Posted January 1 I have a pretty massive amount of items and I'd like to group them in the handbook to better organize. Ive tried a few different times but never seem to get it working. What is the correct way line of code needed for handbook?Anyone have some simple samples for grouping items? Thank you
Solution Brady_The Posted January 1 Solution Report Posted January 1 That depends what you mean with grouping. You can consolidate blocks/items in the ingredients section in the handbook. "attributes": { "handbook": { "groupBy": ["seashell-{type}-*"] } } You cannot condense the handbook entries too many ways. You can filter out variants of assets, showing for example only north-orientated assets "creativeinventory": { "general": [ "*-north" ] } Technically you can "excludeByType" assets, but that'll remove the handbook entries completely (which doesn't make them uncraftable btw). "attributes": { "handbook": { "excludeByType": { "*-eidolon": true, "*-erel": true, "*-seamonster": true, "*-thunderlord": true } } } But that's about it.
Recommended Posts