44 lines
770 B
C#
Raw Normal View History

using System.Text.Json.Serialization;
2024-08-02 18:30:21 +02:00
using Questionable.Model.Questing.Converter;
2024-05-26 15:43:33 +02:00
2024-08-02 18:30:21 +02:00
namespace Questionable.Model.Questing;
[JsonConverter(typeof(InteractionTypeConverter))]
2024-06-14 11:37:33 +02:00
public enum EInteractionType
2024-05-26 15:43:33 +02:00
{
None,
2024-05-26 15:43:33 +02:00
Interact,
WalkTo,
2024-05-26 21:45:26 +02:00
AttuneAethernetShard,
2024-05-26 15:43:33 +02:00
AttuneAetheryte,
AttuneAetherCurrent,
Combat,
UseItem,
EquipItem,
2024-08-10 18:14:15 +02:00
EquipRecommended,
2024-05-29 00:17:19 +02:00
Say,
2024-05-26 15:43:33 +02:00
Emote,
Action,
2024-05-27 21:54:34 +02:00
WaitForObjectAtPosition,
WaitForManualProgress,
Duty,
SinglePlayerDuty,
Jump,
2024-07-24 20:47:08 +02:00
Dive,
Craft,
/// <summary>
/// Needs to be manually continued.
/// </summary>
Instruction,
AcceptQuest,
CompleteQuest,
2024-08-08 01:49:14 +02:00
AcceptLeve,
InitiateLeve,
CompleteLeve,
2024-08-11 18:59:42 +02:00
// unmapped extra types below
InternalGather,
2024-05-26 15:43:33 +02:00
}