using System; using Server.Gumps; using Server.Network; namespace Server.Items { public class FellowshipCoin : Item { public override int LabelNumber { get { return 1159036; } } // The Fellowship Coin [Constructable] public FellowshipCoin() : base(0x2F60) { Weight = 1.0; Hue = 1912; Light = LightType.Circle300; } public FellowshipCoin(Serial serial) : base(serial) { } public override void OnDoubleClick(Mobile from) { if (!from.HasGump(typeof(FellowshipCoinGump))) { from.SendGump(new FellowshipCoinGump()); from.LocalOverheadMessage(MessageType.Regular, 0x3B2, 1157722, "its origin"); // *Your proficiency in ~1_SKILL~ reveals more about the item* from.PlaySound(1050); } } private class FellowshipCoinGump : Gump { public FellowshipCoinGump() : base(100, 100) { AddPage(0); AddBackground(0, 0, 454, 400, 0x24A4); AddItem(75, 120, 0x2F60); AddHtmlLocalized(177, 50, 250, 18, 1114513, "#1159036", 0x3442, false, false); //