forked from liza/Questionable
27 lines
966 B
C#
27 lines
966 B
C#
using System.Collections.Generic;
|
|
using Questionable.Model.Common.Converter;
|
|
|
|
namespace Questionable.Model.Questing.Converter;
|
|
|
|
public sealed class ActionConverter() : EnumConverter<EAction>(Values)
|
|
{
|
|
private static readonly Dictionary<EAction, string> Values = new()
|
|
{
|
|
{ EAction.HeavySwing, "Heavy Swing" },
|
|
{ EAction.HeavyShot, "Heavy Shot" },
|
|
{ EAction.Cure, "Cure" },
|
|
{ EAction.Esuna, "Esuna" },
|
|
{ EAction.Physick, "Physick" },
|
|
{ EAction.BuffetSanuwa, "Buffet (Sanuwa)" },
|
|
{ EAction.BuffetGriffin, "Buffet (Griffin)" },
|
|
{ EAction.Fumigate, "Fumigate" },
|
|
{ EAction.SiphonSnout, "Siphon Snout" },
|
|
{ EAction.Cannonfire, "Cannonfire" },
|
|
{ EAction.RedGulal, "Red Gulal" },
|
|
{ EAction.YellowGulal, "Yellow Gulal" },
|
|
{ EAction.BlueGulal, "Blue Gulal" },
|
|
{ EAction.ElectrixFlux, "Electric Flux" },
|
|
{ EAction.HopStep, "Hop-step" },
|
|
};
|
|
}
|