forked from liza/Questionable
Compare commits
2 Commits
8a76929b18
...
fbc0b9fe02
Author | SHA1 | Date | |
---|---|---|---|
|
fbc0b9fe02 | ||
|
5bb9f11fa8 |
@ -854,7 +854,6 @@
|
||||
"description": "The action to use",
|
||||
"enum": [
|
||||
"Heavy Swing",
|
||||
"Bootshine",
|
||||
"Twin Snakes",
|
||||
"Demolish",
|
||||
"Dragon Kick",
|
||||
|
@ -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" },
|
||||
|
@ -7,7 +7,6 @@ namespace Questionable.Model.Questing;
|
||||
public enum EAction
|
||||
{
|
||||
HeavySwing = 31,
|
||||
Bootshine = 53,
|
||||
TwinSnakes = 61,
|
||||
Demolish = 66,
|
||||
DragonKick = 74,
|
||||
|
Loading…
Reference in New Issue
Block a user