1
0
Fork 0

added ARC quests and ability to use heavy shot skill

pot0to 2024-08-22 02:23:57 -07:00
parent 6d13d97f75
commit 3cefb8be96
3 changed files with 3 additions and 0 deletions

View File

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

View File

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

View File

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