using Server; using System; namespace Server.Items { public class FancyDressBearingTheCrestOfBlackthorn6 : FancyDress { public override bool IsArtifact { get { return true; } } [Constructable] public FancyDressBearingTheCrestOfBlackthorn6() : base() { ReforgedSuffix = ReforgedSuffix.Blackthorn; Attributes.AttackChance = 3; Attributes.DefendChance = 3; Attributes.SpellDamage = 3; Hue = 2019; } public FancyDressBearingTheCrestOfBlackthorn6(Serial serial) : base(serial) { } public override void Serialize(GenericWriter writer) { base.Serialize(writer); writer.Write(1); } public override void Deserialize(GenericReader reader) { base.Deserialize(reader); int version = reader.ReadInt(); if (version == 0) { MaxHitPoints = 0; HitPoints = 0; } } } }