* Fix #107 by pulling SortOrder form an enum. * Add initial support for the Prophecy block item. * Update the static data. * Hook Prophecy data into the static data service. * Fill out the initial prophecy data.
24 lines
399 B
C#
24 lines
399 B
C#
namespace Filtration.ObjectModel.Enums
|
|
{
|
|
public enum BlockItemType
|
|
{
|
|
ItemLevel,
|
|
DropLevel,
|
|
Quality,
|
|
Rarity,
|
|
Class,
|
|
BaseType,
|
|
Prophecy,
|
|
Sockets,
|
|
LinkedSockets,
|
|
SocketGroup,
|
|
Width,
|
|
Height,
|
|
TextColor,
|
|
BackgroundColor,
|
|
BorderColor,
|
|
Sound,
|
|
FontSize
|
|
}
|
|
}
|