Overwrite
Complete Overwrite of the Folder with the free shard. ServUO 57.3 has been added.
This commit is contained in:
@@ -0,0 +1,44 @@
|
||||
|
||||
using System;
|
||||
using Server;
|
||||
using Server.Items;
|
||||
|
||||
namespace Server.Items
|
||||
{
|
||||
[FlipableAttribute( 0x153B, 0x153C )]
|
||||
public class AzureCincture : BaseWaist
|
||||
{
|
||||
public override void GetProperties(ObjectPropertyList list)
|
||||
{
|
||||
base.GetProperties(list); list.Add(1075085);
|
||||
}
|
||||
|
||||
[Constructable]
|
||||
public AzureCincture() : base ( 0x153B )
|
||||
{
|
||||
Weight = 2.0;
|
||||
Name = "Azure Cincture";
|
||||
Hue = 193;
|
||||
|
||||
Attributes.BonusStr = 5;
|
||||
Attributes.BonusMana = 10;
|
||||
Attributes.RegenMana = 2;
|
||||
}
|
||||
|
||||
public AzureCincture( 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();
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user