forked from aly/qstbak
40 lines
2.2 KiB
C#
40 lines
2.2 KiB
C#
using System.Collections.Generic;
|
|
using SmartNav.Model.Converter;
|
|
|
|
namespace Questionable.Model.Questing.Converter;
|
|
|
|
public sealed class SkipConditionConverter : EnumConverter<EExtraSkipCondition>
|
|
{
|
|
private static readonly Dictionary<EExtraSkipCondition, string> Values = new Dictionary<EExtraSkipCondition, string>
|
|
{
|
|
{
|
|
EExtraSkipCondition.WakingSandsMainArea,
|
|
global::_003CModule_003E._200F_200E_200D_202C_206F_200B_200B_206E_206B_202D_202C_202C_200B_206C_206B_202E_206D_202A_206B_202B_202B_206E_206C_202B_200D_206B_206C_200D_200B_200E_206C_206F_200D_202A_206C_206F_200B_202C_206A_202D_202E<string>(-1312725330)
|
|
},
|
|
{
|
|
EExtraSkipCondition.WakingSandsSolar,
|
|
global::_003CModule_003E._202C_200B_200E_200D_206A_200D_202D_206E_200E_206D_202C_200E_206A_202D_202E_206F_200C_206C_206B_206F_200E_202A_200E_200E_202B_202B_206D_202B_206D_200C_206C_200C_200E_202A_202C_200D_206E_202C_200B_202A_202E<string>(347424923)
|
|
},
|
|
{
|
|
EExtraSkipCondition.RisingStonesSolar,
|
|
global::_003CModule_003E._200F_200E_200D_202C_206F_200B_200B_206E_206B_202D_202C_202C_200B_206C_206B_202E_206D_202A_206B_202B_202B_206E_206C_202B_200D_206B_206C_200D_200B_200E_206C_206F_200D_202A_206C_206F_200B_202C_206A_202D_202E<string>(-556671983)
|
|
},
|
|
{
|
|
EExtraSkipCondition.RoguesGuild,
|
|
global::_003CModule_003E._200F_206E_206A_200F_202A_206C_206C_202C_200E_206C_202B_200D_206C_200C_202E_200F_202B_200C_206E_202D_200D_206D_206D_200C_206D_206D_206F_206D_200F_200E_200E_206A_206D_206C_202E_206E_202E_202A_206A_206B_202E<string>(-525640832)
|
|
},
|
|
{
|
|
EExtraSkipCondition.NotRoguesGuild,
|
|
global::_003CModule_003E._200C_206E_206A_202B_206D_200F_202D_206C_200B_202E_202A_200F_202B_206F_206E_206F_206A_206D_200F_206A_202B_200E_206A_206E_206F_206C_206A_202D_200B_200C_206B_202A_206E_200D_202C_200B_200E_200C_202A_206E_202E<string>(-754181016)
|
|
},
|
|
{
|
|
EExtraSkipCondition.DockStorehouse,
|
|
global::_003CModule_003E._200F_206E_206A_200F_202A_206C_206C_202C_200E_206C_202B_200D_206C_200C_202E_200F_202B_200C_206E_202D_200D_206D_206D_200C_206D_206D_206F_206D_200F_200E_200E_206A_206D_206C_202E_206E_202E_202A_206A_206B_202E<string>(2064364815)
|
|
}
|
|
};
|
|
|
|
public SkipConditionConverter()
|
|
: base((IReadOnlyDictionary<EExtraSkipCondition, string>)Values)
|
|
{
|
|
}
|
|
}
|