Files
Unstable Kitsune b918192e4e Overwrite
Complete Overwrite of the Folder with the free shard. ServUO 57.3 has been added.
2023-11-28 23:20:26 -05:00

43 lines
1.0 KiB
C#

using Server;
using System;
namespace Server.Items
{
public class FemaleKimonoBearingTheCrestOfBlackthorn1 : FemaleKimono
{
public override bool IsArtifact { get { return true; } }
[Constructable]
public FemaleKimonoBearingTheCrestOfBlackthorn1()
: base()
{
ReforgedSuffix = ReforgedSuffix.Blackthorn;
Attributes.BonusHits = 3;
Attributes.BonusInt = 5;
Hue = 2075;
}
public FemaleKimonoBearingTheCrestOfBlackthorn1(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;
}
}
}
}