44 lines
1.1 KiB
C#
44 lines
1.1 KiB
C#
using Server;
|
|
using System;
|
|
|
|
namespace Server.Items
|
|
{
|
|
public class FemaleKimonoBearingTheCrestOfBlackthorn6 : FemaleKimono
|
|
{
|
|
public override bool IsArtifact { get { return true; } }
|
|
|
|
[Constructable]
|
|
public FemaleKimonoBearingTheCrestOfBlackthorn6()
|
|
: base()
|
|
{
|
|
ReforgedSuffix = ReforgedSuffix.Blackthorn;
|
|
Attributes.AttackChance = 3;
|
|
Attributes.DefendChance = 3;
|
|
Attributes.SpellDamage = 3;
|
|
Hue = 2019;
|
|
}
|
|
|
|
public FemaleKimonoBearingTheCrestOfBlackthorn6(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;
|
|
}
|
|
}
|
|
}
|
|
} |