Add Esuna as action

pull/14/head
Liza 2024-08-01 00:40:52 +02:00
parent f9c7b6c762
commit becfac28ad
Signed by: liza
GPG Key ID: 7199F8D727D55F67
3 changed files with 3 additions and 0 deletions

View File

@ -736,6 +736,7 @@
"type": "string",
"description": "The action to use",
"enum": [
"Cure",
"Esuna",
"Physick",
"Buffet",

View File

@ -6,6 +6,7 @@ public sealed class ActionConverter() : EnumConverter<EAction>(Values)
{
private static readonly Dictionary<EAction, string> Values = new()
{
{ EAction.Cure, "Cure" },
{ EAction.Esuna, "Esuna" },
{ EAction.Physick, "Physick" },
{ EAction.Buffet, "Buffet" },

View File

@ -6,6 +6,7 @@ namespace Questionable.Model.V1;
[JsonConverter(typeof(ActionConverter))]
public enum EAction
{
Cure = 120,
Esuna = 7568,
Physick = 190,
Buffet = 4931,