forked from liza/Questionable
Added MNK action "Twin Snakes"
This commit is contained in:
parent
47d9f090a2
commit
e56beb9987
@ -854,6 +854,8 @@
|
||||
"description": "The action to use",
|
||||
"enum": [
|
||||
"Heavy Swing",
|
||||
"Bootshine",
|
||||
"Twin Snakes",
|
||||
"Heavy Shot",
|
||||
"Cure",
|
||||
"Cure II",
|
||||
|
@ -8,6 +8,8 @@ public sealed class ActionConverter() : EnumConverter<EAction>(Values)
|
||||
private static readonly Dictionary<EAction, string> Values = new()
|
||||
{
|
||||
{ EAction.HeavySwing, "Heavy Swing" },
|
||||
{ EAction.Bootshine, "Bootshine" },
|
||||
{ EAction.TwinSnakes, "Twin Snakes" },
|
||||
{ EAction.HeavyShot, "Heavy Shot" },
|
||||
{ EAction.Cure, "Cure" },
|
||||
{ EAction.Cure2, "Cure II" },
|
||||
|
@ -7,6 +7,8 @@ namespace Questionable.Model.Questing;
|
||||
public enum EAction
|
||||
{
|
||||
HeavySwing = 31,
|
||||
Bootshine = 53,
|
||||
TwinSnakes = 61,
|
||||
HeavyShot = 97,
|
||||
Cure = 120,
|
||||
Cure2 = 135,
|
||||
|
Loading…
Reference in New Issue
Block a user