2018-12-05 01:59:10 -05:00
|
|
|
|
using System.ComponentModel;
|
|
|
|
|
|
|
|
|
|
namespace Filtration.ObjectModel.Enums
|
|
|
|
|
{
|
|
|
|
|
public enum BlockItemOrdering
|
|
|
|
|
{
|
|
|
|
|
Action,
|
|
|
|
|
LinkedSockets,
|
|
|
|
|
Sockets,
|
|
|
|
|
Quality,
|
|
|
|
|
Identified,
|
|
|
|
|
Corrupted,
|
|
|
|
|
ElderItem,
|
|
|
|
|
ShaperItem,
|
2019-03-18 13:27:21 -04:00
|
|
|
|
SynthesisedItem,
|
|
|
|
|
FracturedItem,
|
|
|
|
|
AnyEnchantment,
|
2018-12-05 01:59:10 -05:00
|
|
|
|
MapTier,
|
|
|
|
|
ShapedMap,
|
|
|
|
|
ElderMap,
|
2019-09-11 07:45:28 -04:00
|
|
|
|
BligtedMap,
|
2018-12-05 01:59:10 -05:00
|
|
|
|
SocketGroup,
|
|
|
|
|
Height,
|
|
|
|
|
Width,
|
|
|
|
|
ItemLevel,
|
|
|
|
|
DropLevel,
|
|
|
|
|
GemLevel,
|
|
|
|
|
StackSize,
|
|
|
|
|
Rarity,
|
|
|
|
|
Class,
|
|
|
|
|
BaseType,
|
|
|
|
|
Prophecy,
|
|
|
|
|
HasExplicitMod,
|
2019-03-18 13:27:21 -04:00
|
|
|
|
HasEnchantment,
|
2018-12-05 01:59:10 -05:00
|
|
|
|
SetTextColor,
|
|
|
|
|
SetBackgroundColor,
|
|
|
|
|
SetBorderColor,
|
|
|
|
|
SetFontSize,
|
|
|
|
|
PlayAlertSound,
|
|
|
|
|
PlayAlertSoundPositional,
|
|
|
|
|
DisableDropSound,
|
|
|
|
|
MinimapIcon,
|
|
|
|
|
PlayEffect,
|
|
|
|
|
CustomAlertSound
|
|
|
|
|
}
|
|
|
|
|
}
|