//°º¤ø,¸¸,ø¤º°`°º¤ø,¸Created by Nordby°º¤ø,¸¸,ø¤º°`°º¤ø,¸// // /´¯/) // // ,/¯ / // // / / // // /´¯/' '/´¯¯·¸ // // /'/ / / /¨¨/¯\ // // ('( ´ ´ ¯&;/' ') // // \ ' / // // '\' \ _.·´ // // \ ( // // \ \ (FUCK OSI) // //°º¤ø,¸¸,ø¤º°`°º¤ø,¸Created by Nordby°º¤ø,¸¸,ø¤º°`°º¤ø,¸// //Feel Free To Edit Just Give Credit ^_^ The Candy Suit Ya I Know Lame :P using System; using Server; namespace Server.Items { public class candysandals : Sandals { public override int ArtifactRarity{ get{ return 13; } } [Constructable] public candysandals() { Name = "The Candyman's Reebok's"; Hue = 1150; LootType = LootType.Blessed; } public candysandals( Serial serial ) : base( serial ) { } 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(); } } } //-----------------------------------------------------------------------------------------