diff --git a/QuestPaths/quest-v1.json b/QuestPaths/quest-v1.json index 09e47075..c7ebd5fa 100644 --- a/QuestPaths/quest-v1.json +++ b/QuestPaths/quest-v1.json @@ -856,6 +856,7 @@ "Heavy Swing", "Heavy Shot", "Cure", + "Cure II", "Esuna", "Physick", "Buffet (Sanuwa)", diff --git a/Questionable.Model/Questing/Converter/ActionConverter.cs b/Questionable.Model/Questing/Converter/ActionConverter.cs index 42e6e384..5c6bea0a 100644 --- a/Questionable.Model/Questing/Converter/ActionConverter.cs +++ b/Questionable.Model/Questing/Converter/ActionConverter.cs @@ -10,6 +10,7 @@ public sealed class ActionConverter() : EnumConverter(Values) { EAction.HeavySwing, "Heavy Swing" }, { EAction.HeavyShot, "Heavy Shot" }, { EAction.Cure, "Cure" }, + { EAction.Cure2, "Cure II" }, { EAction.Esuna, "Esuna" }, { EAction.Physick, "Physick" }, { EAction.BuffetSanuwa, "Buffet (Sanuwa)" }, diff --git a/Questionable.Model/Questing/EAction.cs b/Questionable.Model/Questing/EAction.cs index 15e7f842..5ca20daf 100644 --- a/Questionable.Model/Questing/EAction.cs +++ b/Questionable.Model/Questing/EAction.cs @@ -9,6 +9,7 @@ public enum EAction HeavySwing = 31, HeavyShot = 97, Cure = 120, + Cure2 = 135, Esuna = 7568, Physick = 190, BuffetSanuwa = 4931,