49 lines
830 B
C#
Raw Normal View History

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