Lets you use emotes in game chat, this is a fork of fabric-emotes with minor tweaks and a config for pack developers to add their own emotes.
Config Format
The config contains an object called emotes
in which each entry is an emote usable in game. The name of the entry is what is used between semi-colons to make the emote appear e.g. :peepoBlush:
.
The value of an emote entry must either be the path to the emote texture or an object which contains the path
to the animated emote texture and the frame_time
in milliseconds that each frame should appear for.
Examples:
// String value
"peepoBlush": "aofemotes:emotes/peepo-blush.png"
// Object value
"peepoShy": {
"path": "aofemotes:emotes/animated/peepo-shy.png",
"frame_time": 250
}