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