diff --git a/QuestPaths/quest-v1.json b/QuestPaths/quest-v1.json index 69b6c854..f3e0c96a 100644 --- a/QuestPaths/quest-v1.json +++ b/QuestPaths/quest-v1.json @@ -860,6 +860,7 @@ "Cure II", "Esuna", "Physick", + "Aspected Benefic", "Buffet (Sanuwa)", "Buffet (Griffin)", "Fumigate", diff --git a/Questionable.Model/Questing/Converter/ActionConverter.cs b/Questionable.Model/Questing/Converter/ActionConverter.cs index 5c6bea0a..598386f2 100644 --- a/Questionable.Model/Questing/Converter/ActionConverter.cs +++ b/Questionable.Model/Questing/Converter/ActionConverter.cs @@ -13,6 +13,7 @@ public sealed class ActionConverter() : EnumConverter(Values) { EAction.Cure2, "Cure II" }, { EAction.Esuna, "Esuna" }, { EAction.Physick, "Physick" }, + { EAction.AspectedBenefic, "Aspected Benefic" }, { EAction.BuffetSanuwa, "Buffet (Sanuwa)" }, { EAction.BuffetGriffin, "Buffet (Griffin)" }, { EAction.Fumigate, "Fumigate" }, diff --git a/Questionable.Model/Questing/EAction.cs b/Questionable.Model/Questing/EAction.cs index 89605e87..7a1cb4b1 100644 --- a/Questionable.Model/Questing/EAction.cs +++ b/Questionable.Model/Questing/EAction.cs @@ -12,6 +12,7 @@ public enum EAction Cure2 = 135, Esuna = 7568, Physick = 190, + AspectedBenefic = 3595, BuffetSanuwa = 4931, BuffetGriffin = 4583, Fumigate = 5872,