2024-05-29 21:22:58 +02:00
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
|
|
|
|
|
namespace Questionable.Model.V1.Converter;
|
|
|
|
|
|
2024-06-14 11:37:33 +02:00
|
|
|
|
public sealed class SkipConditionConverter() : EnumConverter<ESkipCondition>(Values)
|
2024-05-29 21:22:58 +02:00
|
|
|
|
{
|
|
|
|
|
private static readonly Dictionary<ESkipCondition, string> Values = new()
|
|
|
|
|
{
|
2024-06-01 18:46:57 +02:00
|
|
|
|
{ ESkipCondition.Never, "Never" },
|
2024-06-03 14:20:02 +02:00
|
|
|
|
{ ESkipCondition.FlyingLocked, "FlyingLocked" },
|
2024-05-29 21:22:58 +02:00
|
|
|
|
{ ESkipCondition.FlyingUnlocked, "FlyingUnlocked" },
|
2024-06-15 14:12:32 +02:00
|
|
|
|
{ ESkipCondition.ChocoboUnlocked, "ChocoboUnlocked" },
|
|
|
|
|
{ ESkipCondition.AetheryteShortcutIfInSameTerritory, "AetheryteShortcutIfInSameTerritory" },
|
2024-07-12 02:42:37 +02:00
|
|
|
|
{ ESkipCondition.NotTargetable, "NotTargetable" },
|
2024-07-19 01:15:55 +02:00
|
|
|
|
{ ESkipCondition.ItemNotInInventory, "ItemNotInInventory" },
|
2024-07-21 10:40:39 +02:00
|
|
|
|
{ ESkipCondition.WakingSandsMainArea, "WakingSandsMainArea" },
|
2024-05-29 21:22:58 +02:00
|
|
|
|
};
|
|
|
|
|
}
|