Added Bootshine to the list of actions allowed

This commit is contained in:
Plogon Enjoyer 2024-08-26 01:18:45 +08:00
parent da3f1acf54
commit 2ffbbd30d5
3 changed files with 6 additions and 2 deletions

View File

@ -851,7 +851,8 @@
"Yellow Gulal", "Yellow Gulal",
"Blue Gulal", "Blue Gulal",
"Electric Flux", "Electric Flux",
"Hop-step" "Hop-step",
"Bootshine"
] ]
} }
}, },

View File

@ -22,5 +22,6 @@ public sealed class ActionConverter() : EnumConverter<EAction>(Values)
{ EAction.BlueGulal, "Blue Gulal" }, { EAction.BlueGulal, "Blue Gulal" },
{ EAction.ElectrixFlux, "Electric Flux" }, { EAction.ElectrixFlux, "Electric Flux" },
{ EAction.HopStep, "Hop-step" }, { EAction.HopStep, "Hop-step" },
{ EAction.Bootshine, "Bootshine" },
}; };
} }

View File

@ -7,6 +7,7 @@ namespace Questionable.Model.Questing;
public enum EAction public enum EAction
{ {
HeavySwing = 31, HeavySwing = 31,
Bootshine = 53
HeavyShot = 97, HeavyShot = 97,
Cure = 120, Cure = 120,
Esuna = 7568, Esuna = 7568,
@ -54,6 +55,7 @@ public static class EActionExtensions
or EAction.YellowGulal or EAction.YellowGulal
or EAction.BlueGulal or EAction.BlueGulal
or EAction.ElectrixFlux or EAction.ElectrixFlux
or EAction.HopStep; or EAction.HopStep
or EAction.Bootshine;
} }
} }