Utilities
Faction-specific tags
Some tags are keyed per faction. Register them on the mod bus:
bus.addListener((AddFactionTagEvent event) ->
event.faction(MY_FACTION)
.add(Registries.ENTITY_TYPE, MY_HUNTABLE_MOBS_TAG)
.addCustom(MY_CUSTOM_KEY, MY_CUSTOM_TAG));
and read them back with IFactionSpecificTags.get().get(faction, registryKey, fallback).