18 lines
357 B
C#
18 lines
357 B
C#
using System.Text.Json.Serialization;
|
|
using Questionable.Model.V1.Converter;
|
|
|
|
namespace Questionable.Model.V1;
|
|
|
|
[JsonConverter(typeof(SkipConditionConverter))]
|
|
public enum ESkipCondition
|
|
{
|
|
None,
|
|
Never,
|
|
FlyingLocked,
|
|
FlyingUnlocked,
|
|
ChocoboUnlocked,
|
|
AetheryteShortcutIfInSameTerritory,
|
|
NotTargetable,
|
|
ItemNotInInventory,
|
|
}
|