Questionable/Questionable.Model/V1/ESkipCondition.cs

21 lines
486 B
C#
Raw Permalink Normal View History

using System.Text.Json.Serialization;
using Questionable.Model.V1.Converter;
namespace Questionable.Model.V1;
[JsonConverter(typeof(SkipConditionConverter))]
2024-06-14 09:37:33 +00:00
public enum ESkipCondition
{
None,
2024-06-01 16:46:57 +00:00
Never,
FlyingLocked,
FlyingUnlocked,
ChocoboUnlocked,
AetheryteShortcutIfInSameTerritory,
NotTargetable,
2024-07-18 23:15:55 +00:00
ItemNotInInventory,
// TODO: This is an indication the whole skip bit should be optimized/parameterized to some extent
WakingSandsMainArea,
}