2024-07-27 13:39:47 +00:00
|
|
|
|
using System.Text.Json.Serialization;
|
2024-08-02 16:30:21 +00:00
|
|
|
|
using Questionable.Model.Questing.Converter;
|
2024-07-27 13:39:47 +00:00
|
|
|
|
|
2024-08-02 16:30:21 +00:00
|
|
|
|
namespace Questionable.Model.Questing;
|
2024-07-27 13:39:47 +00:00
|
|
|
|
|
|
|
|
|
[JsonConverter(typeof(SkipConditionConverter))]
|
|
|
|
|
public enum EExtraSkipCondition
|
|
|
|
|
{
|
|
|
|
|
None,
|
|
|
|
|
WakingSandsMainArea,
|
2024-08-11 00:44:29 +00:00
|
|
|
|
RisingStonesSolar,
|
2024-10-19 08:31:27 +00:00
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Location for ROG quests in Limsa Lominsa; located far underneath the actual lower decks.
|
|
|
|
|
/// </summary>
|
|
|
|
|
RoguesGuild,
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Location for NIN quests in Eastern La Noscea; located far underneath the actual zone.
|
|
|
|
|
/// </summary>
|
|
|
|
|
DockStorehouse,
|
2024-07-27 13:39:47 +00:00
|
|
|
|
}
|