Questionable/Questionable.Model/Questing/EEmote.cs

40 lines
680 B
C#

using System.Text.Json.Serialization;
using Questionable.Model.Questing.Converter;
namespace Questionable.Model.Questing;
[JsonConverter(typeof(EmoteConverter))]
public enum EEmote
{
None = 0,
Stretch = 37,
Wave = 16,
Rally = 34,
Deny = 25,
Pray = 58,
Slap = 111,
Doubt = 12,
Psych = 30,
Cheer = 6,
Happy = 48,
Poke = 28,
Flex = 139,
Soothe = 35,
Me = 23,
Welcome = 41,
ImperialSalute = 59,
Pet = 105,
Dance = 11,
Respect = 140,
Lookout = 22,
Kneel = 19,
Bow = 5,
Uchiwasshoi = 278,
Clap = 7,
VictoryPose = 122,
Comfort = 9,
BattleStance = 121,
Doze = 13,
}