CurrencyAlertClassic/SamplePlugin/Enum/Currency.cs

27 lines
841 B
C#
Raw Normal View History

2022-01-05 14:46:15 +00:00
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace CurrencyAlert.Enum
{
public enum Currency
{
2022-01-19 10:14:20 +00:00
[Name("Tomestones of Poetics"), Slot(6), DefaultThreshold(1400)]
2022-01-06 09:56:52 +00:00
TomestoneOfPoetics,
2022-01-19 10:14:20 +00:00
[Name("Tomestones of Astronomy"), Slot(10), DefaultThreshold(1800)]
2022-01-06 09:56:52 +00:00
TomestoneOfAstronomy,
[Name("Storm Seals"), Slot(1), DefaultThreshold(75000)]
2022-01-05 14:46:15 +00:00
StormSeal,
2022-01-06 09:56:52 +00:00
[Name("Serpent Seals"), Slot(2), DefaultThreshold(75000)]
2022-01-05 14:46:15 +00:00
SerpentSeal,
2022-01-06 09:56:52 +00:00
[Name("Flame Seals"), Slot(3), DefaultThreshold(75000)]
2022-01-05 14:46:15 +00:00
FlameSeal,
2022-01-06 09:56:52 +00:00
[Name("Wolf Marks"), Slot(4), DefaultThreshold(18000)]
2022-01-05 14:46:15 +00:00
WolfMark,
2022-01-06 09:56:52 +00:00
[Name("Allied Seals"), Slot(8), DefaultThreshold(3500)]
AlliedSeal
2022-01-05 14:46:15 +00:00
}
}