Files
abysmal-isle/Scripts/Items/Quest/AndrosGratitude.cs
Unstable Kitsune b918192e4e Overwrite
Complete Overwrite of the Folder with the free shard. ServUO 57.3 has been added.
2023-11-28 23:20:26 -05:00

40 lines
827 B
C#
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

using System;
namespace Server.Items
{
public class AndrosGratitude : SmithHammer
{
[Constructable]
public AndrosGratitude()
: base(10)
{
this.LootType = LootType.Blessed;
}
public AndrosGratitude(Serial serial)
: base(serial)
{
}
public override int LabelNumber
{
get
{
return 1075345;
}
}// Andros Gratitude
public override void Serialize(GenericWriter writer)
{
base.Serialize(writer);
writer.Write((int)0); // version
}
public override void Deserialize(GenericReader reader)
{
base.Deserialize(reader);
int version = reader.ReadInt();
}
}
}