* 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
751 B
C#
24 lines
751 B
C#
using Filtration.ObjectModel.BlockItemBaseTypes;
|
|
using Filtration.ObjectModel.Enums;
|
|
|
|
namespace Filtration.ObjectModel.BlockItemTypes
|
|
{
|
|
public class PositionalSoundBlockItem : StrIntBlockItem
|
|
{
|
|
public PositionalSoundBlockItem()
|
|
{
|
|
Value = "1";
|
|
SecondValue = 79;
|
|
}
|
|
|
|
public PositionalSoundBlockItem(string value, int secondValue) : base(value, secondValue)
|
|
{
|
|
}
|
|
|
|
public override string PrefixText => "PlayAlertSoundPositional";
|
|
public override int MaximumAllowed => 1;
|
|
public override string DisplayHeading => "Play Positional Alert Sound";
|
|
public override BlockItemOrdering SortOrder => BlockItemOrdering.PlayAlertSoundPositional;
|
|
}
|
|
}
|