21 lines
666 B
C#
Raw Normal View History

using System.Collections.Generic;
2024-08-02 18:30:21 +02:00
using Questionable.Model.Common.Converter;
2024-08-02 18:30:21 +02:00
namespace Questionable.Model.Questing.Converter;
public sealed class ActionConverter() : EnumConverter<EAction>(Values)
{
private static readonly Dictionary<EAction, string> Values = new()
{
2024-08-01 00:40:52 +02:00
{ EAction.Cure, "Cure" },
{ EAction.Esuna, "Esuna" },
2024-07-24 15:45:03 +02:00
{ EAction.Physick, "Physick" },
2024-07-29 21:19:22 +02:00
{ EAction.Buffet, "Buffet" },
{ EAction.Fumigate, "Fumigate" },
2024-07-20 19:09:51 +02:00
{ EAction.SiphonSnout, "Siphon Snout" },
2024-07-12 23:58:48 +02:00
{ EAction.RedGulal, "Red Gulal" },
{ EAction.YellowGulal, "Yellow Gulal" },
{ EAction.BlueGulal, "Blue Gulal" },
};
}