forked from liza/Questionable
Add Esuna as action
This commit is contained in:
parent
f9c7b6c762
commit
becfac28ad
@ -736,6 +736,7 @@
|
||||
"type": "string",
|
||||
"description": "The action to use",
|
||||
"enum": [
|
||||
"Cure",
|
||||
"Esuna",
|
||||
"Physick",
|
||||
"Buffet",
|
||||
|
@ -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" },
|
||||
|
@ -6,6 +6,7 @@ namespace Questionable.Model.V1;
|
||||
[JsonConverter(typeof(ActionConverter))]
|
||||
public enum EAction
|
||||
{
|
||||
Cure = 120,
|
||||
Esuna = 7568,
|
||||
Physick = 190,
|
||||
Buffet = 4931,
|
||||
|
Loading…
Reference in New Issue
Block a user