1
0
Fork 0

resolved merge conflicts

BardClassQuests
pot0to 2024-08-22 15:33:18 -07:00
parent d010dec9f6
commit 6e7ade5ee7
3 changed files with 3 additions and 0 deletions

View File

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

View File

@ -8,6 +8,7 @@ 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" },

View File

@ -7,6 +7,7 @@ namespace Questionable.Model.Questing;
public enum EAction
{
HeavySwing = 31,
HeavyShot = 97,
Cure = 120,
Esuna = 7568,
Physick = 190,