From 8337033e0a5a73bc7ce630dca44323886958c79f Mon Sep 17 00:00:00 2001 From: Censored Date: Sun, 15 Jun 2025 10:17:52 +0200 Subject: [PATCH] Added Sylph Mount --- QuestPaths/quest-v1.json | 3 ++- Questionable.Model/Questing/Converter/ActionConverter.cs | 1 + Questionable.Model/Questing/EAction.cs | 4 +++- Questionable/Data/AlliedSocietyData.cs | 1 + 4 files changed, 7 insertions(+), 2 deletions(-) diff --git a/QuestPaths/quest-v1.json b/QuestPaths/quest-v1.json index f68bfb97..0d33cca5 100644 --- a/QuestPaths/quest-v1.json +++ b/QuestPaths/quest-v1.json @@ -1061,7 +1061,8 @@ "Adloquium", "Water Cannon", "Wasshoi", - "Shrouded Luminescence" + "Shrouded Luminescence", + "Big Sneeze" ] } }, diff --git a/Questionable.Model/Questing/Converter/ActionConverter.cs b/Questionable.Model/Questing/Converter/ActionConverter.cs index c573ced9..24278b63 100644 --- a/Questionable.Model/Questing/Converter/ActionConverter.cs +++ b/Questionable.Model/Questing/Converter/ActionConverter.cs @@ -50,5 +50,6 @@ public sealed class ActionConverter() : EnumConverter(Values) { EAction.WaterCannon, "Water Cannon" }, { EAction.Wasshoi, "Wasshoi" }, { EAction.ShroudedLuminescence, "Shrouded Luminescence" }, + { EAction.BigSneeze, "Big Sneeze" } }; } diff --git a/Questionable.Model/Questing/EAction.cs b/Questionable.Model/Questing/EAction.cs index 5c2455a9..bc606f02 100644 --- a/Questionable.Model/Questing/EAction.cs +++ b/Questionable.Model/Questing/EAction.cs @@ -56,6 +56,7 @@ public enum EAction WaterCannon = 11385, Wasshoi = 11499, ShroudedLuminescence = 39505, + BigSneeze = 1765, CollectMiner = 240, LuckOfTheMountaineer = 4081, @@ -100,6 +101,7 @@ public static class EActionExtensions or EAction.HopStep or EAction.BosomBrook or EAction.Wasshoi - or EAction.ShroudedLuminescence; + or EAction.ShroudedLuminescence + or EAction.BigSneeze; } } diff --git a/Questionable/Data/AlliedSocietyData.cs b/Questionable/Data/AlliedSocietyData.cs index 7cc03c61..4abeeede 100644 --- a/Questionable/Data/AlliedSocietyData.cs +++ b/Questionable/Data/AlliedSocietyData.cs @@ -20,6 +20,7 @@ internal sealed class AlliedSocietyData { 147, new([1024777,1024912], EAetheryteLocation.FringesPeeringStones) }, { 369, new([1051798], EAetheryteLocation.KozamaukaDockPoga) }, { 391, new([1052562], EAetheryteLocation.YakTelMamook) }, + { 18, new([1052562], EAetheryteLocation.EastShroudHawthorneHut) } }.AsReadOnly(); public EAlliedSociety GetCommonAlliedSocietyTurnIn(ElementId elementId) -- 2.30.2