2024-05-26 15:43:33 +02:00
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.Numerics;
|
|
|
|
|
using System.Text.Json.Serialization;
|
|
|
|
|
using Questionable.Model.V1.Converter;
|
2024-05-25 23:51:37 +02:00
|
|
|
|
|
|
|
|
|
namespace Questionable.Model.V1;
|
|
|
|
|
|
|
|
|
|
public class QuestStep
|
|
|
|
|
{
|
2024-05-26 15:43:33 +02:00
|
|
|
|
[JsonConverter(typeof(InteractionTypeConverter))]
|
|
|
|
|
public EInteractionType InteractionType { get; set; }
|
|
|
|
|
|
2024-05-26 21:45:26 +02:00
|
|
|
|
public uint? DataId { get; set; }
|
|
|
|
|
|
|
|
|
|
[JsonConverter(typeof(VectorConverter))]
|
|
|
|
|
public Vector3? Position { get; set; }
|
|
|
|
|
|
|
|
|
|
public float? StopDistance { get; set; }
|
2024-05-25 23:51:37 +02:00
|
|
|
|
public ushort TerritoryId { get; set; }
|
2024-05-28 22:24:06 +02:00
|
|
|
|
public ushort? TargetTerritoryId { get; set; }
|
|
|
|
|
|
2024-05-26 15:43:33 +02:00
|
|
|
|
public bool Disabled { get; set; }
|
2024-05-27 21:54:34 +02:00
|
|
|
|
public bool DisableNavmesh { get; set; }
|
|
|
|
|
public bool? Mount { get; set; }
|
2024-05-27 23:51:11 +02:00
|
|
|
|
public bool Fly { get; set; }
|
2024-05-26 21:45:26 +02:00
|
|
|
|
public string? Comment { get; set; }
|
|
|
|
|
|
|
|
|
|
[JsonConverter(typeof(AetheryteConverter))]
|
|
|
|
|
public EAetheryteLocation? AetheryteShortcut { get; set; }
|
2024-05-26 15:43:33 +02:00
|
|
|
|
|
|
|
|
|
[JsonConverter(typeof(AethernetShortcutConverter))]
|
2024-05-26 21:45:26 +02:00
|
|
|
|
public AethernetShortcut? AethernetShortcut { get; set; }
|
2024-05-27 21:54:34 +02:00
|
|
|
|
public uint? AetherCurrentId { get; set; }
|
|
|
|
|
|
|
|
|
|
public uint? ItemId { get; set; }
|
2024-05-29 00:17:19 +02:00
|
|
|
|
public bool? GroundTarget { get; set; }
|
2024-05-27 21:54:34 +02:00
|
|
|
|
|
|
|
|
|
[JsonConverter(typeof(EmoteConverter))]
|
|
|
|
|
public EEmote? Emote { get; set; }
|
2024-05-29 00:17:19 +02:00
|
|
|
|
public string ChatMessage { get; set; }
|
2024-05-27 21:54:34 +02:00
|
|
|
|
|
|
|
|
|
[JsonConverter(typeof(EnemySpawnTypeConverter))]
|
|
|
|
|
public EEnemySpawnType? EnemySpawnType { get; set; }
|
|
|
|
|
|
|
|
|
|
public IList<uint>? KillEnemyDataIds { get; set; }
|
2024-05-25 23:51:37 +02:00
|
|
|
|
}
|