///////////////////////////////////////////////////////// // Scripted by BKW of Awaken Lands, Future Online Game // // URL: www.awakenlands.com // // © 2004, By Fanatsy World Entertainment // ///////////////////////////////////////////////////////// /**********PLEASE DO NOT REMOVE THIS HEADER*************/ using System; using Server; using Server.Engines.Craft; namespace Server.Items { [Flipable( 0x1EB8, 0x1EB9 )] public class JewelCraftsTool : BaseTool { public override CraftSystem CraftSystem{ get{ return DefJewelCrafting.CraftSystem; } } [Constructable] public JewelCraftsTool() : base( 0x1EB8 ) { Weight = 1.0; Name = "Jewel Crafting Tool Kit"; } [Constructable] public JewelCraftsTool( int uses ) : base( uses, 0x1EB8 ) { Weight = 1.0; Name = "Jewel Crafting Tool Kit"; } public JewelCraftsTool( Serial serial ) : base( serial ) { } 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(); } } }