Added emote "Sundrop Dance"
authorPlogon Enjoyer <plogon_enjoyer@no-reply.com>
Sun, 22 Sep 2024 17:06:58 +0000 (01:06 +0800)
committerPlogon Enjoyer <plogon_enjoyer@no-reply.com>
Mon, 23 Sep 2024 16:15:11 +0000 (00:15 +0800)
QuestPaths/quest-v1.json
Questionable.Model/Questing/Converter/EmoteConverter.cs
Questionable.Model/Questing/EEmote.cs

index e5d946bd5dcd3516f418f6b5845010d5453fc932..0c0661f7487425c1e68db6a1c9376535d8e91deb 100644 (file)
                   "comfort",
                   "battlestance",
                   "doze",
-                  "box"
+                  "box",
+                  "sundropdance"
                 ]
               }
             }
index 183bf4806f45c688fc9ce99a8c6d51f72d944e6b..213d909a30470833f5ed8cfc5883d8411e9cdb02 100644 (file)
@@ -36,5 +36,6 @@ public sealed class EmoteConverter() : EnumConverter<EEmote>(Values)
         { EEmote.BattleStance, "battlestance" },
         { EEmote.Doze, "doze" },
         { EEmote.Box, "box" },
+        { EEmote.SundropDance, "sundropdance"}
     };
 }
index 60e9661a832a482b78b9e3a8441cf19ec909ad20..4f1b2c6f725123fdd71ce335a8797fdbf958b464 100644 (file)
@@ -37,4 +37,5 @@ public enum EEmote
     BattleStance = 121,
     Doze = 13,
     Box = 166,
+    SundropDance = 120,
 }