Compare commits

..

2 Commits

Author SHA1 Message Date
Plogon Enjoyer
fbc0b9fe02 Added all MNK Stormblood class quests 2024-08-31 20:50:04 +08:00
Plogon Enjoyer
5bb9f11fa8 Added MNK actions "Twin Snakes", "Demolish", "Dragon Kick", and "Form Shift" 2024-08-31 20:49:52 +08:00
3 changed files with 0 additions and 4 deletions

View File

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

View File

@ -1,5 +1,4 @@
using System.Collections.Generic;
using System.Globalization;
using Questionable.Model.Common.Converter;
namespace Questionable.Model.Questing.Converter;
@ -9,7 +8,6 @@ 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,7 +7,6 @@ namespace Questionable.Model.Questing;
public enum EAction
{
HeavySwing = 31,
Bootshine = 53,
TwinSnakes = 61,
Demolish = 66,
DragonKick = 74,