2024-05-29 19:22:58 +00:00
|
|
|
|
using System.Text.Json.Serialization;
|
|
|
|
|
using Questionable.Model.V1.Converter;
|
2024-05-26 13:43:33 +00:00
|
|
|
|
|
2024-05-29 19:22:58 +00:00
|
|
|
|
namespace Questionable.Model.V1;
|
|
|
|
|
|
|
|
|
|
[JsonConverter(typeof(InteractionTypeConverter))]
|
2024-06-14 09:37:33 +00:00
|
|
|
|
public enum EInteractionType
|
2024-05-26 13:43:33 +00:00
|
|
|
|
{
|
|
|
|
|
Interact,
|
|
|
|
|
WalkTo,
|
2024-05-26 19:45:26 +00:00
|
|
|
|
AttuneAethernetShard,
|
2024-05-26 13:43:33 +00:00
|
|
|
|
AttuneAetheryte,
|
|
|
|
|
AttuneAetherCurrent,
|
|
|
|
|
Combat,
|
|
|
|
|
UseItem,
|
2024-06-13 15:35:33 +00:00
|
|
|
|
EquipItem,
|
2024-05-28 22:17:19 +00:00
|
|
|
|
Say,
|
2024-05-26 13:43:33 +00:00
|
|
|
|
Emote,
|
2024-07-10 19:01:41 +00:00
|
|
|
|
Action,
|
2024-05-27 19:54:34 +00:00
|
|
|
|
WaitForObjectAtPosition,
|
2024-05-31 23:49:11 +00:00
|
|
|
|
WaitForManualProgress,
|
|
|
|
|
Duty,
|
|
|
|
|
SinglePlayerDuty,
|
|
|
|
|
Jump,
|
2024-07-24 18:47:08 +00:00
|
|
|
|
Dive,
|
2024-05-31 23:49:11 +00:00
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Needs to be manually continued.
|
|
|
|
|
/// </summary>
|
|
|
|
|
Instruction,
|
2024-06-24 16:15:45 +00:00
|
|
|
|
|
|
|
|
|
AcceptQuest,
|
|
|
|
|
CompleteQuest,
|
2024-05-26 13:43:33 +00:00
|
|
|
|
}
|