Questionable/Questionable.Model/Questing/EEmote.cs

47 lines
793 B
C#
Raw Normal View History

using System.Text.Json.Serialization;
2024-08-02 16:30:21 +00:00
using Questionable.Model.Questing.Converter;
2024-05-27 19:54:34 +00:00
2024-08-02 16:30:21 +00:00
namespace Questionable.Model.Questing;
[JsonConverter(typeof(EmoteConverter))]
2024-06-14 09:37:33 +00:00
public enum EEmote
2024-05-27 19:54:34 +00:00
{
None = 0,
Bow = 5,
Cheer = 6,
Clap = 7,
Comfort = 9,
Dance = 11,
Doubt = 12,
Doze = 13,
2024-05-27 19:54:34 +00:00
Wave = 16,
Joy = 18,
Kneel = 19,
Lookout = 22,
Me = 23,
2024-05-27 19:54:34 +00:00
Deny = 25,
Poke = 28,
Psych = 30,
Rally = 34,
Soothe = 35,
Stretch = 37,
2024-07-13 19:58:41 +00:00
Welcome = 41,
ExamineSelf = 44,
Happy = 48,
Disappointed = 49,
Pray = 58,
2024-07-13 19:58:41 +00:00
ImperialSalute = 59,
Cry = 74,
2024-07-17 02:31:54 +00:00
Pet = 105,
Slap = 111,
SundropDance = 120,
2024-09-07 23:40:05 +00:00
BattleStance = 121,
VictoryPose = 122,
Flex = 139,
Respect = 140,
2024-09-16 02:42:35 +00:00
Box = 166,
Uchiwasshoi = 278
2024-05-27 19:54:34 +00:00
}