Just looking to add BaseComponent support to itemmeta display name and lore please - 1.16 introduces font properties that can be used and this is required for it to work properly
an example of using this with minecraft vanilla commands would be to use this command:
`/give @p stone{display:{Lore:['[
{"text":"\\u0010","font":"directory:filename"}]']}} 1`
the font file would be located in the resource pack saved at `assets/directory/font/filename.json`
with this font profiler:
```json
{ "type": "bitmap", "file": "directory:font/image.png", "ascent": -7, "height": 16, "chars": [ "\u0010" ] }```
with an image named `image.png` saved in a resource pack at the directory `assets/directory/textures/font/image.png`
this is ideal because it allows us to infinitely expand the pallet of fonts without overwriting the primary default `minecraft:default` font