2024-05-29 19:22:58 +00:00
|
|
|
|
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;
|
2024-05-29 19:22:58 +00:00
|
|
|
|
|
|
|
|
|
[JsonConverter(typeof(EmoteConverter))]
|
2024-06-14 09:37:33 +00:00
|
|
|
|
public enum EEmote
|
2024-05-27 19:54:34 +00:00
|
|
|
|
{
|
|
|
|
|
None = 0,
|
|
|
|
|
|
|
|
|
|
Stretch = 37,
|
|
|
|
|
Wave = 16,
|
|
|
|
|
Rally = 34,
|
|
|
|
|
Deny = 25,
|
2024-05-29 19:22:58 +00:00
|
|
|
|
Pray = 58,
|
2024-06-13 15:35:33 +00:00
|
|
|
|
Slap = 111,
|
|
|
|
|
Doubt = 12,
|
|
|
|
|
Psych = 30,
|
2024-07-07 16:36:53 +00:00
|
|
|
|
Cheer = 6,
|
|
|
|
|
Happy = 48,
|
2024-07-08 18:46:01 +00:00
|
|
|
|
Poke = 28,
|
|
|
|
|
Flex = 139,
|
2024-07-11 00:56:42 +00:00
|
|
|
|
Soothe = 35,
|
2024-07-12 21:58:48 +00:00
|
|
|
|
Me = 23,
|
2024-07-13 19:58:41 +00:00
|
|
|
|
Welcome = 41,
|
|
|
|
|
ImperialSalute = 59,
|
2024-07-17 02:31:54 +00:00
|
|
|
|
Pet = 105,
|
2024-07-17 18:40:38 +00:00
|
|
|
|
Dance = 11,
|
2024-07-18 14:33:48 +00:00
|
|
|
|
Respect = 140,
|
2024-07-18 16:38:23 +00:00
|
|
|
|
Lookout = 22,
|
2024-07-24 01:33:03 +00:00
|
|
|
|
Kneel = 19,
|
2024-07-25 00:18:17 +00:00
|
|
|
|
Bow = 5,
|
2024-08-08 22:53:05 +00:00
|
|
|
|
Uchiwasshoi = 278,
|
2024-08-12 14:21:17 +00:00
|
|
|
|
Clap = 7,
|
2024-08-15 00:09:01 +00:00
|
|
|
|
VictoryPose = 122,
|
2024-09-06 11:25:10 +00:00
|
|
|
|
Comfort = 9,
|
2024-09-07 23:40:05 +00:00
|
|
|
|
BattleStance = 121,
|
2024-05-27 19:54:34 +00:00
|
|
|
|
}
|