From 71c13b6742f25f9d27944a0d12c893eabcbc3a4b Mon Sep 17 00:00:00 2001 From: Plogon Enjoyer Date: Sun, 1 Sep 2024 22:15:46 +0800 Subject: [PATCH] Added "Aspected Benefic" to the list of Actions --- QuestPaths/quest-v1.json | 1 + Questionable.Model/Questing/Converter/ActionConverter.cs | 1 + Questionable.Model/Questing/EAction.cs | 1 + 3 files changed, 3 insertions(+) diff --git a/QuestPaths/quest-v1.json b/QuestPaths/quest-v1.json index 8068adef..3f3cb325 100644 --- a/QuestPaths/quest-v1.json +++ b/QuestPaths/quest-v1.json @@ -875,6 +875,7 @@ "Cure II", "Esuna", "Physick", + "Aspected Benefic", "Form Shift", "Buffet (Sanuwa)", "Buffet (Griffin)", diff --git a/Questionable.Model/Questing/Converter/ActionConverter.cs b/Questionable.Model/Questing/Converter/ActionConverter.cs index 2ccd2388..d5de1fc1 100644 --- a/Questionable.Model/Questing/Converter/ActionConverter.cs +++ b/Questionable.Model/Questing/Converter/ActionConverter.cs @@ -17,6 +17,7 @@ public sealed class ActionConverter() : EnumConverter(Values) { EAction.Cure2, "Cure II" }, { EAction.Esuna, "Esuna" }, { EAction.Physick, "Physick" }, + { EAction.AspectedBenefic, "Aspected Benefic" }, { EAction.FormShift, "Form Shift" }, { EAction.BuffetSanuwa, "Buffet (Sanuwa)" }, { EAction.BuffetGriffin, "Buffet (Griffin)" }, diff --git a/Questionable.Model/Questing/EAction.cs b/Questionable.Model/Questing/EAction.cs index f3f905c9..fc4afa38 100644 --- a/Questionable.Model/Questing/EAction.cs +++ b/Questionable.Model/Questing/EAction.cs @@ -16,6 +16,7 @@ public enum EAction Cure2 = 135, Esuna = 7568, Physick = 190, + AspectedBenefic = 3595, FormShift = 4262, BuffetSanuwa = 4931, BuffetGriffin = 4583,