using System; using Server.Gumps; namespace Server.Items { public class CrystalSupplicantStatueAddon : BaseAddon { [Constructable] public CrystalSupplicantStatueAddon(DirectionType type) { switch (type) { case DirectionType.South: AddComponent(new LocalizedAddonComponent(0x35FB, 1076669), 0, 0, 0); break; case DirectionType.East: AddComponent(new LocalizedAddonComponent(0x35FA, 1076669), 0, 0, 0); break; } } public CrystalSupplicantStatueAddon(Serial serial) : base(serial) { } public override BaseAddonDeed Deed { get { return new CrystalSupplicantStatueDeed(); } } public override void Serialize(GenericWriter writer) { base.Serialize(writer); writer.Write((int)0); } public override void Deserialize(GenericReader reader) { base.Deserialize(reader); int version = reader.ReadInt(); } } public class CrystalSupplicantStatueDeed : BaseAddonDeed, IRewardOption { public override int LabelNumber { get { return 1076669; } } // Crystal Supplicant Statue public override bool ExcludeDeedHue { get { return true; } } public override BaseAddon Addon { get { return new CrystalSupplicantStatueAddon(_Direction); } } private DirectionType _Direction; [Constructable] public CrystalSupplicantStatueDeed() : base() { LootType = LootType.Blessed; Hue = 1173; } public CrystalSupplicantStatueDeed(Serial serial) : base(serial) { } public void GetOptions(RewardOptionList list) { list.Add((int)DirectionType.South, 1075386); // South list.Add((int)DirectionType.East, 1075387); // East } public void OnOptionSelected(Mobile from, int choice) { _Direction = (DirectionType)choice; if (!Deleted) base.OnDoubleClick(from); } public override void OnDoubleClick(Mobile from) { if (IsChildOf(from.Backpack)) { from.CloseGump(typeof(RewardOptionGump)); from.SendGump(new RewardOptionGump(this, 1076724)); // Please select your crystal supplicant statue position } else { from.SendLocalizedMessage(1062334); // This item must be in your backpack to be used. } } public override void Serialize(GenericWriter writer) { base.Serialize(writer); writer.Write((int)0); } public override void Deserialize(GenericReader reader) { base.Deserialize(reader); int version = reader.ReadInt(); } } }