Questionable/Questionable.Model/Questing/Converter/EmoteConverter.cs

41 lines
1.3 KiB
C#
Raw Normal View History

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