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