From 47e779ea817773a5c80bffdb140006445ed6d75e Mon Sep 17 00:00:00 2001
From: Plogon Enjoyer <plogon_enjoyer@no-reply.com>
Date: Tue, 3 Sep 2024 23:34:31 +0800
Subject: [PATCH] Added new action Trample

---
 QuestPaths/quest-v1.json                                 | 1 +
 Questionable.Model/Questing/Converter/ActionConverter.cs | 1 +
 Questionable.Model/Questing/EAction.cs                   | 2 ++
 3 files changed, 4 insertions(+)

diff --git a/QuestPaths/quest-v1.json b/QuestPaths/quest-v1.json
index c7ebd5fa..68a7aead 100644
--- a/QuestPaths/quest-v1.json
+++ b/QuestPaths/quest-v1.json
@@ -861,6 +861,7 @@
                   "Physick",
                   "Buffet (Sanuwa)",
                   "Buffet (Griffin)",
+                  "Trample",
                   "Fumigate",
                   "Siphon Snout",
                   "Cannonfire",
diff --git a/Questionable.Model/Questing/Converter/ActionConverter.cs b/Questionable.Model/Questing/Converter/ActionConverter.cs
index 5c6bea0a..737a818e 100644
--- a/Questionable.Model/Questing/Converter/ActionConverter.cs
+++ b/Questionable.Model/Questing/Converter/ActionConverter.cs
@@ -15,6 +15,7 @@ public sealed class ActionConverter() : EnumConverter<EAction>(Values)
         { EAction.Physick, "Physick" },
         { EAction.BuffetSanuwa, "Buffet (Sanuwa)" },
         { EAction.BuffetGriffin, "Buffet (Griffin)" },
+        { EAction.Trample, "Trample" },
         { EAction.Fumigate, "Fumigate" },
         { EAction.SiphonSnout, "Siphon Snout" },
         { EAction.Cannonfire, "Cannonfire" },
diff --git a/Questionable.Model/Questing/EAction.cs b/Questionable.Model/Questing/EAction.cs
index 5ca20daf..eac75924 100644
--- a/Questionable.Model/Questing/EAction.cs
+++ b/Questionable.Model/Questing/EAction.cs
@@ -14,6 +14,7 @@ public enum EAction
     Physick = 190,
     BuffetSanuwa = 4931,
     BuffetGriffin = 4583,
+    Trample = 4585,
     Fumigate = 5872,
     SiphonSnout = 18187,
     Cannonfire = 20121,
@@ -48,6 +49,7 @@ public static class EActionExtensions
         return action
             is EAction.BuffetSanuwa
             or EAction.BuffetGriffin
+            or EAction.Trample
             or EAction.Fumigate
             or EAction.SiphonSnout
             or EAction.Cannonfire