16 lines
319 B
C#
16 lines
319 B
C#
using ModernUO.Serialization;
|
|
|
|
namespace Server.Items;
|
|
|
|
[SerializationGenerator(0)]
|
|
public partial class PlagueBeastGland : Item
|
|
{
|
|
[Constructible]
|
|
public PlagueBeastGland() : base(0x1CEF)
|
|
{
|
|
Weight = 1.0;
|
|
Hue = 0x6;
|
|
}
|
|
|
|
public override int LabelNumber => 1153759; // a healthy gland
|
|
}
|