Re-ordered Bootshine
authorPlogon Enjoyer <plogon_enjoyer@no-reply.com>
Sat, 31 Aug 2024 10:08:52 +0000 (18:08 +0800)
committerPlogon Enjoyer <plogon_enjoyer@no-reply.com>
Sat, 31 Aug 2024 10:14:38 +0000 (18:14 +0800)
QuestPaths/quest-v1.json
Questionable.Model/Questing/Converter/ActionConverter.cs

index b56e9f823e19350ddd196f7b312a35597c08500c..6279b7aceaa2e789b91fd66100ac8e3897b5e8cc 100644 (file)
                 "description": "The action to use",
                 "enum": [
                   "Heavy Swing",
+                  "Bootshine",
                   "Heavy Shot",
                   "Cure",
                   "Cure II",
                   "Yellow Gulal",
                   "Blue Gulal",
                   "Electric Flux",
-                  "Hop-step",
-                  "Bootshine"
+                  "Hop-step"
                 ]
               }
             },
index 27dd128389929a82a176294ebf503991dc93906c..c03994937d5090e522d1da7f894425824d0cb0f3 100644 (file)
@@ -8,6 +8,7 @@ public sealed class ActionConverter() : EnumConverter<EAction>(Values)
     private static readonly Dictionary<EAction, string> Values = new()
     {
         { EAction.HeavySwing, "Heavy Swing" },
+        { EAction.Bootshine, "Bootshine" },
         { EAction.HeavyShot, "Heavy Shot" },
         { EAction.Cure, "Cure" },
         { EAction.Cure2, "Cure II" },
@@ -23,6 +24,5 @@ public sealed class ActionConverter() : EnumConverter<EAction>(Values)
         { EAction.BlueGulal, "Blue Gulal" },
         { EAction.ElectrixFlux, "Electric Flux" },
         { EAction.HopStep, "Hop-step" },
-        { EAction.Bootshine, "Bootshine" },
     };
 }