From 79375ad2a4e7055a1a184c749b5843cd980f55eb 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 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,