From 9329bb7cd608421885bdcc14cb00d29b12512277 Mon Sep 17 00:00:00 2001 From: Plogon Enjoyer Date: Sun, 20 Oct 2024 00:51:34 +0800 Subject: [PATCH] Added action Fiery Breath --- QuestPaths/quest-v1.json | 1 + Questionable.Model/Questing/Converter/ActionConverter.cs | 1 + Questionable.Model/Questing/EAction.cs | 4 +++- 3 files changed, 5 insertions(+), 1 deletion(-) diff --git a/QuestPaths/quest-v1.json b/QuestPaths/quest-v1.json index 5ef7ce77..58c1d16a 100644 --- a/QuestPaths/quest-v1.json +++ b/QuestPaths/quest-v1.json @@ -946,6 +946,7 @@ "Physick", "Aspected Benefic", "Form Shift", + "Fiery Breath", "Buffet (Sanuwa)", "Buffet (Griffin)", "Trample", diff --git a/Questionable.Model/Questing/Converter/ActionConverter.cs b/Questionable.Model/Questing/Converter/ActionConverter.cs index d3a90500..86a1800b 100644 --- a/Questionable.Model/Questing/Converter/ActionConverter.cs +++ b/Questionable.Model/Questing/Converter/ActionConverter.cs @@ -22,6 +22,7 @@ public sealed class ActionConverter() : EnumConverter(Values) { EAction.Physick, "Physick" }, { EAction.AspectedBenefic, "Aspected Benefic" }, { EAction.FormShift, "Form Shift" }, + { EAction.FieryBreath, "Fiery Breath" }, { EAction.BuffetSanuwa, "Buffet (Sanuwa)" }, { EAction.BuffetGriffin, "Buffet (Griffin)" }, { EAction.Trample, "Trample" }, diff --git a/Questionable.Model/Questing/EAction.cs b/Questionable.Model/Questing/EAction.cs index 5fd17258..4f798797 100644 --- a/Questionable.Model/Questing/EAction.cs +++ b/Questionable.Model/Questing/EAction.cs @@ -21,6 +21,7 @@ public enum EAction Physick = 190, AspectedBenefic = 3595, FormShift = 4262, + FieryBreath = 1764, BuffetSanuwa = 4931, BuffetGriffin = 4583, Trample = 4585, @@ -70,7 +71,8 @@ public static class EActionExtensions public static bool RequiresMount(this EAction action) { return action - is EAction.BuffetSanuwa + is EAction.FieryBreath + or EAction.BuffetSanuwa or EAction.BuffetGriffin or EAction.Trample or EAction.Fumigate