Questionable/Questionable.Model/Questing/ComplexCombatData.cs

20 lines
627 B
C#
Raw Permalink Normal View History

using System.Collections.Generic;
2024-08-02 16:30:21 +00:00
namespace Questionable.Model.Questing;
public sealed class ComplexCombatData
{
public uint DataId { get; set; }
// TODO Use this
public uint? MinimumKillCount { get; set; }
2024-07-26 15:17:02 +00:00
/// <summary>
/// If a reward item has been set, this is (ping allowing) given to the player before the dead enemy despawns.
/// </summary>
public uint? RewardItemId { get; set; }
public int? RewardItemCount { get; set; }
public IList<QuestWorkValue?> CompletionQuestVariablesFlags { get; set; } = new List<QuestWorkValue?>();
2024-07-21 21:10:16 +00:00
public bool IgnoreQuestMarker { get; set; }
}