ModernUO/Projects/UOContent/Items/Misc/Blighted Grove/SamplesOfCorruptedWater.cs
2022-10-28 20:44:08 -07:00

12 lines
329 B
C#

using ModernUO.Serialization;
namespace Server.Items;
[SerializationGenerator(0, false)]
public partial class SamplesOfCorruptedWater : Item
{
[Constructible]
public SamplesOfCorruptedWater() : base(0xEFE) => LootType = LootType.Blessed;
public override int LabelNumber => 1074999; // samples of corrupted water
}