2024-10-12 20:11:54 +00:00
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using Questionable.Model.Common.Converter;
|
|
|
|
|
|
|
|
|
|
namespace Questionable.Model.Questing.Converter;
|
|
|
|
|
|
|
|
|
|
public sealed class CombatItemUseConditionConverter() : EnumConverter<ECombatItemUseCondition>(Values)
|
|
|
|
|
{
|
|
|
|
|
private static readonly Dictionary<ECombatItemUseCondition, string> Values = new()
|
|
|
|
|
{
|
|
|
|
|
{ ECombatItemUseCondition.Incapacitated, "Incapacitated" },
|
2024-10-12 23:51:44 +00:00
|
|
|
|
{ ECombatItemUseCondition.HealthPercent, "Health%" },
|
2024-10-12 20:11:54 +00:00
|
|
|
|
};
|
|
|
|
|
}
|