2024-05-29 21:22:58 +02:00
|
|
|
|
using System.Collections.Generic;
|
2024-08-02 18:30:21 +02:00
|
|
|
|
using Questionable.Model.Common.Converter;
|
2024-05-27 21:54:34 +02:00
|
|
|
|
|
2024-08-02 18:30:21 +02:00
|
|
|
|
namespace Questionable.Model.Questing.Converter;
|
2024-05-27 21:54:34 +02:00
|
|
|
|
|
2024-06-14 11:37:33 +02:00
|
|
|
|
public sealed class EmoteConverter() : EnumConverter<EEmote>(Values)
|
2024-05-27 21:54:34 +02:00
|
|
|
|
{
|
2024-05-29 21:22:58 +02:00
|
|
|
|
private static readonly Dictionary<EEmote, string> Values = new()
|
2024-05-27 21:54:34 +02:00
|
|
|
|
{
|
|
|
|
|
{ EEmote.Stretch, "stretch" },
|
|
|
|
|
{ EEmote.Wave, "wave" },
|
|
|
|
|
{ EEmote.Rally, "rally" },
|
|
|
|
|
{ EEmote.Deny, "deny" },
|
2024-05-29 21:22:58 +02:00
|
|
|
|
{ EEmote.Pray, "pray" },
|
2024-06-13 17:35:33 +02:00
|
|
|
|
{ EEmote.Slap, "slap" },
|
|
|
|
|
{ EEmote.Doubt, "doubt" },
|
|
|
|
|
{ EEmote.Psych, "psych" },
|
2024-07-07 18:36:53 +02:00
|
|
|
|
{ EEmote.Cheer, "cheer" },
|
|
|
|
|
{ EEmote.Happy, "happy" },
|
2024-07-08 20:46:01 +02:00
|
|
|
|
{ EEmote.Poke, "poke" },
|
|
|
|
|
{ EEmote.Flex, "flex" },
|
2024-07-11 02:56:42 +02:00
|
|
|
|
{ EEmote.Soothe, "soothe" },
|
2024-07-12 23:58:48 +02:00
|
|
|
|
{ EEmote.Me, "me" },
|
2024-07-13 21:58:41 +02:00
|
|
|
|
{ EEmote.Welcome, "welcome" },
|
|
|
|
|
{ EEmote.ImperialSalute, "imperialsalute" },
|
2024-07-17 04:31:54 +02:00
|
|
|
|
{ EEmote.Pet, "pet" },
|
2024-07-17 20:40:38 +02:00
|
|
|
|
{ EEmote.Dance, "dance" },
|
2024-07-18 16:33:48 +02:00
|
|
|
|
{ EEmote.Respect, "respect" },
|
2024-07-18 18:38:23 +02:00
|
|
|
|
{ EEmote.Lookout, "lookout" },
|
2024-07-24 03:33:03 +02:00
|
|
|
|
{ EEmote.Kneel, "kneel" },
|
2024-07-25 02:18:17 +02:00
|
|
|
|
{ EEmote.Bow, "bow" },
|
2024-08-09 00:53:05 +02:00
|
|
|
|
{ EEmote.Uchiwasshoi, "uchiwasshoi" },
|
2024-08-12 16:21:17 +02:00
|
|
|
|
{ EEmote.Clap, "clap" },
|
2024-08-15 02:09:01 +02:00
|
|
|
|
{ EEmote.VictoryPose, "victorypose" },
|
2024-09-06 13:25:10 +02:00
|
|
|
|
{ EEmote.Comfort, "comfort" },
|
2024-09-08 01:40:05 +02:00
|
|
|
|
{ EEmote.BattleStance, "battlestance" },
|
2024-09-08 14:38:24 +02:00
|
|
|
|
{ EEmote.Doze, "doze" },
|
2024-09-16 04:42:35 +02:00
|
|
|
|
{ EEmote.Box, "box" },
|
2024-05-27 21:54:34 +02:00
|
|
|
|
};
|
|
|
|
|
}
|