Compare commits

..

2 Commits

Author SHA1 Message Date
Plogon Enjoyer 8a76929b18 Added all MNK Stormblood class quests 2024-08-31 20:45:32 +08:00
Plogon Enjoyer d208c6663d Added MNK actions "Twin Snakes", "Demolish", "Dragon Kick", and "Form
Shift"
2024-08-31 18:37:28 +08:00
3 changed files with 4 additions and 0 deletions

View File

@ -854,6 +854,7 @@
"description": "The action to use",
"enum": [
"Heavy Swing",
"Bootshine",
"Twin Snakes",
"Demolish",
"Dragon Kick",

View File

@ -1,4 +1,5 @@
using System.Collections.Generic;
using System.Globalization;
using Questionable.Model.Common.Converter;
namespace Questionable.Model.Questing.Converter;
@ -8,6 +9,7 @@ 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.Demolish, "Demolish" },
{ EAction.DragonKick, "Dragon Kick" },

View File

@ -7,6 +7,7 @@ namespace Questionable.Model.Questing;
public enum EAction
{
HeavySwing = 31,
Bootshine = 53,
TwinSnakes = 61,
Demolish = 66,
DragonKick = 74,