muffin v7.4.12
This commit is contained in:
parent
e3e5a401c3
commit
0f9f445830
38 changed files with 13646 additions and 10442 deletions
|
|
@ -0,0 +1,35 @@
|
|||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Numerics;
|
||||
using System.Text.Json.Serialization;
|
||||
using Questionable.Model.Common;
|
||||
using Questionable.Model.Common.Converter;
|
||||
|
||||
namespace Questionable.Model.Questing;
|
||||
|
||||
public sealed class FateDefinition
|
||||
{
|
||||
public string Name { get; set; } = string.Empty;
|
||||
|
||||
public string Description { get; set; } = string.Empty;
|
||||
|
||||
public ushort TerritoryId { get; set; }
|
||||
|
||||
public EAetheryteLocation Aetheryte { get; set; }
|
||||
|
||||
[JsonConverter(typeof(VectorConverter))]
|
||||
public Vector3 Position { get; set; }
|
||||
|
||||
public List<FateActionTarget> Targets { get; set; } = new List<FateActionTarget>();
|
||||
|
||||
public EStatus? RequiredStatusId { get; set; }
|
||||
|
||||
public uint? TransformNpcDataId { get; set; }
|
||||
|
||||
[JsonConverter(typeof(VectorConverter))]
|
||||
public Vector3? TransformNpcPosition { get; set; }
|
||||
|
||||
public List<DialogueChoice>? TransformDialogueChoices { get; set; }
|
||||
|
||||
public DateTime? EventExpiry { get; set; }
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue