ModernUO/Projects/UOContent/Engines/ML Quests/Items/SadrahSatchel.cs
2023-09-30 00:46:07 -07:00

15 lines
319 B
C#

using ModernUO.Serialization;
namespace Server.Items;
[SerializationGenerator(0, false)]
public partial class SadrahSatchel : Backpack
{
[Constructible]
public SadrahSatchel()
{
Hue = Utility.RandomBrightHue();
DropItem(new Bloodmoss(10));
DropItem(new MortarPestle());
}
}