15 lines
318 B
C#
15 lines
318 B
C#
using ModernUO.Serialization;
|
|
|
|
namespace Server.Items;
|
|
|
|
[SerializationGenerator(0, false)]
|
|
public partial class GervisSatchel : Backpack
|
|
{
|
|
[Constructible]
|
|
public GervisSatchel()
|
|
{
|
|
Hue = Utility.RandomBrightHue();
|
|
DropItem(new IronIngot(10));
|
|
DropItem(new SmithHammer());
|
|
}
|
|
}
|