This commit is contained in:
parent
50d2e4ddf6
commit
60ca00eab0
18 changed files with 1016 additions and 49 deletions
38
Scripts/Items/Clothing/Artifacts/CrimsonCincture.cs
Normal file
38
Scripts/Items/Clothing/Artifacts/CrimsonCincture.cs
Normal file
|
|
@ -0,0 +1,38 @@
|
|||
using System;
|
||||
|
||||
namespace Server.Items
|
||||
{
|
||||
public class CrimsonCincture : HalfApron, ITokunoDyable
|
||||
{
|
||||
public override int LabelNumber{ get{ return 1075043; } } // Crimson Cincture
|
||||
|
||||
[Constructable]
|
||||
public CrimsonCincture() : base()
|
||||
{
|
||||
Hue = 0x485;
|
||||
|
||||
Attributes.BonusDex = 5;
|
||||
Attributes.BonusHits = 10;
|
||||
Attributes.RegenHits = 2;
|
||||
}
|
||||
|
||||
public CrimsonCincture( 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();
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
Loading…
Add table
Add a link
Reference in a new issue