forked from liza/Questionable
added ARC quests and ability to use heavy shot skill
This commit is contained in:
parent
f466a6a0be
commit
4c84230e7c
@ -832,6 +832,7 @@
|
|||||||
"type": "string",
|
"type": "string",
|
||||||
"description": "The action to use",
|
"description": "The action to use",
|
||||||
"enum": [
|
"enum": [
|
||||||
|
"Heavy Shot",
|
||||||
"Cure",
|
"Cure",
|
||||||
"Esuna",
|
"Esuna",
|
||||||
"Physick",
|
"Physick",
|
||||||
|
@ -7,6 +7,7 @@ public sealed class ActionConverter() : EnumConverter<EAction>(Values)
|
|||||||
{
|
{
|
||||||
private static readonly Dictionary<EAction, string> Values = new()
|
private static readonly Dictionary<EAction, string> Values = new()
|
||||||
{
|
{
|
||||||
|
{ EAction.HeavyShot, "Heavy Shot" },
|
||||||
{ EAction.Cure, "Cure" },
|
{ EAction.Cure, "Cure" },
|
||||||
{ EAction.Esuna, "Esuna" },
|
{ EAction.Esuna, "Esuna" },
|
||||||
{ EAction.Physick, "Physick" },
|
{ EAction.Physick, "Physick" },
|
||||||
|
@ -6,6 +6,7 @@ namespace Questionable.Model.Questing;
|
|||||||
[JsonConverter(typeof(ActionConverter))]
|
[JsonConverter(typeof(ActionConverter))]
|
||||||
public enum EAction
|
public enum EAction
|
||||||
{
|
{
|
||||||
|
HeavyShot = 97,
|
||||||
Cure = 120,
|
Cure = 120,
|
||||||
Esuna = 7568,
|
Esuna = 7568,
|
||||||
Physick = 190,
|
Physick = 190,
|
||||||
|
Loading…
Reference in New Issue
Block a user